From f60638b5cb09dbfb68f1888db361bd94d0947d13 Mon Sep 17 00:00:00 2001 From: babak sarashki Date: Thu, 25 Jul 2019 10:18:45 -0700 Subject: [PATCH] Add packages to rootfs and script to parse for missing packages. Add needed packages to conf/layer.conf. inspect.sh script: (1) parse list of installed packages into pkg name and pkg version. (2) update Packages_List_efforts.csv --- .gitignore | 1 + conf/layer.conf | 209 +++- docs/Packages_List_efforts.csv | 1017 +++++++++++++++++ docs/inspect.sh | 70 ++ .../packagegroups/packagegroup-stx-integ.bb | 17 +- 5 files changed, 1305 insertions(+), 9 deletions(-) create mode 100644 docs/Packages_List_efforts.csv create mode 100755 docs/inspect.sh diff --git a/.gitignore b/.gitignore index 1377554..cbcbc42 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ +docs/reports *.swp diff --git a/conf/layer.conf b/conf/layer.conf index 59a8f1e..000e539 100644 --- a/conf/layer.conf +++ b/conf/layer.conf @@ -9,6 +9,35 @@ BBFILE_COLLECTIONS += "starlingX-layer" BBFILE_PATTERN_starlingX-layer := "^${LAYERDIR}/" BBFILE_PRIORITY_starlingX-layer = "5" +DISTRO_FEATURES_append = " x11 opengl" +EXTRA_IMAGE_FEATURES_append = " x11-base" +VIRTUAL-RUNTIME_graphical_init_manager = "lxdm" + +# INITRAMFS_IMAGE = "secure-core-image-initramfs" +DISTRO_FEATURES_NATIVE_append += "systemd ima tpm tpm2 efi-secure-boot luks" +DISTRO_FEATURES_append += "systemd ima tpm tpm2 efi-secure-boot luks" +#DISTRO_FEATURES_append += "systemd ima tpm tpm2 efi-secure-boot luks modsign" +MACHINE_FEATURES_NATIVE_append += "efi" +MACHINE_FEATURES_append += "efi" +#PACKAGE_CLASSES = "package_rpm" +#INHERIT += "sign_rpm_ext" + +#SECURE_CORE_IMAGE_EXTRA_INSTALL ?= "\ +# packagegroup-efi-secure-boot \ +# packagegroup-tpm \ +# packagegroup-tpm2 \ +# packagegroup-ima \ +# packagegroup-luks \ +# " + +# For iso image +#KERNEL_FEATURES += "features/overlayfs/overlayfs.scc" + +#INITRAMFS_SCRIPTS = "initramfs-live-boot \ +# initramfs-live-install \ +# initramfs-live-install-efi \ +# " + LAYERDEPENDS_starlingX-layer = "\ core \ networking-layer \ @@ -68,7 +97,7 @@ IMAGE_INSTALL_append += " \ starlingx-dashboard \ packagegroup-stx-update \ packagegroup-stx-upstream \ - packagegroup-stx-integ-base \ + packagegroup-stx-integ \ lighttpd \ " # playbookconfig @@ -78,3 +107,181 @@ IMAGE_INSTALL_append += " \ python-horizon \ python-keyring \ " + +IMAGE_INSTALL_append = " \ + tcpdump \ + tzdata \ + numactl \ + samba \ + mariadb \ + traceroute \ + wget \ + expect \ + boost \ + alsa-lib \ + collectd \ + conntrack-tools \ + dosfstools \ + dracut \ + drbd-utils \ + efibootmgr \ + efivar \ + expat \ + facter \ + hwdata \ + iscsi-initiator-utils \ + isomd5sum \ + jansson \ + json-c \ + kexec-tools \ + keyutils \ + libcgroup \ + libdrm \ + libedit \ + libestr \ + libev \ + libgudev \ + libibverbs \ + libjpeg-turbo \ + libndp \ + oath \ + libogg \ + libpcap \ + libpciaccess \ + libpipeline \ + libpng \ + libproxy \ + libpwquality \ + libseccomp \ + libsm \ + libssh2 \ + sysfsutils \ + libteam \ + libuser \ + libutempter \ + libvorbis \ + cyrus-sasl \ + ipmitool \ + iperf3 \ + iotop \ + lsof \ + lsscsi \ + lz4 \ + lzop \ + mailcap \ + mailx \ + mdadm \ + mod-wsgi \ + mokutil \ + mozjs \ + mtools \ + libnewt-python \ + nss-pam-ldapd \ + ntfs-3g-ntfsprogs \ + openipmi \ + openldap \ + libopus \ + ovmf-shell-efi \ + p11-kit \ + perf \ + polkit \ + popt \ + pulseaudio \ + python-pygpgme \ + python-pyparted \ + python-coverage \ + python-docker-registry-core \ + python-flask-restful \ + python-mox3 \ + python-pexpect \ + python-ptyprocess \ + python-traceback2 \ + python-typing \ + python-ujson \ + python-yappi \ + python-hp3parclient \ + python-click \ + python-daemon \ + python-ipy \ + python-ldap \ + python-linecache2 \ + python-pep8 \ + python-pyudev \ + python-simplegeneric \ + python-slip-dbus \ + python-pytz \ + ruby-shadow \ + screen \ + seabios \ + smartmontools \ + snappy \ + socat \ + spawn-fcgi \ + spice \ + swig \ + sysstat \ + tcp-wrappers \ + trousers \ + xfsprogs \ + yajl \ + zip \ + c-ares \ + cifs-utils \ + createrepo-c \ + gdbm \ + gmp \ + groff \ + libnl \ + mcstrans \ + linuxptp \ + lua \ + lldpd \ + multipath-tools \ + flac \ + freetype \ + geoip \ + glusterfs \ + gobject-introspection \ + gperftools \ + gpm \ + hiera \ + leveldb \ + libutempter \ + lksctp-tools \ + quota \ + radvd \ + usbredir \ + texinfo \ + freetype \ + celt051 \ + cryptsetup \ + lmsensors-libsensors \ + lmsensors-fancontrol \ + lmsensors-isatools \ + lmsensors-pwmconfig \ + lmsensors-sensord \ + lmsensors-sensors \ + lmsensors-sensorsconfconvert \ + lmsensors-sensorsdetect \ + " +# tpm2-abrmd +# tpm2-tss +# tboot +# syslinux +# docker-ce +# docker-distribution +# syslog-ng +# drbd +# etcd +# nss-myhostname +# rdma-core +# librdmacm + +# libgdbm6 +## libgdbm-bin +# libgmp10 +# libgmpxx4 +# lmsensors +# lmsensors-config + +# unbound diff --git a/docs/Packages_List_efforts.csv b/docs/Packages_List_efforts.csv new file mode 100644 index 0000000..81850a6 --- /dev/null +++ b/docs/Packages_List_efforts.csv @@ -0,0 +1,1017 @@ +No.:Package:StarlingX Package:Yocto Package:Yocto Package Version:meta-starlingX:Version:Arm Support:Comments +1:acl:acl-2.2.51-14.el7.x86_64.rpm:acl:2.2.52:stx-none:stx-none:: +2:acpid:acpid-2.0.19-9.el7.x86_64.rpm:acpid:2.0.30:stx-none:stx-none:: +3:alsa-lib:alsa-lib-1.1.6-2.el7.x86_64.rpm:alsa-lib:1.1.6:stx-none:stx-none:: +4:ansible:ansible-2.7.5-1.el7.ans.noarch.rpm:python-ansible:2.3.1.0:stx-none:stx-none:: +5:apr:apr-1.4.8-3.el7_4.1.x86_64.rpm:apr:1.6.3:stx-none:stx-none:: +6:apr-util:apr-util-1.5.2-6.el7.x86_64.rpm:apr-util:1.6.1:stx-none:stx-none:: +7:attr:attr-2.4.46-13.el7.x86_64.rpm:attr:2.4.47:stx-none:stx-none:: +8:audit:audit-2.8.4-4.el7.x86_64.rpm,audit-config-1.0-0.tis.noarch.rpm,audit-libs-2.8.4-4.el7.x86_64.rpm,audit-libs-python-2.8.4-4.el7.x86_64.rpm:audit:2.8.4:stx-none:stx-none:: +9:augeas-libs:augeas-libs-1.4.0-6.el7.x86_64.rpm:augeas:1.10.1:stx-none:stx-none:: +10:authconfig:authconfig-6.2.8-30.el7.x86_64.rpm:none::stx-none:stx-none:: +11:autogen-libopts:autogen-libopts-5.18-5.el7.x86_64.rpm:none::stx-none:stx-none:: +12:avahi-libs:avahi-libs-0.6.31-19.el7.x86_64.rpm:avahi:0.7:stx-none:stx-none:: +13:basesystem:basesystem-10.0-7.el7.centos.noarch.rpm:none::stx-none:stx-none:No: +14:bash:bash-4.2.46-31.el7.tis.4.x86_64.rpm:bash:4.4.18:stx-none:stx-none:: +15:bash-completion:bash-completion-2.1-6.el7.noarch.rpm:bash-completion:2.8:stx-none:stx-none:: +16:bc:bc-1.06.95-13.el7.x86_64.rpm:bc:1.07.1:stx-none:stx-none:: +17:bind:bind-libs-9.9.4-72.el7.x86_64.rpm,bind-libs-lite-9.9.4-72.el7.x86_64.rpm,bind-license-9.9.4-72.el7.noarch.rpm,bind-utils-9.9.4-72.el7.x86_64.rpm:bind:9.11.4:stx-none:stx-none:: +18:binutils:binutils-2.27-34.base.el7.x86_64.rpm:binutils:2.31:stx-none:stx-none:: +19:biosdevname:biosdevname-0.7.3-1.el7.x86_64.rpm:none::stx-none:stx-none:No: +20:boost:boost-system-1.53.0-27.el7.x86_64.rpm,boost-thread-1.53.0-27.el7.x86_64.rpm:boost:1.68.0:stx-none:stx-none:: +21:bootswatch:bootswatch-common-3.3.7.0-1.el7.noarch.rpm,bootswatch-fonts-3.3.7.0-1.el7.noarch.rpm:none::stx-none:stx-none:: +22:bridge-utils:bridge-utils-1.5-9.el7.x86_64.rpm:bridge-utils:1.6:stx-none:stx-none:: +23:btrfs-progs:btrfs-progs-4.9.1-1.el7.x86_64.rpm:btrfs-tools:4.17.1:stx-none:stx-none:: +24:build-info:build-info-1.0-4.tis.x86_64.rpm:none::stx-none:stx-none:: +25:bzip2:bzip2-1.0.6-13.el7.x86_64.rpm,bzip2-libs-1.0.6-13.el7.x86_64.rpm:bzip2:1.0.6:stx-none:stx-none:: +26:ca-certificates:ca-certificates-2018.2.22-70.0.el7_5.noarch.rpm:ca-certificates:20180409:stx-none:stx-none:: +27:c-ares:c-ares-1.10.0-3.el7.x86_64.rpm:c-ares:1.14.0+gitrX:stx-none:stx-none:: +28:celt051:celt051-0.5.1.3-8.el7.x86_64.rpm:celt051:0.5.1.3:stx-none:stx-none:: +29:centos-logos:centos-logos-70.0.6-3.el7.centos.noarch.rpm:none::stx-none:stx-none::Not Need +30:centos-release:centos-release-7-6.1810.2.el7.centos.x86_64.rpm:none::stx-none:stx-none::Not Need +31:centos-release-config:centos-release-config-1.0-1.tis.noarch.rpm:none::stx-none:stx-none::Not Need +32:ceph:ceph-13.2.2-0.el7.tis.25.x86_64.rpm,ceph-base-13.2.2-0.el7.tis.25.x86_64.rpm,ceph-common-13.2.2-0.el7.tis.25.x86_64.rpm,ceph-fuse-13.2.2-0.el7.tis.25.x86_64.rpm,ceph-mds-13.2.2-0.el7.tis.25.x86_64.rpm,ceph-mgr-13.2.2-0.el7.tis.25.x86_64.rpm,ceph-mon-13.2.2-0.el7.tis.25.x86_64.rpm,ceph-osd-13.2.2-0.el7.tis.25.x86_64.rpm,ceph-radosgw-13.2.2-0.el7.tis.25.x86_64.rpm:ceph:13.2.2:stx-none:stx-none:: +33:ceph-manager:ceph-manager-1.0-5.tis.x86_64.rpm:none::stx-none:stx-none:: +34:cgcs-patch:cgcs-patch-1.0-27.tis.x86_64.rpm:none::stx-none:stx-none:: +35:cgcs-patch-agent:cgcs-patch-agent-1.0-27.tis.x86_64.rpm:none::stx-none:stx-none:: +36:cgcs-patch-controller:cgcs-patch-controller-1.0-27.tis.x86_64.rpm:none::stx-none:stx-none:: +37:cgcs-users:cgcs-users-1.0-0.tis.2.x86_64.rpm:none::stx-none:stx-none:: +38:cgts-client:cgts-client-1.0-67.tis.x86_64.rpm:none::stx-none:stx-none:: +39:checkpolicy:checkpolicy-2.5-8.el7.x86_64.rpm:checkpolicy:2.8:stx-none:stx-none:: +40:chkconfig:chkconfig-1.7.4-1.el7.x86_64.rpm:chkconfig:1.3.58:stx-none:stx-none:: +41:cifs-utils:cifs-utils-6.2-10.el7.x86_64.rpm:cifs-utils:6.7:stx-none:stx-none:: +42:cloud-provider-openstack:cloud-provider-openstack-1.13.1-1.tis.0.x86_64.rpm:none::stx-none:stx-none:: +43:collectd:collectd-5.8.0-4.el7.x86_64.rpm:collectd:5.8.0:stx-none:stx-none:: +44:collectd-extensions:collectd-extensions-1.0-0.tis.12.x86_64.rpm:none::stx-none:stx-none:: +45:collector:collector-1.0-27.tis.x86_64.rpm:none::stx-none:stx-none:: +46:config-gate:config-gate-1.0-0.tis.x86_64.rpm:none::stx-none:stx-none:: +47:config-gate-worker:config-gate-worker-1.0-0.tis.x86_64.rpm:none::stx-none:stx-none:: +48:conntrack-tools:conntrack-tools-1.4.4-4.el7.x86_64.rpm:conntrack-tools:1.4.4:stx-none:stx-none:: +49:containerd.io:containerd.io-1.2.5-3.1.el7.x86_64.rpm:none::stx-none:stx-none:: +50:containernetworking-cni:containernetworking-cni-0.5.1-1.el7.x86_64.rpm:cni:0.6.0:stx-none:stx-none:: +51:container-selinux:container-selinux-2.74-1.el7.noarch.rpm:none::stx-none:stx-none:: +52:controllerconfig:controllerconfig-1.0-151.tis.x86_64.rpm:none::stx-none:stx-none:: +53:coreutils:coreutils-8.22-23.el7.x86_64.rpm:coreutils:8.3:stx-none:stx-none:: +54:cpio:cpio-2.11-27.el7.x86_64.rpm:cpio:2.12:stx-none:stx-none:: +55:cracklib:cracklib-2.9.0-11.el7.x86_64.rpm,cracklib-dicts-2.9.0-11.el7.x86_64.rpm:cracklib:2.9.5:stx-none:stx-none:: +56:createrepo:createrepo-0.9.9-28.el7.noarch.rpm:createrepo-c:0.11.1+gitX:stx-none:stx-none:: +57:cronie:cronie-1.4.11-20.el7_6.x86_64.rpm,cronie-anacron-1.4.11-20.el7_6.x86_64.rpm:cronie:1.5.2:stx-none:stx-none:: +58:crontabs:crontabs-1.11-6.20121102git.el7.noarch.rpm:none::stx-none:stx-none:: +59:cryptsetup:cryptsetup-2.0.3-3.el7.x86_64.rpm,cryptsetup-libs-2.0.3-3.el7.x86_64.rpm:cryptsetup:2.0.4:stx-none:stx-none:: +60:cups-libs:cups-libs-1.6.3-35.el7.x86_64.rpm:cups:2.2.8:stx-none:stx-none:: +61:curl:curl-7.29.0-51.el7.x86_64.rpm:curl:7.61.0:stx-none:stx-none:: +62:cyrus-sasl:cyrus-sasl-2.1.26-23.el7.x86_64.rpm,cyrus-sasl-gssapi-2.1.26-23.el7.x86_64.rpm,cyrus-sasl-lib-2.1.26-23.el7.x86_64.rpm:cyrus-sasl:2.1.27:stx-none:stx-none:: +63:dbus:dbus-1.10.24-12.el7.x86_64.rpm,dbus-libs-1.10.24-12.el7.x86_64.rpm:dbus:1.12.10:stx-none:stx-none:: +64:dbus-glib:dbus-glib-0.100-7.el7.x86_64.rpm:dbus-glib:0.11:stx-none:stx-none:: +65:dbus-python:dbus-python-1.1.1-9.el7.x86_64.rpm:python-dbus:1.2.8:stx-none:stx-none:: +66:deltarpm:deltarpm-3.6-3.el7.x86_64.rpm:none::stx-none:stx-none:: +67:device-mapper:device-mapper-1.02.146-4.el7.x86_64.rpm,device-mapper-event-1.02.146-4.el7.x86_64.rpm,device-mapper-event-libs-1.02.146-4.el7.x86_64.rpm,device-mapper-libs-1.02.146-4.el7.x86_64.rpm:none::stx-none:stx-none:: +68:device-mapper-multipath:device-mapper-multipath-0.4.9-119.el7.x86_64.rpm,device-mapper-multipath-libs-0.4.9-119.el7.x86_64.rpm:multipath-tools:0.7.7:stx-none:stx-none:: +69:device-mapper-persistent-data:device-mapper-persistent-data-0.7.3-3.el7.x86_64.rpm:none::stx-none:stx-none:: +70:dhcp:dhcp-4.2.5-68.el7.centos.1.tis.9.x86_64.rpm,dhclient-4.2.5-68.el7.centos.1.tis.9.x86_64.rpm,dhcp-common-4.2.5-68.el7.centos.1.tis.9.x86_64.rpm,dhcp-libs-4.2.5-68.el7.centos.1.tis.9.x86_64.rpm:dhcp:4.4.1:stx-none:stx-none:: +71:dhcp-config:dhcp-config-1.0-2.tis.noarch.rpm:none::stx-none:stx-none:: +72:diffutils:diffutils-3.3-4.el7.x86_64.rpm:diffutils:3.6:stx-none:stx-none:: +73:distributedcloud-client-dcmanagerclient:distributedcloud-client-dcmanagerclient-1.0.0-1.tis.19.noarch.rpm:none::stx-none:stx-none:: +74:distributedcloud-dcdbsync:distributedcloud-dcdbsync-1.0.0-1.tis.66.noarch.rpm:none::stx-none:stx-none:: +75:distributedcloud-dcmanager:distributedcloud-dcmanager-1.0.0-1.tis.66.noarch.rpm:none::stx-none:stx-none:: +76:distributedcloud-dcorch:distributedcloud-dcorch-1.0.0-1.tis.66.noarch.rpm:none::stx-none:stx-none:: +77:dmidecode:dmidecode-3.1-2.el7.x86_64.rpm:dmidecode:3.1:stx-none:stx-none:: +78:dnsmasq:dnsmasq-2.76-7.el7.tis.7.x86_64.rpm,dnsmasq-utils-2.76-7.el7.tis.7.x86_64.rpm:dnsmasq:2.79:stx-none:stx-none:: +79:dnsmasq-config:dnsmasq-config-1.0-1.tis.noarch.rpm:none::stx-none:stx-none:: +80:docker-ce:docker-ce-18.09.6-3.el7.x86_64.rpm,docker-ce-cli-18.09.6-3.el7.x86_64.rpm:docker-ce:18.09.0-ce+git6e632f7fc395d15bce46f426086e91c01598cf59:stx-none:stx-none:: +81:docker-config:docker-config-1.0-2.tis.noarch.rpm:none::stx-none:stx-none:: +82:docker-distribution:docker-distribution-2.6.2-1.tis.0.x86_64.rpm:docker-distribution:v2.6.2:stx-none:stx-none:: +83:docker-forward-journald:docker-forward-journald-1.10.3-44.el7.centos.x86_64.rpm:none::stx-none:stx-none:: +84:dosfstools:dosfstools-3.0.20-10.el7.x86_64.rpm:dosfstools:4.1:stx-none:stx-none:: +85:dpkg:dpkg-1.18.24-0.tis.1.x86_64.rpm:dpkg:1.18.24:stx-none:stx-none:: +86:dracut:dracut-033-554.el7.x86_64.rpm,dracut-config-rescue-033-554.el7.x86_64.rpm,dracut-network-033-554.el7.x86_64.rpm:dracut:49:stx-none:stx-none:: +87:drbd:drbd-8.4.3-0.tis.7.x86_64.rpm,drbd-bash-completion-8.4.3-0.tis.7.x86_64.rpm,drbd-heartbeat-8.4.3-0.tis.7.x86_64.rpm,drbd-pacemaker-8.4.3-0.tis.7.x86_64.rpm,drbd-udev-8.4.3-0.tis.7.x86_64.rpm:drbd:9.0.8-1:stx-none:stx-none:: +88:drbd-utils:drbd-utils-8.4.3-0.tis.7.x86_64.rpm:drbd-utils:9.5.0:stx-none:stx-none:: +89:e2fsprogs:e2fsprogs-1.42.9-13.el7.x86_64.rpm,e2fsprogs-libs-1.42.9-13.el7.x86_64.rpm:e2fsprogs:1.44.3:stx-none:stx-none:: +90:ebtables:ebtables-2.0.10-16.el7.x86_64.rpm:ebtables:2.0.10-4:stx-none:stx-none:: +91:efibootmgr:efibootmgr-17-2.el7.x86_64.rpm:efibootmgr:0.16:stx-none:stx-none:: +92:efivar-libs:efivar-libs-36-11.el7.x86_64.rpm:efivar:0.36:stx-none:stx-none:: +93:elfutils-libs:elfutils-libs-0.172-2.el7.x86_64.rpm,elfutils-default-yama-scope-0.172-2.el7.noarch.rpm,elfutils-libelf-0.172-2.el7.x86_64.rpm:elfutils:0.175:stx-none:stx-none:: +94:enable-dev-patch:enable-dev-patch-1.0-1.tis.x86_64.rpm:none::stx-none:stx-none::This could be just one source package +95:erlang-asn1:erlang-asn1-18.3.4.4-2.el7.x86_64.rpm:none::stx-none:stx-none:: +96:erlang-compiler:erlang-compiler-18.3.4.4-2.el7.x86_64.rpm:none::stx-none:stx-none:: +97:erlang-crypto:erlang-crypto-18.3.4.4-2.el7.x86_64.rpm:none::stx-none:stx-none:: +98:erlang-eldap:erlang-eldap-18.3.4.4-2.el7.x86_64.rpm:none::stx-none:stx-none:: +99:erlang-erts:erlang-erts-18.3.4.4-2.el7.x86_64.rpm:none::stx-none:stx-none:: +100:erlang-hipe:erlang-hipe-18.3.4.4-2.el7.x86_64.rpm:none::stx-none:stx-none:: +101:erlang-inets:erlang-inets-18.3.4.4-2.el7.x86_64.rpm:none::stx-none:stx-none:: +102:erlang-kernel:erlang-kernel-18.3.4.4-2.el7.x86_64.rpm:none::stx-none:stx-none:: +103:erlang-mnesia:erlang-mnesia-18.3.4.4-2.el7.x86_64.rpm:none::stx-none:stx-none:: +104:erlang-os_mon:erlang-os_mon-18.3.4.4-2.el7.x86_64.rpm:none::stx-none:stx-none:: +105:erlang-otp_mibs:erlang-otp_mibs-18.3.4.4-2.el7.x86_64.rpm:none::stx-none:stx-none:: +106:erlang-public_key:erlang-public_key-18.3.4.4-2.el7.x86_64.rpm:none::stx-none:stx-none:: +107:erlang-runtime_tools:erlang-runtime_tools-18.3.4.4-2.el7.x86_64.rpm:none::stx-none:stx-none:: +108:erlang-sasl:erlang-sasl-18.3.4.4-2.el7.x86_64.rpm:none::stx-none:stx-none:: +109:erlang-sd_notify:erlang-sd_notify-0.1-9.el7.x86_64.rpm:none::stx-none:stx-none:: +110:erlang-snmp:erlang-snmp-18.3.4.4-2.el7.x86_64.rpm:none::stx-none:stx-none:: +111:erlang-ssl:erlang-ssl-18.3.4.4-2.el7.x86_64.rpm:none::stx-none:stx-none:: +112:erlang-stdlib:erlang-stdlib-18.3.4.4-2.el7.x86_64.rpm:none::stx-none:stx-none:: +113:erlang-syntax_tools:erlang-syntax_tools-18.3.4.4-2.el7.x86_64.rpm:none::stx-none:stx-none:: +114:erlang-tools:erlang-tools-18.3.4.4-2.el7.x86_64.rpm:none::stx-none:stx-none:: +115:erlang-xmerl:erlang-xmerl-18.3.4.4-2.el7.x86_64.rpm:none::stx-none:stx-none:: +116:etcd:etcd-3.2.24-1.tis.1.x86_64.rpm:etcd:3.3.9+gitX:stx-none:stx-none:: +117:ethtool:ethtool-4.8-9.el7.x86_64.rpm:ethtool:4.19:stx-none:stx-none:: +118:eventlog:eventlog-0.2.13-4.el7.x86_64.rpm:none::stx-none:stx-none:: +119:expat:expat-2.1.0-10.el7_3.x86_64.rpm:expat:2.2.6:stx-none:stx-none:: +120:expect:expect-5.45-14.el7_1.x86_64.rpm:expect:5.45.4:stx-none:stx-none:: +121:facter:facter-2.4.4-4.el7.tis.4.x86_64.rpm:facter:2.5.0:stx-none:stx-none:: +122:file:file-5.11-35.el7.x86_64.rpm,file-libs-5.11-35.el7.x86_64.rpm:file:5.34:stx-none:stx-none:: +123:filesystem:filesystem-3.2-25.el7.x86_64.rpm:none::stx-none:stx-none:: +124:filesystem-scripts:filesystem-scripts-1.0-2.tis.x86_64.rpm:none::stx-none:stx-none:: +125:findutils:findutils-4.5.11-6.el7.x86_64.rpm:findutils:4.6.0:stx-none:stx-none:: +126:fipscheck:fipscheck-1.4.1-6.el7.x86_64.rpm,fipscheck-lib-1.4.1-6.el7.x86_64.rpm:none::stx-none:stx-none:: +127:firewalld:firewalld-0.5.3-5.el7.noarch.rpm,firewalld-filesystem-0.5.3-5.el7.noarch.rpm:none::stx-none:stx-none:: +128:flac-libs:flac-libs-1.3.0-5.el7_1.x86_64.rpm:flac:1.3.2:stx-none:stx-none:: +129:fm-api:fm-api-1.0-14.tis.x86_64.rpm:none::stx-none:stx-none:: +130:fm-common:fm-common-1.0-9.tis.x86_64.rpm:none::stx-none:stx-none:: +131:fm-doc:fm-doc-1.0-16.tis.x86_64.rpm:none::stx-none:stx-none:: +132:fm-mgr:fm-mgr-1.0-6.tis.x86_64.rpm:none::stx-none:stx-none:: +133:fm-rest-api:fm-rest-api-1.0-3.tis.x86_64.rpm:none::stx-none:stx-none:: +134:fontawesome-fonts:fontawesome-fonts-4.4.0-1.el7.noarch.rpm:none::stx-none:stx-none:: +135:fontawesome-fonts-web:fontawesome-fonts-web-4.4.0-1.el7.noarch.rpm:none::stx-none:stx-none:: +136:fontpackages-filesystem:fontpackages-filesystem-1.44-8.el7.noarch.rpm:none::stx-none:stx-none:: +137:freetype:freetype-2.8-12.el7.x86_64.rpm:freetype:2.9.1:stx-none:stx-none:: +138:fuse:fuse-2.9.2-11.el7.x86_64.rpm,fuse-libs-2.9.2-11.el7.x86_64.rpm:fuse:2.9.8:stx-none:stx-none:: +139:gamin:gamin-0.1.10-16.el7.x86_64.rpm:none::stx-none:stx-none:: +140:gawk:gawk-4.0.2-4.el7_3.1.x86_64.rpm:gawk:4.2.1:stx-none:stx-none:: +141:gdb:gdb-7.6.1-114.el7.x86_64.rpm:gdb:8.2:stx-none:stx-none:: +142:gdbm:gdbm-1.10-8.el7.x86_64.rpm:gdbm:1.18:stx-none:stx-none:: +143:gdisk:gdisk-0.8.10-2.el7.x86_64.rpm:none::stx-none:stx-none:: +144:GeoIP:GeoIP-1.5.0-13.el7.x86_64.rpm:geoip:1.6.12:stx-none:stx-none:: +145:gettext:gettext-0.19.8.1-2.el7.x86_64.rpm,gettext-libs-0.19.8.1-2.el7.x86_64.rpm:gettext:0.19.8.1:stx-none:stx-none:: +146:glib2:glib2-2.56.1-2.el7.x86_64.rpm:glib-2.0:2.58.0:stx-none:stx-none:: +147:glibc:glibc-2.17-260.el7.x86_64.rpm,glibc-common-2.17-260.el7.x86_64.rpm:glibc:2.28:stx-none:stx-none:: +148:glib-networking:glib-networking-2.56.1-1.el7.x86_64.rpm:glib-networking:2.54.1:stx-none:stx-none:: +149:glusterfs:glusterfs-5.2-1.el7.x86_64.rpm,glusterfs-api-5.2-1.el7.x86_64.rpm,glusterfs-cli-5.2-1.el7.x86_64.rpm,glusterfs-client-xlators-5.2-1.el7.x86_64.rpm,glusterfs-libs-5.2-1.el7.x86_64.rpm:glusterfs:3.11.1:stx-none:stx-none:: +150:gmp:gmp-6.0.0-15.el7.x86_64.rpm:gmp:6.1.2:stx-none:stx-none:: +151:gnupg2:gnupg2-2.0.22-5.el7_5.x86_64.rpm:gnupg:2.2.12:stx-none:stx-none:: +152:gnutls:gnutls-3.3.29-8.el7.x86_64.rpm,gnutls-dane-3.3.29-8.el7.x86_64.rpm,gnutls-utils-3.3.29-8.el7.x86_64.rpm:gnutls:3.6.4:stx-none:stx-none:: +153:gobject-introspection:gobject-introspection-1.56.1-1.el7.x86_64.rpm:gobject-introspection:1.58.0:stx-none:stx-none:: +154:gperftools-libs:gperftools-libs-2.6.1-1.el7.x86_64.rpm:gperftools:2.7:stx-none:stx-none:: +155:gpgme:gpgme-1.3.2-5.el7.x86_64.rpm:gpgme:1.11.1:stx-none:stx-none:: +156:gpm-libs:gpm-libs-1.20.7-5.el7.x86_64.rpm:gpm:1.99.7:stx-none:stx-none:: +157:grep:grep-2.20-3.el7.x86_64.rpm:grep:3.1:stx-none:stx-none:: +158:groff-base:groff-base-1.22.2-8.el7.x86_64.rpm:groff:1.22.3:stx-none:stx-none:: +159:grub2:grub2-2.02-0.76.el7.centos.tis.12.x86_64.rpm,grub2-common-2.02-0.76.el7.centos.tis.12.noarch.rpm,grub2-pc-2.02-0.76.el7.centos.tis.12.x86_64.rpm,grub2-pc-modules-2.02-0.76.el7.centos.tis.12.noarch.rpm,grub2-tools-2.02-0.76.el7.centos.tis.12.x86_64.rpm,grub2-tools-extra-2.02-0.76.el7.centos.tis.12.x86_64.rpm,grub2-tools-minimal-2.02-0.76.el7.centos.tis.12.x86_64.rpm:grub:2.02:stx-none:stx-none:: +160:grub2-efi-x64:grub2-efi-x64-2.02-0.76.el7.centos.tis.12.x86_64.rpm,grub2-efi-x64-modules-2.02-0.76.el7.centos.tis.12.noarch.rpm,grub2-efi-x64-pxeboot-2.02-0.76.el7.centos.tis.12.x86_64.rpm:grub-efi:2.02:stx-none:stx-none:: +161:grubby:grubby-8.28-25.el7.tis.3.x86_64.rpm:grubby:8.4:stx-none:stx-none:: +162:gsettings-desktop-schemas:gsettings-desktop-schemas-3.28.0-2.el7.x86_64.rpm:gsettings-desktop-schemas:3.28.0:stx-none:stx-none:: +163:gsm:gsm-1.0.13-11.el7.x86_64.rpm:none::stx-none:stx-none:: +164:gssproxy:gssproxy-0.7.0-21.el7.x86_64.rpm:none::stx-none:stx-none:: +165:gzip:gzip-1.5-10.el7.x86_64.rpm:gzip:1.9:stx-none:stx-none:: +166:haproxy:haproxy-1.5.18-8.el7.tis.8.x86_64.rpm:none::stx-none:stx-none:: +167:haproxy-config:haproxy-config-1.0-1.tis.noarch.rpm:none::stx-none:stx-none:: +168:hardlink:hardlink-1.0-19.el7.x86_64.rpm:none::stx-none:stx-none:: +169:helm:helm-2.13.1-0.tis.2.x86_64.rpm:none::stx-none:stx-none:: +170:hiera:hiera-1.3.4-5.el7.noarch.rpm:hiera:1.3.4:stx-none:stx-none:: +171:hostname:hostname-3.13-3.el7.x86_64.rpm:nss-myhostname:0.3:stx-none:stx-none:: +172:httpd:httpd-2.4.6-88.el7.centos.x86_64.rpm,httpd-tools-2.4.6-88.el7.centos.x86_64.rpm:apache2:2.4.34:stx-none:stx-none:: +173:hwdata:hwdata-0.252-9.1.el7.x86_64.rpm:hwdata:0.316+gitX:stx-none:stx-none:: +174:ima-evm-utils:ima-evm-utils-1.1-2.el7.x86_64.rpm:ima-evm-utils:1.0+gitX:stx-none:stx-none:: +175:influxdb:influxdb-0.9.5.1-1.x86_64.rpm:none::stx-none:stx-none:: +176:influxdb-extensions:influxdb-extensions-1.0-0.tis.2.x86_64.rpm:none::stx-none:stx-none:: +177:info:info-5.1-5.el7.x86_64.rpm:texinfo:6.5:stx-none:stx-none:: +178:initscripts:initscripts-9.49.46-1.el7.tis.18.x86_64.rpm:lsbinitscripts:9.79:stx-none:stx-none:: +179:initscripts-config:initscripts-config-1.0-0.tis.noarch.rpm:none::stx-none:stx-none:: +180:inventory:inventory-1.0-2.tis.x86_64.rpm:none::stx-none:stx-none:: +181:io-scheduler:io-scheduler-1.0-0.tis.x86_64.rpm:none::stx-none:stx-none:: +182:iotop:iotop-0.6-4.el7.noarch.rpm:iotop:0.6:stx-none:stx-none:: +183:iperf3:iperf3-3.1.7-2.el7.x86_64.rpm:iperf3:3.6:stx-none:stx-none:: +184:ipmitool:ipmitool-1.8.18-7.el7.x86_64.rpm:ipmitool:1.8.18:stx-none:stx-none:: +185:iproute:iproute-4.11.0-14.el7.x86_64.rpm:iproute2:4.19.0:stx-none:stx-none:: +186:iprutils:iprutils-2.4.16.1-1.el7.x86_64.rpm:none::stx-none:stx-none:: +187:ipset:ipset-6.38-3.el7_6.x86_64.rpm,ipset-libs-6.38-3.el7_6.x86_64.rpm:none::stx-none:stx-none:: +188:iptables:iptables-1.4.21-28.el7.x86_64.rpm,iptables-services-1.4.21-28.el7.x86_64.rpm,iptables-utils-1.4.21-28.el7.x86_64.rpm:iptables:1.6.2:stx-none:stx-none:: +189:iptables-config:iptables-config-1.0-0.tis.noarch.rpm:none::stx-none:stx-none:: +190:iputils:iputils-20160308-10.el7.x86_64.rpm:iputils:s20180629:stx-none:stx-none:: +191:ipxe-roms-qemu:ipxe-roms-qemu-20170123-1.git4e85b27.el7_4.1.noarch.rpm:none::stx-none:stx-none:: +192:iscsi-initiator-utils:iscsi-initiator-utils-6.2.0.874-10.el7.x86_64.rpm,iscsi-initiator-utils-iscsiuio-6.2.0.874-10.el7.x86_64.rpm:iscsi-initiator-utils:2.0.876+gitX:stx-none:stx-none:: +193:iscsi-initiator-utils-config:iscsi-initiator-utils-config-1.0-0.tis.noarch.rpm:none::stx-none:stx-none:: +194:isomd5sum:isomd5sum-1.0.10-5.el7.x86_64.rpm:isomd5sum:1.2.3:stx-none:stx-none:: +195:ivykis:ivykis-0.36.3-1.el7.x86_64.rpm:none::stx-none:stx-none:: +196:jansson:jansson-2.10-1.el7.x86_64.rpm:jansson:2.11:stx-none:stx-none:: +197:json-c:json-c-0.11-4.el7_0.x86_64.rpm:json-c:0.13.1:stx-none:stx-none:: +198:kbd:kbd-1.15.5-15.el7.x86_64.rpm,kbd-legacy-1.15.5-15.el7.noarch.rpm,kbd-misc-1.15.5-15.el7.noarch.rpm:kbd:2.0.4:stx-none:stx-none:: +199:kernel:kernel-3.10.0-957.12.2.el7.1.tis.x86_64.rpm,kernel-tools-3.10.0-957.12.2.el7.1.tis.x86_64.rpm,kernel-tools-libs-3.10.0-957.12.2.el7.1.tis.x86_64.rpm:linux-yocto:4.18.33:stx-none:stx-none:: +200:kernel-rt:kernel-rt-3.10.0-957.12.2.rt56.929.el7.tis.1.x86_64.rpm,kernel-rt-kvm-3.10.0-957.12.2.rt56.929.el7.tis.1.x86_64.rpm,kernel-rt-tools-3.10.0-957.12.2.rt56.929.el7.tis.1.x86_64.rpm,kernel-rt-tools-libs-3.10.0-957.12.2.rt56.929.el7.tis.1.x86_64.rpm:linux-yocto-rt:4.18.33:stx-none:stx-none:: +201:kexec-tools:kexec-tools-2.0.15-21.el7.x86_64.rpm:kexec-tools:2.0.17:stx-none:stx-none:: +202:keyutils:keyutils-1.5.8-3.el7.x86_64.rpm,keyutils-libs-1.5.8-3.el7.x86_64.rpm:keyutils:1.5.10:stx-none:stx-none:: +203:kmod:kmod-20-23.el7.x86_64.rpm:kmod:25+gitX:stx-none:stx-none:: +204:kmod-drbd:kmod-drbd-8.4.11-1.tis.0.x86_64.rpm,kmod-drbd-rt-8.4.11-1.tis.0.x86_64.rpm:drbd:9.0.8-1:stx-none:stx-none:: +205:kmod-misc:kmod-e1000e-3.4.2.1-0.tis.1.x86_64.rpm,kmod-e1000e-rt-3.4.2.1-0.tis.1.x86_64.rpm,kmod-i40e-2.7.29-0.tis.1.x86_64.rpm,kmod-i40e-rt-2.7.29-0.tis.1.x86_64.rpm,kmod-i40evf-3.6.15-0.tis.1.x86_64.rpm,kmod-i40evf-rt-3.6.15-0.tis.1.x86_64.rpm,kmod-ixgbe-5.5.5-0.tis.1.x86_64.rpm,kmod-ixgbe-rt-5.5.5-0.tis.1.x86_64.rpm,kmod-ixgbevf-4.5.3-0.tis.1.x86_64.rpm,kmod-ixgbevf-rt-4.5.3-0.tis.1.x86_64.rpm:kernel-modules:4.18.33:stx-none:stx-none:No: +206:kmod-integrity:kmod-integrity-4.12-0.tis.7.x86_64.rpm,kmod-integrity-rt-4.12-0.tis.7.x86_64.rpm:none::stx-none:stx-none:No: +207:kmod-libs:kmod-libs-20-23.el7.x86_64.rpm:kmod:25:stx-none:stx-none:: +208:kmod-tpm:kmod-tpm-4.12-0.tis.6.x86_64.rpm,kmod-tpm-rt-4.12-0.tis.6.x86_64.rpm:tpm2:2.0.0:stx-none:stx-none:: +209:kpartx:kpartx-0.4.9-119.el7.x86_64.rpm:none::stx-none:stx-none:: +210:krb5-libs:krb5-libs-1.15.1-34.el7.x86_64.rpm:krb5:1.16.1:stx-none:stx-none:: +211:kubernetes:kubernetes-1.13.5-1.tis.1.x86_64.rpm,kubernetes-client-1.13.5-1.tis.1.x86_64.rpm,kubernetes-kubeadm-1.13.5-1.tis.1.x86_64.rpm,kubernetes-master-1.13.5-1.tis.1.x86_64.rpm,kubernetes-node-1.13.5-1.tis.1.x86_64.rpm:kubernetes:1.12.0+gitd93ba8b6d1e2afcb30da3e354928ed00e6682223:stx-none:stx-none:: +212:ldapscripts:ldapscripts-2.0.8-0.tis.2.x86_64.rpm:none::stx-none:stx-none:: +213:less:less-458-9.el7.x86_64.rpm:less:530:stx-none:stx-none:: +214:leveldb:leveldb-1.12.0-11.el7.x86_64.rpm:leveldb:1.20+gitX:stx-none:stx-none:: +215:libacl:libacl-2.2.51-14.el7.x86_64.rpm:acl:2.2.52:stx-none:stx-none:: +216:libaio:libaio-0.3.109-13.el7.x86_64.rpm:libaio:0.3.111:stx-none:stx-none:: +217:libassuan:libassuan-2.1.0-3.el7.x86_64.rpm:libassuan:2.5.1:stx-none:stx-none:: +218:libasyncns:libasyncns-0.8-7.el7.x86_64.rpm:none::stx-none:stx-none:: +219:libattr:libattr-2.4.46-13.el7.x86_64.rpm:attr:2.4.47:stx-none:stx-none:: +220:libbasicobjects:libbasicobjects-0.1.1-32.el7.x86_64.rpm:none::stx-none:stx-none:: +221:libblkid:libblkid-2.23.2-59.el7.x86_64.rpm:none::stx-none:stx-none:: +222:libcacard:libcacard-2.5.2-2.1.el7.x86_64.rpm:none::stx-none:stx-none:: +223:libcap:libcap-2.22-9.el7.x86_64.rpm:libcap:2.25:stx-none:stx-none:: +224:libcap-ng:libcap-ng-0.7.5-4.el7.x86_64.rpm:libcap-ng:0.7.9:stx-none:stx-none:: +225:libcephfs2:libcephfs2-13.2.2-0.el7.tis.25.x86_64.rpm:none::stx-none:stx-none:: +226:libcgroup:libcgroup-0.41-20.el7.x86_64.rpm:libcgroup:0.41:stx-none:stx-none:: +227:libcollection:libcollection-0.7.0-32.el7.x86_64.rpm:none::stx-none:stx-none:: +228:libcom_err:libcom_err-1.42.9-13.el7.x86_64.rpm:none::stx-none:stx-none:: +229:libconfig:libconfig-1.4.9-5.el7.x86_64.rpm:libconfig:1.7.2:stx-none:stx-none:: +230:libcroco:libcroco-0.6.12-4.el7.x86_64.rpm:libcroco:0.6.12:stx-none:stx-none:: +231:libcurl:libcurl-7.29.0-51.el7.x86_64.rpm:curl:7.61.0:stx-none:stx-none:: +232:libdaemon:libdaemon-0.14-7.el7.x86_64.rpm:libdaemon:0.14:stx-none:stx-none:: +233:libdb:libdb-5.3.21-24.el7.x86_64.rpm,libdb-utils-5.3.21-24.el7.x86_64.rpm:db:5.3.28:stx-none:stx-none:: +234:libdbi:libdbi-0.8.4-6.el7.x86_64.rpm:libdbi:0.9.0:stx-none:stx-none:: +235:libdrm:libdrm-2.4.91-3.el7.x86_64.rpm:libdrm:2.4.94:stx-none:stx-none:: +236:libedit:libedit-3.0-12.20121213cvs.el7.x86_64.rpm:libedit:20180525-3.1:stx-none:stx-none:: +237:libestr:libestr-0.1.9-2.el7.x86_64.rpm:libestr:0.1.10:stx-none:stx-none:: +238:libev:libev-4.15-7.el7.x86_64.rpm:libev:4.24:stx-none:stx-none:: +239:libevent:libevent-2.0.21-4.el7.tis.2.x86_64.rpm:libevent:2.1.8:stx-none:stx-none:: +240:libfdt-devel:libfdt-devel-1.4.4-0.tis.1.x86_64.rpm:none::stx-none:stx-none:: +241:libffi:libffi-3.0.13-18.el7.x86_64.rpm:libffi:3.2.1:stx-none:stx-none:: +242:libgcc:libgcc-4.8.5-36.el7.x86_64.rpm:libgcc:8.2.0:stx-none:stx-none:: +243:libgcrypt:libgcrypt-1.5.3-14.el7.x86_64.rpm:libgcrypt:1.8.4:stx-none:stx-none:: +244:libgomp:libgomp-4.8.5-36.el7.x86_64.rpm:none::stx-none:stx-none:: +245:libgpg-error:libgpg-error-1.12-3.el7.x86_64.rpm:libgpg-error:1.32:stx-none:stx-none:: +246:libgudev1:libgudev1-219-62.el7_6.5.tis.11.x86_64.rpm:libgudev:232:stx-none:stx-none:: +247:libibumad:libibumad-45mlnx1-1.45101.tis.1.x86_64.rpm:none::stx-none:stx-none:: +248:libibverbs:libibverbs-45mlnx1-1.45101.tis.1.x86_64.rpm:libibverbs:1.1.7:stx-none:stx-none:: +249:libICE:libICE-1.0.9-9.el7.x86_64.rpm:libice:1.0.9:stx-none:stx-none:: +250:libidn:libidn-1.28-4.el7.x86_64.rpm:libidn:1.35:stx-none:stx-none:: +251:libini_config:libini_config-1.3.1-32.el7.x86_64.rpm:none::stx-none:stx-none:: +252:libjpeg-turbo:libjpeg-turbo-1.2.90-6.el7.x86_64.rpm:libjpeg-turbo:2.0.0:stx-none:stx-none:: +253:libldb:libldb-1.3.4-1.el7.x86_64.rpm:libldb:1.4.1:stx-none:stx-none:: +254:libmnl:libmnl-1.0.3-7.el7.x86_64.rpm:libmnl:1.0.4:stx-none:stx-none:: +255:libmodman:libmodman-2.0.1-8.el7.x86_64.rpm:none::stx-none:stx-none:: +256:libmount:libmount-2.23.2-59.el7.x86_64.rpm:none::stx-none:stx-none:: +257:libndp:libndp-1.2-7.el7.x86_64.rpm:libndp:1.7:stx-none:stx-none:: +258:libnet:libnet-1.1.6-7.el7.x86_64.rpm:libnet:1.2-rc3:stx-none:stx-none:: +259:libnetfilter_conntrack:libnetfilter_conntrack-1.0.6-1.el7_3.x86_64.rpm:libnetfilter-conntrack:1.0.6:stx-none:stx-none:: +260:libnetfilter_cthelper:libnetfilter_cthelper-1.0.0-9.el7.x86_64.rpm:libnetfilter-cthelper:1.0.0:stx-none:stx-none:: +261:libnetfilter_cttimeout:libnetfilter_cttimeout-1.0.0-6.el7.x86_64.rpm:libnetfilter-cttimeout:1.0.0:stx-none:stx-none:: +262:libnetfilter_queue:libnetfilter_queue-1.0.2-2.el7_2.x86_64.rpm:libnetfilter-queue:1.0.2+git981025e103d887fb6a9c9bb49c74ec323108d098:stx-none:stx-none:: +263:libnfnetlink:libnfnetlink-1.0.1-4.el7.x86_64.rpm:libnfnetlink:1.0.1:stx-none:stx-none:: +264:libnfsidmap:libnfsidmap-0.25-19.el7.x86_64.rpm:none::stx-none:stx-none:: +265:libnl:libnl-1.1.4-3.el7.x86_64.rpm:libnl:3.4.0:stx-none:stx-none:: +266:libnl3:libnl3-3.2.28-4.el7.x86_64.rpm,libnl3-cli-3.2.28-4.el7.x86_64.rpm:libnl:3.4.0:stx-none:stx-none:: +267:liboath:liboath-2.4.1-9.el7.x86_64.rpm:oath:2.6.2:stx-none:stx-none:: +268:libogg:libogg-1.3.0-7.el7.x86_64.rpm:libogg:1.3.3:stx-none:stx-none:: +269:libpath_utils:libpath_utils-0.2.1-32.el7.x86_64.rpm:none::stx-none:stx-none:: +270:libpcap:libpcap-1.5.3-11.el7.x86_64.rpm:libpcap:1.8.1:stx-none:stx-none:: +271:libpciaccess:libpciaccess-0.14-1.el7.x86_64.rpm:libpciaccess:0.14:stx-none:stx-none:: +272:libpipeline:libpipeline-1.2.3-3.el7.x86_64.rpm:libpipeline:1.5.0:stx-none:stx-none:: +273:libpng:libpng-1.5.13-7.el7_2.x86_64.rpm:libpng:1.6.35:stx-none:stx-none:: +274:libproxy:libproxy-0.4.11-11.el7.x86_64.rpm:libproxy:0.4.15:stx-none:stx-none:: +275:libpwquality:libpwquality-1.2.3-5.el7.x86_64.rpm:libpwquality:1.4.0:stx-none:stx-none:: +276:librados2:librados2-13.2.2-0.el7.tis.25.x86_64.rpm:none::stx-none:stx-none:: +277:libradosstriper1:libradosstriper1-13.2.2-0.el7.tis.25.x86_64.rpm:none::stx-none:stx-none:: +278:librbd1:librbd1-13.2.2-0.el7.tis.25.x86_64.rpm:none::stx-none:stx-none:: +279:librdmacm:librdmacm-45mlnx1-1.45101.tis.1.x86_64.rpm:librdmacm:1.0.17:stx-none:stx-none:: +280:libref_array:libref_array-0.1.5-32.el7.x86_64.rpm:none::stx-none:stx-none:: +281:libreport-filesystem:libreport-filesystem-2.1.11-42.el7.centos.x86_64.rpm:none::stx-none:stx-none:: +282:librgw2:librgw2-13.2.2-0.el7.tis.25.x86_64.rpm:none::stx-none:stx-none:: +283:libseccomp:libseccomp-2.3.1-3.el7.x86_64.rpm:libseccomp:2.3.3:stx-none:stx-none:: +284:libselinux:libselinux-2.5-14.1.el7.x86_64.rpm,libselinux-python-2.5-14.1.el7.x86_64.rpm,libselinux-ruby-2.5-14.1.el7.x86_64.rpm,libselinux-utils-2.5-14.1.el7.x86_64.rpm:libselinux:2.8:stx-none:stx-none:: +285:libsemanage:libsemanage-2.5-14.el7.x86_64.rpm,libsemanage-python-2.5-14.el7.x86_64.rpm:libsemanage:2.8:stx-none:stx-none:: +286:libsepol:libsepol-2.5-10.el7.x86_64.rpm:libsepol:2.8:stx-none:stx-none:: +287:libSM:libSM-1.2.2-2.el7.x86_64.rpm:libsm:1.2.2:stx-none:stx-none:: +288:libsmartcols:libsmartcols-2.23.2-59.el7.x86_64.rpm:none::stx-none:stx-none:: +289:libsndfile:libsndfile-1.0.25-10.el7.x86_64.rpm:libsndfile1:1.0.28:stx-none:stx-none:: +290:libss:libss-1.42.9-13.el7.x86_64.rpm:none::stx-none:stx-none:: +291:libssh2:libssh2-1.4.3-12.el7.x86_64.rpm:libssh2:1.8.0:stx-none:stx-none:: +292:libstdc++:libstdc++-4.8.5-36.el7.x86_64.rpm:libstdc++:8.2.0:stx-none:stx-none:: +293:libsysfs:libsysfs-2.1.0-16.el7.x86_64.rpm:sysfsutils:2.1.0:stx-none:stx-none:: +294:libtalloc:libtalloc-2.1.13-1.el7.x86_64.rpm:libtalloc:2.1.14:stx-none:stx-none:: +295:libtasn1:libtasn1-4.10-1.el7.x86_64.rpm:libtasn1:4.13:stx-none:stx-none:: +296:libtdb:libtdb-1.3.15-1.el7.x86_64.rpm:libtdb:1.3.16:stx-none:stx-none:: +297:libteam:libteam-1.27-5.el7.x86_64.rpm:libteam:1.27:stx-none:stx-none:: +298:libtevent:libtevent-0.9.36-1.el7.x86_64.rpm:libtevent:0.9.37:stx-none:stx-none:: +299:libtirpc:libtirpc-0.2.4-0.15.el7.x86_64.rpm:libtirpc:1.0.3:stx-none:stx-none:: +300:libtomcrypt:libtomcrypt-1.17-33.20170623gitcd6e602.el7.x86_64.rpm:none::stx-none:stx-none:: +301:libtommath:libtommath-1.0-8.el7.x86_64.rpm:none::stx-none:stx-none:: +302:libtool-ltdl:libtool-ltdl-2.4.2-22.el7_3.x86_64.rpm:libtool:2.4.6:stx-none:stx-none:: +303:libtpms:libtpms-0.6.0-2.tis.0.x86_64.rpm:none::stx-none:stx-none:: +304:libunistring:libunistring-0.9.3-9.el7.x86_64.rpm:libunistring:0.9.10:stx-none:stx-none:: +305:libusbx:libusbx-1.0.21-1.el7.x86_64.rpm:none::stx-none:stx-none:: +306:libuser:libuser-0.60-9.el7.x86_64.rpm:libuser:0.62:stx-none:stx-none:: +307:libutempter:libutempter-1.1.6-4.el7.x86_64.rpm:libutempter:1.1.6-alt2+gitX:stx-none:stx-none:: +308:libuuid:libuuid-2.23.2-59.el7.x86_64.rpm:none::stx-none:stx-none:: +309:libverto:libverto-0.2.5-4.el7.x86_64.rpm,libverto-libevent-0.2.5-4.el7.x86_64.rpm,libverto-tevent-0.2.5-4.el7.x86_64.rpm:none::stx-none:stx-none:: +310:libvirt:libvirt-4.7.0-1.tis.100.x86_64.rpm,libvirt-bash-completion-4.7.0-1.tis.100.x86_64.rpm,libvirt-client-4.7.0-1.tis.100.x86_64.rpm,libvirt-daemon-4.7.0-1.tis.100.x86_64.rpm,libvirt-docs-4.7.0-1.tis.100.x86_64.rpm,libvirt-libs-4.7.0-1.tis.100.x86_64.rpm:libvirt:4.7.0:stx-none:stx-none:: +311:libvirt-daemon-config-network:libvirt-daemon-config-network-4.7.0-1.tis.100.x86_64.rpm:none::stx-none:stx-none:: +312:libvirt-daemon-config-nwfilter:libvirt-daemon-config-nwfilter-4.7.0-1.tis.100.x86_64.rpm:none::stx-none:stx-none:: +313:libvirt-daemon-driver-interface:libvirt-daemon-driver-interface-4.7.0-1.tis.100.x86_64.rpm:none::stx-none:stx-none:: +314:libvirt-daemon-driver-lxc:libvirt-daemon-driver-lxc-4.7.0-1.tis.100.x86_64.rpm:none::stx-none:stx-none:: +315:libvirt-daemon-driver-network:libvirt-daemon-driver-network-4.7.0-1.tis.100.x86_64.rpm:none::stx-none:stx-none:: +316:libvirt-daemon-driver-nodedev:libvirt-daemon-driver-nodedev-4.7.0-1.tis.100.x86_64.rpm:none::stx-none:stx-none:: +317:libvirt-daemon-driver-nwfilter:libvirt-daemon-driver-nwfilter-4.7.0-1.tis.100.x86_64.rpm:none::stx-none:stx-none:: +318:libvirt-daemon-driver-qemu:libvirt-daemon-driver-qemu-4.7.0-1.tis.100.x86_64.rpm:none::stx-none:stx-none:: +319:libvirt-daemon-driver-secret:libvirt-daemon-driver-secret-4.7.0-1.tis.100.x86_64.rpm:none::stx-none:stx-none:: +320:libvirt-daemon-driver-storage:libvirt-daemon-driver-storage-4.7.0-1.tis.100.x86_64.rpm:none::stx-none:stx-none:: +321:libvirt-daemon-driver-storage-core:libvirt-daemon-driver-storage-core-4.7.0-1.tis.100.x86_64.rpm:none::stx-none:stx-none:: +322:libvirt-daemon-driver-storage-disk:libvirt-daemon-driver-storage-disk-4.7.0-1.tis.100.x86_64.rpm:none::stx-none:stx-none:: +323:libvirt-daemon-driver-storage-gluster:libvirt-daemon-driver-storage-gluster-4.7.0-1.tis.100.x86_64.rpm:none::stx-none:stx-none:: +324:libvirt-daemon-driver-storage-iscsi:libvirt-daemon-driver-storage-iscsi-4.7.0-1.tis.100.x86_64.rpm:none::stx-none:stx-none:: +325:libvirt-daemon-driver-storage-logical:libvirt-daemon-driver-storage-logical-4.7.0-1.tis.100.x86_64.rpm:none::stx-none:stx-none:: +326:libvirt-daemon-driver-storage-mpath:libvirt-daemon-driver-storage-mpath-4.7.0-1.tis.100.x86_64.rpm:none::stx-none:stx-none:: +327:libvirt-daemon-driver-storage-rbd:libvirt-daemon-driver-storage-rbd-4.7.0-1.tis.100.x86_64.rpm:none::stx-none:stx-none:: +328:libvirt-daemon-driver-storage-scsi:libvirt-daemon-driver-storage-scsi-4.7.0-1.tis.100.x86_64.rpm:none::stx-none:stx-none:: +329:libvorbis:libvorbis-1.3.3-8.el7.1.x86_64.rpm:libvorbis:1.3.6:stx-none:stx-none:: +330:libwbclient:libwbclient-4.8.3-4.el7.x86_64.rpm:none::stx-none:stx-none:: +331:libX11:libX11-1.6.5-2.el7.x86_64.rpm,libX11-common-1.6.5-2.el7.noarch.rpm:libx11:1.6.6:stx-none:stx-none:: +332:libXau:libXau-1.0.8-2.1.el7.x86_64.rpm:libxau:1.0.8:stx-none:stx-none:: +333:libxcb:libxcb-1.13-1.el7.x86_64.rpm:libxcb:1.13:stx-none:stx-none:: +334:libXext:libXext-1.3.3-3.el7.x86_64.rpm:libxext:1.3.3:stx-none:stx-none:: +335:libXi:libXi-1.7.9-1.el7.x86_64.rpm:libxi:1.7.9:stx-none:stx-none:: +336:libxml2:libxml2-2.9.1-6.el7_2.3.x86_64.rpm,libxml2-python-2.9.1-6.el7_2.3.x86_64.rpm:libxml2:2.9.8:stx-none:stx-none:: +337:libxslt:libxslt-1.1.28-5.el7.x86_64.rpm:libxslt:1.1.32:stx-none:stx-none:: +338:libXtst:libXtst-1.2.3-1.el7.x86_64.rpm:libxtst:1.2.3:stx-none:stx-none:: +339:libyaml:libyaml-0.1.4-11.el7_0.x86_64.rpm:libyaml:0.2.1:stx-none:stx-none:: +340:lighttpd:lighttpd-1.4.52-1.el7.tis.7.x86_64.rpm:lighttpd:1.4.50:stx-none:stx-none:: +341:lighttpd-config:lighttpd-config-1.0-1.tis.noarch.rpm:none::stx-none:stx-none:: +342:lighttpd-fastcgi:lighttpd-fastcgi-1.4.52-1.el7.tis.7.x86_64.rpm:none::stx-none:stx-none:: +343:lighttpd-mod_geoip:lighttpd-mod_geoip-1.4.52-1.el7.tis.7.x86_64.rpm:none::stx-none:stx-none:: +344:lighttpd-mod_mysql_vhost:lighttpd-mod_mysql_vhost-1.4.52-1.el7.tis.7.x86_64.rpm:none::stx-none:stx-none:: +345:linux-firmware:linux-firmware-20180911-69.git85c5d90.el7.noarch.rpm:linux-firmware:0.0+gitX:stx-none:stx-none:: +346:linuxptp:linuxptp-1.8-6.el7.x86_64.rpm:linuxptp:1.8:stx-none:stx-none:: +347:lksctp-tools:lksctp-tools-1.0.17-2.el7.x86_64.rpm:lksctp-tools:1.0.18+gitX:stx-none:stx-none:: +348:lldpad:lldpad-1.0.1-3.git036e314.el7.x86_64.rpm:none::stx-none:stx-none:: +349:lldpd:lldpd-0.9.0-0.tis.4.x86_64.rpm:lldpd:0.9.8:stx-none:stx-none:: +350:lm_sensors-libs:lm_sensors-libs-3.4.0-6.20160601gitf9185e5.el7.x86_64.rpm:lmsensors:3.4.0:stx-none:stx-none:: +351:logmgmt:logmgmt-1.0-4.tis.x86_64.rpm:none::stx-none:stx-none:: +352:logrotate:logrotate-3.8.6-17.el7.tis.4.x86_64.rpm:logrotate:3.14.0:stx-none:stx-none:: +353:logrotate-config:logrotate-config-1.0-0.tis.noarch.rpm:none::stx-none:stx-none:: +354:lsof:lsof-4.87-6.el7.x86_64.rpm:lsof:4.91:stx-none:stx-none:: +355:lsscsi:lsscsi-0.27-6.el7.x86_64.rpm:lsscsi:0.3:stx-none:stx-none:: +356:lua:lua-5.1.4-15.el7.x86_64.rpm:lua:5.3.4:stx-none:stx-none:: +357:lvm2:lvm2-2.02.177-4.el7.x86_64.rpm,lvm2-libs-2.02.177-4.el7.x86_64.rpm:lvm2:2.02.180:stx-none:stx-none:: +358:lz4:lz4-1.7.5-2.el7.x86_64.rpm:lz4:1.8.2:stx-none:stx-none:: +359:lzo:lzo-2.06-8.el7.x86_64.rpm:lzo:2.1:stx-none:stx-none:: +360:lzop:lzop-1.03-10.el7.x86_64.rpm:lzop:1.03:stx-none:stx-none:: +361:mailcap:mailcap-2.1.41-2.el7.noarch.rpm:mailcap:2.1.48:stx-none:stx-none:: +362:mailx:mailx-12.5-19.el7.x86_64.rpm:mailx:12.5-5:stx-none:stx-none:: +363:make:make-3.82-23.el7.x86_64.rpm:make:3.81:stx-none:stx-none:: +364:man-db:man-db-2.6.3-11.el7.x86_64.rpm:man-db:2.8.3:stx-none:stx-none:: +365:mariadb-common:mariadb-common-10.1.28-1.el7.tis.15.x86_64.rpm,mariadb-config-10.1.28-1.el7.tis.15.x86_64.rpm,mariadb-libs-10.1.28-1.el7.tis.15.x86_64.rpm:mariadb:5.5.64:stx-none:stx-none:: +366:mcstrans:mcstrans-0.3.4-5.el7.x86_64.rpm:mcstrans:2.8:stx-none:stx-none:: +367:mdadm:mdadm-4.1-rc1_2.el7.x86_64.rpm:mdadm:4.1:stx-none:stx-none:: +368:mdi-common:mdi-common-1.4.57.0-4.el7.noarch.rpm,mdi-fonts-1.4.57.0-4.el7.noarch.rpm:none::stx-none:stx-none:: +369:memcached:memcached-1.4.39-1.el7.x86_64.rpm:memcached:1.5.10:stx-none:stx-none:: +370:memcached-custom:memcached-custom-1.0-1.tis.noarch.rpm:none::stx-none:stx-none:: +371:microcode_ctl:microcode_ctl-2.1-47.2.el7_6.x86_64.rpm:none::stx-none:stx-none:: +372:mlnx-ofa_kernel-modules:mlnx-ofa_kernel-modules-4.5-OFED.4.5.1.0.1.1.gb4fdfac.tis.1.x86_64.rpm:none::stx-none:stx-none:: +373:mlnx-ofa_kernel-rt-modules:mlnx-ofa_kernel-rt-modules-4.5-OFED.4.5.1.0.1.1.gb4fdfac.tis.1.x86_64.rpm:none::stx-none:stx-none:: +374:mlx4-config:mlx4-config-1.0.0-2.tis.x86_64.rpm:none::stx-none:stx-none:: +375:mod_wsgi:mod_wsgi-3.4-18.el7.x86_64.rpm:mod-wsgi:4.5.13:stx-none:stx-none:: +376:mokutil:mokutil-15-1.tis.2.x86_64.rpm:mokutil:0.3.0+gitX:stx-none:stx-none:: +377:monitor-tools:monitor-tools-1.0-0.tis.noarch.rpm:none::stx-none:stx-none:: +378:mozjs17:mozjs17-17.0.0-20.el7.x86_64.rpm:mozjs:52.9.1:stx-none:stx-none:: +379:mtce:mtce-1.0-152.tis.x86_64.rpm:none::stx-none:stx-none:: +380:mtce-compute:mtce-compute-1.0-7.tis.x86_64.rpm:none::stx-none:stx-none:: +381:mtce-control:mtce-control-1.0-7.tis.x86_64.rpm:none::stx-none:stx-none:: +382:mtce-guestAgent:mtce-guestAgent-1.0-142.tis.x86_64.rpm:none::stx-none:stx-none:: +383:mtce-guestServer:mtce-guestServer-1.0-142.tis.x86_64.rpm:none::stx-none:stx-none:: +384:mtce-hostw:mtce-hostw-1.0-152.tis.x86_64.rpm:none::stx-none:stx-none:: +385:mtce-hwmon:mtce-hwmon-1.0-152.tis.x86_64.rpm:none::stx-none:stx-none:: +386:mtce-lmon:mtce-lmon-1.0-152.tis.x86_64.rpm:none::stx-none:stx-none:: +387:mtce-pmon:mtce-pmon-1.0-152.tis.x86_64.rpm:none::stx-none:stx-none:: +388:mtce-storage:mtce-storage-1.0-5.tis.x86_64.rpm:none::stx-none:stx-none:: +389:mtools:mtools-4.0.18-5.el7.x86_64.rpm:mtools:4.0.18:stx-none:stx-none:: +390:MySQL-python:MySQL-python-1.2.5-1.el7.x86_64.rpm:none::stx-none:stx-none:: +391:namespace-utils:namespace-utils-1.0-0.tis.x86_64.rpm:none::stx-none:stx-none:: +392:ncurses:ncurses-5.9-14.20130511.el7_4.x86_64.rpm,ncurses-base-5.9-14.20130511.el7_4.noarch.rpm,ncurses-libs-5.9-14.20130511.el7_4.x86_64.rpm:ncurses:6.1+20180630:stx-none:stx-none:: +393:netcf-libs:netcf-libs-0.2.8-4.el7.x86_64.rpm:none::stx-none:stx-none:: +394:net-snmp:net-snmp-5.7.2-37.el7.tis.11.x86_64.rpm,net-snmp-libs-5.7.2-37.el7.tis.11.x86_64.rpm,net-snmp-agent-libs-5.7.2-37.el7.tis.11.x86_64.rpm,net-snmp-python-5.7.2-37.el7.tis.11.x86_64.rpm,net-snmp-utils-5.7.2-37.el7.tis.11.x86_64.rpm:net-snmp:5.8:stx-none:stx-none:: +395:net-snmp-config:net-snmp-config-1.0-0.tis.noarch.rpm:none::stx-none:stx-none:: +396:nettle:nettle-2.7.1-8.el7.x86_64.rpm:nettle:2.7.1:stx-none:stx-none:: +397:net-tools:net-tools-2.0-0.24.20131004git.el7.tis.2.x86_64.rpm:net-tools:1.60-26:stx-none:stx-none:: +398:newt:newt-0.52.15-4.el7.x86_64.rpm:libnewt:0.52.20:stx-none:stx-none:: +399:newt-python:newt-python-0.52.15-4.el7.x86_64.rpm:libnewt-python:0.52.20:stx-none:stx-none:: +400:nfscheck:nfscheck-1.0-0.tis.x86_64.rpm:none::stx-none:stx-none:: +401:nfs-utils:nfs-utils-1.3.0-0.61.el7.x86_64.rpm:nfs-utils:2.3.1:stx-none:stx-none:: +402:nfs-utils-config:nfs-utils-config-1.0-1.tis.noarch.rpm:none::stx-none:stx-none:: +403:nfv:nfv-1.0-75.tis.x86_64.rpm:none::stx-none:stx-none:: +404:nfv-client:nfv-client-1.0-75.tis.x86_64.rpm:none::stx-none:stx-none:: +405:nfv-common:nfv-common-1.0-75.tis.x86_64.rpm:none::stx-none:stx-none:: +406:nfv-plugins:nfv-plugins-1.0-75.tis.x86_64.rpm:none::stx-none:stx-none:: +407:nfv-tools:nfv-tools-1.0-75.tis.x86_64.rpm:none::stx-none:stx-none:: +408:nfv-vim:nfv-vim-1.0-75.tis.x86_64.rpm:none::stx-none:stx-none:: +409:nmap-ncat:nmap-ncat-6.40-16.el7.x86_64.rpm:none::stx-none:stx-none:: +410:novnc:novnc-0.6.2-1.el7.noarch.rpm:novnc:0.4+gitX:stx-none:stx-none:: +411:nscd:nscd-2.17-260.el7.x86_64.rpm:none::stx-none:stx-none:: +412:nspr:nspr-4.19.0-1.el7_5.x86_64.rpm:nspr:4.19:stx-none:stx-none:: +413:nss:nss-3.36.0-7.el7_5.x86_64.rpm,nss-softokn-3.36.0-5.el7_5.x86_64.rpm,nss-sysinit-3.36.0-7.el7_5.x86_64.rpm,nss-tools-3.36.0-7.el7_5.x86_64.rpm,nss-util-3.36.0-1.el7_5.x86_64.rpm,nss-softokn-freebl-3.36.0-5.el7_5.x86_64.rpm:nss:3.39:stx-none:stx-none:: +414:nss-pam-ldapd:nss-pam-ldapd-0.8.13-16.el7.x86_64.rpm:nss-pam-ldapd:0.9.8:stx-none:stx-none:: +415:nss-pem:nss-pem-1.0.3-5.el7.x86_64.rpm:none::stx-none:stx-none:: +416:ntfs:ntfs-3g-2017.3.23-6.el7.x86_64.rpm:ntfs-3g-ntfsprogs:2017.3.23:stx-none:stx-none:: +417:ntfsprogs:ntfsprogs-2017.3.23-6.el7.x86_64.rpm:ntfs-3g-ntfsprogs:2017.3.23:stx-none:stx-none:: +418:ntp:ntp-4.2.6p5-28.el7.centos.x86_64.rpm:ntp:4.2.8p13:stx-none:stx-none:: +419:ntp-config:ntp-config-1.0-0.tis.noarch.rpm:none::stx-none:stx-none:: +420:ntpdate:ntpdate-4.2.6p5-28.el7.centos.x86_64.rpm:none::stx-none:stx-none:: +421:ntp-perl:ntp-perl-4.2.6p5-28.el7.centos.noarch.rpm:none::stx-none:stx-none:: +422:numactl-libs:numactl-libs-2.0.9-7.el7.x86_64.rpm:numactl:2.0.12:stx-none:stx-none:: +423:OpenIPMI-modalias:OpenIPMI-modalias-2.0.23-2.el7.x86_64.rpm:openipmi:2.0.25:stx-none:stx-none:: +424:openldap:openldap-2.4.44-20.el7.tis.9.x86_64.rpm,openldap-clients-2.4.44-20.el7.tis.9.x86_64.rpm,openldap-servers-2.4.44-20.el7.tis.9.x86_64.rpm:openldap:2.4.46:stx-none:stx-none:: +425:openldap-config:openldap-config-1.0-0.tis.noarch.rpm:none::stx-none:stx-none:: +426:openpgm:openpgm-5.2.122-2.el7.x86_64.rpm:none::stx-none:stx-none:: +427:openscap:openscap-1.2.17-2.el7.x86_64.rpm,openscap-scanner-1.2.17-2.el7.x86_64.rpm:none::stx-none:stx-none:: +428:openssh:openssh-7.4p1-16.el7_4.tis.10.x86_64.rpm,openssh-clients-7.4p1-16.el7_4.tis.10.x86_64.rpm,openssh-server-7.4p1-16.el7_4.tis.10.x86_64.rpm:openssh:7.8p1+git:stx-none:stx-none:: +429:openssh-config:openssh-config-1.0-0.tis.noarch.rpm:none::stx-none:stx-none:: +430:openssl:openssl-1.0.2k-16.el7.x86_64.rpm,openssl-libs-1.0.2k-16.el7.x86_64.rpm:openssl:1.1.1a:stx-none:stx-none:: +431:openstack-barbican:openstack-barbican-8.0.0-0.1.0rc1.el7.noarch.rpm:python-barbican:2015.1.0:stx-none:stx-none:: +432:openstack-barbican-api:openstack-barbican-api-8.0.0-0.1.0rc1.el7.noarch.rpm:none::stx-none:stx-none:: +433:openstack-barbican-common:openstack-barbican-common-8.0.0-0.1.0rc1.el7.noarch.rpm:none::stx-none:stx-none:: +434:openstack-barbican-keystone-listener:openstack-barbican-keystone-listener-8.0.0-0.1.0rc1.el7.noarch.rpm:none::stx-none:stx-none:: +435:openstack-barbican-worker:openstack-barbican-worker-8.0.0-0.1.0rc1.el7.noarch.rpm:none::stx-none:stx-none:: +436:openstack-dashboard:openstack-dashboard-14.0.0-2.tis.1.noarch.rpm:python-horizon:12.0.0:stx-none:stx-none:: +437:openstack-dashboard-theme:openstack-dashboard-theme-14.0.0-2.tis.1.noarch.rpm:none::stx-none:stx-none:: +438:openstack-keystone:openstack-keystone-15.0.0-0.2.el7.tis.1.noarch.rpm:python-keystone:12.0.0:stx-none:stx-none:: +439:openstack-ras:openstack-ras-1.0.0-0.tis.2.x86_64.rpm:none::stx-none:stx-none:: +440:openvswitch:openvswitch-2.11.0-0.tis.1.x86_64.rpm:openvswitch:2.10.0+5563e309b80bbea9bff538e71ecfd7e5e538bab9:stx-none:stx-none:: +441:openvswitch-config:openvswitch-config-1.0-1.tis.noarch.rpm:none::stx-none:stx-none:: +442:opus:opus-1.0.2-6.el7.x86_64.rpm:libopus:1.1.3:stx-none:stx-none:: +443:os-prober:os-prober-1.58-9.el7.x86_64.rpm:none::stx-none:stx-none:: +444:OVMF:OVMF-20150414-2.gitc9e5618.el7.noarch.rpm:ovmf:git:stx-none:stx-none:: +445:p11-kit:p11-kit-0.23.5-3.el7.x86_64.rpm,p11-kit-trust-0.23.5-3.el7.x86_64.rpm:p11-kit:0.23.14:stx-none:stx-none:: +446:pam:pam-1.1.8-22.el7.x86_64.rpm:libpam:1.3.0:stx-none:stx-none:: +447:pam-config:pam-config-1.0-1.tis.noarch.rpm:none::stx-none:stx-none:: +448:parted:parted-3.1-29.el7.tis.3.x86_64.rpm:parted:3.2:stx-none:stx-none:: +449:passwd:passwd-0.79-4.el7.x86_64.rpm:base-passwd:3.5.29:stx-none:stx-none:: +450:patch-alarm:patch-alarm-1.0-2.tis.x86_64.rpm:none::stx-none:stx-none:: +451:pci-irq-affinity-agent:pci-irq-affinity-agent-1.0-1.tis.x86_64.rpm:none::stx-none:stx-none:: +452:pciutils:pciutils-3.5.1-3.el7.x86_64.rpm,pciutils-libs-3.5.1-3.el7.x86_64.rpm:pciutils:3.6.2:stx-none:stx-none:: +453:pcre:pcre-8.32-17.el7.x86_64.rpm:libpcre:8.42:stx-none:stx-none:: +454:perf:perf-3.10.0-957.12.2.el7.1.tis.x86_64.rpm:perf:1:stx-none:stx-none:: +455:perl:perl-5.16.3-294.el7_6.x86_64.rpm,perl-libs-5.16.3-294.el7_6.x86_64.rpm,perl-macros-5.16.3-294.el7_6.x86_64.rpm:perl:5.24.4:stx-none:stx-none:: +456:perl-Carp:perl-Carp-1.26-244.el7.noarch.rpm:none::stx-none:stx-none::These could be the same. +457:perl-constant:perl-constant-1.27-2.el7.noarch.rpm:none::stx-none:stx-none:: +458:perl-Data-Dumper:perl-Data-Dumper-2.145-3.el7.x86_64.rpm:none::stx-none:stx-none:: +459:perl-Encode:perl-Encode-2.51-7.el7.x86_64.rpm:libencode-perl:2.94:stx-none:stx-none:: +460:perl-Exporter:perl-Exporter-5.68-3.el7.noarch.rpm:none::stx-none:stx-none:: +461:perl-File-Path:perl-File-Path-2.09-2.el7.noarch.rpm:none::stx-none:stx-none:: +462:perl-File-Temp:perl-File-Temp-0.23.01-3.el7.noarch.rpm:none::stx-none:stx-none:: +463:perl-Filter:perl-Filter-1.49-3.el7.x86_64.rpm:none::stx-none:stx-none:: +464:perl-Getopt-Long:perl-Getopt-Long-2.40-3.el7.noarch.rpm:getopt-long-perl:2.5:stx-none:stx-none:: +465:perl-HTTP-Tiny:perl-HTTP-Tiny-0.033-3.el7.noarch.rpm:http-tiny-perl:0.0.70:stx-none:stx-none:: +466:perl-parent:perl-parent-0.225-244.el7.noarch.rpm:none::stx-none:stx-none:: +467:perl-PathTools:perl-PathTools-3.40-5.el7.x86_64.rpm:none::stx-none:stx-none:: +468:perl-Pod-Escapes:perl-Pod-Escapes-1.04-294.el7_6.noarch.rpm:none::stx-none:stx-none:: +469:perl-podlators:perl-podlators-2.5.1-3.el7.noarch.rpm:none::stx-none:stx-none:: +470:perl-Pod-Perldoc:perl-Pod-Perldoc-3.20-4.el7.noarch.rpm:none::stx-none:stx-none:: +471:perl-Pod-Simple:perl-Pod-Simple-3.28-4.el7.noarch.rpm:none::stx-none:stx-none:: +472:perl-Pod-Usage:perl-Pod-Usage-1.63-3.el7.noarch.rpm:none::stx-none:stx-none:: +473:perl-Scalar-List-Utils:perl-Scalar-List-Utils-1.27-248.el7.x86_64.rpm:scalar-list-utils-perl:1.5:stx-none:stx-none:: +474:perl-Socket:perl-Socket-2.010-4.el7.x86_64.rpm:socket-perl:2.027:stx-none:stx-none:: +475:perl-Storable:perl-Storable-2.45-3.el7.x86_64.rpm:none::stx-none:stx-none:: +476:perl-Text-ParseWords:perl-Text-ParseWords-3.29-4.el7.noarch.rpm:none::stx-none:stx-none:: +477:perl-threads:perl-threads-1.87-4.el7.x86_64.rpm:none::stx-none:stx-none:: +478:perl-threads-shared:perl-threads-shared-1.43-6.el7.x86_64.rpm:none::stx-none:stx-none:: +479:perl-Time-HiRes:perl-Time-HiRes-1.9725-3.el7.x86_64.rpm:time-hires-perl:1.9754:stx-none:stx-none:: +480:perl-Time-Local:perl-Time-Local-1.2300-2.el7.noarch.rpm:none::stx-none:stx-none:: +481:pinentry:pinentry-0.8.1-17.el7.x86_64.rpm:pinentry:1.1.0:stx-none:stx-none:: +482:pixman:pixman-0.34.0-1.el7.x86_64.rpm:pixman:0.34.0:stx-none:stx-none:: +483:pkgconfig:pkgconfig-0.27.1-4.el7.x86_64.rpm:pkgconfig:0.29.2+gitX:stx-none:stx-none:: +484:platform-kickstarts:platform-kickstarts-1.0.0-3.tis.noarch.rpm:none::stx-none:stx-none:: +485:platform-util:platform-util-1.0-17.tis.noarch.rpm:none::stx-none:stx-none:: +486:platform-util-noncontroller:platform-util-noncontroller-1.0-17.tis.noarch.rpm:none::stx-none:stx-none:: +487:playbookconfig:playbookconfig-1.0-2.tis.x86_64.rpm:none::stx-none:stx-none:: +488:pm-qos-mgr:pm-qos-mgr-1.0-1.tis.x86_64.rpm:none::stx-none:stx-none:: +489:pm-utils:pm-utils-1.4.1-27.el7.x86_64.rpm:pm-utils:1.4.1:stx-none:stx-none:: +490:policycoreutils:policycoreutils-2.5-29.el7.x86_64.rpm,policycoreutils-newrole-2.5-29.el7.x86_64.rpm,policycoreutils-python-2.5-29.el7.x86_64.rpm:policycoreutils:2.8:stx-none:stx-none:: +491:polkit:polkit-0.112-18.el7.x86_64.rpm:polkit:0.115:stx-none:stx-none:: +492:polkit-pkla-compat:polkit-pkla-compat-0.1-4.el7.x86_64.rpm:none::stx-none:stx-none:: +493:popt:popt-1.13-16.el7.x86_64.rpm:popt:1.16:stx-none:stx-none:: +494:postgresql:postgresql-9.2.24-1.el7_5.x86_64.rpm,postgresql-contrib-9.2.24-1.el7_5.x86_64.rpm,postgresql-libs-9.2.24-1.el7_5.x86_64.rpm,postgresql-server-9.2.24-1.el7_5.x86_64.rpm:postgresql:10.5:stx-none:stx-none:: +495:procps-ng:procps-ng-3.3.10-23.el7.x86_64.rpm:none::stx-none:stx-none:: +496:psmisc:psmisc-22.20-15.el7.x86_64.rpm:psmisc:23.1:stx-none:stx-none:: +497:pth:pth-2.0.7-23.el7.x86_64.rpm:none::stx-none:stx-none:: +498:pulseaudio-libs:pulseaudio-libs-10.0-5.el7.x86_64.rpm:pulseaudio:12.2:stx-none:stx-none:: +499:puppet:puppet-4.8.2-1.el7.tis.2.noarch.rpm:puppet:5.4.0:stx-none:stx-none:: +500:puppet-apache:puppet-apache-1.10.0-2.05a0aacgit.el7.noarch.rpm:none::stx-none:stx-none::These could be same. +501:puppet-barbican:puppet-barbican-11.3.0-1.el7.noarch.rpm:none::stx-none:stx-none:: +502:puppet-boolean:puppet-boolean-1.0.2-1.tis.1.noarch.rpm:none::stx-none:stx-none:: +503:puppet-ceph:puppet-ceph-2.4.1-1.el7.tis.11.noarch.rpm:none::stx-none:stx-none:: +504:puppet-certmonger:puppet-certmonger-1.1.1-1.1157a7egit.el7.noarch.rpm:none::stx-none:stx-none:: +505:puppet-collectd:puppet-collectd-5.1.0-2.4a3843cgit.el7.noarch.rpm:none::stx-none:stx-none:: +506:puppet-concat:puppet-concat-2.2.0-2.fdf4a84git.el7.noarch.rpm:none::stx-none:stx-none:: +507:puppet-create_resources:puppet-create_resources-0.0.1-0.tis.2.noarch.rpm:none::stx-none:stx-none:: +508:puppet-dcdbsync:puppet-dcdbsync-1.0.0-1.tis.noarch.rpm:none::stx-none:stx-none:: +509:puppet-dcmanager:puppet-dcmanager-1.0.0-1.tis.noarch.rpm:none::stx-none:stx-none:: +510:puppet-dcorch:puppet-dcorch-1.0.0-1.tis.noarch.rpm:none::stx-none:stx-none:: +511:puppet-dnsmasq:puppet-dnsmasq-1.1.0-0.tis.3.noarch.rpm:none::stx-none:stx-none:: +512:puppet-drbd:puppet-drbd-0.3.1-rc0.tis.9.noarch.rpm:none::stx-none:stx-none:: +513:puppet-etcd:puppet-etcd-1.11.0-1.f43e129git.el7.noarch.rpm:none::stx-none:stx-none:: +514:puppet-filemapper:puppet-filemapper-1.1.3-0.tis.2.noarch.rpm:none::stx-none:stx-none:: +515:puppet-firewall:puppet-firewall-1.8.2-2.2f892e9git.el7.noarch.rpm:none::stx-none:stx-none:: +516:puppet-fm:puppet-fm-1.0.0-1.tis.noarch.rpm:none::stx-none:stx-none:: +517:puppet-haproxy:puppet-haproxy-1.5.0-4.6ffcb07git.el7.tis.4.noarch.rpm:none::stx-none:stx-none:: +518:puppet-horizon:puppet-horizon-11.5.0-1.el7.tis.1.noarch.rpm:none::stx-none:stx-none:: +519:puppet-inifile:puppet-inifile-1.6.0-2.c1f1d1egit.el7.noarch.rpm:none::stx-none:stx-none:: +520:puppet-keystone:puppet-keystone-11.3.0-1.el7.tis.8.noarch.rpm:none::stx-none:stx-none:: +521:puppet-kmod:puppet-kmod-2.1.1-2.0d69a96git.el7.noarch.rpm:none::stx-none:stx-none:: +522:puppet-ldap:puppet-ldap-0.2.4-0.tis.3.noarch.rpm:none::stx-none:stx-none:: +523:puppet-lvm:puppet-lvm-0.5.0-0.tis.5.noarch.rpm:none::stx-none:stx-none:: +524:puppet-manifests:puppet-manifests-1.0.0-89.tis.noarch.rpm:none::stx-none:stx-none:: +525:puppet-memcached:puppet-memcached-3.0.2-1.adf8b63git.el7.noarch.rpm:none::stx-none:stx-none:: +526:puppet-mtce:puppet-mtce-1.0.0-9.tis.noarch.rpm:none::stx-none:stx-none:: +527:puppet-mysql:puppet-mysql-3.11.0-1.920dd76git.el7.noarch.rpm:none::stx-none:stx-none:: +528:puppet-network:puppet-network-1.0.2-0.tis.7.noarch.rpm:none::stx-none:stx-none:: +529:puppet-nfv:puppet-nfv-1.0.0-5.tis.noarch.rpm:none::stx-none:stx-none:: +530:puppet-nslcd:puppet-nslcd-0.0.1-0.tis.2.noarch.rpm:none::stx-none:stx-none:: +531:puppet-nssdb:puppet-nssdb-1.0.1-1.el7.noarch.rpm:none::stx-none:stx-none:: +532:puppet-openstacklib:puppet-openstacklib-11.5.0-1.el7.tis.5.noarch.rpm:none::stx-none:stx-none:: +533:puppet-oslo:puppet-oslo-11.3.0-1.el7.tis.2.noarch.rpm:none::stx-none:stx-none:: +534:puppet-patching:puppet-patching-1.0.0-2.tis.noarch.rpm:none::stx-none:stx-none:: +535:puppet-postgresql:puppet-postgresql-4.8.0-0.tis.2.noarch.rpm:none::stx-none:stx-none:: +536:puppet-puppi:puppet-puppi-2.2.3-0.tis.0.noarch.rpm:none::stx-none:stx-none:: +537:puppet-rabbitmq:puppet-rabbitmq-5.6.0-4.5ac45degit.el7.tis.6.noarch.rpm:none::stx-none:stx-none:: +538:puppet-smapi:puppet-smapi-1.0.0-1.tis.noarch.rpm:none::stx-none:stx-none:: +539:puppet-sshd:puppet-sshd-1.0.0-1.tis.noarch.rpm:none::stx-none:stx-none:: +540:puppet-staging:puppet-staging-1.0.4-1.b466d93git.el7.tis.1.noarch.rpm:none::stx-none:stx-none:: +541:puppet-stdlib:puppet-stdlib-4.18.0-2.el7.tis.2.noarch.rpm:none::stx-none:stx-none:: +542:puppet-sysctl:puppet-sysctl-0.0.11-1.el7.noarch.rpm:none::stx-none:stx-none:: +543:puppet-sysinv:puppet-sysinv-1.0.0-5.tis.noarch.rpm:none::stx-none:stx-none:: +544:puppet-vlan:puppet-vlan-0.1.0-1.el7.noarch.rpm:none::stx-none:stx-none:: +545:puppet-vswitch:puppet-vswitch-7.3.0-1.el7.noarch.rpm:puppet-vswitch:3.0.0:stx-none:stx-none:: +546:pxe-network-installer:pxe-network-installer-1.0-28.tis.x86_64.rpm:none::stx-none:stx-none:: +547:pygpgme:pygpgme-0.3-9.el7.x86_64.rpm:python-pygpgme:0.3:stx-none:stx-none:: +548:pyliblzma:pyliblzma-0.5.3-11.el7.x86_64.rpm:none::stx-none:stx-none:: +549:pyparsing:pyparsing-2.1.10-3.el7.noarch.rpm:python-pyparsing:2.2.0:stx-none:stx-none:: +550:pyparted:pyparted-3.9-15.el7.x86_64.rpm:python-pyparted:3.10.7+gitX:stx-none:stx-none:: +551:python:python-2.7.5-76.el7.tis.4.x86_64.rpm:python:2.7.15:stx-none:stx-none:: +552:python2-alembic:python2-alembic-0.9.7-1.el7.noarch.rpm:python-alembic:1.0.0:stx-none:stx-none::"All these packages are python packages, the porting work should be similar. Around 100 packages are not in Yocto." +553:python2-amqp:python2-amqp-2.1.4-3.el7.noarch.rpm:python-amqp:2.3.2:stx-none:stx-none:: +554:python2-aodhclient:python2-aodhclient-1.2.0-1.tis.2.noarch.rpm:none::stx-none:stx-none:: +555:python2-appdirs:python2-appdirs-1.4.0-4.el7.noarch.rpm:python-appdirs:1.4.3:stx-none:stx-none:: +556:python2-asn1crypto:python2-asn1crypto-0.23.0-2.el7.noarch.rpm:python-asn1crypto:0.24.0:stx-none:stx-none:: +557:python2-babel:python2-babel-2.3.4-1.el7.noarch.rpm:python-babel:2.6.0:stx-none:stx-none:: +558:python2-barbican:python2-barbican-8.0.0-0.1.0rc1.el7.noarch.rpm:python-barbican:2015.1.0:stx-none:stx-none:: +559:python2-barbicanclient:python2-barbicanclient-4.8.1-1.tis.2.noarch.rpm:python-barbicanclient:4.5.2:stx-none:stx-none:: +560:python2-bcrypt:python2-bcrypt-3.1.4-4.el7.x86_64.rpm:python-bcrypt:3.1.4:stx-none:stx-none:: +561:python2-castellan:python2-castellan-0.19.0-1.el7.noarch.rpm:python-castellan:0.12.1+gitX:stx-none:stx-none:: +562:python2-certifi:python2-certifi-2018.10.15-1.el7.noarch.rpm:python-certifi:2018.8.13:stx-none:stx-none:: +563:python2-cffi:python2-cffi-1.11.2-1.el7.x86_64.rpm:python-cffi:1.11.5:stx-none:stx-none:: +564:python2-chardet:python2-chardet-3.0.4-7.el7.noarch.rpm:python-chardet:3.0.4:stx-none:stx-none:: +565:python2-cinderclient:python2-cinderclient-4.1.0-1.tis.36.noarch.rpm:python-cinderclient:3.1.0+gitX:stx-none:stx-none:: +566:python2-cliff:python2-cliff-2.13.0-1.el7.noarch.rpm:python-cliff:2.9.1:stx-none:stx-none:: +567:python2-coverage:python2-coverage-4.4.1-1.el7.x86_64.rpm:python-coverage:4.0a5:stx-none:stx-none:: +568:python2-crypto:python2-crypto-2.6.1-15.el7.x86_64.rpm:python-cryptography:2.3:stx-none:stx-none:: +569:python2-cryptography:python2-cryptography-2.5-1.el7.x86_64.rpm:python-cryptography:2.3:stx-none:stx-none:: +570:python2-dateutil:python2-dateutil-2.6.1-1.el7.noarch.rpm:python-dateutil:2.7.3:stx-none:stx-none:: +571:python2-debtcollector:python2-debtcollector-1.17.1-1.el7.noarch.rpm:python-debtcollector:1.17.1:stx-none:stx-none:: +572:python2-defusedxml:python2-defusedxml-0.5.0-2.el7.noarch.rpm:none::stx-none:stx-none:: +573:python2-deprecation:python2-deprecation-1.0-3.el7.noarch.rpm:python-deprecation:1.0.1:stx-none:stx-none:: +574:python2-django:python2-django-1.11.20-1.el7.noarch.rpm:python-django:1.11.14:stx-none:stx-none:: +575:python2-django-babel:python2-django-babel-0.6.2-1.el7.noarch.rpm:python-django-babel:0.5.1+gitX:stx-none:stx-none:: +576:python2-django-compressor:python2-django-compressor-2.1-5.el7.noarch.rpm:python-django-compressor:2.1:stx-none:stx-none:: +577:python2-django-debreach:python2-django-debreach-1.5.2-1.el7.noarch.rpm:none::stx-none:stx-none:: +578:python2-docker:python2-docker-3.3.0-1.el7.noarch.rpm:python-docker-registry-core:2.0.3:stx-none:stx-none:: +579:python2-eventlet:python2-eventlet-0.18.4-2.el7.tis.2.noarch.rpm:python-eventlet:0.20.0:stx-none:stx-none:: +580:python2-extras:python2-extras-1.0.0-2.el7.noarch.rpm:python-extras:1.0.0:stx-none:stx-none:: +581:python2-fasteners:python2-fasteners-0.14.1-6.el7.noarch.rpm:python-fasteners:0.13.0+gitX:stx-none:stx-none:: +582:python2-fixtures:python2-fixtures-3.0.0-7.el7.noarch.rpm:python-fixtures:3.0.0:stx-none:stx-none:: +583:python2-flask:python2-flask-1.0.2-1.el7.noarch.rpm:python-flask:0.10.1:stx-none:stx-none:: +584:python2-flask-restful:python2-flask-restful-0.3.6-7.el7.noarch.rpm:python-flask-restful:0.3.6:stx-none:stx-none:: +585:python2-funcsigs:python2-funcsigs-1.0.2-4.el7.noarch.rpm:python-funcsigs:1.0.2:stx-none:stx-none:: +586:python2-future:python2-future-0.16.0-4.el7.noarch.rpm:python-future:0.16.0:stx-none:stx-none:: +587:python2-futures:python2-futures-3.1.1-5.el7.noarch.rpm:python-futures:3.0.3+gitX:stx-none:stx-none:: +588:python2-futurist:python2-futurist-1.3.1-1.el7.noarch.rpm:python-futurist:0.21.0:stx-none:stx-none:: +589:python2-gevent:python2-gevent-1.1.2-2.el7.x86_64.rpm:python-gevent:1.0.1:stx-none:stx-none:: +590:python2-glanceclient:python2-glanceclient-2.16.0-1.tis.3.noarch.rpm:python-glanceclient:2.8.0+gitX:stx-none:stx-none:: +591:python2-gnocchiclient:python2-gnocchiclient-7.0.4-1.tis.12.noarch.rpm:none::stx-none:stx-none:: +592:python2-google-auth:python2-google-auth-1.3.0-1.el7.noarch.rpm:none::stx-none:stx-none:: +593:python2-greenlet:python2-greenlet-0.4.9-1.el7.x86_64.rpm:python-greenlet:0.4.14:stx-none:stx-none:: +594:python2-gunicorn:python2-gunicorn-19.7.1-1.el7.noarch.rpm:none::stx-none:stx-none:: +595:python2-heatclient:python2-heatclient-1.17.0-1.tis.5.noarch.rpm:python-heatclient:1.16.1+gitX:stx-none:stx-none:: +596:python2-idna:python2-idna-2.5-1.el7.noarch.rpm:python-idna:2.7:stx-none:stx-none:: +597:python2-influxdb:python2-influxdb-4.0.0-1.el7.1.noarch.rpm:none::stx-none:stx-none:: +598:python2-ipaddress:python2-ipaddress-1.0.18-5.el7.noarch.rpm:python-ipaddress:1.0.22:stx-none:stx-none:: +599:python2-ironicclient:python2-ironicclient-2.7.0-1.tis.10.noarch.rpm:none::stx-none:stx-none:: +600:python2-iso8601:python2-iso8601-0.1.11-7.el7.noarch.rpm:python-iso8601:0.1.10:stx-none:stx-none:: +601:python2-jinja2:python2-jinja2-2.8.1-1.el7.noarch.rpm:python-jinja2:2.1:stx-none:stx-none:: +602:python2-jmespath:python2-jmespath-0.9.0-5.el7.noarch.rpm:none::stx-none:stx-none:: +603:python2-jsonpatch:python2-jsonpatch-1.21-1.el7.noarch.rpm:python-jsonpatch:1.11:stx-none:stx-none:: +604:python2-jsonpointer:python2-jsonpointer-1.10-4.el7.noarch.rpm:python-jsonpointer:1.9:stx-none:stx-none:: +605:python2-jsonschema:python2-jsonschema-2.5.1-3.el7.noarch.rpm:python-jsonschema:2.6.0:stx-none:stx-none:: +606:python2-jwt:python2-jwt-1.6.1-1.el7.noarch.rpm:none::stx-none:stx-none:: +607:python2-keystone:python2-keystone-15.0.0-0.2.el7.tis.1.noarch.rpm:python-keystone:12.0.0+gitX:stx-none:stx-none:: +608:python2-keystoneauth1:python2-keystoneauth1-3.13.1-1.tis.0.noarch.rpm:python-keystoneauth1:3.2.0:stx-none:stx-none:: +609:python2-keystoneclient:python2-keystoneclient-3.19.0-1.tis.3.noarch.rpm:python-keystoneclient:3.13.0+gitX:stx-none:stx-none:: +610:python2-keystonemiddleware:python2-keystonemiddleware-5.2.0-1.el7.noarch.rpm:python-keystonemiddleware:4.17.0+gitX:stx-none:stx-none:: +611:python2-kombu:python2-kombu-4.0.2-5.el7.noarch.rpm:python-kombu:4.2.0:stx-none:stx-none:: +612:python2-kubernetes:python2-kubernetes-8.0.0-8.el7.noarch.rpm:none::stx-none:stx-none:: +613:python2-ldap3:python2-ldap3-2.4.1-3.el7.noarch.rpm:none::stx-none:stx-none:: +614:python2-ldappool:python2-ldappool-2.1.0-1.el7.noarch.rpm:none::stx-none:stx-none:: +615:python2-libvirt:python2-libvirt-4.7.0-1.tis.3.x86_64.rpm:none::stx-none:stx-none:: +616:python2-magnumclient:python2-magnumclient-2.12.0-1.tis.9.noarch.rpm:python-magnumclient:1.0.0.0b1+gitX:stx-none:stx-none:: +617:python2-markupsafe:python2-markupsafe-0.23-16.el7.x86_64.rpm:python-markupsafe:0.18:stx-none:stx-none:: +618:python2-mimeparse:python2-mimeparse-1.6.0-4.el7.noarch.rpm:python-mimeparse:0.1.4:stx-none:stx-none:: +619:python2-mox3:python2-mox3-0.23.0-1.el7.noarch.rpm:python-mox3:0.26.0:stx-none:stx-none:: +620:python2-msgpack:python2-msgpack-0.5.6-4.el7.x86_64.rpm:python-msgpack:0.5.6:stx-none:stx-none:: +621:python2-munch:python2-munch-2.2.0-2.el7.noarch.rpm:none::stx-none:stx-none:: +622:python2-muranoclient:python2-muranoclient-1.1.1-1.tis.1.noarch.rpm:none::stx-none:stx-none:: +623:python2-murano-pkg-check:python2-murano-pkg-check-0.3.0-2.el7.noarch.rpm:none::stx-none:stx-none:: +624:python2-netaddr:python2-netaddr-0.7.19-5.el7.noarch.rpm:python-netaddr:0.7.19:stx-none:stx-none:: +625:python2-neutronclient:python2-neutronclient-6.12.0-1.tis.5.noarch.rpm:python-neutronclient:6.5.0+gitX:stx-none:stx-none:: +626:python2-novaclient:python2-novaclient-13.0.0-1.tis.7.noarch.rpm:python-novaclient:9.1.1+gitX:stx-none:stx-none:: +627:python2-oauthlib:python2-oauthlib-2.0.1-8.el7.noarch.rpm:python-oauthlib:0.7.2:stx-none:stx-none:: +628:python2-openstackclient:python2-openstackclient-3.18.0-1.tis.7.noarch.rpm:python-openstackclient:3.12.0+gitX:stx-none:stx-none:: +629:python2-openstacksdk:python2-openstacksdk-0.25.0-1.tis.15.noarch.rpm:python-openstacksdk:0.9.19+gitX:stx-none:stx-none:: +630:python2-osc-lib:python2-osc-lib-1.11.1-1.el7.noarch.rpm:python-osc-lib:1.7.0:stx-none:stx-none:: +631:python2-os-client-config:python2-os-client-config-1.28.0-1.el7.noarch.rpm:python-os-client-config:1.28.0:stx-none:stx-none:: +632:python2-oslo-cache:python2-oslo-cache-1.30.3-1.el7.noarch.rpm:none::stx-none:stx-none:: +633:python2-oslo-concurrency:python2-oslo-concurrency-3.27.0-1.el7.noarch.rpm:none::stx-none:stx-none:: +634:python2-oslo-config:python2-oslo-config-6.8.1-1.el7.noarch.rpm:none::stx-none:stx-none:: +635:python2-oslo-context:python2-oslo-context-2.22.1-1.el7.noarch.rpm:none::stx-none:stx-none:: +636:python2-oslo-db:python2-oslo-db-4.40.0-1.el7.noarch.rpm:none::stx-none:stx-none:: +637:python2-oslo-i18n:python2-oslo-i18n-3.17.1-1.el7.noarch.rpm:none::stx-none:stx-none:: +638:python2-oslo-log:python2-oslo-log-3.39.2-1.el7.noarch.rpm:none::stx-none:stx-none:: +639:python2-oslo-messaging:python2-oslo-messaging-5.30.6-1.el7.tis.4.noarch.rpm:none::stx-none:stx-none:: +640:python2-oslo-middleware:python2-oslo-middleware-3.36.0-1.el7.noarch.rpm:none::stx-none:stx-none:: +641:python2-oslo-policy:python2-oslo-policy-2.1.1-1.el7.noarch.rpm:none::stx-none:stx-none:: +642:python2-oslo-rootwrap:python2-oslo-rootwrap-5.9.1-1.el7.noarch.rpm:none::stx-none:stx-none:: +643:python2-oslo-serialization:python2-oslo-serialization-2.20.2-1.el7.noarch.rpm:none::stx-none:stx-none:: +644:python2-oslo-service:python2-oslo-service-1.38.0-1.el7.noarch.rpm:none::stx-none:stx-none:: +645:python2-oslo-upgradecheck:python2-oslo-upgradecheck-0.2.1-1.el7.noarch.rpm:none::stx-none:stx-none:: +646:python2-oslo-utils:python2-oslo-utils-3.40.3-1.el7.noarch.rpm:none::stx-none:stx-none:: +647:python2-oslo-versionedobjects:python2-oslo-versionedobjects-1.33.3-1.el7.noarch.rpm:none::stx-none:stx-none:: +648:python2-osprofiler:python2-osprofiler-2.3.0-1.el7.noarch.rpm:python-osprofiler:1.5.0:stx-none:stx-none:: +649:python2-os-service-types:python2-os-service-types-1.3.0-1.el7.noarch.rpm:none::stx-none:stx-none:: +650:python2-pankoclient:python2-pankoclient-0.5.0-1.tis.7.noarch.rpm:none::stx-none:stx-none:: +651:python2-passlib:python2-passlib-1.7.0-4.el7.noarch.rpm:python-passlib:1.6.2:stx-none:stx-none:: +652:python2-pbr:python2-pbr-3.1.1-1.el7.noarch.rpm:python-pbr:4.2.0:stx-none:stx-none:: +653:python2-pecan:python2-pecan-1.1.2-1.el7.noarch.rpm:python-pecan:1.3.2:stx-none:stx-none:: +654:python2-pexpect:python2-pexpect-4.6-1.el7.noarch.rpm:python-pexpect:3.3:stx-none:stx-none:: +655:python2-pika:python2-pika-0.10.0-9.el7.noarch.rpm:python-pika:0.10.0+gitX:stx-none:stx-none:: +656:python2-pika_pool:python2-pika_pool-0.1.3-3.el7.noarch.rpm:none::stx-none:stx-none:: +657:python2-psutil:python2-psutil-5.2.2-2.el7.x86_64.rpm:python-psutil:5.4.6:stx-none:stx-none:: +658:python2-ptyprocess:python2-ptyprocess-0.5.2-3.el7.noarch.rpm:python-ptyprocess:0.6.0:stx-none:stx-none:: +659:python2-pyasn1:python2-pyasn1-0.1.9-7.el7.noarch.rpm:python-pyasn1:0.1.7:stx-none:stx-none:: +660:python2-pyasn1-modules:python2-pyasn1-modules-0.1.9-7.el7.noarch.rpm:python-pyasn1-modules:0.2.1:stx-none:stx-none:: +661:python2-pycadf:python2-pycadf-2.6.0-1.el7.noarch.rpm:python-pycadf:1.1.0+gitX:stx-none:stx-none:: +662:python2-PyMySQL:python2-PyMySQL-0.9.2-1.el7.noarch.rpm:none::stx-none:stx-none:: +663:python2-pyngus:python2-pyngus-2.2.4-1.el7.noarch.rpm:none::stx-none:stx-none:: +664:python2-pyOpenSSL:python2-pyOpenSSL-17.3.0-3.el7.noarch.rpm:python-pyopenssl:18.0.0:stx-none:stx-none:: +665:python2-pyparsing:python2-pyparsing-2.1.10-3.el7.noarch.rpm:python-pyparsing:2.0.1:stx-none:stx-none:: +666:python2-pysaml2:python2-pysaml2-4.5.0-4.el7.noarch.rpm:python-pysaml2:3.0.2+gitX:stx-none:stx-none:: +667:python2-pysnmp:python2-pysnmp-4.3.2-3.el7.noarch.rpm:python-pysnmp:4.2.5:stx-none:stx-none:: +668:python2-pysocks:python2-pysocks-1.6.8-5.el7.noarch.rpm:python-pysocks:1.6.8:stx-none:stx-none:: +669:python2-qpid-proton:python2-qpid-proton-0.24.0-2.el7.x86_64.rpm:none::stx-none:stx-none:: +670:python2-rcssmin:python2-rcssmin-1.0.6-2.el7.x86_64.rpm:python-rcssmin:1.0.6:stx-none:stx-none:: +671:python2-requests:python2-requests-2.21.0-2.el7.tis.2.noarch.rpm:python-requests:2.19.1:stx-none:stx-none:: +672:python2-requestsexceptions:python2-requestsexceptions-1.4.0-1.el7.noarch.rpm:python-requestsexceptions:1.3.0:stx-none:stx-none:: +673:python2-requests-oauthlib:python2-requests-oauthlib-0.8.0-5.el7.noarch.rpm:none::stx-none:stx-none:: +674:python2-rfc3986:python2-rfc3986-1.2.0-1.el7.noarch.rpm:python-rfc3986:0.4.1:stx-none:stx-none:: +675:python2-rjsmin:python2-rjsmin-1.0.12-2.el7.x86_64.rpm:python-rjsmin:1.0.12:stx-none:stx-none:: +676:python2-rsa:python2-rsa-3.4.1-1.el7.noarch.rpm:python-rsa:3.4.2:stx-none:stx-none:: +677:python2-ruamel-ordereddict:python2-ruamel-ordereddict-0.4.9-3.el7.x86_64.rpm:none::stx-none:stx-none:: +678:python2-ruamel-yaml:python2-ruamel-yaml-0.13.14-1.el7.x86_64.rpm:none::stx-none:stx-none:: +679:python2-ryu:python2-ryu-4.19-0.tis.2.noarch.rpm:python-ryu:4.19+gitX:stx-none:stx-none:: +680:python2-scrypt:python2-scrypt-0.8.0-2.el7.x86_64.rpm:python-scrypt:0.8.6:stx-none:stx-none:: +681:python2-scss:python2-scss-1.3.4-6.el7.x86_64.rpm:none::stx-none:stx-none:: +682:python2-setuptools:python2-setuptools-38.5.1-1.el7.tis.0.noarch.rpm:python-setuptools:40.0.0:stx-none:stx-none:: +683:python2-simplejson:python2-simplejson-3.10.0-1.el7.x86_64.rpm:python-simplejson:3.16.0:stx-none:stx-none:: +684:python2-singledispatch:python2-singledispatch-3.4.0.3-4.el7.noarch.rpm:python-singledispatch:3.4.0.3:stx-none:stx-none:: +685:python2-six:python2-six-1.10.0-9.el7.noarch.rpm:python-six:1.11.0:stx-none:stx-none:: +686:python2-sqlalchemy:python2-sqlalchemy-1.1.11-1.el7.x86_64.rpm:python-sqlalchemy:1.0.16:stx-none:stx-none:: +687:python2-statsd:python2-statsd-3.2.1-5.el7.noarch.rpm:python-statsd:3.2.1:stx-none:stx-none:: +688:python2-stevedore:python2-stevedore-1.25.1-1.el7.noarch.rpm:python-stevedore:1.29.0:stx-none:stx-none:: +689:python2-swiftclient:python2-swiftclient-3.4.0-1.el7.noarch.rpm:python-swiftclient:3.6.0+gitX:stx-none:stx-none:: +690:python2-tenacity:python2-tenacity-4.4.0-1.el7.noarch.rpm:python-tenacity:4.5.0:stx-none:stx-none:: +691:python2-tinyrpc:python2-tinyrpc-0.5-4.20170523git1f38ac.el7.noarch.rpm:python-tinyrpc:0.6:stx-none:stx-none:: +692:python2-traceback2:python2-traceback2-1.4.0-7.el7.noarch.rpm:python-traceback2:1.4.0:stx-none:stx-none:: +693:python2-typing:python2-typing-3.6.1-1.el7.noarch.rpm:python-typing:3.6.4:stx-none:stx-none:: +694:python2-ujson:python2-ujson-1.35-1.el7.x86_64.rpm:python-ujson:1.35:stx-none:stx-none:: +695:python2-urllib3:python2-urllib3-1.21.1-1.el7.noarch.rpm:python-urllib3:1.23:stx-none:stx-none:: +696:python2-vine:python2-vine-1.1.3-2.el7.noarch.rpm:python-vine:1.1.4:stx-none:stx-none:: +697:python2-webob:python2-webob-1.8.2-1.el7.noarch.rpm:python-webob:1.8.2:stx-none:stx-none:: +698:python2-wsme:python2-wsme-0.9.2-1.el7.tis.3.noarch.rpm:python-wsme:0.9.2:stx-none:stx-none:: +699:python2-XStatic:python2-XStatic-1.0.1-8.el7.noarch.rpm:python-xstatic:1.0.1:stx-none:stx-none:: +700:python2-XStatic-Angular:python2-XStatic-Angular-1.5.8.0-1.el7.noarch.rpm:python-xstatic-angular:1.5.8.0:stx-none:stx-none:: +701:python2-XStatic-Angular-Bootstrap:python2-XStatic-Angular-Bootstrap-2.2.0.0-1.el7.noarch.rpm:python-xstatic-angular-bootstrap:2.2.0.0:stx-none:stx-none:: +702:python2-XStatic-Angular-FileUpload:python2-XStatic-Angular-FileUpload-12.0.4.0-1.el7.noarch.rpm:python-xstatic-angular-fileupload:12.0.4.0:stx-none:stx-none:: +703:python2-XStatic-Angular-Gettext:python2-XStatic-Angular-Gettext-2.3.8.0-1.el7.noarch.rpm:python-xstatic-angular-gettext:2.3.8.0:stx-none:stx-none:: +704:python2-XStatic-Angular-Schema-Form:python2-XStatic-Angular-Schema-Form-0.8.13.0-0.1.pre_review.el7.noarch.rpm:python-xstatic-angular-schema-form:0.8.13.0:stx-none:stx-none:: +705:python2-XStatic-Bootstrap-SCSS:python2-XStatic-Bootstrap-SCSS-3.3.7.1-2.el7.noarch.rpm:python-xstatic-bootstrap-scss:3.3.7.1:stx-none:stx-none:: +706:python2-XStatic-bootswatch:python2-XStatic-bootswatch-3.3.7.0-1.el7.noarch.rpm:python-xstatic-bootswatch:3.3.7.0:stx-none:stx-none:: +707:python2-XStatic-D3:python2-XStatic-D3-3.5.17.0-1.el7.noarch.rpm:python-xstatic-d3:3.5.17.0:stx-none:stx-none:: +708:python2-XStatic-Font-Awesome:python2-XStatic-Font-Awesome-4.7.0.0-3.el7.noarch.rpm:python-xstatic-font-awesome:4.7.0.0:stx-none:stx-none:: +709:python2-XStatic-Jasmine:python2-XStatic-Jasmine-2.4.1.1-1.el7.noarch.rpm:python-xstatic-jasmine:2.4.1.1:stx-none:stx-none:: +710:python2-XStatic-JSEncrypt:python2-XStatic-JSEncrypt-2.3.1.1-1.el7.noarch.rpm:python-xstatic-jsencrypt:2.3.1.1:stx-none:stx-none:: +711:python2-XStatic-mdi:python2-XStatic-mdi-1.4.57.0-4.el7.noarch.rpm:python-xstatic-mdi:1.4.57.0:stx-none:stx-none:: +712:python2-XStatic-objectpath:python2-XStatic-objectpath-1.2.1.0-0.1.pre_review.el7.noarch.rpm:python-xstatic-objectpath:1.2.1.0:stx-none:stx-none:: +713:python2-XStatic-roboto-fontface:python2-XStatic-roboto-fontface-0.5.0.0-1.el7.noarch.rpm:python-xstatic-roboto-fontface:0.5.0.0:stx-none:stx-none:: +714:python2-XStatic-smart-table:python2-XStatic-smart-table-1.4.13.2-1.el7.noarch.rpm:python-xstatic-smart-table:1.4.13.2:stx-none:stx-none:: +715:python2-XStatic-termjs:python2-XStatic-termjs-0.0.7.0-1.el7.noarch.rpm:none::stx-none:stx-none:: +716:python2-XStatic-tv4:python2-XStatic-tv4-1.2.7.0-0.1.pre_review.el7.noarch.rpm:python-xstatic-tv4:1.2.7.0:stx-none:stx-none:: +717:python2-yappi:python2-yappi-1.0-1.el7.x86_64.rpm:python-yappi:0.98:stx-none:stx-none:: +718:python2-yaql:python2-yaql-1.1.3-2.el7.noarch.rpm:none::stx-none:stx-none:: +719:python-3parclient:python-3parclient-4.2.3-0.tis.1.noarch.rpm:python-hp3parclient:3.2.0:stx-none:stx-none:: +720:python-aniso8601:python-aniso8601-0.82-3.el7.noarch.rpm:none::stx-none:stx-none:: +721:python-anyjson:python-anyjson-0.3.3-3.el7.noarch.rpm:python-anyjson:0.3.3:stx-none:stx-none:: +722:python-backports:python-backports-1.0-8.el7.x86_64.rpm:none::stx-none:stx-none:: +723:python-backports-ssl_match_hostname:python-backports-ssl_match_hostname-3.5.0.1-1.el7.noarch.rpm:none::stx-none:stx-none:: +724:python-beaker:python-beaker-1.5.4-10.el7.noarch.rpm:none::stx-none:stx-none:: +725:python-beautifulsoup4:python-beautifulsoup4-4.6.0-1.el7.noarch.rpm:python-beautifulsoup4:4.6.0:stx-none:stx-none:: +726:python-bson:python-bson-3.0.3-1.el7.x86_64.rpm:none::stx-none:stx-none:: +727:python-cachetools:python-cachetools-1.1.6-2.el7.noarch.rpm:python-cachetools:1.1.5+gitX:stx-none:stx-none:: +728:python-cephclient:python-cephclient-13.2.2.0-0.tis.noarch.rpm:python-cephclient:0.1.0.5:stx-none:stx-none:: +729:python-ceph-compat:python-ceph-compat-13.2.2-0.el7.tis.25.x86_64.rpm:none::stx-none:stx-none:: +730:python-cephfs:python-cephfs-13.2.2-0.el7.tis.25.x86_64.rpm:none::stx-none:stx-none:: +731:python-cherrypy:python-cherrypy-3.2.2-4.el7.noarch.rpm:none::stx-none:stx-none:: +732:python-click:python-click-6.3-1.el7.noarch.rpm:python-click:6.7:stx-none:stx-none:: +733:python-cliff:python-cliff-2.8.2-1.el7.noarch.rpm:python-cliff:2.9.1:stx-none:stx-none:: +734:python-cmd2:python-cmd2-0.6.8-8.el7.noarch.rpm:python-cmd2:0.9.2:stx-none:stx-none:: +735:python-configobj:python-configobj-4.7.2-7.el7.noarch.rpm:none::stx-none:stx-none:: +736:python-configshell:python-configshell-1.1.fb23-5.el7.noarch.rpm:none::stx-none:stx-none:: +737:python-construct:python-construct-2.5.1-4.el7.noarch.rpm:none::stx-none:stx-none:: +738:python-contextlib2:python-contextlib2-0.5.1-2.el7.noarch.rpm:python-contextlib2:0.4.0:stx-none:stx-none:: +739:python-d2to1:python-d2to1-0.2.11-1.el7.noarch.rpm:none::stx-none:stx-none:: +740:python-daemon:python-daemon-1.6-4.el7.noarch.rpm:python-daemon:2.1.2:stx-none:stx-none:: +741:python-dateutil:python-dateutil-2.4.2-1.el7.noarch.rpm:python-dateutil:2.7.3:stx-none:stx-none:: +742:python-decorator:python-decorator-3.4.0-3.el7.noarch.rpm:python-decorator:4.3.0:stx-none:stx-none:: +743:python-deltarpm:python-deltarpm-3.6-3.el7.x86_64.rpm:none::stx-none:stx-none:: +744:python-devel:python-devel-2.7.5-76.el7.tis.4.x86_64.rpm,python-libs-2.7.5-76.el7.tis.4.x86_64.rpm:python-devel:2.7.15:stx-none:stx-none:: +745:python-django-appconf:python-django-appconf-1.0.1-4.el7.noarch.rpm:python-django-appconf:1.0.1:stx-none:stx-none:: +746:python-django-bash-completion:python-django-bash-completion-1.11.20-1.el7.noarch.rpm:none::stx-none:stx-none:: +747:python-django-horizon:python-django-horizon-14.0.0-2.tis.1.noarch.rpm:none::stx-none:stx-none:: +748:python-django-pyscss:python-django-pyscss-2.0.2-1.el7.noarch.rpm:python-django-pyscss:2.0.2:stx-none:stx-none:: +749:python-docker-pycreds:python-docker-pycreds-0.3.0-7.el7.noarch.rpm:none::stx-none:stx-none:: +750:python-dogpile-cache:python-dogpile-cache-0.6.2-1.el7.noarch.rpm:none::stx-none:stx-none:: +751:python-dogpile-core:python-dogpile-core-0.4.1-2.el7.noarch.rpm:none::stx-none:stx-none:: +752:python-editor:python-editor-0.4-4.el7.noarch.rpm:python-editor:1.0.3:stx-none:stx-none:: +753:python-enum34:python-enum34-1.0.4-1.el7.noarch.rpm:python-enum34:1.1.6:stx-none:stx-none:: +754:python-ethtool:python-ethtool-0.8-7.el7.x86_64.rpm:none::stx-none:stx-none:: +755:python-extras:python-extras-0.0.3-2.el7.noarch.rpm:python-extras:1.0.0:stx-none:stx-none:: +756:python-firewall:python-firewall-0.5.3-5.el7.noarch.rpm:none::stx-none:stx-none:: +757:python-fixtures:python-fixtures-3.0.0-2.el7.noarch.rpm:python-fixtures:3.0.0:stx-none:stx-none:: +758:python-fmclient:python-fmclient-1.0-4.tis.x86_64.rpm:none::stx-none:stx-none:: +759:python-gobject-base:python-gobject-base-3.22.0-1.el7_4.1.x86_64.rpm:none::stx-none:stx-none:: +760:python-httplib2:python-httplib2-0.9.2-1.el7.noarch.rpm:python-httplib2:0.11.3:stx-none:stx-none:: +761:python-iniparse:python-iniparse-0.4-9.el7.noarch.rpm:none::stx-none:stx-none:: +762:python-inotify:python-inotify-0.9.4-4.el7.noarch.rpm:none::stx-none:stx-none:: +763:python-inventoryclient:python-inventoryclient-1.0-2.tis.x86_64.rpm:none::stx-none:stx-none:: +764:python-ipaddr:python-ipaddr-2.1.11-1.el7.noarch.rpm:python-ipaddr:2.1.11:stx-none:stx-none:: +765:python-ipaddress:python-ipaddress-1.0.16-3.el7.noarch.rpm:python-ipaddress:1.0.22:stx-none:stx-none:: +766:python-IPy:python-IPy-0.75-6.el7.noarch.rpm:python-ipy:0.83:stx-none:stx-none:: +767:python-itsdangerous:python-itsdangerous-0.23-2.el7.noarch.rpm:python-itsdangerous:0.24:stx-none:stx-none:: +768:python-jwcrypto:python-jwcrypto-0.4.2-1.el7.noarch.rpm:none::stx-none:stx-none:: +769:python-keyring:python-keyring-5.7.1-1.tis.2.noarch.rpm:python-keyring:5.3:stx-none:stx-none:: +770:python-kmod:python-kmod-0.9-4.el7.x86_64.rpm:none::stx-none:stx-none:: +771:python-ldap:python-ldap-2.4.15-2.el7.x86_64.rpm:python-ldap:2.4.45:stx-none:stx-none:: +772:python-lefthandclient:python-lefthandclient-2.1.0-0.tis.1.noarch.rpm:none::stx-none:stx-none:: +773:python-lesscpy:python-lesscpy-0.9j-4.el7.noarch.rpm:python-lesscpy:0.10.2:stx-none:stx-none:: +774:python-linecache2:python-linecache2-1.0.0-1.el7.noarch.rpm:python-linecache2:1.0.0:stx-none:stx-none:: +775:python-linux-procfs:python-linux-procfs-0.4.9-4.el7.noarch.rpm:none::stx-none:stx-none:: +776:python-lockfile:python-lockfile-0.9.1-4.el7.centos.noarch.rpm:python-lockfile:0.12.2:stx-none:stx-none:: +777:python-logutils:python-logutils-0.3.3-3.el7.noarch.rpm:python-logutils:0.3.5:stx-none:stx-none:: +778:python-lxml:python-lxml-3.2.1-4.el7.x86_64.rpm:python-lxml:4.2.4:stx-none:stx-none:: +779:python-mako:python-mako-0.8.1-2.el7.noarch.rpm:python-mako:1.0.7:stx-none:stx-none:: +780:python-memcached:python-memcached-1.58-1.el7.noarch.rpm:python-memcached:1.57+gitX:stx-none:stx-none:: +781:python-migrate:python-migrate-0.11.0-1.el7.noarch.rpm:none::stx-none:stx-none:: +782:python-monotonic:python-monotonic-0.6-1.el7.noarch.rpm:python-monotonic:1.5:stx-none:stx-none:: +783:python-netaddr:python-netaddr-0.7.18-1.el7.noarch.rpm:python-netaddr:0.7.19:stx-none:stx-none:: +784:python-netifaces:python-netifaces-0.10.4-3.el7.x86_64.rpm:python-netifaces:0.10.4:stx-none:stx-none:: +785:python-openstackclient-lang:python-openstackclient-lang-3.18.0-1.tis.7.noarch.rpm:none::stx-none:stx-none:: +786:python-oslo-cache-lang:python-oslo-cache-lang-1.30.3-1.el7.noarch.rpm:none::stx-none:stx-none:: +787:python-oslo-concurrency-lang:python-oslo-concurrency-lang-3.27.0-1.el7.noarch.rpm:none::stx-none:stx-none:: +788:python-oslo-db-lang:python-oslo-db-lang-4.40.0-1.el7.noarch.rpm:none::stx-none:stx-none:: +789:python-oslo-i18n-lang:python-oslo-i18n-lang-3.17.1-1.el7.noarch.rpm:none::stx-none:stx-none:: +790:python-oslo-log-lang:python-oslo-log-lang-3.39.2-1.el7.noarch.rpm:none::stx-none:stx-none:: +791:python-oslo-middleware-lang:python-oslo-middleware-lang-3.36.0-1.el7.noarch.rpm:none::stx-none:stx-none:: +792:python-oslo-policy-lang:python-oslo-policy-lang-2.1.1-1.el7.noarch.rpm:none::stx-none:stx-none:: +793:python-oslo-utils-lang:python-oslo-utils-lang-3.40.3-1.el7.noarch.rpm:none::stx-none:stx-none:: +794:python-oslo-versionedobjects-lang:python-oslo-versionedobjects-lang-1.33.3-1.el7.noarch.rpm:none::stx-none:stx-none:: +795:python-paramiko:python-paramiko-2.1.1-9.el7.noarch.rpm:python-paramiko:2.4.1:stx-none:stx-none:: +796:python-paste:python-paste-1.7.5.1-9.20111221hg1498.el7.noarch.rpm:python-paste:2.0.3:stx-none:stx-none:: +797:python-paste-deploy:python-paste-deploy-1.5.2-6.el7.noarch.rpm:none::stx-none:stx-none:: +798:python-pathlib:python-pathlib-1.0.1-1.el7.noarch.rpm:python-pathlib:1.0.1:stx-none:stx-none:: +799:python-pep8:python-pep8-1.5.7-2.el7.noarch.rpm:python-pep8:1.7.1:stx-none:stx-none:: +800:python-perf:python-perf-3.10.0-957.12.2.el7.1.tis.x86_64.rpm:none::stx-none:stx-none:: +801:python-pint:python-pint-0.6-2.el7.noarch.rpm:python-pint:0.8.1:stx-none:stx-none:: +802:python-ply:python-ply-3.4-11.el7.noarch.rpm:python-ply:3.11:stx-none:stx-none:: +803:python-prettytable:python-prettytable-0.7.2-3.el7.noarch.rpm:python-prettytable:0.7.2:stx-none:stx-none:: +804:python-psycopg2:python-psycopg2-2.5.1-3.el7.tis.2.x86_64.rpm:python-psycopg2:2.7.5:stx-none:stx-none:: +805:python-pycadf-common:python-pycadf-common-2.6.0-1.el7.noarch.rpm:none::stx-none:stx-none:: +806:python-pycparser:python-pycparser-2.14-1.el7.noarch.rpm:python-pycparser:2.18:stx-none:stx-none:: +807:python-pycurl:python-pycurl-7.19.0-19.el7.x86_64.rpm:none::stx-none:stx-none:: +808:python-pyelftools:python-pyelftools-0.22-0.5.git20130619.a1d9681.el7.noarch.rpm:none::stx-none:stx-none:: +809:python-pymongo:python-pymongo-3.0.3-1.el7.x86_64.rpm:python-pymongo:3.7.1:stx-none:stx-none:: +810:python-pyudev:python-pyudev-0.15-9.el7.noarch.rpm:python-pyudev:0.21.0:stx-none:stx-none:: +811:python-rados:python-rados-13.2.2-0.el7.tis.25.x86_64.rpm:none::stx-none:stx-none:: +812:python-rbd:python-rbd-13.2.2-0.el7.tis.25.x86_64.rpm:none::stx-none:stx-none:: +813:python-repoze-lru:python-repoze-lru-0.4-3.el7.noarch.rpm:none::stx-none:stx-none:: +814:python-retrying:python-retrying-1.2.3-4.el7.noarch.rpm:python-retrying:1.3.3:stx-none:stx-none:: +815:python-rgw:python-rgw-13.2.2-0.el7.tis.25.x86_64.rpm:none::stx-none:stx-none:: +816:python-routes:python-routes-2.4.1-1.el7.noarch.rpm:python-routes:2.4.1+gitX:stx-none:stx-none:: +817:python-rtslib:python-rtslib-2.1.fb63-13.el7.noarch.rpm:python-rtslib-fb:2.1.51:stx-none:stx-none:: +818:python-ryu-common:python-ryu-common-4.19-0.tis.2.noarch.rpm:none::stx-none:stx-none:: +819:python-schedutils:python-schedutils-0.4-6.el7.x86_64.rpm:none::stx-none:stx-none:: +820:python-semantic_version:python-semantic_version-2.4.2-2.el7.noarch.rpm:none::stx-none:stx-none:: +821:python-simplegeneric:python-simplegeneric-0.8-7.el7.noarch.rpm:python-simplegeneric:0.8.1:stx-none:stx-none:: +822:python-simplejson:python-simplejson-3.5.3-5.el7.x86_64.rpm:python-simplejson:3.16.0:stx-none:stx-none:: +823:python-slip:python-slip-0.4.0-4.el7.noarch.rpm:python-slip-dbus:0.6.1:stx-none:stx-none:: +824:python-slip-dbus:python-slip-dbus-0.4.0-4.el7.noarch.rpm:python-slip-dbus:0.6.1:stx-none:stx-none:: +825:python-smartpm:python-smartpm-1.4.1-0.tis.2.x86_64.rpm:none::stx-none:stx-none:: +826:python-sqlparse:python-sqlparse-0.1.18-5.el7.noarch.rpm:python-sqlparse:0.2.4:stx-none:stx-none:: +827:python-tempita:python-tempita-0.5.1-8.el7.noarch.rpm:python-tempita:0.5.3dev:stx-none:stx-none:: +828:python-testtools:python-testtools-1.8.0-2.el7.noarch.rpm:python-testtools:2.3.0:stx-none:stx-none:: +829:python-unicodecsv:python-unicodecsv-0.14.1-4.el7.noarch.rpm:python-unicodecsv:0.14.1+gitX:stx-none:stx-none:: +830:python-unittest2:python-unittest2-1.1.0-4.el7.noarch.rpm:none::stx-none:stx-none:: +831:python-urlgrabber:python-urlgrabber-3.10-9.el7.noarch.rpm:none::stx-none:stx-none:: +832:python-urwid:python-urwid-1.1.1-3.el7.x86_64.rpm:none::stx-none:stx-none:: +833:python-versiontools:python-versiontools-1.9.1-4.el7.noarch.rpm:none::stx-none:stx-none:: +834:python-waitress:python-waitress-0.8.9-5.el7.noarch.rpm:python-waitress:1.1.0:stx-none:stx-none:: +835:python-warlock:python-warlock-1.0.1-1.el7.noarch.rpm:python-warlock:1.2.0:stx-none:stx-none:: +836:python-websocket-client:python-websocket-client-0.34.0-3.el7.noarch.rpm:python-websocket-client:0.44.0:stx-none:stx-none:: +837:python-websockify:python-websockify-0.8.0-1.el7.noarch.rpm:python-websockify:0.8.0:stx-none:stx-none:: +838:python-webtest:python-webtest-2.0.23-1.el7.noarch.rpm:python-webtest:2.0.29:stx-none:stx-none:: +839:python-werkzeug:python-werkzeug-0.9.1-2.el7.noarch.rpm:python-werkzeug:0.14.1:stx-none:stx-none:: +840:python-wrapt:python-wrapt-1.10.8-2.el7.x86_64.rpm:python-wrapt:1.10.11:stx-none:stx-none:: +841:python-XStatic-Angular-lrdragndrop:python-XStatic-Angular-lrdragndrop-1.0.2.2-2.el7.noarch.rpm:python-xstatic-angular-lrdragndrop:1.0.2.2:stx-none:stx-none:: +842:python-XStatic-Bootstrap-Datepicker:python-XStatic-Bootstrap-Datepicker-1.3.1.0-1.el7.noarch.rpm:python-xstatic-bootstrap-datepicker:1.3.1.0:stx-none:stx-none:: +843:python-XStatic-Hogan:python-XStatic-Hogan-2.0.0.2-2.el7.noarch.rpm:python-xstatic-hogan:2.0.0.2:stx-none:stx-none:: +844:python-XStatic-jQuery:python-XStatic-jQuery-1.10.2.1-1.el7.noarch.rpm:python-xstatic-jquery:1.10.2.1:stx-none:stx-none:: +845:python-XStatic-JQuery-Migrate:python-XStatic-JQuery-Migrate-1.2.1.1-2.el7.noarch.rpm:python-xstatic-jquery-migrate:1.2.1.1:stx-none:stx-none:: +846:python-XStatic-JQuery-quicksearch:python-XStatic-JQuery-quicksearch-2.0.3.1-2.el7.noarch.rpm:none::stx-none:stx-none:: +847:python-XStatic-JQuery-TableSorter:python-XStatic-JQuery-TableSorter-2.14.5.1-2.el7.noarch.rpm:none::stx-none:stx-none:: +848:python-XStatic-jquery-ui:python-XStatic-jquery-ui-1.12.0.1-1.el7.noarch.rpm:python-xstatic-jquery-ui:1.11.0.1:stx-none:stx-none:: +849:python-XStatic-Magic-Search:python-XStatic-Magic-Search-0.2.0.1-2.el7.noarch.rpm:python-xstatic-magic-search:0.2.5.1:stx-none:stx-none:: +850:python-XStatic-Rickshaw:python-XStatic-Rickshaw-1.5.0.0-4.el7.noarch.rpm:python-xstatic-rickshaw:1.5.0.0:stx-none:stx-none:: +851:python-XStatic-Spin:python-XStatic-Spin-1.2.5.2-2.el7.noarch.rpm:python-xstatic-spin:1.2.5.2:stx-none:stx-none:: +852:python-zmq:python-zmq-14.7.0-2.el7.x86_64.rpm:none::stx-none:stx-none:: +853:pytz:pytz-2016.10-2.el7.noarch.rpm:python-pytz:2018.5:stx-none:stx-none:: +854:pyxattr:pyxattr-0.5.1-5.el7.x86_64.rpm:none::stx-none:stx-none:: +855:PyYAML:PyYAML-3.10-11.el7.x86_64.rpm:python-pyyaml:3.11:stx-none:stx-none:: +856:qat17:qat17-4.5.0-00034.tis.1.x86_64.rpm:qat17:4.2.0-00012:stx-none:stx-none:: +857:qat17-rt:qat17-rt-4.5.0-00034.tis.1.x86_64.rpm:none::stx-none:stx-none:: +858:qemu-img-ev:qemu-img-ev-3.0.0-0.tis.100.x86_64.rpm:none::stx-none:stx-none:: +859:qemu-kvm-common-ev:qemu-kvm-common-ev-3.0.0-0.tis.100.x86_64.rpm:none::stx-none:stx-none:: +860:qemu-kvm-ev:qemu-kvm-ev-3.0.0-0.tis.100.x86_64.rpm:none::stx-none:stx-none:: +861:qemu-kvm-tools-ev:qemu-kvm-tools-ev-3.0.0-0.tis.100.x86_64.rpm:none::stx-none:stx-none:: +862:qpid-proton-c:qpid-proton-c-0.24.0-2.el7.x86_64.rpm:none::stx-none:stx-none:: +863:qrencode-libs:qrencode-libs-3.4.1-3.el7.x86_64.rpm:none::stx-none:stx-none:: +864:quota:quota-4.01-17.el7.x86_64.rpm:quota:4.04:stx-none:stx-none:: +865:quota-nls:quota-nls-4.01-17.el7.noarch.rpm:none::stx-none:stx-none:: +866:rabbitmq-server:rabbitmq-server-3.6.5-1.el7.tis.7.noarch.rpm:rabbitmq-server:3.2.4:stx-none:stx-none:: +867:rabbitmq-server-config:rabbitmq-server-config-1.0-0.tis.noarch.rpm:none::stx-none:stx-none:: +868:radvd:radvd-2.17-3.el7.x86_64.rpm:radvd:2.17:stx-none:stx-none:: +869:rdma:rdma-7.3_4.7_rc2-6.el7_3.noarch.rpm:rdma-core:18.1:stx-none:stx-none:: +870:rdma-core:rdma-core-45mlnx1-1.45101.tis.1.x86_64.rpm:rdma-core:18.1:stx-none:stx-none:: +871:readline:readline-6.2-10.el7.x86_64.rpm:readline:7:stx-none:stx-none:: +872:registry-token-server:registry-token-server-1.0.0-1.tis.1.x86_64.rpm:none::stx-none:stx-none:: +873:requests-toolbelt:requests-toolbelt-0.5.1-0.tis.1.x86_64.rpm:none::stx-none:stx-none:: +874:resource-agents:resource-agents-4.1.1-12.el7_6.7.tis.1.x86_64.rpm:resource-agents:4.0.1:stx-none:stx-none:: +875:roboto-fontface-common:roboto-fontface-common-0.5.0.0-1.el7.noarch.rpm:none::stx-none:stx-none:: +876:roboto-fontface-fonts:roboto-fontface-fonts-0.5.0.0-1.el7.noarch.rpm:none::stx-none:stx-none:: +877:rootfiles:rootfiles-8.1-11.el7.noarch.rpm:none::stx-none:stx-none:: +878:rpcbind:rpcbind-0.2.0-47.el7.x86_64.rpm:rpcbind:0.2.4:stx-none:stx-none:: +879:rpm:rpm-4.14.0-1.tis.1.x86_64.rpm,rpm-build-libs-4.14.0-1.tis.1.x86_64.rpm,rpm-libs-4.14.0-1.tis.1.x86_64.rpm,rpm-plugin-systemd-inhibit-4.14.0-1.tis.1.x86_64.rpm,rpm-python-4.14.0-1.tis.1.x86_64.rpm:rpm:4.14.2:stx-none:stx-none:: +880:rsync:rsync-3.1.2-4.el7.x86_64.rpm:rsync:3.1.3:stx-none:stx-none:: +881:rsync-config:rsync-config-1.0-1.tis.noarch.rpm:none::stx-none:stx-none:: +882:rtctl:rtctl-1.13-2.el7.noarch.rpm:none::stx-none:stx-none:: +883:rt-setup:rt-setup-1.59-5.el7.noarch.rpm:none::stx-none:stx-none:: +884:ruby:ruby-2.0.0.648-34.el7_6.x86_64.rpm,ruby-libs-2.0.0.648-34.el7_6.x86_64.rpm:ruby:2.5.3:stx-none:stx-none:: +885:ruby-augeas:ruby-augeas-0.5.0-1.el7.x86_64.rpm:none::stx-none:stx-none::These could be the same. +886:rubygem-bigdecimal:rubygem-bigdecimal-1.2.0-34.el7_6.x86_64.rpm:none::stx-none:stx-none:: +887:rubygem-io-console:rubygem-io-console-0.4.2-34.el7_6.x86_64.rpm:none::stx-none:stx-none:: +888:rubygem-json:rubygem-json-2.0.2-2.el7.x86_64.rpm:none::stx-none:stx-none:: +889:rubygem-psych:rubygem-psych-2.0.0-34.el7_6.x86_64.rpm:none::stx-none:stx-none:: +890:rubygem-rdoc:rubygem-rdoc-4.0.0-34.el7_6.noarch.rpm:none::stx-none:stx-none:: +891:rubygem-rgen:rubygem-rgen-0.6.6-2.el7.noarch.rpm:none::stx-none:stx-none:: +892:rubygems:rubygems-2.0.14.1-34.el7_6.noarch.rpm:none::stx-none:stx-none:: +893:ruby-irb:ruby-irb-2.0.0.648-34.el7_6.noarch.rpm:none::stx-none:stx-none:: +894:ruby-shadow:ruby-shadow-1.4.1-23.el7.x86_64.rpm:ruby-shadow:2.5.0:stx-none:stx-none:: +895:samba-client-libs:samba-common-4.8.3-4.el7.noarch.rpm,samba-client-libs-4.8.3-4.el7.x86_64.rpm,samba-common-libs-4.8.3-4.el7.x86_64.rpm:samba:4.8.4:stx-none:stx-none:: +896:screen:screen-4.1.0-0.25.20120314git3c2946.el7.x86_64.rpm:screen:4.6.2:stx-none:stx-none:: +897:seabios-bin:seabios-bin-1.11.0-2.el7.noarch.rpm:seabios:1.11.2:stx-none:stx-none:: +898:seavgabios-bin:seavgabios-bin-1.11.0-2.el7.noarch.rpm:none::stx-none:stx-none:: +899:sed:sed-4.2.2-5.el7.x86_64.rpm:sed:4.2.2:stx-none:stx-none:: +900:selinux-policy:selinux-policy-3.13.1-229.el7_6.6.noarch.rpm:refpolicy:2.20170204:stx-none:stx-none:: +901:selinux-policy-minimum:selinux-policy-minimum-3.13.1-229.el7_6.6.noarch.rpm:refpolicy-minimum:2.20170204:stx-none:stx-none:: +902:selinux-policy-mls:selinux-policy-mls-3.13.1-229.el7_6.6.noarch.rpm:refpolicy-mls:2.20170204:stx-none:stx-none:: +903:selinux-policy-targeted:selinux-policy-targeted-3.13.1-229.el7_6.6.noarch.rpm:refpolicy-targeted:2.20170204:stx-none:stx-none:: +904:setools-libs:setools-libs-3.3.8-4.el7.x86_64.rpm:setools:4.1.1:stx-none:stx-none:: +905:setup:setup-2.8.71-10.el7.tis.14.noarch.rpm:none::stx-none:stx-none:: +906:setup-config:setup-config-1.0-0.tis.noarch.rpm:none::stx-none:stx-none:: +907:sgabios-bin:sgabios-bin-0.20110622svn-4.el7.noarch.rpm:none::stx-none:stx-none:: +908:shadow-utils:shadow-utils-4.1.5.1-25.el7.x86_64.rpm:shadow:4.6:stx-none:stx-none:: +909:shadow-utils-config:shadow-utils-config-1.0-0.tis.noarch.rpm:none::stx-none:stx-none:: +910:shared-mime-info:shared-mime-info-1.8-4.el7.x86_64.rpm:shared-mime-info:1.1:stx-none:stx-none:: +911:shim-x64:shim-x64-15-1.tis.2.x86_64.rpm:none::stx-none:stx-none:: +912:slang:slang-2.2.4-11.el7.x86_64.rpm:slang:2.3.2:stx-none:stx-none:: +913:sm:sm-1.0.0-30.tis.x86_64.rpm:none::stx-none:stx-none:: +914:sm-api:sm-api-1.0-4.tis.x86_64.rpm:none::stx-none:stx-none:: +915:smartmontools:smartmontools-6.5-1.el7.x86_64.rpm:smartmontools:6.6:stx-none:stx-none:: +916:sm-client:sm-client-1.0-2.tis.x86_64.rpm:none::stx-none:stx-none:: +917:sm-common:sm-common-1.0.0-20.tis.x86_64.rpm:none::stx-none:stx-none:: +918:sm-common-libs:sm-common-libs-1.0.0-20.tis.x86_64.rpm:none::stx-none:stx-none:: +919:sm-db:sm-db-1.0.0-30.tis.x86_64.rpm:none::stx-none:stx-none:: +920:sm-eru:sm-eru-1.0.0-20.tis.x86_64.rpm:none::stx-none:stx-none:: +921:sm-tools:sm-tools-1.0-2.tis.x86_64.rpm:none::stx-none:stx-none:: +922:snappy:snappy-1.1.0-3.el7.x86_64.rpm:snappy:1.1.7:stx-none:stx-none:: +923:snmp-audittrail:snmp-audittrail-1.0-4.tis.x86_64.rpm:none::stx-none:stx-none:: +924:snmp-ext:snmp-ext-1.0-2.tis.x86_64.rpm:none::stx-none:stx-none:: +925:socat:socat-1.7.3.2-2.el7.x86_64.rpm:socat:1.7.3.2:stx-none:stx-none:: +926:spawn-fcgi:spawn-fcgi-1.6.3-5.el7.x86_64.rpm:spawn-fcgi:1.6.4:stx-none:stx-none:: +927:spice-server:spice-server-0.14.0-6.el7.x86_64.rpm:spice:0.14.1:stx-none:stx-none:: +928:sqlite:sqlite-3.7.17-8.el7.x86_64.rpm:sqlite3:3.23.1:stx-none:stx-none:: +929:sshpass:sshpass-1.06-1.el7.x86_64.rpm:none::stx-none:stx-none:: +930:starlingx-dashboard:starlingx-dashboard-1.0-163.tis.noarch.rpm:none::stx-none:stx-none:: +931:storageconfig:storageconfig-1.0-6.tis.x86_64.rpm:none::stx-none:stx-none:: +932:strace:strace-4.12-9.el7.x86_64.rpm:strace:4.24:stx-none:stx-none:: +933:stx-ocf-scripts:stx-ocf-scripts-1.0-2.tis.noarch.rpm:none::stx-none:stx-none:: +934:stx-platform-helm:stx-platform-helm-1.0-7.tis.noarch.rpm:none::stx-none:stx-none:: +935:sudo:sudo-1.8.23-3.el7.tis.3.x86_64.rpm:sudo:1.8.23:stx-none:stx-none:: +936:sudo-config:sudo-config-1.0-1.tis.x86_64.rpm:none::stx-none:stx-none:: +937:swig:swig-2.0.10-5.el7.x86_64.rpm:swig:3.0.12:stx-none:stx-none:: +938:swtpm:swtpm-0.1.0-2.tis.1.x86_64.rpm:none::stx-none:stx-none:: +939:swtpm-cuse:swtpm-cuse-0.1.0-2.tis.1.x86_64.rpm:none::stx-none:stx-none:: +940:swtpm-libs:swtpm-libs-0.1.0-2.tis.1.x86_64.rpm:none::stx-none:stx-none:: +941:swtpm-tools:swtpm-tools-0.1.0-2.tis.1.x86_64.rpm:none::stx-none:stx-none:: +942:sysinv:sysinv-1.0-323.tis.x86_64.rpm:none::stx-none:stx-none:: +943:sysinv-agent:sysinv-agent-1.0-5.tis.x86_64.rpm:none::stx-none:stx-none:: +944:syslinux:syslinux-4.05-15.el7.x86_64.rpm:syslinux:6.03:stx-none:stx-none:: +945:syslog-ng:syslog-ng-3.5.6-3.el7.x86_64.rpm:syslog-ng:3.16.1:stx-none:stx-none:: +946:syslog-ng-config:syslog-ng-config-1.0-3.tis.noarch.rpm:none::stx-none:stx-none:: +947:syslog-ng-libdbi:syslog-ng-libdbi-3.5.6-3.el7.x86_64.rpm:none::stx-none:stx-none:: +948:sysstat:sysstat-10.1.5-17.el7.x86_64.rpm:sysstat:11.7.4:stx-none:stx-none:: +949:systemd:systemd-219-62.el7_6.5.tis.11.x86_64.rpm:systemd:239:stx-none:stx-none:: +950:systemd-config:systemd-config-1.0-0.tis.noarch.rpm:none::stx-none:stx-none:: +951:sysvinit-tools:sysvinit-tools-2.88-14.dsf.el7.x86_64.rpm:none::stx-none:stx-none:: +952:tar:tar-1.26-35.el7.x86_64.rpm:tar:1.3:stx-none:stx-none:: +953:targetcli:targetcli-2.1.fb46-7.el7.noarch.rpm:none::stx-none:stx-none:: +954:tboot:tboot-1.9.6-3.el7.tis.1.x86_64.rpm:none::stx-none:stx-none:: +955:tcl:tcl-8.5.13-8.el7.x86_64.rpm:tcl:8.6.8:stx-none:stx-none:: +956:tcpdump:tcpdump-4.9.2-3.el7.x86_64.rpm:tcpdump:4.9.2:stx-none:stx-none:: +957:tcp_wrappers:tcp_wrappers-7.6-77.el7.x86_64.rpm,tcp_wrappers-libs-7.6-77.el7.x86_64.rpm:tcp-wrappers:7.6:stx-none:stx-none:: +958:teamd:teamd-1.27-5.el7.x86_64.rpm:none::stx-none:stx-none:: +959:time:time-1.7-45.el7.x86_64.rpm:time:1.9:stx-none:stx-none:: +960:tis-extensions:tis-extensions-1.0-2.tis.x86_64.rpm:none::stx-none:stx-none:: +961:tis-extensions-controller:tis-extensions-controller-1.0-2.tis.x86_64.rpm:none::stx-none:stx-none:: +962:tpm2-abrmd:tpm2-abrmd-1.1.0-10.el7.x86_64.rpm:tpm2-abrmd:2.0.1:stx-none:stx-none:: +963:tpm2-openssl-engine:tpm2-openssl-engine-1.0-2.tis.x86_64.rpm:none::stx-none:stx-none:: +964:tpm2-tools:tpm2-tools-3.0.4-2.el7.tis.0.x86_64.rpm:tpm2-tools:3.1.1:stx-none:stx-none:: +965:tpm2-tss:tpm2-tss-1.4.0-2.el7.x86_64.rpm:tpm2-tss:2.0.0:stx-none:stx-none:: +966:tpm2-tss-devel:tpm2-tss-devel-1.4.0-2.el7.x86_64.rpm:none::stx-none:stx-none:: +967:traceroute:traceroute-2.0.22-2.el7.x86_64.rpm:traceroute:2.1.0:stx-none:stx-none:: +968:trousers:trousers-0.3.14-2.el7.x86_64.rpm:trousers:0.3.14+gitX:stx-none:stx-none:: +969:tsconfig:tsconfig-1.0-9.tis.x86_64.rpm:none::stx-none:stx-none:: +970:tss2:tss2-930-1.tis.1.x86_64.rpm:none::stx-none:stx-none:: +971:tuna:tuna-0.13-6.el7.noarch.rpm:none::stx-none:stx-none:: +972:tuned:tuned-2.8.0-5.el7.noarch.rpm:none::stx-none:stx-none:: +973:tuned-profiles-realtime:tuned-profiles-realtime-2.8.0-5.el7.noarch.rpm:none::stx-none:stx-none:: +974:tzdata:tzdata-2018g-1.el7.noarch.rpm:tzdata:2019a:stx-none:stx-none:: +975:unbound-libs:unbound-libs-1.6.6-1.el7.x86_64.rpm:unbound:1.8.1:stx-none:stx-none:: +976:unzip:unzip-6.0-19.el7.x86_64.rpm:unzip:6:stx-none:stx-none:: +977:update-motd:update-motd-1.0-2.tis.x86_64.rpm:none::stx-none:stx-none:: +978:usbredir:usbredir-0.7.1-3.el7.x86_64.rpm:usbredir:0.7.1+gitX:stx-none:stx-none:: +979:ustr:ustr-1.0.4-16.el7.x86_64.rpm:none::stx-none:stx-none:: +980:util-linux:util-linux-2.23.2-59.el7.x86_64.rpm:util-linux:2.32.1:stx-none:stx-none:: +981:util-linux-config:util-linux-config-1.0-0.tis.noarch.rpm:none::stx-none:stx-none:: +982:uuid:uuid-1.6.2-26.el7.x86_64.rpm:none::stx-none:stx-none:: +983:vim:vim-common-7.4.160-5.el7.x86_64.rpm,vim-enhanced-7.4.160-5.el7.x86_64.rpm,vim-filesystem-7.4.160-5.el7.x86_64.rpm,vim-minimal-7.4.160-5.el7.x86_64.rpm:vim:8.1.0347:stx-none:stx-none:: +984:virt-what:virt-what-1.18-4.el7.x86_64.rpm:none::stx-none:stx-none:: +985:vm-topology:vm-topology-1.0-1.tis.noarch.rpm:none::stx-none:stx-none:: +986:web-assets-filesystem:web-assets-filesystem-5-1.el7.noarch.rpm:none::stx-none:stx-none:: +987:wget:wget-1.14-18.el7.x86_64.rpm:wget:1.19.5:stx-none:stx-none:: +988:which:which-2.20-7.el7.x86_64.rpm:which:2.21:stx-none:stx-none:: +989:workerconfig:workerconfig-1.0-12.tis.x86_64.rpm:none::stx-none:stx-none:: +990:workerconfig-standalone:workerconfig-standalone-1.0-12.tis.x86_64.rpm:none::stx-none:stx-none:: +991:workerconfig-subfunction:workerconfig-subfunction-1.0-12.tis.x86_64.rpm:none::stx-none:stx-none:: +992:worker-utils:worker-utils-1.0-3.tis.x86_64.rpm:none::stx-none:stx-none:: +993:wrs-ssl:wrs-ssl-1.0.0-13.tis.x86_64.rpm:none::stx-none:stx-none:: +994:xfsprogs:xfsprogs-4.5.0-18.el7.x86_64.rpm:xfsprogs:4.18.0:stx-none:stx-none:: +995:xml-common:xml-common-0.6.3-39.el7.noarch.rpm:none::stx-none:stx-none:: +996:xstatic-angular-bootstrap-common:xstatic-angular-bootstrap-common-2.2.0.0-1.el7.noarch.rpm:none::stx-none:stx-none:: +997:XStatic-Angular-common:XStatic-Angular-common-1.5.8.0-1.el7.noarch.rpm:none::stx-none:stx-none:: +998:xstatic-angular-fileupload-common:xstatic-angular-fileupload-common-12.0.4.0-1.el7.noarch.rpm:none::stx-none:stx-none:: +999:xstatic-angular-gettext-common:xstatic-angular-gettext-common-2.3.8.0-1.el7.noarch.rpm:none::stx-none:stx-none:: +1000:xstatic-angular-schema-form-common:xstatic-angular-schema-form-common-0.8.13.0-0.1.pre_review.el7.noarch.rpm:none::stx-none:stx-none:: +1001:xstatic-bootstrap-scss-common:xstatic-bootstrap-scss-common-3.3.7.1-2.el7.noarch.rpm:none::stx-none:stx-none:: +1002:xstatic-d3-common:xstatic-d3-common-3.5.17.0-1.el7.noarch.rpm:none::stx-none:stx-none:: +1003:xstatic-jasmine-common:xstatic-jasmine-common-2.4.1.1-1.el7.noarch.rpm:none::stx-none:stx-none:: +1004:xstatic-jsencrypt-common:xstatic-jsencrypt-common-2.3.1.1-1.el7.noarch.rpm:none::stx-none:stx-none:: +1005:xstatic-objectpath-common:xstatic-objectpath-common-1.2.1.0-0.1.pre_review.el7.noarch.rpm:none::stx-none:stx-none:: +1006:xstatic-smart-table-common:xstatic-smart-table-common-1.4.13.2-1.el7.noarch.rpm:none::stx-none:stx-none:: +1007:xstatic-termjs-common:xstatic-termjs-common-0.0.7.0-1.el7.noarch.rpm:none::stx-none:stx-none:: +1008:xstatic-tv4-common:xstatic-tv4-common-1.2.7.0-0.1.pre_review.el7.noarch.rpm:none::stx-none:stx-none:: +1009:xz:xz-5.2.2-1.el7.x86_64.rpm,xz-libs-5.2.2-1.el7.x86_64.rpm:xz:5.2.4:stx-none:stx-none:: +1010:yajl:yajl-2.0.4-4.el7.x86_64.rpm:yajl:2.1.0:stx-none:stx-none:: +1011:yum:yum-3.4.3-161.el7.centos.noarch.rpm:none::stx-none:stx-none:: +1012:yum-metadata-parser:yum-metadata-parser-1.1.4-10.el7.x86_64.rpm:none::stx-none:stx-none:: +1013:yum-plugin-fastestmirror:yum-plugin-fastestmirror-1.1.31-50.el7.noarch.rpm:none::stx-none:stx-none:: +1014:zeromq:zeromq-4.0.5-4.el7.x86_64.rpm:zeromq:4.2.5:stx-none:stx-none:: +1015:zip:zip-3.0-11.el7.x86_64.rpm:zip:3:stx-none:stx-none:: +1016:zlib:zlib-1.2.7-18.el7.x86_64.rpm:zlib:1.2.11:stx-none:stx-none:: diff --git a/docs/inspect.sh b/docs/inspect.sh new file mode 100755 index 0000000..e523bda --- /dev/null +++ b/docs/inspect.sh @@ -0,0 +1,70 @@ +#!/bin/bash + +# To use this script: +usage () { + +cat << EOF + +# This script needs the installed package list. +# 1 - build the project with + +bitbake openstack-image-aio + +# 2 - From bitbake build environment: + +bitbake openstack-image-aio -c devshell +cd ../rootfs +alias prpm='rpm --root=\$PWD --dbpath=/var/lib/rpm ' +prpm -qa | sed -e 's/^kernel.*$//g;s/.*-d[be][gv].*//g' | grep -v ^$ > ///meta-starlingX/docs/openstack-image-aio.pkgs +exit + +cd ///meta-starlingX/docs/ +./inspect.sh + +################################################################## +# Import Pack Packages_List_efforts.csv with ":" field delimeter.# +################################################################## +EOF +exit 0 +} + + +INCLUDED_PKGS="python-ryu-common|python-libs|vim|audit|avahi|bzip2|dbus|e2fsprogs|file|fuse|gettext|kmod|libvirt|lvm2|ncurses|net|net|openssl|pciutils|perl|postgresql|rpm|rpm|systemd|xz|zlib|sqlite|openssl|openssh|wget|grub|elfutils|apr|btrfs-progs|httpd|iproute|libacl|libaio|libassuan|libattr|libcap-ng|libcurl|libdaemon|libffi|libgcc|libgomp|libICE|libidn|libmnl|libselinux|libselinux|libsepol|libsmartcols|libstdc++|libtirpc|libtool-ltdl|libunistring|libuuid|libwbclient|libwbclient|alsa-lib|cups-lib|gnupg2|gnutls|jansson|json-c|libedit|liblkid|libestr|libev|libgudev1|libibverbs|libjpeg-turbo|liboath|libogg|libpciaccess|libpipeline|libpcap|libpng|librdmacm|libsemanage|libsysfs|libteam|libtempter|lm_sensors-libs|lzo|mariadb-common|mtce-guestAgent|mtce-guestServer|newt|newt-python|numactl-libs|openstack-barbican|openstack-dashboard|openstack-keystone|passwd|pcre|pixman|pulseaudio-libs|pygpgme|pyparsing|python2-crypto|python2-docker|python-flask-restful|python2-pika_pool|python2-pyOpenSSL|python-3parclient|PyYAML|readline|samba-client-libs|seabios-bin|shadow-utils|spice-server|tcp_wrappers|yajl|cyrus-sasl|efivar-libs|expat|gdbm|glib2|gmp|groff-base|libnl3|mozjs17|openldap|opus|createrepo|c-ares|libXext|libXau|libXi|libXtst|mod_wsgi|popt|device-mapper-multipath|flac-libs|GeoIP|gpm-libs|librdmacm|ntfs|ntfs-progs|OpenIPMI-modalias|pytz|snappy|info|freetype|libutempter|lksctp-tools|lmsensors|erlang-os_mon|erlang-otp_mibs|erlang-public_key|erlang-runtime_tools|erlang-syntax_tools|libblkid|libmount|celt051|leveldb" + +[ ! -f openstack-image-aio.pkgs ] && usage; +rm -f reports/* + +# Parse the installed RPM packages into package name and package version +# Package:Version +sed -e 's/\(^.*\)-\([0-9a-zA-Z].*-r[0-9]\)\(.*\)/\1:\2/g' openstack-image-aio.pkgs | sort > reports/ypkgs.lst +sed -e '1 s/^total .*$//g;s/^.*[0-9][0-9]:[0-9][0-9] //g; + s/\(^.*[a-zA-Z]\)-\([0-9].*.[el7\|tis]\)\(.*\)/\1:\2/g; + s/python2/python/g' packages.txt | grep -v "^$" | sort > reports/stxpkgs.lst + +awk 'BEGIN { FS = ":" }; {if($2!=$4) print $2":"$4}' Packages_List_efforts.csv > reports/renamed-pkgs.txt +awk 'BEGIN { FS = ":" }; {if ($4 == $2) print $2":"$4}' Packages_List_efforts.csv > reports/yocto-pkgs.txt + +# Missing yocto-pkgs.txt + +echo Missing Yocto pkgs > reports/missing_pkgs.txt +for f in $(cut -d':' -f1 reports/yocto-pkgs.txt | egrep -v $INCLUDED_PKGS); do + grep -q -i -w $f reports/ypkgs.lst || echo $f | tee -a reports/missing_pkgs.txt +done + +echo -e "\nMissing renamed Yocto pkgs" >> reports/missing_pkgs.txt +for f in $(cut -d':' -f2 reports/renamed-pkgs.txt | egrep -v $INCLUDED_PKGS); do + echo $f | grep -q -w none && continue + grep -q -i $f reports/ypkgs.lst || echo $f | tee -a reports/missing_pkgs.txt +done + +echo -e "\nMissing Yocto recipes" >> reports/missing_pkgs.txt +for f in $(grep -w none reports/renamed-pkgs.txt | cut -d':' -f1 | egrep -v $INCLUDED_PKGS); do + grep -q -i $f -w reports/ypkgs.lst && \ + echo $f >> reports/recipes_added.txt || echo $f | tee -a reports/missing_pkgs.txt +done + +x=$(cat reports/ypkgs.lst) +for t in ${x[@]}; do + p=$(echo $t | cut -d":" -f1) + sed -i -e "1,$ s/\(^[0-9].*:$p:.*:.*:.*:\)\(stx-none:stx-none:\)\(.*:.*\)/\1$t:\3/g" Packages_List_efforts.csv +done diff --git a/recipes-core/packagegroups/packagegroup-stx-integ.bb b/recipes-core/packagegroups/packagegroup-stx-integ.bb index 5cac4de..e509eb8 100644 --- a/recipes-core/packagegroups/packagegroup-stx-integ.bb +++ b/recipes-core/packagegroups/packagegroup-stx-integ.bb @@ -44,18 +44,19 @@ RDEPENDS_packagegroup-stx-integ-cff = " \ iptables-config \ memcached-custom \ ntp-config \ - pam-config \ rsync-config \ - shadow-utils-config \ - sudo-config \ syslog-ng-config \ util-linux-config \ " +# sudo-config \ +# shadow-utils-config +# pam-config RDEPENDS_packagegroup-stx-integ-puppet-modules = " \ - puppet \ - puppet-boolean \ - puppet-create-resources \ - puppet-dnsmasq \ - puppet-drbd \ " +# puppet-boolean \ +# puppet-create-resources \ +# puppet-dnsmasq \ +# puppet-drbd \ +# " +# puppet