Centos7安装redis6.0.6教程
Centos7安装redis6.0.6教程
1.安装gcc
yum install gcc -y
2.查看gcc版本
gcc -v
默认是4.8.5,安装redis6.0以上版本,需要升级gcc
3.升级gcc版本
yum -y install centos-release-scl yum -y install devtoolset-9-gcc devtoolset-9-gcc-c++ devtoolset-9-binutils scl enable devtoolset-9 bash
scl enable devtoolset-9 bash只是临时修改系统gcc版本
使用下面的命令永久修改系统gcc版本
echo "source /opt/rh/devtoolset-9/enable" >>/etc/profile
再次查看gcc版本
4.创建一个soft文件夹,用于安装redis
cd /usr/local mkdir soft cd soft
5.下载redis
下载的具体版本可以在官网上选择,这里使用6.0.6
https://redis.io/download
wget http://download.redis.io/releases/redis-6.0.6.tar.gz
6.解压
tar xzf redis-6.0.6.tar.gz
7.编译
cd redis-6.0.6 make install
make install命令会将redis/src下的一些脚本拷贝到/usr/local/bin/目录下,因为/usr/local/bin/目录已经在path环境变量中配置了,所以在任何目录下都可以执行这些redis的脚本文件。
8.修改配置文件
vim redis.conf
改为本机的ip地址192.168.42.112,方便远程连接
将protected-mode改为no,配合bind设置,允许外部网络访问
requirepass设置密码,这里设置为12345678
daemonize设为yes,允许后台启动
9.启动redis
redis-server /usr/local/soft/redis-6.0.6/redis.conf
10.登录redis客户端
redis-cli -h 192.168.42.112 -p 6379 -a 12345678
11.关闭redis
因为设置了密码,所以关闭redis时,同样要输密码
redis-cli -h 192.168.42.112 -p 6379 -a 12345678 shutdown
12.centos7 防火墙开启redis远程连接端口
#1.查看防火墙端口 firewall-cmd --list-ports #2.开启端口 firewall-cmd --zone=public --add-port=6379/tcp --permanent #3.重启防火墙 firewall-cmd --reload #重启 firewallsystemctl stop firewalld.service #停止 firewallsystemctl disable firewalld.service #禁止firewall开机启动
flex-doc.x86_64 2.5.37-6.el7 base flite.i686 1.3-22.el7 base flite-devel.i686 1.3-22.el7 base flite-devel.x86_64 1.3-22.el7 base fltk.i686 1.3.4-2.el7 base fltk.x86_64 1.3.4-2.el7 base fltk-devel.i686 1.3.4-2.el7 base fltk-devel.x86_64 1.3.4-2.el7 base fltk-fluid.x86_64 1.3.4-2.el7 base fltk-static.i686 1.3.4-2.el7 base fltk-static.x86_64 1.3.4-2.el7 base flute.noarch 1.3.0-11.OOo31.el7 base flute-javadoc.noarch 1.3.0-11.OOo31.el7 base folks.i686 1:0.11.4-1.el7 base folks-devel.i686 1:0.11.4-1.el7 base folks-devel.x86_64 1:0.11.4-1.el7 base folks-tools.i686 1:0.11.4-1.el7 base folks-tools.x86_64 1:0.11.4-1.el7 base fontawesome-fonts-web.noarch 4.1.0-2.el7 base fontconfig.i686 2.13.0-4.3.el7 base fontconfig-devel.i686 2.13.0-4.3.el7 base fontconfig-devel.x86_64 2.13.0-4.3.el7 base fontconfig-devel-doc.noarch 2.13.0-4.3.el7 base fontforge.i686 20120731b-13.el7 base fontforge.x86_64 20120731b-13.el7 base fontforge-devel.i686 20120731b-13.el7 base fontforge-devel.x86_64 20120731b-13.el7 base fontpackages-devel.noarch 1.44-8.el7 base fontpackages-tools.noarch 1.44-8.el7 base fonts-tweak-tool.i686 0.3.2-5.el7 base fonts-tweak-tool.x86_64 0.3.2-5.el7 base fonttools.x86_64 2.4-3.el7 base foomatic.x86_64 4.0.9-10.el7_9 updates foomatic-filters.x86_64 4.0.9-10.el7_9 updates fop.noarch 1.1-6.el7 base fop-javadoc.noarch 1.1-6.el7 base forge-parent.noarch 31-2.el7 base fprintd-devel.noarch 0.8.1-2.el7 base fprintd-pam.i686 0.8.1-2.el7 base freeglut.i686 3.0.0-8.el7 base freeglut.x86_64 3.0.0-8.el7 base freeglut-devel.i686 3.0.0-8.el7 base freeglut-devel.x86_64 3.0.0-8.el7 base freeipmi.i686 1.5.7-3.el7 base freeipmi.x86_64 1.5.7-3.el7 base freeipmi-bmc-watchdog.x86_64 1.5.7-3.el7 base freeipmi-devel.i686 1.5.7-3.el7 base freeipmi-devel.x86_64 1.5.7-3.el7 base freeipmi-ipmidetectd.x86_64 1.5.7-3.el7 base freeipmi-ipmiseld.x86_64 1.5.7-3.el7 base freeradius.x86_64 3.0.13-15.el7 base freeradius-devel.i686 3.0.13-15.el7 base freeradius-devel.x86_64 3.0.13-15.el7 base freeradius-doc.x86_64 3.0.13-15.el7 base freeradius-krb5.x86_64 3.0.13-15.el7 base freeradius-ldap.x86_64 3.0.13-15.el7 base freeradius-mysql.x86_64 3.0.13-15.el7 base freeradius-perl.x86_64 3.0.13-15.el7 base freeradius-postgresql.x86_64 3.0.13-15.el7 base freeradius-python.x86_64 3.0.13-15.el7 base freeradius-sqlite.x86_64 3.0.13-15.el7 base freeradius-unixODBC.x86_64 3.0.13-15.el7 base freeradius-utils.x86_64 3.0.13-15.el7 base freerdp.x86_64 2.1.1-2.el7 base freerdp-devel.i686 2.1.1-2.el7 base freerdp-devel.x86_64 2.1.1-2.el7 base freerdp-libs.i686 2.1.1-2.el7 base freetype.i686 2.8-14.el7_9.1 updates freetype.x86_64 2.8-14.el7_9.1 updates freetype-demos.x86_64 2.8-14.el7_9.1 updates freetype-devel.i686 2.8-14.el7_9.1 updates freetype-devel.x86_64 2.8-14.el7_9.1 updates frei0r-devel.i686 1.3-13.el7 base frei0r-devel.x86_64 1.3-13.el7 base frei0r-plugins-opencv.x86_64 1.3-13.el7 base fribidi.i686 1.0.2-1.el7_7.1 base fribidi-devel.i686 1.0.2-1.el7_7.1 base fribidi-devel.x86_64 1.0.2-1.el7_7.1 base fros-gnome.noarch 1.0-5.el7 base ftp.x86_64 0.17-67.el7 base fuse-devel.i686 2.9.2-11.el7 base fuse-devel.x86_64 2.9.2-11.el7 base fuse-libs.i686 2.9.2-11.el7 base fuse-overlayfs.x86_64 0.7.2-6.el7_8 extras fuse3.x86_64 3.6.1-4.el7 extras fuse3-devel.x86_64 3.6.1-4.el7 extras fuse3-libs.x86_64 3.6.1-4.el7 extras fuseiso.x86_64 20070708-15.el7 base fusesource-pom.noarch 1.9-7.el7 base fwupd.i686 1.0.8-5.el7 base fwupd-devel.i686 1.0.8-5.el7 base fwupd-devel.x86_64 1.0.8-5.el7 base fwupdate.x86_64 12-6.el7.centos base fwupdate-devel.x86_64 12-6.el7.centos base gamin.i686 0.1.10-16.el7 base gamin-devel.i686 0.1.10-16.el7 base gamin-devel.x86_64 0.1.10-16.el7 base gamin-python.x86_64 0.1.10-16.el7 base gavl.i686 1.4.0-4.el7 base gavl-devel.i686 1.4.0-4.el7 base gavl-devel.x86_64 1.4.0-4.el7 base gc.i686 7.2d-7.el7 base gc.x86_64 7.2d-7.el7 base gc-devel.i686 7.2d-7.el7 base gc-devel.x86_64 7.2d-7.el7 base gcab.x86_64 0.7-4.el7_4 base gcc-gnat.x86_64 4.8.5-44.el7 base gcc-go.x86_64 4.8.5-44.el7 base gcc-objc.x86_64 4.8.5-44.el7 base gcc-objc++.x86_64 4.8.5-44.el7 base gcc-plugin-devel.x86_64 4.8.5-44.el7 base gconf-editor.x86_64 3.0.1-8.el7_1 base gcr.i686 3.28.0-1.el7 base gcr-devel.i686 3.28.0-1.el7 base gcr-devel.x86_64 3.28.0-1.el7 base gd.i686 2.0.35-27.el7_9 updates gd.x86_64 2.0.35-27.el7_9 updates gd-devel.i686 2.0.35-27.el7_9 updates gd-devel.x86_64 2.0.35-27.el7_9 updates gd-progs.x86_64 2.0.35-27.el7_9 updates gdb-doc.noarch 7.6.1-120.el7 base gdb-gdbserver.x86_64 7.6.1-120.el7 base gdbm.i686 1.10-8.el7 base gdbm-devel.i686 1.10-8.el7 base gdk-pixbuf2.i686 2.36.12-3.el7 base gdk-pixbuf2-devel.i686 2.36.12-3.el7 base gdk-pixbuf2-devel.x86_64 2.36.12-3.el7 base gdk-pixbuf2-tests.x86_64 2.36.12-3.el7 base gdm.i686 1:3.28.2-26.el7 updates gdm.x86_64 1:3.28.2-26.el7 updates gdm-devel.i686 1:3.28.2-26.el7 updates gdm-devel.x86_64 1:3.28.2-26.el7 updates gdm-pam-extensions-devel.i686 1:3.28.2-26.el7 updates gdm-pam-extensions-devel.x86_64 1:3.28.2-26.el7 updates gedit.i686 2:3.28.1-3.el7 base gedit-devel.i686 2:3.28.1-3.el7 base gedit-devel.x86_64 2:3.28.1-3.el7 base gedit-plugin-bookmarks.x86_64 3.28.1-1.el7 base gedit-plugin-bracketcompletion.x86_64 3.28.1-1.el7 base gedit-plugin-charmap.x86_64 3.28.1-1.el7 base gedit-plugin-codecomment.x86_64 3.28.1-1.el7 base gedit-plugin-colorpicker.x86_64 3.28.1-1.el7 base gedit-plugin-colorschemer.x86_64 3.28.1-1.el7 base gedit-plugin-commander.x86_64 3.28.1-1.el7 base gedit-plugin-drawspaces.x86_64 3.28.1-1.el7 base gedit-plugin-findinfiles.x86_64 3.28.1-1.el7 base gedit-plugin-joinlines.x86_64 3.28.1-1.el7 base gedit-plugin-multiedit.x86_64 3.28.1-1.el7 base gedit-plugin-smartspaces.x86_64 3.28.1-1.el7 base gedit-plugin-synctex.x86_64 3.28.1-1.el7 base gedit-plugin-terminal.x86_64 3.28.1-1.el7 base gedit-plugin-textsize.x86_64 3.28.1-1.el7 base gedit-plugin-translate.x86_64 3.28.1-1.el7 base gedit-plugin-wordcompletion.x86_64 3.28.1-1.el7 base gedit-plugins.x86_64 3.28.1-1.el7 base gedit-plugins-data.x86_64 3.28.1-1.el7 base gegl.i686 0.2.0-19.el7 base gegl.x86_64 0.2.0-19.el7 base gegl-devel.i686 0.2.0-19.el7 base gegl-devel.x86_64 0.2.0-19.el7 base geoclue.i686 0.12.99-7.el7 base geoclue.x86_64 0.12.99-7.el7 base geoclue-devel.i686 0.12.99-7.el7 base geoclue-devel.x86_64 0.12.99-7.el7 base geoclue-doc.noarch 0.12.99-7.el7 base geoclue-gsmloc.x86_64 0.12.99-7.el7 base geoclue-gui.x86_64 0.12.99-7.el7 base geoclue2.i686 2.4.8-1.el7 base geoclue2-demos.x86_64 2.4.8-1.el7 base geoclue2-devel.i686 2.4.8-1.el7 base geoclue2-devel.x86_64 2.4.8-1.el7 base geoclue2-libs.i686 2.4.8-1.el7 base geocode-glib.i686 3.26.0-3.el7 base geocode-glib-devel.i686 3.26.0-3.el7 base geocode-glib-devel.x86_64 3.26.0-3.el7 base geoipupdate-cron.noarch 2.5.0-1.el7 base geolite2-city.noarch 20180605-1.el7 base geolite2-country.noarch 20180605-1.el7 base geronimo-annotation.noarch 1.0-15.el7 base geronimo-annotation-javadoc.noarch 1.0-15.el7 base geronimo-jaspic-spec.noarch 1.1-9.el7 base geronimo-jaspic-spec-javadoc.noarch 1.1-9.el7 base geronimo-jaxrpc.noarch 2.1-14.el7 base geronimo-jaxrpc-javadoc.noarch 2.1-14.el7 base geronimo-jms-javadoc.noarch 1.1.1-19.el7 base geronimo-jta-javadoc.noarch 1.1.1-17.el7 base geronimo-osgi-support.noarch 1.0-15.el7 base geronimo-osgi-support-javadoc.noarch 1.0-15.el7 base geronimo-parent-poms.noarch 1.6-16.el7 base geronimo-saaj.noarch 1.1-14.el7 base geronimo-saaj-javadoc.noarch 1.1-14.el7 base gettext-devel.i686 0.19.8.1-3.el7 base gettext-libs.i686 0.19.8.1-3.el7 base gfs2-utils.x86_64 3.1.10-11.el7_9.1 updates ghostscript.i686 9.25-5.el7 base ghostscript-chinese.noarch 0.4.0-4.el7 base ghostscript-chinese-zh_CN.noarch 0.4.0-4.el7 base ghostscript-chinese-zh_TW.noarch 0.4.0-4.el7 base ghostscript-doc.noarch 9.25-5.el7 base ghostscript-fonts.noarch 5.50-32.el7 base ghostscript-gtk.x86_64 9.25-5.el7 base giflib.i686 4.1.6-9.el7 base giflib-devel.i686 4.1.6-9.el7 base giflib-devel.x86_64 4.1.6-9.el7 base giflib-utils.x86_64 4.1.6-9.el7 base gimp.x86_64 2:2.8.22-1.el7 base gimp-data-extras.noarch 2.0.2-9.el7 base gimp-devel.i686 2:2.8.22-1.el7 base gimp-devel.x86_64 2:2.8.22-1.el7 base gimp-devel-tools.x86_64 2:2.8.22-1.el7 base gimp-help.noarch 2.8.2-1.el7 base gimp-help-ca.noarch 2.8.2-1.el7 base gimp-help-da.noarch 2.8.2-1.el7 base gimp-help-de.noarch 2.8.2-1.el7 base gimp-help-el.noarch 2.8.2-1.el7 base gimp-help-en_GB.noarch 2.8.2-1.el7 base gimp-help-es.noarch 2.8.2-1.el7 base gimp-help-fr.noarch 2.8.2-1.el7 base gimp-help-it.noarch 2.8.2-1.el7 base gimp-help-ja.noarch 2.8.2-1.el7 base gimp-help-ko.noarch 2.8.2-1.el7 base gimp-help-nl.noarch 2.8.2-1.el7 base gimp-help-nn.noarch 2.8.2-1.el7 base gimp-help-pt_BR.noarch 2.8.2-1.el7 base gimp-help-ru.noarch 2.8.2-1.el7 base gimp-help-sl.noarch 2.8.2-1.el7 base gimp-help-sv.noarch 2.8.2-1.el7 base gimp-help-zh_CN.noarch 2.8.2-1.el7 base gimp-libs.i686 2:2.8.22-1.el7 base gimp-libs.x86_64 2:2.8.22-1.el7 base git-all.noarch 1.8.3.1-23.el7_8 base git-bzr.noarch 1.8.3.1-23.el7_8 base git-cvs.noarch 1.8.3.1-23.el7_8 base git-daemon.x86_64 1.8.3.1-23.el7_8 base git-email.noarch 1.8.3.1-23.el7_8 base git-gnome-keyring.x86_64 1.8.3.1-23.el7_8 base git-gui.noarch 1.8.3.1-23.el7_8 base git-hg.noarch 1.8.3.1-23.el7_8 base git-instaweb.noarch 1.8.3.1-23.el7_8 base git-p4.noarch 1.8.3.1-23.el7_8 base git-svn.x86_64 1.8.3.1-23.el7_8 base gitk.noarch 1.8.3.1-23.el7_8 base gitweb.noarch 1.8.3.1-23.el7_8 base gjs.i686 1.52.5-1.el7_6 base gjs-devel.i686 1.52.5-1.el7_6 base gjs-devel.x86_64 1.52.5-1.el7_6 base gjs-tests.x86_64 1.52.5-1.el7_6 base gl-manpages.noarch 1.1-7.20130122.el7 base glade.x86_64 3.22.1-1.el7 base glade-devel.i686 3.22.1-1.el7 base glade-devel.x86_64 3.22.1-1.el7 base glade-libs.i686 3.22.1-1.el7 base glade3.x86_64 2:3.8.3-6.el7 base glade3-libgladeui.i686 2:3.8.3-6.el7 base glade3-libgladeui.x86_64 2:3.8.3-6.el7 base glade3-libgladeui-devel.i686 2:3.8.3-6.el7 base glade3-libgladeui-devel.x86_64 2:3.8.3-6.el7 base glassfish-dtd-parser-javadoc.noarch 1.2-0.8.20120120svn.el7 base glassfish-el.noarch 2.2.5-6.el7 base glassfish-el-api.noarch 2.2.4-5.el7 base glassfish-el-api-javadoc.noarch 2.2.4-5.el7 base glassfish-el-javadoc.noarch 2.2.5-6.el7 base glassfish-fastinfoset-javadoc.noarch 1.2.12-9.el7 base glassfish-jaxb-api-javadoc.noarch 2.2.7-4.el7 base glassfish-jaxb-javadoc.noarch 2.2.5-6.el7 base glassfish-jsp.noarch 2.2.6-11.el7 base glassfish-jsp-api.noarch 2.2.1-9.el7 base glassfish-jsp-api-javadoc.noarch 2.2.1-9.el7 base glassfish-jsp-javadoc.noarch 2.2.6-11.el7 base glew.x86_64 1.10.0-5.el7 base glew-devel.i686 1.10.0-5.el7 base glew-devel.x86_64 1.10.0-5.el7 base glib-networking.i686 2.56.1-1.el7 base glib-networking-tests.x86_64 2.56.1-1.el7 base glib2.i686 2.56.1-9.el7_9 updates glib2.x86_64 2.56.1-9.el7_9 updates glib2-devel.i686 2.56.1-9.el7_9 updates glib2-devel.x86_64 2.56.1-9.el7_9 updates glib2-doc.noarch 2.56.1-9.el7_9 updates glib2-fam.x86_64 2.56.1-9.el7_9 updates glib2-static.i686 2.56.1-9.el7_9 updates glib2-static.x86_64 2.56.1-9.el7_9 updates glib2-tests.x86_64 2.56.1-9.el7_9 updates glibc.i686 2.17-324.el7_9 updates glibc.x86_64 2.17-324.el7_9 updates glibc-common.x86_64 2.17-324.el7_9 updates glibc-devel.i686 2.17-324.el7_9 updates glibc-devel.x86_64 2.17-324.el7_9 updates glibc-headers.x86_64 2.17-324.el7_9 updates glibc-static.i686 2.17-324.el7_9 updates glibc-static.x86_64 2.17-324.el7_9 updates glibc-utils.x86_64 2.17-324.el7_9 updates glibmm24.i686 2.56.0-1.el7 base glibmm24-devel.i686 2.56.0-1.el7 base glibmm24-devel.x86_64 2.56.0-1.el7 base glibmm24-doc.noarch 2.56.0-1.el7 base glm-devel.noarch 0.9.6.3-1.el7 base glm-doc.noarch 0.9.6.3-1.el7 base glusterfs.x86_64 6.0-49.1.el7 updates glusterfs-api.x86_64 6.0-49.1.el7 updates glusterfs-api-devel.x86_64 6.0-49.1.el7 updates glusterfs-cli.x86_64 6.0-49.1.el7 updates glusterfs-client-xlators.x86_64 6.0-49.1.el7 updates glusterfs-cloudsync-plugins.x86_64 6.0-49.1.el7 updates glusterfs-devel.x86_64 6.0-49.1.el7 updates glusterfs-fuse.x86_64 6.0-49.1.el7 updates glusterfs-libs.x86_64 6.0-49.1.el7 updates glusterfs-rdma.x86_64 6.0-49.1.el7 updates gmp.i686 1:6.0.0-15.el7 base gmp-devel.i686 1:6.0.0-15.el7 base gmp-devel.x86_64 1:6.0.0-15.el7 base gmp-static.i686 1:6.0.0-15.el7 base gmp-static.x86_64 1:6.0.0-15.el7 base gnome-backgrounds.noarch 3.28.0-1.el7 base gnome-bluetooth.i686 1:3.28.2-1.el7 base gnome-bluetooth-libs.i686 1:3.28.2-1.el7 base gnome-bluetooth-libs-devel.i686 1:3.28.2-1.el7 base gnome-bluetooth-libs-devel.x86_64 1:3.28.2-1.el7 base gnome-classic-session.noarch 3.28.1-16.el7_9 updates gnome-color-manager.i686 3.28.0-1.el7 base gnome-common.noarch 3.18.0-1.el7 base gnome-desktop3.i686 3.28.2-2.el7 base gnome-desktop3-devel.i686 3.28.2-2.el7 base gnome-desktop3-devel.x86_64 3.28.2-2.el7 base gnome-desktop3-tests.x86_64 3.28.2-2.el7 base gnome-devel-docs.noarch 3.28.0-1.el7 base gnome-doc-utils.noarch 0.20.10-5.el7 base gnome-doc-utils-stylesheets.noarch 0.20.10-5.el7 base gnome-documents.x86_64 3.28.2-2.el7 base gnome-documents-libs.x86_64 3.28.2-2.el7 base gnome-getting-started-docs-cs.noarch 3.28.2-1.el7 base gnome-getting-started-docs-de.noarch 3.28.2-1.el7 base gnome-getting-started-docs-es.noarch 3.28.2-1.el7 base gnome-getting-started-docs-fr.noarch 3.28.2-1.el7 base gnome-getting-started-docs-gl.noarch 3.28.2-1.el7 base gnome-getting-started-docs-hu.noarch 3.28.2-1.el7 base gnome-getting-started-docs-it.noarch 3.28.2-1.el7 base gnome-getting-started-docs-pl.noarch 3.28.2-1.el7 base gnome-getting-started-docs-pt_BR.noarch 3.28.2-1.el7 base gnome-getting-started-docs-ru.noarch 3.28.2-1.el7 base gnome-icon-theme-devel.noarch 3.12.0-1.el7 base gnome-icon-theme-legacy.noarch 3.12.0-1.el7 base gnome-keyring.i686 3.28.2-1.el7 base gnome-keyring-pam.i686 3.28.2-1.el7 base gnome-menus.i686 3.13.3-3.el7 base gnome-menus-devel.i686 3.13.3-3.el7 base gnome-menus-devel.x86_64 3.13.3-3.el7 base gnome-online-accounts.i686 3.28.2-1.el7 base gnome-online-accounts-devel.i686 3.28.2-1.el7 base gnome-online-accounts-devel.x86_64 3.28.2-1.el7 base gnome-online-miners.x86_64 3.26.0-1.el7 base gnome-python2-bonobo.x86_64 2.28.1-14.el7 base gnome-python2-devel.x86_64 2.28.1-14.el7 base gnome-python2-gconf.x86_64 2.28.1-14.el7 base gnome-python2-gnome.x86_64 2.28.1-14.el7 base gnome-python2-gnomevfs.x86_64 2.28.1-14.el7 base gnome-session-custom-session.x86_64 3.28.1-8.el7 base gnome-session-wayland-session.x86_64 3.28.1-8.el7 base gnome-settings-daemon.i686 3.28.1-10.el7_9 updates gnome-settings-daemon.x86_64 3.28.1-10.el7_9 updates gnome-settings-daemon-devel.i686 3.28.1-10.el7_9 updates gnome-settings-daemon-devel.x86_64 3.28.1-10.el7_9 updates gnome-shell.x86_64 3.28.3-33.el7 updates gnome-shell-extension-alternate-tab.noarch 3.28.1-16.el7_9 updates gnome-shell-extension-apps-menu.noarch 3.28.1-16.el7_9 updates gnome-shell-extension-auto-move-windows.noarch 3.28.1-16.el7_9 updates gnome-shell-extension-common.noarch 3.28.1-16.el7_9 updates gnome-shell-extension-dash-to-dock.noarch 3.28.1-16.el7_9 updates gnome-shell-extension-disable-screenshield.noarch 3.28.1-16.el7_9 updates gnome-shell-extension-drive-menu.noarch 3.28.1-16.el7_9 updates gnome-shell-extension-extra-osk-keys.noarch 3.28.1-16.el7_9 updates gnome-shell-extension-horizontal-workspaces.noarch 3.28.1-16.el7_9 updates gnome-shell-extension-launch-new-instance.noarch 3.28.1-16.el7_9 updates gnome-shell-extension-native-window-placement.noarch 3.28.1-16.el7_9 updates gnome-shell-extension-no-hot-corner.noarch 3.28.1-16.el7_9 updates gnome-shell-extension-panel-favorites.noarch 3.28.1-16.el7_9 updates gnome-shell-extension-places-menu.noarch 3.28.1-16.el7_9 updates gnome-shell-extension-screenshot-window-sizer.noarch 3.28.1-16.el7_9 updates gnome-shell-extension-systemMonitor.noarch 3.28.1-16.el7_9 updates gnome-shell-extension-top-icons.noarch 3.28.1-16.el7_9 updates gnome-shell-extension-updates-dialog.noarch 3.28.1-16.el7_9 updates gnome-shell-extension-user-theme.noarch 3.28.1-16.el7_9 updates gnome-shell-extension-window-grouper.noarch 3.28.1-16.el7_9 updates gnome-shell-extension-window-list.noarch 3.28.1-16.el7_9 updates gnome-shell-extension-windowsNavigator.noarch 3.28.1-16.el7_9 updates gnome-shell-extension-workspace-indicator.noarch 3.28.1-16.el7_9 updates gnome-software-devel.x86_64 3.28.2-3.el7 base gnome-software-editor.x86_64 3.28.2-3.el7 base gnome-vfs2.i686 2.24.4-14.el7 base gnome-vfs2.x86_64 2.24.4-14.el7 base gnome-vfs2-devel.i686 2.24.4-14.el7 base gnome-vfs2-devel.x86_64 2.24.4-14.el7 base gnome-vfs2-smb.x86_64 2.24.4-14.el7 base gnome-weather-tests.noarch 3.26.0-1.el7 base gnote.i686 3.28.0-1.el7 base gnote.x86_64 3.28.0-1.el7 base gnu-efi.x86_64 1:3.0.8-2.el7 base gnu-efi-devel.x86_64 1:3.0.8-2.el7 base gnu-efi-utils.x86_64 1:3.0.8-2.el7 base gnu-getopt.noarch 1.0.14-5.el7 base gnu-getopt-javadoc.noarch 1.0.14-5.el7 base gnupg2-smime.x86_64 2.0.22-5.el7_5 base gnuplot.x86_64 4.6.2-3.el7 base gnuplot-common.x86_64 4.6.2-3.el7 base gnuplot-doc.noarch 4.6.2-3.el7 base gnuplot-latex.noarch 4.6.2-3.el7 base gnuplot-minimal.x86_64 4.6.2-3.el7 base gnutls.i686 3.3.29-9.el7_6 base gnutls-c++.i686 3.3.29-9.el7_6 base gnutls-c++.x86_64 3.3.29-9.el7_6 base gnutls-dane.i686 3.3.29-9.el7_6 base gnutls-devel.i686 3.3.29-9.el7_6 base gnutls-devel.x86_64 3.3.29-9.el7_6 base gob2.x86_64 2.0.19-4.el7 base gobject-introspection.i686 1.56.1-1.el7 base gobject-introspection-devel.x86_64 1.56.1-1.el7 base gom.i686 0.4-1.el7 base gom-devel.i686 0.4-1.el7 base gom-devel.x86_64 0.4-1.el7 base gomtree.x86_64 0.5.0-0.2.git16da0f8.el7 extras google-guice.noarch 3.1.3-9.el7 base google-guice-javadoc.noarch 3.1.3-9.el7 base google-noto-fonts-common.noarch 20141117-5.el7 base google-noto-kufi-arabic-fonts.noarch 20141117-5.el7 base google-noto-naskh-arabic-fonts.noarch 20141117-5.el7 base google-noto-naskh-arabic-ui-fonts.noarch 20141117-5.el7 base google-noto-sans-armenian-fonts.noarch 20141117-5.el7 base google-noto-sans-avestan-fonts.noarch 20141117-5.el7 base google-noto-sans-balinese-fonts.noarch 20141117-5.el7 base google-noto-sans-bamum-fonts.noarch 20141117-5.el7 base google-noto-sans-batak-fonts.noarch 20141117-5.el7 base google-noto-sans-bengali-fonts.noarch 20141117-5.el7 base google-noto-sans-bengali-ui-fonts.noarch 20141117-5.el7 base google-noto-sans-brahmi-fonts.noarch 20141117-5.el7 base google-noto-sans-buginese-fonts.noarch 20141117-5.el7 base google-noto-sans-buhid-fonts.noarch 20141117-5.el7 base google-noto-sans-canadian-aboriginal-fonts.noarch 20141117-5.el7 base google-noto-sans-carian-fonts.noarch 20141117-5.el7 base google-noto-sans-cham-fonts.noarch 20141117-5.el7 base google-noto-sans-cherokee-fonts.noarch 20141117-5.el7 base google-noto-sans-cjk-fonts.noarch 20141117-5.el7 base google-noto-sans-coptic-fonts.noarch 20141117-5.el7 base google-noto-sans-cuneiform-fonts.noarch 20141117-5.el7 base google-noto-sans-cypriot-fonts.noarch 20141117-5.el7 base google-noto-sans-deseret-fonts.noarch 20141117-5.el7 base google-noto-sans-devanagari-fonts.noarch 20141117-5.el7 base google-noto-sans-devanagari-ui-fonts.noarch 20141117-5.el7 base google-noto-sans-egyptian-hieroglyphs-fonts.noarch 20141117-5.el7 base google-noto-sans-ethiopic-fonts.noarch 20141117-5.el7 base google-noto-sans-fonts.noarch 20141117-5.el7 base google-noto-sans-georgian-fonts.noarch 20141117-5.el7 base google-noto-sans-glagolitic-fonts.noarch 20141117-5.el7 base google-noto-sans-gothic-fonts.noarch 20141117-5.el7 base google-noto-sans-gujarati-fonts.noarch 20141117-5.el7 base google-noto-sans-gujarati-ui-fonts.noarch 20141117-5.el7 base google-noto-sans-gurmukhi-fonts.noarch 20141117-5.el7 base google-noto-sans-gurmukhi-ui-fonts.noarch 20141117-5.el7 base google-noto-sans-hanunoo-fonts.noarch 20141117-5.el7 base google-noto-sans-hebrew-fonts.noarch 20141117-5.el7 base google-noto-sans-imperial-aramaic-fonts.noarch 20141117-5.el7 base google-noto-sans-inscriptional-pahlavi-fonts.noarch 20141117-5.el7 base google-noto-sans-inscriptional-parthian-fonts.noarch 20141117-5.el7 base google-noto-sans-japanese-fonts.noarch 20141117-5.el7 base google-noto-sans-javanese-fonts.noarch 20141117-5.el7 base google-noto-sans-kaithi-fonts.noarch 20141117-5.el7 base google-noto-sans-kannada-fonts.noarch 20141117-5.el7 base google-noto-sans-kannada-ui-fonts.noarch 20141117-5.el7 base google-noto-sans-kayah-li-fonts.noarch 20141117-5.el7 base google-noto-sans-kharoshthi-fonts.noarch 20141117-5.el7 base google-noto-sans-khmer-fonts.noarch 20141117-5.el7 base google-noto-sans-khmer-ui-fonts.noarch 20141117-5.el7 base google-noto-sans-korean-fonts.noarch 20141117-5.el7 base google-noto-sans-lao-fonts.noarch 20141117-5.el7 base google-noto-sans-lao-ui-fonts.noarch 20141117-5.el7 base google-noto-sans-lepcha-fonts.noarch 20141117-5.el7 base google-noto-sans-limbu-fonts.noarch 20141117-5.el7 base google-noto-sans-linear-b-fonts.noarch 20141117-5.el7 base google-noto-sans-lisu-fonts.noarch 20141117-5.el7 base google-noto-sans-lycian-fonts.noarch 20141117-5.el7 base google-noto-sans-lydian-fonts.noarch 20141117-5.el7 base google-noto-sans-malayalam-fonts.noarch 20141117-5.el7 base google-noto-sans-malayalam-ui-fonts.noarch 20141117-5.el7 base google-noto-sans-mandaic-fonts.noarch 20141117-5.el7 base google-noto-sans-meetei-mayek-fonts.noarch 20141117-5.el7 base google-noto-sans-mongolian-fonts.noarch 20141117-5.el7 base google-noto-sans-myanmar-fonts.noarch 20141117-5.el7 base google-noto-sans-myanmar-ui-fonts.noarch 20141117-5.el7 base google-noto-sans-new-tai-lue-fonts.noarch 20141117-5.el7 base google-noto-sans-nko-fonts.noarch 20141117-5.el7 base google-noto-sans-ogham-fonts.noarch 20141117-5.el7 base google-noto-sans-ol-chiki-fonts.noarch 20141117-5.el7 base google-noto-sans-old-italic-fonts.noarch 20141117-5.el7 base google-noto-sans-old-persian-fonts.noarch 20141117-5.el7 base google-noto-sans-old-south-arabian-fonts.noarch 20141117-5.el7 base google-noto-sans-old-turkic-fonts.noarch 20141117-5.el7 base google-noto-sans-osmanya-fonts.noarch 20141117-5.el7 base google-noto-sans-phags-pa-fonts.noarch 20141117-5.el7 base google-noto-sans-phoenician-fonts.noarch 20141117-5.el7 base google-noto-sans-rejang-fonts.noarch 20141117-5.el7 base google-noto-sans-runic-fonts.noarch 20141117-5.el7 base google-noto-sans-samaritan-fonts.noarch 20141117-5.el7 base google-noto-sans-saurashtra-fonts.noarch 20141117-5.el7 base google-noto-sans-shavian-fonts.noarch 20141117-5.el7 base google-noto-sans-simplified-chinese-fonts.noarch 20141117-5.el7 base google-noto-sans-sinhala-fonts.noarch 20141117-5.el7 base google-noto-sans-sundanese-fonts.noarch 20141117-5.el7 base google-noto-sans-syloti-nagri-fonts.noarch 20141117-5.el7 base google-noto-sans-symbols-fonts.noarch 20141117-5.el7 base google-noto-sans-syriac-eastern-fonts.noarch 20141117-5.el7 base google-noto-sans-syriac-estrangela-fonts.noarch 20141117-5.el7 base google-noto-sans-syriac-western-fonts.noarch 20141117-5.el7 base google-noto-sans-tagalog-fonts.noarch 20141117-5.el7 base google-noto-sans-tagbanwa-fonts.noarch 20141117-5.el7 base google-noto-sans-tai-le-fonts.noarch 20141117-5.el7 base google-noto-sans-tai-tham-fonts.noarch 20141117-5.el7 base google-noto-sans-tai-viet-fonts.noarch 20141117-5.el7 base google-noto-sans-tamil-fonts.noarch 20141117-5.el7 base google-noto-sans-tamil-ui-fonts.noarch 20141117-5.el7 base google-noto-sans-telugu-fonts.noarch 20141117-5.el7 base google-noto-sans-telugu-ui-fonts.noarch 20141117-5.el7 base google-noto-sans-thaana-fonts.noarch 20141117-5.el7 base google-noto-sans-thai-fonts.noarch 20141117-5.el7 base google-noto-sans-thai-ui-fonts.noarch 20141117-5.el7 base google-noto-sans-tifinagh-fonts.noarch 20141117-5.el7 base google-noto-sans-traditional-chinese-fonts.noarch 20141117-5.el7 base google-noto-sans-ugaritic-fonts.noarch 20141117-5.el7 base google-noto-sans-ui-fonts.noarch 20141117-5.el7 base google-noto-sans-vai-fonts.noarch 20141117-5.el7 base google-noto-sans-yi-fonts.noarch 20141117-5.el7 base google-noto-serif-armenian-fonts.noarch 20141117-5.el7 base google-noto-serif-fonts.noarch 20141117-5.el7 base google-noto-serif-georgian-fonts.noarch 20141117-5.el7 base google-noto-serif-khmer-fonts.noarch 20141117-5.el7 base google-noto-serif-lao-fonts.noarch 20141117-5.el7 base google-noto-serif-thai-fonts.noarch 20141117-5.el7 base gperf.x86_64 3.0.4-8.el7 base gperftools.x86_64 2.6.1-1.el7 base gperftools-devel.i686 2.6.1-1.el7 base gperftools-devel.x86_64 2.6.1-1.el7 base gperftools-libs.i686 2.6.1-1.el7 base gpgme.i686 1.3.2-5.el7 base gpgme-devel.i686 1.3.2-5.el7 base gpgme-devel.x86_64 1.3.2-5.el7 base gpm.x86_64 1.20.7-6.el7 base gpm-devel.i686 1.20.7-6.el7 base gpm-devel.x86_64 1.20.7-6.el7 base gpm-libs.i686 1.20.7-6.el7 base gpm-static.i686 1.20.7-6.el7 base gpm-static.x86_64 1.20.7-6.el7 base grantlee.i686 0.3.0-5.el7 base grantlee-apidocs.noarch 0.3.0-5.el7 base grantlee-devel.i686 0.3.0-5.el7 base grantlee-devel.x86_64 0.3.0-5.el7 base graphite2.i686 1.3.10-1.el7_3 base graphite2-devel.i686 1.3.10-1.el7_3 base graphite2-devel.x86_64 1.3.10-1.el7_3 base graphviz.i686 2.30.1-22.el7 base graphviz-devel.i686 2.30.1-22.el7 base graphviz-devel.x86_64 2.30.1-22.el7 base graphviz-doc.x86_64 2.30.1-22.el7 base graphviz-gd.i686 2.30.1-22.el7 base graphviz-gd.x86_64 2.30.1-22.el7 base graphviz-graphs.x86_64 2.30.1-22.el7 base graphviz-guile.x86_64 2.30.1-22.el7 base graphviz-java.x86_64 2.30.1-22.el7 base graphviz-lua.x86_64 2.30.1-22.el7 base graphviz-ocaml.x86_64 2.30.1-22.el7 base graphviz-perl.x86_64 2.30.1-22.el7 base graphviz-php.x86_64 2.30.1-22.el7 base graphviz-python.x86_64 2.30.1-22.el7 base graphviz-ruby.x86_64 2.30.1-22.el7 base graphviz-tcl.i686 2.30.1-22.el7 base grilo.i686 0.3.6-1.el7 base grilo-devel.i686 0.3.6-1.el7 base grilo-devel.x86_64 0.3.6-1.el7 base groff.x86_64 1.22.2-8.el7 base groff-doc.noarch 1.22.2-8.el7 base groff-perl.x86_64 1.22.2-8.el7 base groff-x11.x86_64 1.22.2-8.el7 base groovy.noarch 1.8.9-8.el7_4 base groovy-javadoc.noarch 1.8.9-8.el7_4 base grub2.x86_64 1:2.02-0.87.el7.centos.6 updates grub2-common.noarch 1:2.02-0.87.el7.centos.6 updates grub2-efi-aa64-modules.noarch 1:2.02-0.87.el7.centos.6 updates grub2-efi-ia32.x86_64 1:2.02-0.87.el7.centos.6 updates grub2-efi-ia32-cdboot.x86_64 1:2.02-0.87.el7.centos.6 updates grub2-efi-ia32-modules.noarch 1:2.02-0.87.el7.centos.6 updates grub2-efi-x64.x86_64 1:2.02-0.87.el7.centos.6 updates grub2-efi-x64-cdboot.x86_64 1:2.02-0.87.el7.centos.6 updates grub2-efi-x64-modules.noarch 1:2.02-0.87.el7.centos.6 updates grub2-i386-modules.noarch 1:2.02-0.87.el7.centos.6 updates grub2-pc.x86_64 1:2.02-0.87.el7.centos.6 updates grub2-pc-modules.noarch 1:2.02-0.87.el7.centos.6 updates grub2-ppc-modules.noarch 1:2.02-0.87.el7.centos.6 updates grub2-ppc64-modules.noarch 1:2.02-0.87.el7.centos.6 updates grub2-ppc64le-modules.noarch 1:2.02-0.87.el7.centos.6 updates grub2-tools.x86_64 1:2.02-0.87.el7.centos.6 updates grub2-tools-extra.x86_64 1:2.02-0.87.el7.centos.6 updates grub2-tools-minimal.x86_64 1:2.02-0.87.el7.centos.6 updates gsettings-desktop-schemas.i686 3.28.0-3.el7 base gsettings-desktop-schemas-devel.i686 3.28.0-3.el7 base gsettings-desktop-schemas-devel.x86_64 3.28.0-3.el7 base gsl.i686 1.15-13.el7 base gsl.x86_64 1.15-13.el7 base gsl-devel.i686 1.15-13.el7 base gsl-devel.x86_64 1.15-13.el7 base gsm.i686 1.0.13-11.el7 base gsm-devel.i686 1.0.13-11.el7 base gsm-devel.x86_64 1.0.13-11.el7 base gsm-tools.x86_64 1.0.13-11.el7 base gsound.i686 1.0.2-2.el7 base gsound-devel.i686 1.0.2-2.el7 base gsound-devel.x86_64 1.0.2-2.el7 base gspell.i686 1.6.1-1.el7 base gspell-devel.i686 1.6.1-1.el7 base gspell-devel.x86_64 1.6.1-1.el7 base gspell-doc.noarch 1.6.1-1.el7 base gssdp.i686 1.0.2-1.el7 base gssdp-devel.i686 1.0.2-1.el7 base gssdp-devel.x86_64 1.0.2-1.el7 base gssdp-docs.noarch 1.0.2-1.el7 base gssdp-utils.x86_64 1.0.2-1.el7 base gssproxy.x86_64 0.7.0-30.el7_9 updates gstreamer.i686 0.10.36-7.el7 base gstreamer-devel.i686 0.10.36-7.el7 base gstreamer-devel.x86_64 0.10.36-7.el7 base gstreamer-devel-docs.noarch 0.10.36-7.el7 base gstreamer-plugins-bad-free.i686 0.10.23-23.el7 base gstreamer-plugins-bad-free-devel.i686 0.10.23-23.el7 base gstreamer-plugins-bad-free-devel.x86_64 0.10.23-23.el7 base gstreamer-plugins-bad-free-devel-docs.x86_64 0.10.23-23.el7 base gstreamer-plugins-base.i686 0.10.36-10.el7 base gstreamer-plugins-base-devel.i686 0.10.36-10.el7 base gstreamer-plugins-base-devel.x86_64 0.10.36-10.el7 base gstreamer-plugins-base-devel-docs.noarch 0.10.36-10.el7 base gstreamer-plugins-base-tools.x86_64 0.10.36-10.el7 base gstreamer-plugins-good.i686 0.10.31-13.el7 base gstreamer-plugins-good-devel-docs.noarch 0.10.31-13.el7 base gstreamer-python.i686 0.10.22-6.el7 base gstreamer-python.x86_64 0.10.22-6.el7 base gstreamer-python-devel.i686 0.10.22-6.el7 base gstreamer-python-devel.x86_64 0.10.22-6.el7 base gstreamer1.i686 1.10.4-2.el7 base gstreamer1-devel.i686 1.10.4-2.el7 base gstreamer1-devel.x86_64 1.10.4-2.el7 base gstreamer1-devel-docs.noarch 1.10.4-2.el7 base gstreamer1-plugins-bad-free.i686 1.10.4-3.el7 base gstreamer1-plugins-bad-free-devel.i686 1.10.4-3.el7 base gstreamer1-plugins-bad-free-devel.x86_64 1.10.4-3.el7 base gstreamer1-plugins-bad-free-gtk.i686 1.10.4-3.el7 base gstreamer1-plugins-bad-free-gtk.x86_64 1.10.4-3.el7 base gstreamer1-plugins-base.i686 1.10.4-2.el7 base gstreamer1-plugins-base-devel.i686 1.10.4-2.el7 base gstreamer1-plugins-base-devel.x86_64 1.10.4-2.el7 base gstreamer1-plugins-base-devel-docs.noarch 1.10.4-2.el7 base gstreamer1-plugins-base-tools.x86_64 1.10.4-2.el7 base gstreamer1-plugins-good.i686 1.10.4-2.el7 base gstreamer1-plugins-ugly-free.i686 1.10.4-3.el7 base gstreamer1-plugins-ugly-free-devel.i686 1.10.4-3.el7 base gstreamer1-plugins-ugly-free-devel.x86_64 1.10.4-3.el7 base gtk-doc.x86_64 1.28-2.el7 base gtk-update-icon-cache.x86_64 3.22.30-6.el7 updates gtk-vnc.i686 0.7.0-3.el7 base gtk-vnc.x86_64 0.7.0-3.el7 base gtk-vnc-devel.i686 0.7.0-3.el7 base gtk-vnc-devel.x86_64 0.7.0-3.el7 base gtk-vnc-python.x86_64 0.7.0-3.el7 base gtk-vnc2.i686 0.7.0-3.el7 base gtk-vnc2-devel.i686 0.7.0-3.el7 base gtk-vnc2-devel.x86_64 0.7.0-3.el7 base gtk2.i686 2.24.31-1.el7 base gtk2-devel.i686 2.24.31-1.el7 base gtk2-devel.x86_64 2.24.31-1.el7 base gtk2-devel-docs.x86_64 2.24.31-1.el7 base gtk2-immodule-xim.i686 2.24.31-1.el7 base gtk2-immodules.i686 2.24.31-1.el7 base gtk2-immodules.x86_64 2.24.31-1.el7 base gtk3.i686 3.22.30-6.el7 updates gtk3.x86_64 3.22.30-6.el7 updates gtk3-devel.i686 3.22.30-6.el7 updates gtk3-devel.x86_64 3.22.30-6.el7 updates gtk3-devel-docs.x86_64 3.22.30-6.el7 updates gtk3-immodule-xim.x86_64 3.22.30-6.el7 updates gtk3-immodules.x86_64 3.22.30-6.el7 updates gtk3-tests.x86_64 3.22.30-6.el7 updates gtkhtml3.i686 4.8.5-2.el7 base gtkhtml3.x86_64 4.8.5-2.el7 base gtkhtml3-devel.i686 4.8.5-2.el7 base gtkhtml3-devel.x86_64 4.8.5-2.el7 base gtkmm24.i686 2.24.5-1.el7 base gtkmm24.x86_64 2.24.5-1.el7 base gtkmm24-devel.i686 2.24.5-1.el7 base gtkmm24-devel.x86_64 2.24.5-1.el7 base gtkmm24-docs.noarch 2.24.5-1.el7 base gtkmm30.i686 3.22.2-1.el7 base gtkmm30-devel.i686 3.22.2-1.el7 base gtkmm30-devel.x86_64 3.22.2-1.el7 base gtkmm30-doc.noarch 3.22.2-1.el7 base gtksourceview3.i686 3.24.8-2.el7 base gtksourceview3-devel.i686 3.24.8-2.el7 base gtksourceview3-devel.x86_64 3.24.8-2.el7 base gtksourceview3-tests.x86_64 3.24.8-2.el7 base gtkspell.i686 2.0.16-8.el7 base gtkspell.x86_64 2.0.16-8.el7 base gtkspell-devel.i686 2.0.16-8.el7 base gtkspell-devel.x86_64 2.0.16-8.el7 base gtkspell3.i686 3.0.3-4.el7 base gtkspell3.x86_64 3.0.3-4.el7 base gtkspell3-devel.i686 3.0.3-4.el7 base gtkspell3-devel.x86_64 3.0.3-4.el7 base guava-javadoc.noarch 13.0-6.el7 base gubbi-fonts.noarch 1.1-3.el7 base gucharmap.i686 10.0.4-1.el7 base gucharmap-devel.i686 10.0.4-1.el7 base gucharmap-devel.x86_64 10.0.4-1.el7 base gucharmap-libs.i686 10.0.4-1.el7 base guice-parent.noarch 3.1.3-9.el7 base guile.i686 5:2.0.9-5.el7 base guile.x86_64 5:2.0.9-5.el7 base guile-devel.i686 5:2.0.9-5.el7 base guile-devel.x86_64 5:2.0.9-5.el7 base gupnp.i686 1.0.2-6.el7_9 updates gupnp.x86_64 1.0.2-6.el7_9 updates gupnp-av.i686 0.12.10-1.el7 base gupnp-av-devel.i686 0.12.10-1.el7 base gupnp-av-devel.x86_64 0.12.10-1.el7 base gupnp-av-docs.noarch 0.12.10-1.el7 base gupnp-devel.i686 1.0.2-6.el7_9 updates gupnp-devel.x86_64 1.0.2-6.el7_9 updates gupnp-dlna.i686 0.10.5-1.el7 base gupnp-dlna-devel.i686 0.10.5-1.el7 base gupnp-dlna-devel.x86_64 0.10.5-1.el7 base gupnp-dlna-docs.noarch 0.10.5-1.el7 base gupnp-docs.noarch 1.0.2-6.el7_9 updates gupnp-igd.i686 0.2.5-2.el7 base gupnp-igd-devel.i686 0.2.5-2.el7 base gupnp-igd-devel.x86_64 0.2.5-2.el7 base gupnp-igd-python.x86_64 0.2.5-2.el7 base gutenprint.i686 5.2.9-18.el7 base gutenprint-devel.i686 5.2.9-18.el7 base gutenprint-devel.x86_64 5.2.9-18.el7 base gutenprint-doc.x86_64 5.2.9-18.el7 base gutenprint-extras.x86_64 5.2.9-18.el7 base gutenprint-foomatic.x86_64 5.2.9-18.el7 base gutenprint-plugin.x86_64 5.2.9-18.el7 base gvfs.i686 1.36.2-4.el7 base gvfs-client.i686 1.36.2-4.el7 base gvfs-devel.i686 1.36.2-4.el7 base gvfs-devel.x86_64 1.36.2-4.el7 base gvfs-tests.x86_64 1.36.2-4.el7 base gvnc.i686 0.7.0-3.el7 base gvnc-devel.i686 0.7.0-3.el7 base gvnc-devel.x86_64 0.7.0-3.el7 base gvnc-tools.x86_64 0.7.0-3.el7 base gvncpulse.i686 0.7.0-3.el7 base gvncpulse.x86_64 0.7.0-3.el7 base gvncpulse-devel.i686 0.7.0-3.el7 base gvncpulse-devel.x86_64 0.7.0-3.el7 base gwenview-libs.i686 4.10.5-5.el7 base hamcrest-demo.noarch 1.3-6.el7 base hamcrest-javadoc.noarch 1.3-6.el7 base haproxy.x86_64 1.5.18-9.el7_9.1 updates harfbuzz.i686 1.7.5-2.el7 base harfbuzz-devel.i686 1.7.5-2.el7 base harfbuzz-devel.x86_64 1.7.5-2.el7 base harfbuzz-icu.i686 1.7.5-2.el7 base hawkey.i686 0.6.3-4.el7 base hawkey.x86_64 0.6.3-4.el7 base hawkey-devel.i686 0.6.3-4.el7 base hawkey-devel.x86_64 0.6.3-4.el7 base hawtjni.noarch 1.6-10.el7 base hawtjni-javadoc.noarch 1.6-10.el7 base hdparm.x86_64 9.43-5.el7 base help2man.noarch 1.41.1-3.el7 base hesiod.i686 3.2.1-3.el7 base hesiod-devel.i686 3.2.1-3.el7 base hesiod-devel.x86_64 3.2.1-3.el7 base hexedit.x86_64 1.2.13-5.el7 base hfsplus-tools.x86_64 540.1.linux3-4.el7 extras highcontrast-qt.x86_64 0.1-2.el7 base highcontrast-qt4.i686 0.1-2.el7 base highcontrast-qt4.x86_64 0.1-2.el7 base highcontrast-qt5.i686 0.1-2.el7 base highlight.x86_64 3.13-3.el7 base highlight-gui.x86_64 3.13-3.el7 base hispavoces-pal-diphone.noarch 1.0.0-28.el7 base hispavoces-sfl-diphone.noarch 1.0.0-28.el7 base hivex.i686 1.3.10-6.11.el7_9 updates hivex.x86_64 1.3.10-6.11.el7_9 updates hivex-devel.i686 1.3.10-6.11.el7_9 updates hivex-devel.x86_64 1.3.10-6.11.el7_9 updates hmaccalc.x86_64 0.9.13-4.el7 base hplip.x86_64 3.15.9-5.el7 base hplip-common.i686 3.15.9-5.el7 base hplip-gui.x86_64 3.15.9-5.el7 base hplip-libs.i686 3.15.9-5.el7 base hsakmt.x86_64 1.0.0-7.el7 base hsakmt-devel.x86_64 1.0.0-7.el7 base hspell.i686 1.2-6.el7 base hspell.x86_64 1.2-6.el7 base hspell-devel.i686 1.2-6.el7 base hspell-devel.x86_64 1.2-6.el7 base hsqldb-demo.noarch 1:1.8.1.3-14.el7 base hsqldb-javadoc.noarch 1:1.8.1.3-14.el7 base hsqldb-manual.noarch 1:1.8.1.3-14.el7 base html2ps.noarch 1.0-0.14.b7.el7 base http-parser.i686 2.7.1-9.el7 base http-parser-devel.i686 2.7.1-9.el7 base http-parser-devel.x86_64 2.7.1-9.el7 base httpcomponents-client-javadoc.noarch 4.2.5-5.el7_0 base httpcomponents-core-javadoc.noarch 4.2.4-6.el7 base httpcomponents-project.noarch 6-4.el7 base httpd.x86_64 2.4.6-97.el7.centos updates httpd-devel.x86_64 2.4.6-97.el7.centos updates httpd-manual.noarch 2.4.6-97.el7.centos updates httpd-tools.x86_64 2.4.6-97.el7.centos updates httpunit.noarch 1.7-15.el7 base httpunit-doc.noarch 1.7-15.el7 base httpunit-javadoc.noarch 1.7-15.el7 base hunspell.i686 1.3.2-16.el7 base hunspell-af.noarch 0.20080825-8.el7 base hunspell-ak.noarch 0.6-7.el7 base hunspell-am.noarch 0.20090704-7.el7 base hunspell-ar.noarch 0.20080110-10.el7 base hunspell-as.noarch 1.0.3-9.el7 base hunspell-ast.noarch 1:0.02-6.el7 base hunspell-az.noarch 0.20040827-10.el7 base hunspell-be.noarch 1.1-7.el7 base hunspell-ber.noarch 0.20080210-8.el7 base hunspell-bg.noarch 4.3-6.el7 base hunspell-bn.noarch 1:0.06-4.el7 base hunspell-br.noarch 1:0.8-5.el7 base hunspell-ca.noarch 2.3-4.el7 base hunspell-cop.noarch 0.3-5.el7 base hunspell-cs.noarch 20060303-14.el7 base hunspell-csb.noarch 0.20050311-10.el7 base hunspell-cv.noarch 1.02-6.el7 base hunspell-cy.noarch 0.20040425-10.el7 base hunspell-da.noarch 1.7.42-2.el7 base hunspell-de.noarch 0.20120607-4.el7 base hunspell-devel.i686 1.3.2-16.el7 base hunspell-devel.x86_64 1.3.2-16.el7 base hunspell-dsb.noarch 1.4.6-4.el7 base hunspell-el.noarch 1:0.8-7.el7 base hunspell-eo.noarch 1.0-0.7.dev.el7 base hunspell-es.noarch 1:0.6-4.el7 base hunspell-et.noarch 0.20030606-11.el7 base hunspell-eu.noarch 0.20080507-8.el7 base hunspell-fa.noarch 0.20070116-9.el7 base hunspell-fj.noarch 1.2-7.el7 base hunspell-fo.noarch 0.4.1-4.el7 base hunspell-fr.noarch 4.6-4.el7 base hunspell-fur.noarch 0.20050912-9.el7 base hunspell-fy.noarch 2.0.1-6.el7 base hunspell-ga.noarch 4.6-7.el7 base hunspell-gd.noarch 2.6-3.el7 base hunspell-gl.noarch 0.20080515-8.el7 base hunspell-grc.noarch 2.1.5-7.el7 base hunspell-gu.noarch 20061015-11.el7 base hunspell-gv.noarch 0.20040505-9.el7 base hunspell-haw.noarch 0.02-4.el7 base hunspell-he.x86_64 1.2-6.el7 base hunspell-hi.noarch 20050726-12.el7 base hunspell-hil.noarch 1:0.14-6.el7 base hunspell-hr.noarch 1:0.20040608-10.el7 base hunspell-hsb.noarch 0.20060327.3-5.el7 base hunspell-ht.noarch 0.06-6.el7 base hunspell-hu.noarch 1.6.1-6.el7 base hunspell-hy.noarch 0.20.0-6.el7 base hunspell-ia.noarch 0.20050226-9.el7 base hunspell-id.noarch 0.20040812-8.el7 base hunspell-is.noarch 0.20090823-6.el7 base hunspell-it.noarch 2.4-0.10.20070901.el7 base hunspell-kk.noarch 1.1-6.el7 base hunspell-km.noarch 1.1-7.el7 base hunspell-kn.noarch 1.0.3-7.el7 base hunspell-ko.noarch 0.5.5-5.el7 base hunspell-ku.noarch 0.21-11.el7 base hunspell-ky.noarch 0.20090415-8.el7 base hunspell-la.noarch 0.20110807-6.el7 base hunspell-lb.noarch 0.20121128-2.el7 base hunspell-ln.noarch 0.02-7.el7 base hunspell-lt.noarch 1.2.1-10.el7 base hunspell-lv.noarch 0.9.4-5.el7 base hunspell-mai.noarch 1.0.1-7.el7 base hunspell-mg.noarch 0.20050109-10.el7 base hunspell-mi.noarch 0.20080630-8.el7 base hunspell-mk.noarch 0.20051126-8.el7 base hunspell-ml.noarch 0.1-10.el7 base hunspell-mn.noarch 0.20080709-8.el7 base hunspell-mos.noarch 0.20101130-6.el7 base hunspell-mr.noarch 20060920-15.el7 base hunspell-ms.noarch 0.20050117-9.el7 base hunspell-mt.noarch 0.20020708-9.el7 base hunspell-nb.noarch 1:2.0.10-1.el7 base hunspell-nds.noarch 0.1-8.el7 base hunspell-ne.noarch 20080425-9.el7 base hunspell-nl.noarch 2.10-5.el7 base hunspell-nn.noarch 1:2.0.10-1.el7 base hunspell-nr.noarch 0.20091030-6.el7 base hunspell-nso.noarch 0.20091201-6.el7 base hunspell-ny.noarch 1:0.01-6.el7 base hunspell-oc.noarch 0.5-8.el7 base hunspell-om.noarch 1:0.04-6.el7 base hunspell-or.noarch 1:0.03-4.el7 base hunspell-pa.noarch 20050726-10.el7 base hunspell-pl.noarch 0.20130130-2.el7 base hunspell-pt.noarch 0.20130125-2.el7 base hunspell-qu.noarch 0.9-5.el7 base hunspell-quh.noarch 0.20110816-5.el7 base hunspell-ro.noarch 3.3.7-5.el7 base hunspell-ru.noarch 1:0.99g5-5.el7 base hunspell-rw.noarch 0.20050109-8.el7 base hunspell-sc.noarch 0.20081101-11.el7 base hunspell-se.noarch 1.0-0.7.beta7.el7 base hunspell-shs.noarch 0.20090828-6.el7 base hunspell-si.noarch 0.2.1-9.el7 base hunspell-sk.noarch 1:0.20110228-5.el7 base hunspell-sl.noarch 0.20070127-10.el7 base hunspell-smj.noarch 1.0-0.7.beta7.el7 base hunspell-so.noarch 1.0.2-5.el7 base hunspell-sq.noarch 1.6.4-5.el7 base hunspell-sr.noarch 0.20100920-7.el7 base hunspell-ss.noarch 0.20091030-6.el7 base hunspell-st.noarch 0.20091030-6.el7 base hunspell-sv.noarch 2.10-3.el7 base hunspell-sw.noarch 0.20050819-9.el7 base hunspell-ta.noarch 20100226-8.el7 base hunspell-te.noarch 0.20050929-11.el7 base hunspell-tet.noarch 0.20050108-10.el7 base hunspell-th.noarch 0.20061212-10.el7 base hunspell-ti.noarch 0.20090911-6.el7 base hunspell-tk.noarch 1:0.02-4.el7 base hunspell-tl.noarch 0.20050109-9.el7 base hunspell-tn.noarch 0.20091101-6.el7 base hunspell-tpi.noarch 0.05-5.el7 base hunspell-ts.noarch 0.20091101-6.el7 base hunspell-uk.noarch 1.6.5-5.el7 base hunspell-ur.noarch 0.64-7.el7 base hunspell-uz.noarch 0.6-8.el7 base hunspell-ve.noarch 0.20091030-6.el7 base hunspell-vi.noarch 0.20080604-8.el7 base hunspell-wa.noarch 0.4.15-9.el7 base hunspell-xh.noarch 0.20091030-6.el7 base hunspell-yi.noarch 1.1-7.el7 base hunspell-zu.noarch 0.20100126-8.el7 base hwloc-devel.i686 1.11.8-4.el7 base hwloc-devel.x86_64 1.11.8-4.el7 base hwloc-gui.x86_64 1.11.8-4.el7 base hwloc-libs.i686 1.11.8-4.el7 base hwloc-plugins.x86_64 1.11.8-4.el7 base hyperv-tools.noarch 0-0.34.20180415git.el7 base hyphen.i686 2.8.6-5.el7 base hyphen-af.noarch 0-0.9.20080714svn.el7 base hyphen-as.noarch 1:0.7.0-4.el7 base hyphen-be.noarch 1.1-7.el7 base hyphen-bg.noarch 4.3-6.el7 base hyphen-bn.noarch 1:0.7.0-4.el7 base hyphen-ca.noarch 1:0.9.3-6.el7 base hyphen-cs.noarch 20060303-14.el7 base hyphen-cy.noarch 0.20110620-5.el7 base hyphen-da.noarch 0.20070903-8.el7 base hyphen-de.noarch 0.20060120-11.el7 base hyphen-devel.i686 2.8.6-5.el7 base hyphen-devel.x86_64 2.8.6-5.el7 base hyphen-el.noarch 0.20051018-9.el7 base hyphen-es.noarch 0.20110222svn-4.el7 base hyphen-et.noarch 0.20030606-11.el7 base hyphen-eu.noarch 0.20110620-5.el7 base hyphen-fa.noarch 0.20081119-7.el7 base hyphen-fo.noarch 0.20040420-6.el7 base hyphen-fr.noarch 2.0-8.el7 base hyphen-ga.noarch 0.20040220-8.el7 base hyphen-gl.noarch 0.99-7.el7 base hyphen-grc.noarch 0.20110913-5.el7 base hyphen-gu.noarch 1:0.7.0-4.el7 base hyphen-hi.noarch 1:0.7.0-4.el7 base hyphen-hr.noarch 1:0.20040608-10.el7 base hyphen-hsb.noarch 0.20110620-5.el7 base hyphen-hu.noarch 0.20090612-10.el7 base hyphen-ia.noarch 0.20050628-7.el7 base hyphen-id.noarch 0.20040812-8.el7 base hyphen-is.noarch 0.20030920-10.el7 base hyphen-it.noarch 0.20071127-10.el7 base hyphen-kn.noarch 1:0.7.0-4.el7 base hyphen-ku.noarch 1.71.2-6.el7 base hyphen-lt.noarch 0.20100531-6.el7 base hyphen-lv.noarch 0.9.4-5.el7 base hyphen-mi.noarch 0.20080630-8.el7 base hyphen-ml.noarch 1:0.7.0-4.el7 base hyphen-mn.noarch 0.20100531-6.el7 base hyphen-mr.noarch 1:0.7.0-4.el7 base hyphen-nb.noarch 1:2.0.10-1.el7 base hyphen-nl.noarch 0.20050617-10.el7 base hyphen-nn.noarch 1:2.0.10-1.el7 base hyphen-or.noarch 1:0.7.0-5.el7 base hyphen-pa.noarch 1:0.7.0-4.el7 base hyphen-pl.noarch 0.20060726-9.el7 base hyphen-pt.noarch 0.20021021-9.el7 base hyphen-ro.noarch 3.3.6-6.el7 base hyphen-ru.noarch 0.20020727-9.el7 base hyphen-sa.noarch 0.20110915-5.el7 base hyphen-sk.noarch 0.20031227-10.el7 base hyphen-sl.noarch 0.20070127-8.el7 base hyphen-sr.noarch 0.20100920-7.el7 base hyphen-sv.noarch 1.00.1-10.el7 base hyphen-ta.noarch 1:0.7.0-4.el7 base hyphen-te.noarch 1:0.7.0-4.el7 base hyphen-tk.noarch 0.20110620-5.el7 base hyphen-uk.noarch 0.20030903-8.el7 base hyphen-zu.noarch 0-0.9.20080714svn.el7 base i2c-tools.x86_64 3.1.0-13.el7 base i2c-tools-eepromer.x86_64 3.1.0-13.el7 base i2c-tools-python.x86_64 3.1.0-13.el7 base ibacm.x86_64 22.4-6.el7_9 updates ibus.i686 1.5.17-12.el7_9 updates ibus.x86_64 1.5.17-12.el7_9 updates ibus-devel.i686 1.5.17-12.el7_9 updates ibus-devel.x86_64 1.5.17-12.el7_9 updates ibus-devel-docs.noarch 1.5.17-12.el7_9 updates ibus-gtk2.i686 1.5.17-12.el7_9 updates ibus-gtk2.x86_64 1.5.17-12.el7_9 updates ibus-gtk3.i686 1.5.17-12.el7_9 updates ibus-gtk3.x86_64 1.5.17-12.el7_9 updates ibus-libs.i686 1.5.17-12.el7_9 updates ibus-libs.x86_64 1.5.17-12.el7_9 updates ibus-pygtk2.noarch 1.5.17-12.el7_9 updates ibus-qt.i686 1.3.2-4.el7 base ibus-qt-devel.i686 1.3.2-4.el7 base ibus-qt-devel.x86_64 1.3.2-4.el7 base ibus-qt-docs.x86_64 1.3.2-4.el7 base ibus-setup.noarch 1.5.17-12.el7_9 updates ibus-table-chinese-array.noarch 1.4.6-3.el7 base ibus-table-chinese-cangjie.noarch 1.4.6-3.el7 base ibus-table-chinese-cantonese.noarch 1.4.6-3.el7 base ibus-table-chinese-easy.noarch 1.4.6-3.el7 base ibus-table-chinese-erbi.noarch 1.4.6-3.el7 base ibus-table-chinese-quick.noarch 1.4.6-3.el7 base ibus-table-chinese-scj.noarch 1.4.6-3.el7 base ibus-table-chinese-stroke5.noarch 1.4.6-3.el7 base ibus-table-chinese-wu.noarch 1.4.6-3.el7 base ibus-table-chinese-wubi-haifeng.noarch 1.4.6-3.el7 base ibus-table-chinese-wubi-jidian.noarch 1.4.6-3.el7 base ibus-table-chinese-yong.noarch 1.4.6-3.el7 base ibus-table-devel.noarch 1.5.0-5.el7 base ibus-typing-booster.noarch 1.2.3-5.el7 base ibutils-devel.i686 1.5.7-14.el7 base ibutils-devel.x86_64 1.5.7-14.el7 base ibutils-libs.i686 1.5.7-14.el7 base icc-profiles-openicc.noarch 1.3.1-5.el7 base icedtea-web.x86_64 1.7.1-4.el7_9 updates icedtea-web-devel.noarch 1.7.1-4.el7_9 updates icedtea-web-javadoc.noarch 1.7.1-4.el7_9 updates icon-naming-utils.noarch 0.8.90-10.el7 base icu.x86_64 50.2-4.el7_7 base ilmbase.i686 1.0.3-7.el7 base ilmbase-devel.i686 1.0.3-7.el7 base ilmbase-devel.x86_64 1.0.3-7.el7 base im-chooser-common.i686 1.6.4-6.el7 base ima-evm-utils.i686 1.1-3.el7 base ima-evm-utils.x86_64 1.1-3.el7 base ima-evm-utils-devel.i686 1.1-3.el7 base ima-evm-utils-devel.x86_64 1.1-3.el7 base imake.x86_64 1.0.5-10.el7 base imsettings-devel.i686 1.6.3-11.el7 base imsettings-devel.x86_64 1.6.3-11.el7 base imsettings-libs.i686 1.6.3-11.el7 base imsettings-xim.x86_64 1.6.3-11.el7 base infiniband-diags.i686 2.1.0-1.el7 base infiniband-diags-devel.i686 2.1.0-1.el7 base infiniband-diags-devel.x86_64 2.1.0-1.el7 base infiniband-diags-devel-static.i686 2.1.0-1.el7 base infiniband-diags-devel-static.x86_64 2.1.0-1.el7 base infinipath-psm.x86_64 3.3-26_g604758e_open.2.el7 base infinipath-psm-devel.x86_64 3.3-26_g604758e_open.2.el7 base iniparser.i686 3.1-5.el7 base iniparser.x86_64 3.1-5.el7 base iniparser-devel.i686 3.1-5.el7 base iniparser-devel.x86_64 3.1-5.el7 base initscripts.x86_64 9.49.53-1.el7_9.1 updates inkscape.x86_64 0.92.2-3.el7 base inkscape-docs.x86_64 0.92.2-3.el7 base inkscape-view.x86_64 0.92.2-3.el7 base intel-cmt-cat.i686 3.0.1-1.el7 base intel-cmt-cat.x86_64 3.0.1-1.el7 base intel-cmt-cat-devel.i686 3.0.1-1.el7 base intel-cmt-cat-devel.x86_64 3.0.1-1.el7 base intel-gpu-tools.x86_64 2.99.917-28.20180530.el7 base iok.x86_64 2.1.3-6.el7 base ipa-client.x86_64 4.6.8-5.el7.centos.6 updates ipa-client-common.noarch 4.6.8-5.el7.centos.6 updates ipa-common.noarch 4.6.8-5.el7.centos.6 updates ipa-gothic-fonts.noarch 003.03-5.el7 base ipa-mincho-fonts.noarch 003.03-5.el7 base ipa-pgothic-fonts.noarch 003.03-5.el7 base ipa-pmincho-fonts.noarch 003.03-5.el7 base ipa-python-compat.noarch 4.6.8-5.el7.centos.6 updates ipa-server.x86_64 4.6.8-5.el7.centos.6 updates ipa-server-common.noarch 4.6.8-5.el7.centos.6 updates ipa-server-dns.noarch 4.6.8-5.el7.centos.6 updates ipa-server-trust-ad.x86_64 4.6.8-5.el7.centos.6 updates iperf3.i686 3.1.7-2.el7 base iperf3.x86_64 3.1.7-2.el7 base iperf3-devel.i686 3.1.7-2.el7 base iperf3-devel.x86_64 3.1.7-2.el7 base iproute-devel.i686 4.11.0-30.el7 base iproute-devel.x86_64 4.11.0-30.el7 base iproute-doc.x86_64 4.11.0-30.el7 base iprutils.x86_64 2.4.17.1-3.el7_7 updates ipset-devel.i686 7.1-1.el7 base ipset-devel.x86_64 7.1-1.el7 base ipset-libs.i686 7.1-1.el7 base ipset-service.noarch 7.1-1.el7 base ipsilon.noarch 1.0.0-13.el7_3 base ipsilon-authform.noarch 1.0.0-13.el7_3 base ipsilon-authgssapi.noarch 1.0.0-13.el7_3 base ipsilon-authldap.noarch 1.0.0-13.el7_3 base ipsilon-base.noarch 1.0.0-13.el7_3 base ipsilon-client.noarch 1.0.0-13.el7_3 base ipsilon-filesystem.noarch 1.0.0-13.el7_3 base ipsilon-infosssd.noarch 1.0.0-13.el7_3 base ipsilon-persona.noarch 1.0.0-13.el7_3 base ipsilon-saml2.noarch 1.0.0-13.el7_3 base ipsilon-saml2-base.noarch 1.0.0-13.el7_3 base ipsilon-tools-ipa.noarch 1.0.0-13.el7_3 base iptables.i686 1.4.21-35.el7 base iptables-devel.i686 1.4.21-35.el7 base iptables-devel.x86_64 1.4.21-35.el7 base iptables-services.x86_64 1.4.21-35.el7 base iptables-utils.x86_64 1.4.21-35.el7 base iptraf-ng.x86_64 1.1.4-7.el7 base iptstate.x86_64 2.2.5-4.el7 base iputils-ninfod.x86_64 20160308-10.el7 base iputils-sysvinit.x86_64 20160308-10.el7 base ipxe-bootimgs.noarch 20180825-3.git133f4c.el7 base ipxe-roms.noarch 20180825-3.git133f4c.el7 base irssi.x86_64 0.8.15-16.el7 base irssi-devel.i686 0.8.15-16.el7 base irssi-devel.x86_64 0.8.15-16.el7 base iscsi-initiator-utils.i686 6.2.0.874-20.el7_9 updates iscsi-initiator-utils.x86_64 6.2.0.874-20.el7_9 updates iscsi-initiator-utils-devel.i686 6.2.0.874-20.el7_9 updates iscsi-initiator-utils-devel.x86_64 6.2.0.874-20.el7_9 updates iscsi-initiator-utils-iscsiuio.x86_64 6.2.0.874-20.el7_9 updates isdn4k-utils.i686 3.2-99.el7 base isdn4k-utils.x86_64 3.2-99.el7 base isdn4k-utils-devel.i686 3.2-99.el7 base isdn4k-utils-devel.x86_64 3.2-99.el7 base isdn4k-utils-doc.x86_64 3.2-99.el7 base isdn4k-utils-static.i686 3.2-99.el7 base isdn4k-utils-static.x86_64 3.2-99.el7 base isdn4k-utils-vboxgetty.x86_64 3.2-99.el7 base isns-utils.x86_64 0.93-7.el7 base iso-codes-devel.noarch 3.46-2.el7 base isomd5sum-devel.i686 1:1.0.10-5.el7 base isomd5sum-devel.x86_64 1:1.0.10-5.el7 base isorelax-javadoc.noarch 1:0-0.15.release20050331.el7 base istack-commons-javadoc.noarch 2.17-4.el7 base itstool.noarch 2.0.2-1.el7 base iwl100-firmware.noarch 39.31.5.1-80.el7_9 updates iwl1000-firmware.noarch 1:39.31.5.1-80.el7_9 updates iwl105-firmware.noarch 18.168.6.1-80.el7_9 updates iwl135-firmware.noarch 18.168.6.1-80.el7_9 updates iwl2000-firmware.noarch 18.168.6.1-80.el7_9 updates iwl2030-firmware.noarch 18.168.6.1-80.el7_9 updates iwl3160-firmware.noarch 25.30.13.0-80.el7_9 updates iwl3945-firmware.noarch 15.32.2.9-80.el7_9 updates iwl4965-firmware.noarch 228.61.2.24-80.el7_9 updates iwl5000-firmware.noarch 8.83.5.1_1-80.el7_9 updates iwl5150-firmware.noarch 8.24.2.2-80.el7_9 updates iwl6000-firmware.noarch 9.221.4.1-80.el7_9 updates iwl6000g2a-firmware.noarch 18.168.6.1-80.el7_9 updates iwl6000g2b-firmware.noarch 18.168.6.1-80.el7_9 updates iwl6050-firmware.noarch 41.28.5.1-80.el7_9 updates iwl7260-firmware.noarch 25.30.13.0-80.el7_9 updates iwpmd.x86_64 22.4-6.el7_9 updates ixpdimm-cli.x86_64 01.00.00.2111-1.el7 base ixpdimm-monitor.x86_64 01.00.00.2111-1.el7 base ixpdimm_sw.x86_64 01.00.00.2111-1.el7 base ixpdimm_sw-devel.x86_64 01.00.00.2111-1.el7 base jackson-javadoc.noarch 1.9.4-7.el7 base jai-imageio-core.noarch 1.2-0.14.20100217cvs.el7 base jai-imageio-core-javadoc.noarch 1.2-0.14.20100217cvs.el7 base jakarta-commons-httpclient-demo.noarch 1:3.1-16.el7_0 base jakarta-commons-httpclient-javadoc.noarch 1:3.1-16.el7_0 base jakarta-commons-httpclient-manual.noarch 1:3.1-16.el7_0 base jakarta-oro-javadoc.noarch 2.0.8-16.el7 base jakarta-taglibs-standard.noarch 1.1.2-14.el7_1 base jakarta-taglibs-standard-javadoc.noarch 1.1.2-14.el7_1 base jandex.noarch 1.0.3-8.el7 base jandex-javadoc.noarch 1.0.3-8.el7 base jansi.noarch 1.9-7.el7 base jansi-javadoc.noarch 1.9-7.el7 base jansi-native.x86_64 1.4-11.el7 base jansi-native-javadoc.x86_64 1.4-11.el7 base jansson.i686 2.10-1.el7 base jansson-devel.i686 2.10-1.el7 base jansson-devel.x86_64 2.10-1.el7 base jansson-devel-doc.noarch 2.10-1.el7 base jarjar.noarch 1.4-6.el7 base jarjar-javadoc.noarch 1.4-6.el7 base jarjar-maven-plugin.noarch 1.4-6.el7 base jasper.x86_64 1.900.1-33.el7 base jasper-devel.i686 1.900.1-33.el7 base jasper-devel.x86_64 1.900.1-33.el7 base jasper-libs.i686 1.900.1-33.el7 base jasper-utils.x86_64 1.900.1-33.el7 base java-1.6.0-openjdk.x86_64 1:1.6.0.41-1.13.13.1.el7_3 base java-1.6.0-openjdk-demo.x86_64 1:1.6.0.41-1.13.13.1.el7_3 base java-1.6.0-openjdk-devel.x86_64 1:1.6.0.41-1.13.13.1.el7_3 base java-1.6.0-openjdk-javadoc.x86_64 1:1.6.0.41-1.13.13.1.el7_3 base java-1.6.0-openjdk-src.x86_64 1:1.6.0.41-1.13.13.1.el7_3 base java-1.7.0-openjdk-accessibility.x86_64 1:1.7.0.261-2.6.22.2.el7_8 base java-1.7.0-openjdk-demo.x86_64 1:1.7.0.261-2.6.22.2.el7_8 base java-1.7.0-openjdk-devel.x86_64 1:1.7.0.261-2.6.22.2.el7_8 base java-1.7.0-openjdk-javadoc.noarch 1:1.7.0.261-2.6.22.2.el7_8 base java-1.7.0-openjdk-src.x86_64 1:1.7.0.261-2.6.22.2.el7_8 base java-1.8.0-openjdk.i686 1:1.8.0.292.b10-1.el7_9 updates java-1.8.0-openjdk.x86_64 1:1.8.0.292.b10-1.el7_9 updates java-1.8.0-openjdk-accessibility.i686 1:1.8.0.292.b10-1.el7_9 updates java-1.8.0-openjdk-accessibility.x86_64 1:1.8.0.292.b10-1.el7_9 updates java-1.8.0-openjdk-demo.i686 1:1.8.0.292.b10-1.el7_9 updates java-1.8.0-openjdk-demo.x86_64 1:1.8.0.292.b10-1.el7_9 updates java-1.8.0-openjdk-devel.i686 1:1.8.0.292.b10-1.el7_9 updates java-1.8.0-openjdk-devel.x86_64 1:1.8.0.292.b10-1.el7_9 updates java-1.8.0-openjdk-headless.i686 1:1.8.0.292.b10-1.el7_9 updates java-1.8.0-openjdk-headless.x86_64 1:1.8.0.292.b10-1.el7_9 updates java-1.8.0-openjdk-javadoc.noarch 1:1.8.0.292.b10-1.el7_9 updates java-1.8.0-openjdk-javadoc-zip.noarch 1:1.8.0.292.b10-1.el7_9 updates java-1.8.0-openjdk-src.i686 1:1.8.0.292.b10-1.el7_9 updates java-1.8.0-openjdk-src.x86_64 1:1.8.0.292.b10-1.el7_9 updates java-11-openjdk.i686 1:11.0.11.0.9-1.el7_9 updates java-11-openjdk.x86_64 1:11.0.11.0.9-1.el7_9 updates java-11-openjdk-demo.i686 1:11.0.11.0.9-1.el7_9 updates java-11-openjdk-demo.x86_64 1:11.0.11.0.9-1.el7_9 updates java-11-openjdk-devel.i686 1:11.0.11.0.9-1.el7_9 updates java-11-openjdk-devel.x86_64 1:11.0.11.0.9-1.el7_9 updates java-11-openjdk-headless.i686 1:11.0.11.0.9-1.el7_9 updates java-11-openjdk-headless.x86_64 1:11.0.11.0.9-1.el7_9 updates java-11-openjdk-javadoc.i686 1:11.0.11.0.9-1.el7_9 updates java-11-openjdk-javadoc.x86_64 1:11.0.11.0.9-1.el7_9 updates java-11-openjdk-javadoc-zip.i686 1:11.0.11.0.9-1.el7_9 updates java-11-openjdk-javadoc-zip.x86_64 1:11.0.11.0.9-1.el7_9 updates java-11-openjdk-jmods.i686 1:11.0.11.0.9-1.el7_9 updates java-11-openjdk-jmods.x86_64 1:11.0.11.0.9-1.el7_9 updates java-11-openjdk-src.i686 1:11.0.11.0.9-1.el7_9 updates java-11-openjdk-src.x86_64 1:11.0.11.0.9-1.el7_9 updates java-11-openjdk-static-libs.i686 1:11.0.11.0.9-1.el7_9 updates java-11-openjdk-static-libs.x86_64 1:11.0.11.0.9-1.el7_9 updates java-atk-wrapper.i686 0.30.4-5.el7 base java-atk-wrapper.x86_64 0.30.4-5.el7 base java_cup.noarch 1:0.11a-16.el7 base java_cup-javadoc.noarch 1:0.11a-16.el7 base java_cup-manual.noarch 1:0.11a-16.el7 base javacc.noarch 5.0-10.el7 base javacc-demo.noarch 5.0-10.el7 base javacc-javadoc.noarch 5.0-10.el7 base javacc-manual.noarch 5.0-10.el7 base javacc-maven-plugin.noarch 2.6-17.el7 base javacc-maven-plugin-javadoc.noarch 2.6-17.el7 base javamail-javadoc.noarch 1.4.6-8.el7 base javassist-javadoc.noarch 3.16.1-10.el7 base jaxen-demo.noarch 1.1.3-11.el7 base jaxen-javadoc.noarch 1.1.3-11.el7 base jbigkit.x86_64 2.0-11.el7 base jbigkit-devel.i686 2.0-11.el7 base jbigkit-devel.x86_64 2.0-11.el7 base jbigkit-libs.i686 2.0-11.el7 base jboss-annotations-1.1-api-javadoc.noarch 1.0.1-0.6.20120212git76e1a2.el7 base jboss-ejb-3.1-api.noarch 1.0.2-10.el7 base jboss-ejb-3.1-api-javadoc.noarch 1.0.2-10.el7 base jboss-el-2.2-api.noarch 1.0.1-0.7.20120212git2fabd8.el7 base jboss-el-2.2-api-javadoc.noarch 1.0.1-0.7.20120212git2fabd8.el7 base jboss-interceptors-1.1-api.noarch 1.0.2-0.9.20120319git49a904.el7 base jboss-interceptors-1.1-api-javadoc.noarch 1.0.2-0.9.20120319git49a904.el7 base jboss-jaxrpc-1.1-api.noarch 1.0.1-7.el7 base jboss-jaxrpc-1.1-api-javadoc.noarch 1.0.1-7.el7 base jboss-parent.noarch 6-12.el7 base jboss-servlet-2.5-api.noarch 1.0.1-5.el7 base jboss-servlet-2.5-api-javadoc.noarch 1.0.1-5.el7 base jboss-servlet-3.0-api.noarch 1.0.1-9.el7 base jboss-servlet-3.0-api-javadoc.noarch 1.0.1-9.el7 base jboss-specs-parent.noarch 1.0.0-0.8.Beta2.el7 base jboss-transaction-1.1-api.noarch 1.0.1-8.el7 base jboss-transaction-1.1-api-javadoc.noarch 1.0.1-8.el7 base jdepend.noarch 2.9.1-10.el7 base jdepend-demo.noarch 2.9.1-10.el7 base jdepend-javadoc.noarch 2.9.1-10.el7 base jdependency.noarch 0.7-10.el7 base jdependency-javadoc.noarch 0.7-10.el7 base jdom-demo.noarch 1.1.3-6.el7 base jdom-javadoc.noarch 1.1.3-6.el7 base jettison.noarch 1.3.3-4.el7 base jettison-javadoc.noarch 1.3.3-4.el7 base jetty-annotations.noarch 9.0.3-8.el7 base jetty-ant.noarch 9.0.3-8.el7 base jetty-artifact-remote-resources.noarch 1.0-10.el7 base jetty-assembly-descriptors.noarch 1.0-9.el7 base jetty-build-support.noarch 1.1-9.el7 base jetty-build-support-javadoc.noarch 1.1-9.el7 base jetty-client.noarch 9.0.3-8.el7 base jetty-continuation.noarch 9.0.3-8.el7 base jetty-deploy.noarch 9.0.3-8.el7 base jetty-distribution-remote-resources.noarch 1.1-8.el7 base jetty-http.noarch 9.0.3-8.el7 base jetty-io.noarch 9.0.3-8.el7 base jetty-jaas.noarch 9.0.3-8.el7 base jetty-jaspi.noarch 9.0.3-8.el7 base jetty-javadoc.noarch 9.0.3-8.el7 base jetty-jmx.noarch 9.0.3-8.el7 base jetty-jndi.noarch 9.0.3-8.el7 base jetty-jsp.noarch 9.0.3-8.el7 base jetty-jspc-maven-plugin.noarch 9.0.3-8.el7 base jetty-maven-plugin.noarch 9.0.3-8.el7 base jetty-monitor.noarch 9.0.3-8.el7 base jetty-parent.noarch 19-8.el7 base jetty-plus.noarch 9.0.3-8.el7 base jetty-project.noarch 9.0.3-8.el7 base jetty-proxy.noarch 9.0.3-8.el7 base jetty-rewrite.noarch 9.0.3-8.el7 base jetty-runner.noarch 9.0.3-8.el7 base jetty-security.noarch 9.0.3-8.el7 base jetty-server.noarch 9.0.3-8.el7 base jetty-servlet.noarch 9.0.3-8.el7 base jetty-servlets.noarch 9.0.3-8.el7 base jetty-start.noarch 9.0.3-8.el7 base jetty-test-policy.noarch 1.2-10.el7 base jetty-test-policy-javadoc.noarch 1.2-10.el7 base jetty-toolchain.noarch 1.4-9.el7 base jetty-util.noarch 9.0.3-8.el7 base jetty-util-ajax.noarch 9.0.3-8.el7 base jetty-version-maven-plugin.noarch 1.0.7-9.el7 base jetty-version-maven-plugin-javadoc.noarch 1.0.7-9.el7 base jetty-webapp.noarch 9.0.3-8.el7 base jetty-websocket-api.noarch 9.0.3-8.el7 base jetty-websocket-client.noarch 9.0.3-8.el7 base jetty-websocket-common.noarch 9.0.3-8.el7 base jetty-websocket-parent.noarch 9.0.3-8.el7 base jetty-websocket-server.noarch 9.0.3-8.el7 base jetty-websocket-servlet.noarch 9.0.3-8.el7 base jetty-xml.noarch 9.0.3-8.el7 base jflex.noarch 1.4.3-20.el7 base jflex-javadoc.noarch 1.4.3-20.el7 base jing-javadoc.noarch 20091111-14.el7 base jline-demo.noarch 1.0-8.el7 base jline-javadoc.noarch 1.0-8.el7 base jna.x86_64 3.5.2-8.el7 base jna-contrib.noarch 3.5.2-8.el7 base jna-javadoc.noarch 3.5.2-8.el7 base joda-convert-javadoc.noarch 1.3-5.el7 base joda-time-javadoc.noarch 2.2-3.tzdata2013c.el7 base jose.x86_64 10-1.el7 base js.i686 1:1.8.5-20.el7 base js.x86_64 1:1.8.5-20.el7 base js-devel.i686 1:1.8.5-20.el7 base js-devel.x86_64 1:1.8.5-20.el7 base jsch.noarch 0.1.50-5.el7 base jsch-demo.noarch 0.1.50-5.el7 base jsch-javadoc.noarch 0.1.50-5.el7 base json-c.i686 0.11-4.el7_0 base json-c-devel.i686 0.11-4.el7_0 base json-c-devel.x86_64 0.11-4.el7_0 base json-c-doc.noarch 0.11-4.el7_0 base json-glib.i686 1.4.2-2.el7 base json-glib-devel.i686 1.4.2-2.el7 base json-glib-devel.x86_64 1.4.2-2.el7 base json-glib-tests.x86_64 1.4.2-2.el7 base jsoup.noarch 1.6.1-10.el7 base jsoup-javadoc.noarch 1.6.1-10.el7 base jsr-305.noarch 0-0.18.20090319svn.el7 base jsr-305-javadoc.noarch 0-0.18.20090319svn.el7 base jsr-311-javadoc.noarch 1.1.1-6.el7 base jss-javadoc.x86_64 4.4.9-3.el7 base jtidy.noarch 2:1.0-0.16.20100930svn1125.el7 base jtidy-javadoc.noarch 2:1.0-0.16.20100930svn1125.el7 base juk.x86_64 4.10.5-3.el7 base junit-demo.noarch 4.11-8.el7 base junit-javadoc.noarch 4.11-8.el7 base junit-manual.noarch 4.11-8.el7 base jzlib.noarch 1.1.1-6.el7 base jzlib-demo.noarch 1.1.1-6.el7 base jzlib-javadoc.noarch 1.1.1-6.el7 base k3b.x86_64 1:2.0.2-17.el7 base k3b-common.noarch 1:2.0.2-17.el7 base k3b-devel.i686 1:2.0.2-17.el7 base k3b-devel.x86_64 1:2.0.2-17.el7 base k3b-libs.i686 1:2.0.2-17.el7 base k3b-libs.x86_64 1:2.0.2-17.el7 base kabi-yum-plugins.noarch 1.0-3.el7.centos base kaccessible-libs.i686 4.10.5-3.el7 base kacst-art-fonts.noarch 2.0-12.el7 base kacst-book-fonts.noarch 2.0-12.el7 base kacst-decorative-fonts.noarch 2.0-12.el7 base kacst-digital-fonts.noarch 2.0-12.el7 base kacst-farsi-fonts.noarch 2.0-12.el7 base kacst-fonts-common.noarch 2.0-12.el7 base kacst-letter-fonts.noarch 2.0-12.el7 base kacst-naskh-fonts.noarch 2.0-12.el7 base kacst-office-fonts.noarch 2.0-12.el7 base kacst-one-fonts.noarch 2.0-12.el7 base kacst-pen-fonts.noarch 2.0-12.el7 base kacst-poster-fonts.noarch 2.0-12.el7 base kacst-qurn-fonts.noarch 2.0-12.el7 base kacst-screen-fonts.noarch 2.0-12.el7 base kacst-title-fonts.noarch 2.0-12.el7 base kacst-titlel-fonts.noarch 2.0-12.el7 base kactivities.i686 4.10.5-3.el7 base kactivities-devel.i686 4.10.5-3.el7 base kactivities-devel.x86_64 4.10.5-3.el7 base kate.x86_64 4.10.5-6.el7 base kate-devel.i686 4.10.5-6.el7 base kate-devel.x86_64 4.10.5-6.el7 base kate-libs.i686 4.10.5-6.el7 base kate-libs.x86_64 4.10.5-6.el7 base kate-part.i686 4.10.5-6.el7 base kcm_colors.x86_64 4.11.19-16.el7_9 updates kcoloredit.x86_64 4.4.0-9.el7 base kde-baseapps-devel.i686 4.10.5-6.el7 base kde-baseapps-devel.x86_64 4.10.5-6.el7 base kde-baseapps-libs.i686 4.10.5-6.el7 base kde-l10n.noarch 4.10.5-2.el7 base kde-l10n-Arabic.noarch 4.10.5-2.el7 base kde-l10n-Basque.noarch 4.10.5-2.el7 base kde-l10n-Bosnian.noarch 4.10.5-2.el7 base kde-l10n-Brazil.noarch 4.10.5-2.el7 base kde-l10n-British.noarch 4.10.5-2.el7 base kde-l10n-Bulgarian.noarch 4.10.5-2.el7 base kde-l10n-Catalan.noarch 4.10.5-2.el7 base kde-l10n-Catalan-Valencian.noarch 4.10.5-2.el7 base kde-l10n-Chinese.noarch 4.10.5-2.el7 base kde-l10n-Chinese-Traditional.noarch 4.10.5-2.el7 base kde-l10n-Croatian.noarch 4.10.5-2.el7 base kde-l10n-Czech.noarch 4.10.5-2.el7 base kde-l10n-Danish.noarch 4.10.5-2.el7 base kde-l10n-Dutch.noarch 4.10.5-2.el7 base kde-l10n-Estonian.noarch 4.10.5-2.el7 base kde-l10n-Farsi.noarch 4.10.5-2.el7 base kde-l10n-Finnish.noarch 4.10.5-2.el7 base kde-l10n-French.noarch 4.10.5-2.el7 base kde-l10n-Galician.noarch 4.10.5-2.el7 base kde-l10n-German.noarch 4.10.5-2.el7 base kde-l10n-Greek.noarch 4.10.5-2.el7 base kde-l10n-Hebrew.noarch 4.10.5-2.el7 base kde-l10n-Hindi.noarch 4.10.5-2.el7 base kde-l10n-Hungarian.noarch 4.10.5-2.el7 base kde-l10n-Icelandic.noarch 4.10.5-2.el7 base kde-l10n-Interlingua.noarch 4.10.5-2.el7 base kde-l10n-Irish.noarch 4.10.5-2.el7 base kde-l10n-Italian.noarch 4.10.5-2.el7 base kde-l10n-Japanese.noarch 4.10.5-2.el7 base kde-l10n-Kazakh.noarch 4.10.5-2.el7 base kde-l10n-Khmer.noarch 4.10.5-2.el7 base kde-l10n-Korean.noarch 4.10.5-2.el7 base kde-l10n-Latvian.noarch 4.10.5-2.el7 base kde-l10n-Lithuanian.noarch 4.10.5-2.el7 base kde-l10n-LowSaxon.noarch 4.10.5-2.el7 base kde-l10n-Marathi.noarch 4.10.5-2.el7 base kde-l10n-Norwegian.noarch 4.10.5-2.el7 base kde-l10n-Norwegian-Nynorsk.noarch 4.10.5-2.el7 base kde-l10n-Polish.noarch 4.10.5-2.el7 base kde-l10n-Portuguese.noarch 4.10.5-2.el7 base kde-l10n-Punjabi.noarch 4.10.5-2.el7 base kde-l10n-Romanian.noarch 4.10.5-2.el7 base kde-l10n-Russian.noarch 4.10.5-2.el7 base kde-l10n-Serbian.noarch 4.10.5-2.el7 base kde-l10n-Sinhala.noarch 4.10.5-2.el7 base kde-l10n-Slovak.noarch 4.10.5-2.el7 base kde-l10n-Slovenian.noarch 4.10.5-2.el7 base kde-l10n-Spanish.noarch 4.10.5-2.el7 base kde-l10n-Swedish.noarch 4.10.5-2.el7 base kde-l10n-Tajik.noarch 4.10.5-2.el7 base kde-l10n-Thai.noarch 4.10.5-2.el7 base kde-l10n-Turkish.noarch 4.10.5-2.el7 base kde-l10n-Ukrainian.noarch 4.10.5-2.el7 base kde-l10n-Uyghur.noarch 4.10.5-2.el7 base kde-l10n-Vietnamese.noarch 4.10.5-2.el7 base kde-l10n-Walloon.noarch 4.10.5-2.el7 base kde-plasma-networkmanagement-libreswan.x86_64 1:0.9.0.9-9.el7 base kde-plasma-networkmanagement-libs.i686 1:0.9.0.9-9.el7 base kde-plasma-networkmanagement-mobile.x86_64 1:0.9.0.9-9.el7 base kde-runtime.i686 4.10.5-11.el7 base kde-runtime-devel.i686 4.10.5-11.el7 base kde-runtime-devel.x86_64 4.10.5-11.el7 base kde-runtime-libs.i686 4.10.5-11.el7 base kde-settings-minimal.noarch 19-23.12.el7.centos base kde-style-oxygen.i686 4.11.19-16.el7_9 updates kde-style-oxygen.x86_64 4.11.19-16.el7_9 updates kde-style-phase.i686 4.10.5-4.el7 base kde-style-phase.x86_64 4.10.5-4.el7 base kde-wallpapers.noarch 4.10.5-2.el7 base kde-workspace.x86_64 4.11.19-16.el7_9 updates kde-workspace-devel.i686 4.11.19-16.el7_9 updates kde-workspace-devel.x86_64 4.11.19-16.el7_9 updates kde-workspace-ksplash-themes.noarch 4.11.19-16.el7_9 updates kde-workspace-libs.i686 4.11.19-16.el7_9 updates kde-workspace-libs.x86_64 4.11.19-16.el7_9 updates kdeartwork.x86_64 4.10.5-4.el7 base kdeartwork-screensavers.x86_64 4.10.5-4.el7 base kdeartwork-sounds.noarch 4.10.5-4.el7 base kdeartwork-wallpapers.noarch 4.10.5-4.el7 base kdeclassic-cursor-theme.noarch 4.11.19-16.el7_9 updates kdegraphics.noarch 7:4.10.5-3.el7 base kdegraphics-devel.noarch 7:4.10.5-3.el7 base kdegraphics-libs.noarch 7:4.10.5-3.el7 base kdelibs.i686 6:4.14.8-13.el7 base kdelibs-apidocs.noarch 6:4.14.8-13.el7 base kdelibs-devel.i686 6:4.14.8-13.el7 base kdelibs-devel.x86_64 6:4.14.8-13.el7 base kdelibs-ktexteditor.i686 6:4.14.8-13.el7 base kdemultimedia.noarch 6:4.10.5-2.el7 base kdemultimedia-common.noarch 6:4.10.5-2.el7 base kdemultimedia-devel.noarch 6:4.10.5-2.el7 base kdemultimedia-libs.noarch 6:4.10.5-2.el7 base kdenetwork.x86_64 7:4.10.5-8.el7_0 base kdenetwork-devel.noarch 7:4.10.5-8.el7_0 base kdenetwork-fileshare-samba.x86_64 7:4.10.5-8.el7_0 base kdenetwork-kget-libs.i686 7:4.10.5-8.el7_0 base kdenetwork-kopete.x86_64 7:4.10.5-8.el7_0 base kdenetwork-kopete-devel.i686 7:4.10.5-8.el7_0 base kdenetwork-kopete-devel.x86_64 7:4.10.5-8.el7_0 base kdenetwork-kopete-libs.i686 7:4.10.5-8.el7_0 base kdenetwork-kopete-libs.x86_64 7:4.10.5-8.el7_0 base kdenetwork-krdc.x86_64 7:4.10.5-8.el7_0 base kdenetwork-krdc-devel.i686 7:4.10.5-8.el7_0 base kdenetwork-krdc-devel.x86_64 7:4.10.5-8.el7_0 base kdenetwork-krdc-libs.i686 7:4.10.5-8.el7_0 base kdenetwork-krdc-libs.x86_64 7:4.10.5-8.el7_0 base kdenetwork-krfb-libs.i686 7:4.10.5-8.el7_0 base kdepim-devel.i686 7:4.10.5-7.el7 base kdepim-devel.x86_64 7:4.10.5-7.el7 base kdepim-libs.i686 7:4.10.5-7.el7 base kdepim-runtime-libs.i686 1:4.10.5-3.el7 base kdepimlibs.i686 4.10.5-4.el7 base kdepimlibs-akonadi.i686 4.10.5-4.el7 base kdepimlibs-apidocs.noarch 4.10.5-4.el7 base kdepimlibs-devel.i686 4.10.5-4.el7 base kdepimlibs-devel.x86_64 4.10.5-4.el7 base kdepimlibs-kxmlrpcclient.i686 4.10.5-4.el7 base kdeplasma-addons-devel.i686 4.10.5-5.el7 base kdeplasma-addons-devel.x86_64 4.10.5-5.el7 base kdeplasma-addons-libs.i686 4.10.5-5.el7 base kdesdk.x86_64 4.10.5-8.el7 base kdesdk-cervisia.x86_64 4.10.5-8.el7 base kdesdk-common.noarch 4.10.5-8.el7 base kdesdk-devel.i686 4.10.5-8.el7 base kdesdk-devel.x86_64 4.10.5-8.el7 base kdesdk-dolphin-plugins.x86_64 4.10.5-8.el7 base kdesdk-kapptemplate.x86_64 4.10.5-8.el7 base kdesdk-kapptemplate-template.noarch 4.10.5-8.el7 base kdesdk-kcachegrind.x86_64 4.10.5-8.el7 base kdesdk-kioslave.x86_64 4.10.5-8.el7 base kdesdk-kmtrace.x86_64 4.10.5-8.el7 base kdesdk-kmtrace-devel.i686 4.10.5-8.el7 base kdesdk-kmtrace-devel.x86_64 4.10.5-8.el7 base kdesdk-kmtrace-libs.i686 4.10.5-8.el7 base kdesdk-kmtrace-libs.x86_64 4.10.5-8.el7 base kdesdk-kompare.x86_64 4.10.5-8.el7 base kdesdk-kompare-devel.i686 4.10.5-8.el7 base kdesdk-kompare-devel.x86_64 4.10.5-8.el7 base kdesdk-kompare-libs.i686 4.10.5-8.el7 base kdesdk-kompare-libs.x86_64 4.10.5-8.el7 base kdesdk-kpartloader.x86_64 4.10.5-8.el7 base kdesdk-kstartperf.x86_64 4.10.5-8.el7 base kdesdk-kuiviewer.x86_64 4.10.5-8.el7 base kdesdk-lokalize.x86_64 4.10.5-8.el7 base kdesdk-okteta.x86_64 4.10.5-8.el7 base kdesdk-okteta-devel.i686 4.10.5-8.el7 base kdesdk-okteta-devel.x86_64 4.10.5-8.el7 base kdesdk-okteta-libs.i686 4.10.5-8.el7 base kdesdk-okteta-libs.x86_64 4.10.5-8.el7 base kdesdk-poxml.x86_64 4.10.5-8.el7 base kdesdk-scripts.noarch 4.10.5-8.el7 base kdesdk-strigi-analyzer.x86_64 4.10.5-8.el7 base kdesdk-thumbnailers.x86_64 4.10.5-8.el7 base kdesdk-umbrello.x86_64 4.10.5-8.el7 base kdeutils.noarch 6:4.10.5-3.el7 base kdeutils-common.noarch 6:4.10.5-3.el7 base kernel.x86_64 3.10.0-1160.31.1.el7 updates kernel-abi-whitelists.noarch 3.10.0-1160.31.1.el7 updates kernel-debug.x86_64 3.10.0-1160.31.1.el7 updates kernel-debug-devel.x86_64 3.10.0-1160.31.1.el7 updates kernel-devel.x86_64 3.10.0-1160.31.1.el7 updates kernel-doc.noarch 3.10.0-1160.31.1.el7 updates kernel-headers.x86_64 3.10.0-1160.31.1.el7 updates kernel-tools.x86_64 3.10.0-1160.31.1.el7 updates kernel-tools-libs.x86_64 3.10.0-1160.31.1.el7 updates kernel-tools-libs-devel.x86_64 3.10.0-1160.31.1.el7 updates kexec-tools.x86_64 2.0.15-51.el7_9.3 updates kexec-tools-anaconda-addon.x86_64 2.0.15-51.el7_9.3 updates kexec-tools-eppic.x86_64 2.0.15-51.el7_9.3 updates keybinder3.i686 0.3.0-1.el7 base keybinder3-devel.i686 0.3.0-1.el7 base keybinder3-devel.x86_64 0.3.0-1.el7 base keybinder3-doc.noarch 0.3.0-1.el7 base keycloak-httpd-client-install.noarch 0.8-1.el7 base keytool-maven-plugin.noarch 1.0-13.el7 base keytool-maven-plugin-javadoc.noarch 1.0-13.el7 base keyutils-libs.i686 1.5.8-3.el7 base keyutils-libs-devel.i686 1.5.8-3.el7 base keyutils-libs-devel.x86_64 1.5.8-3.el7 base kgamma.x86_64 4.10.5-3.el7 base kgreeter-plugins.x86_64 4.11.19-16.el7_9 updates khmeros-battambang-fonts.noarch 5.0-17.el7 base khmeros-bokor-fonts.noarch 5.0-17.el7 base khmeros-handwritten-fonts.noarch 5.0-17.el7 base khmeros-metal-chrieng-fonts.noarch 5.0-17.el7 base khmeros-muol-fonts.noarch 5.0-17.el7 base khmeros-siemreap-fonts.noarch 5.0-17.el7 base khotkeys.x86_64 4.11.19-16.el7_9 updates khotkeys-libs.i686 4.11.19-16.el7_9 updates khotkeys-libs.x86_64 4.11.19-16.el7_9 updates kiconedit.x86_64 4.4.0-10.el7 base kinfocenter.x86_64 4.11.19-16.el7_9 updates kio_sysinfo.x86_64 20090930-8.el7 base kmenuedit.x86_64 4.11.19-16.el7_9 updates kmod-devel.i686 20-28.el7 base kmod-devel.x86_64 20-28.el7 base kmod-libs.i686 20-28.el7 base kmod-oracleasm.x86_64 2.0.8-28.el7 base koji.noarch 1.15.1-1.el7.centos extras koji-builder.noarch 1.15.1-1.el7.centos extras koji-hub.noarch 1.15.1-1.el7.centos extras koji-hub-plugins.noarch 1.15.1-1.el7.centos extras koji-utils.noarch 1.15.1-1.el7.centos extras koji-vm.noarch 1.15.1-1.el7.centos extras koji-web.noarch 1.15.1-1.el7.centos extras kolourpaint.x86_64 4.10.5-4.el7 base kolourpaint-libs.i686 4.10.5-4.el7 base kolourpaint-libs.x86_64 4.10.5-4.el7 base konkretcmpi.i686 0.9.1-5.el7 base konkretcmpi-devel.i686 0.9.1-5.el7 base konkretcmpi-devel.x86_64 0.9.1-5.el7 base konkretcmpi-python.x86_64 0.9.1-5.el7 base kpartx.x86_64 0.4.9-134.el7_9 updates krb5-devel.i686 1.15.1-50.el7 base krb5-devel.x86_64 1.15.1-50.el7 base krb5-libs.i686 1.15.1-50.el7 base krb5-server-ldap.x86_64 1.15.1-50.el7 base kross-interpreters.x86_64 4.10.5-8.el7 base kross-python.x86_64 4.10.5-8.el7 base kross-ruby.x86_64 4.10.5-8.el7 base ksc.noarch 0.11.0-1.el7 base ksh.x86_64 20120801-142.el7 base ksysguard.x86_64 4.11.19-16.el7_9 updates ksysguard-libs.i686 4.11.19-16.el7_9 updates ksysguard-libs.x86_64 4.11.19-16.el7_9 updates ksysguardd.x86_64 4.11.19-16.el7_9 updates kubernetes.x86_64 1.5.2-0.7.git269f928.el7 extras kubernetes-client.x86_64 1.5.2-0.7.git269f928.el7 extras kubernetes-master.x86_64 1.5.2-0.7.git269f928.el7 extras kubernetes-node.x86_64 1.5.2-0.7.git269f928.el7 extras kurdit-unikurd-web-fonts.noarch 20020502-11.el7 base kwin.x86_64 4.11.19-16.el7_9 updates kwin-gles.x86_64 4.11.19-16.el7_9 updates kwin-gles-libs.i686 4.11.19-16.el7_9 updates kwin-gles-libs.x86_64 4.11.19-16.el7_9 updates kwin-libs.i686 4.11.19-16.el7_9 updates kwin-libs.x86_64 4.11.19-16.el7_9 updates kxml.noarch 2.3.0-5.el7 base kxml-javadoc.noarch 2.3.0-5.el7 base ladspa.x86_64 1.13-12.el7 base ladspa-devel.i686 1.13-12.el7 base ladspa-devel.x86_64 1.13-12.el7 base lapack.i686 3.4.2-8.el7 base lapack.x86_64 3.4.2-8.el7 base lapack-devel.i686 3.4.2-8.el7 base lapack-devel.x86_64 3.4.2-8.el7 base lapack-static.i686 3.4.2-8.el7 base lapack-static.x86_64 3.4.2-8.el7 base lapack64.x86_64 3.4.2-8.el7 base lapack64-devel.x86_64 3.4.2-8.el7 base lapack64-static.x86_64 3.4.2-8.el7 base lasso.i686 2.5.1-5.el7 base lasso.x86_64 2.5.1-5.el7 base lasso-devel.i686 2.5.1-5.el7 base lasso-devel.x86_64 2.5.1-5.el7 base lasso-python.x86_64 2.5.1-5.el7 base latex2html.noarch 2012-3.el7 base latrace.i686 0.5.11-6.1.el7 base latrace.x86_64 0.5.11-6.1.el7 base lcms2.i686 2.6-3.el7 base lcms2-devel.i686 2.6-3.el7 base lcms2-devel.x86_64 2.6-3.el7 base lcms2-utils.x86_64 2.6-3.el7 base ldapjdk-javadoc.noarch 4.19-5.el7 base ldb-tools.x86_64 1.5.4-2.el7 updates ldns.i686 1.6.16-10.el7 base ldns-devel.i686 1.6.16-10.el7 base ldns-devel.x86_64 1.6.16-10.el7 base ldns-doc.noarch 1.6.16-10.el7 base ldns-python.x86_64 1.6.16-10.el7 base lemon.x86_64 3.7.17-8.el7_7.1 base lftp.i686 4.4.8-12.el7_8.1 base lftp.x86_64 4.4.8-12.el7_8.1 base lftp-scripts.noarch 4.4.8-12.el7_8.1 base libGLEW.i686 1.10.0-5.el7 base libGLEW.x86_64 1.10.0-5.el7 base libGLEWmx.i686 1.10.0-5.el7 base libGLEWmx.x86_64 1.10.0-5.el7 base libICE.i686 1.0.9-9.el7 base libICE-devel.i686 1.0.9-9.el7 base libICE-devel.x86_64 1.0.9-9.el7 base libIDL.i686 0.8.14-8.el7 base libIDL.x86_64 0.8.14-8.el7 base libIDL-devel.i686 0.8.14-8.el7 base libIDL-devel.x86_64 0.8.14-8.el7 base libSM.i686 1.2.2-2.el7 base libSM-devel.i686 1.2.2-2.el7 base libSM-devel.x86_64 1.2.2-2.el7 base libX11.i686 1.6.7-3.el7_9 updates libX11.x86_64 1.6.7-3.el7_9 updates libX11-common.noarch 1.6.7-3.el7_9 updates libX11-devel.i686 1.6.7-3.el7_9 updates libX11-devel.x86_64 1.6.7-3.el7_9 updates libXScrnSaver.i686 1.2.2-6.1.el7 base libXScrnSaver-devel.i686 1.2.2-6.1.el7 base libXScrnSaver-devel.x86_64 1.2.2-6.1.el7 base libXau.i686 1.0.8-2.1.el7 base libXau-devel.i686 1.0.8-2.1.el7 base libXaw.i686 1.0.13-4.el7 base libXaw-devel.i686 1.0.13-4.el7 base libXaw-devel.x86_64 1.0.13-4.el7 base libXcomposite.i686 0.4.4-4.1.el7 base libXcomposite-devel.i686 0.4.4-4.1.el7 base libXcomposite-devel.x86_64 0.4.4-4.1.el7 base libXcursor.i686 1.1.15-1.el7 base libXcursor-devel.i686 1.1.15-1.el7 base libXcursor-devel.x86_64 1.1.15-1.el7 base libXdamage.i686 1.1.4-4.1.el7 base libXdamage-devel.i686 1.1.4-4.1.el7 base libXdamage-devel.x86_64 1.1.4-4.1.el7 base libXdmcp.i686 1.1.2-6.el7 base libXdmcp-devel.i686 1.1.2-6.el7 base libXdmcp-devel.x86_64 1.1.2-6.el7 base libXevie.i686 1.0.3-7.1.el7 base libXevie.x86_64 1.0.3-7.1.el7 base libXevie-devel.i686 1.0.3-7.1.el7 base libXevie-devel.x86_64 1.0.3-7.1.el7 base libXext.i686 1.3.3-3.el7 base libXext-devel.i686 1.3.3-3.el7 base libXext-devel.x86_64 1.3.3-3.el7 base libXfixes.i686 5.0.3-1.el7 base libXfixes-devel.i686 5.0.3-1.el7 base libXfixes-devel.x86_64 5.0.3-1.el7 base libXfont.i686 1.5.4-1.el7 base libXfont.x86_64 1.5.4-1.el7 base libXfont-devel.i686 1.5.4-1.el7 base libXfont-devel.x86_64 1.5.4-1.el7 base libXfont2.i686 2.0.3-1.el7 base libXfont2-devel.i686 2.0.3-1.el7 base libXfont2-devel.x86_64 2.0.3-1.el7 base libXft.i686 2.3.2-2.el7 base libXft-devel.i686 2.3.2-2.el7 base libXft-devel.x86_64 2.3.2-2.el7 base libXi.i686 1.7.9-1.el7 base libXi-devel.i686 1.7.9-1.el7 base libXi-devel.x86_64 1.7.9-1.el7 base libXinerama.i686 1.1.3-2.1.el7 base libXinerama-devel.i686 1.1.3-2.1.el7 base libXinerama-devel.x86_64 1.1.3-2.1.el7 base libXmu.i686 1.1.2-2.el7 base libXmu-devel.i686 1.1.2-2.el7 base libXmu-devel.x86_64 1.1.2-2.el7 base libXp.i686 1.0.2-2.1.el7 base libXp.x86_64 1.0.2-2.1.el7 base libXp-devel.i686 1.0.2-2.1.el7 base libXp-devel.x86_64 1.0.2-2.1.el7 base libXpm.i686 3.5.12-1.el7 base libXpm-devel.i686 3.5.12-1.el7 base libXpm-devel.x86_64 3.5.12-1.el7 base libXrandr.i686 1.5.1-2.el7 base libXrandr-devel.i686 1.5.1-2.el7 base libXrandr-devel.x86_64 1.5.1-2.el7 base libXrender.i686 0.9.10-1.el7 base libXrender-devel.i686 0.9.10-1.el7 base libXrender-devel.x86_64 0.9.10-1.el7 base libXres.i686 1.2.0-1.el7 base libXres-devel.i686 1.2.0-1.el7 base libXres-devel.x86_64 1.2.0-1.el7 base libXt.i686 1.1.5-3.el7 base libXt-devel.i686 1.1.5-3.el7 base libXt-devel.x86_64 1.1.5-3.el7 base libXtst.i686 1.2.3-1.el7 base libXtst-devel.i686 1.2.3-1.el7 base libXtst-devel.x86_64 1.2.3-1.el7 base libXv.i686 1.0.11-1.el7 base libXv-devel.i686 1.0.11-1.el7 base libXv-devel.x86_64 1.0.11-1.el7 base libXvMC.i686 1.0.10-1.el7 base libXvMC-devel.i686 1.0.10-1.el7 base libXvMC-devel.x86_64 1.0.10-1.el7 base libXxf86dga.i686 1.1.4-2.1.el7 base libXxf86dga-devel.i686 1.1.4-2.1.el7 base libXxf86dga-devel.x86_64 1.1.4-2.1.el7 base libXxf86misc.i686 1.0.3-7.1.el7 base libXxf86misc-devel.i686 1.0.3-7.1.el7 base libXxf86misc-devel.x86_64 1.0.3-7.1.el7 base libXxf86vm.i686 1.1.4-1.el7 base libXxf86vm-devel.i686 1.1.4-1.el7 base libXxf86vm-devel.x86_64 1.1.4-1.el7 base libabw.i686 0.1.1-2.el7 base libabw.x86_64 0.1.1-2.el7 base libabw-devel.i686 0.1.1-2.el7 base libabw-devel.x86_64 0.1.1-2.el7 base libabw-doc.noarch 0.1.1-2.el7 base libabw-tools.x86_64 0.1.1-2.el7 base libacl.i686 2.2.51-15.el7 base libacl-devel.i686 2.2.51-15.el7 base libacl-devel.x86_64 2.2.51-15.el7 base libaio.i686 0.3.109-13.el7 base libaio-devel.i686 0.3.109-13.el7 base libaio-devel.x86_64 0.3.109-13.el7 base libao.i686 1.1.0-8.el7 base libao-devel.i686 1.1.0-8.el7 base libao-devel.x86_64 1.1.0-8.el7 base libappindicator.i686 12.10.0-13.el7 base libappindicator.x86_64 12.10.0-13.el7 base libappindicator-devel.i686 12.10.0-13.el7 base libappindicator-devel.x86_64 12.10.0-13.el7 base libappindicator-docs.noarch 12.10.0-13.el7 base libappindicator-gtk3.i686 12.10.0-13.el7 base libappindicator-gtk3.x86_64 12.10.0-13.el7 base libappindicator-gtk3-devel.i686 12.10.0-13.el7 base libappindicator-gtk3-devel.x86_64 12.10.0-13.el7 base libappstream-glib.i686 0.7.8-2.el7 base libappstream-glib-builder.i686 0.7.8-2.el7 base libappstream-glib-builder.x86_64 0.7.8-2.el7 base libappstream-glib-builder-devel.i686 0.7.8-2.el7 base libappstream-glib-builder-devel.x86_64 0.7.8-2.el7 base libappstream-glib-devel.i686 0.7.8-2.el7 base libappstream-glib-devel.x86_64 0.7.8-2.el7 base libarchive.i686 3.1.2-14.el7_7 base libarchive-devel.i686 3.1.2-14.el7_7 base libarchive-devel.x86_64 3.1.2-14.el7_7 base libart_lgpl.i686 2.3.21-10.el7 base libart_lgpl-devel.i686 2.3.21-10.el7 base libart_lgpl-devel.x86_64 2.3.21-10.el7 base libasan.i686 4.8.5-44.el7 base libasan.x86_64 4.8.5-44.el7 base libasan-static.i686 4.8.5-44.el7 base libasan-static.x86_64 4.8.5-44.el7 base libassuan.i686 2.1.0-3.el7 base libassuan-devel.i686 2.1.0-3.el7 base libassuan-devel.x86_64 2.1.0-3.el7 base libasyncns.i686 0.8-7.el7 base libasyncns-devel.i686 0.8-7.el7 base libasyncns-devel.x86_64 0.8-7.el7 base libatasmart.i686 0.19-6.el7 base libatasmart-devel.i686 0.19-6.el7 base libatasmart-devel.x86_64 0.19-6.el7 base libatomic.i686 4.8.5-44.el7 base libatomic.x86_64 4.8.5-44.el7 base libatomic-static.i686 4.8.5-44.el7 base libatomic-static.x86_64 4.8.5-44.el7 base libatomic_ops-devel.i686 7.2d-7.el7 base libatomic_ops-devel.x86_64 7.2d-7.el7 base libattr.i686 2.4.46-13.el7 base libattr-devel.i686 2.4.46-13.el7 base libattr-devel.x86_64 2.4.46-13.el7 base libavc1394.i686 0.5.3-14.el7 base libavc1394-devel.i686 0.5.3-14.el7 base libavc1394-devel.x86_64 0.5.3-14.el7 base libbase.noarch 1.1.3-10.el7 base libbase-javadoc.noarch 1.1.3-10.el7 base libbasicobjects.i686 0.1.1-32.el7 base libbasicobjects-devel.i686 0.1.1-32.el7 base libbasicobjects-devel.x86_64 0.1.1-32.el7 base libblkid.i686 2.23.2-65.el7_9.1 updates libblkid.x86_64 2.23.2-65.el7_9.1 updates libblkid-devel.i686 2.23.2-65.el7_9.1 updates libblkid-devel.x86_64 2.23.2-65.el7_9.1 updates libblockdev.i686 2.18-5.el7 base libblockdev-btrfs.i686 2.18-5.el7 base libblockdev-btrfs.x86_64 2.18-5.el7 base libblockdev-btrfs-devel.i686 2.18-5.el7 base libblockdev-btrfs-devel.x86_64 2.18-5.el7 base libblockdev-crypto.i686 2.18-5.el7 base libblockdev-crypto-devel.i686 2.18-5.el7 base libblockdev-crypto-devel.x86_64 2.18-5.el7 base libblockdev-devel.i686 2.18-5.el7 base libblockdev-devel.x86_64 2.18-5.el7 base libblockdev-dm.i686 2.18-5.el7 base libblockdev-dm.x86_64 2.18-5.el7 base libblockdev-dm-devel.i686 2.18-5.el7 base libblockdev-dm-devel.x86_64 2.18-5.el7 base libblockdev-fs.i686 2.18-5.el7 base libblockdev-fs-devel.i686 2.18-5.el7 base libblockdev-fs-devel.x86_64 2.18-5.el7 base libblockdev-kbd.i686 2.18-5.el7 base libblockdev-kbd.x86_64 2.18-5.el7 base libblockdev-kbd-devel.i686 2.18-5.el7 base libblockdev-kbd-devel.x86_64 2.18-5.el7 base libblockdev-loop.i686 2.18-5.el7 base libblockdev-loop-devel.i686 2.18-5.el7 base libblockdev-loop-devel.x86_64 2.18-5.el7 base libblockdev-lvm.i686 2.18-5.el7 base libblockdev-lvm.x86_64 2.18-5.el7 base libblockdev-lvm-devel.i686 2.18-5.el7 base libblockdev-lvm-devel.x86_64 2.18-5.el7 base libblockdev-mdraid.i686 2.18-5.el7 base libblockdev-mdraid-devel.i686 2.18-5.el7 base libblockdev-mdraid-devel.x86_64 2.18-5.el7 base libblockdev-mpath.i686 2.18-5.el7 base libblockdev-mpath.x86_64 2.18-5.el7 base libblockdev-mpath-devel.i686 2.18-5.el7 base libblockdev-mpath-devel.x86_64 2.18-5.el7 base libblockdev-nvdimm.i686 2.18-5.el7 base libblockdev-nvdimm-devel.i686 2.18-5.el7 base libblockdev-nvdimm-devel.x86_64 2.18-5.el7 base libblockdev-part.i686 2.18-5.el7 base libblockdev-part-devel.i686 2.18-5.el7 base libblockdev-part-devel.x86_64 2.18-5.el7 base libblockdev-plugins-all.x86_64 2.18-5.el7 base libblockdev-swap.i686 2.18-5.el7 base libblockdev-swap-devel.i686 2.18-5.el7 base libblockdev-swap-devel.x86_64 2.18-5.el7 base libblockdev-utils.i686 2.18-5.el7 base libblockdev-utils-devel.i686 2.18-5.el7 base libblockdev-utils-devel.x86_64 2.18-5.el7 base libblockdev-vdo.x86_64 2.18-5.el7 base libblockdev-vdo-devel.x86_64 2.18-5.el7 base libbluedevil.i686 2.1-1.el7 base libbluedevil-devel.i686 2.1-1.el7 base libbluedevil-devel.x86_64 2.1-1.el7 base libbluray.i686 0.2.3-6.el7 base libbluray-devel.i686 0.2.3-6.el7 base libbluray-devel.x86_64 0.2.3-6.el7 base libbonobo.i686 2.32.1-7.el7 base libbonobo.x86_64 2.32.1-7.el7 base libbonobo-devel.i686 2.32.1-7.el7 base libbonobo-devel.x86_64 2.32.1-7.el7 base libbonoboui.i686 2.24.5-7.el7 base libbonoboui.x86_64 2.24.5-7.el7 base libbonoboui-devel.i686 2.24.5-7.el7 base libbonoboui-devel.x86_64 2.24.5-7.el7 base libburn.i686 1.2.8-4.el7 base libburn-devel.i686 1.2.8-4.el7 base libburn-devel.x86_64 1.2.8-4.el7 base libbytesize.i686 1.2-1.el7 base libbytesize-devel.i686 1.2-1.el7 base libbytesize-devel.x86_64 1.2-1.el7 base libcacard.i686 40:2.7.0-1.el7 base libcacard-devel.i686 40:2.7.0-1.el7 base libcacard-devel.x86_64 40:2.7.0-1.el7 base libcacard-tools.x86_64 40:2.7.0-1.el7 base libcanberra.i686 0.30-9.el7 base libcanberra-devel.i686 0.30-9.el7 base libcanberra-devel.x86_64 0.30-9.el7 base libcanberra-gtk2.i686 0.30-9.el7 base libcanberra-gtk3.i686 0.30-9.el7 base libcap.i686 2.22-11.el7 base libcap-devel.i686 2.22-11.el7 base libcap-devel.x86_64 2.22-11.el7 base libcap-ng.i686 0.7.5-4.el7 base libcap-ng-devel.i686 0.7.5-4.el7 base libcap-ng-devel.x86_64 0.7.5-4.el7 base libcap-ng-python.x86_64 0.7.5-4.el7 base libcap-ng-utils.x86_64 0.7.5-4.el7 base libcdio.i686 0.92-3.el7 base libcdio-devel.i686 0.92-3.el7 base libcdio-devel.x86_64 0.92-3.el7 base libcdio-paranoia.i686 10.2+0.90-11.el7 base libcdio-paranoia-devel.i686 10.2+0.90-11.el7 base libcdio-paranoia-devel.x86_64 10.2+0.90-11.el7 base libcdr.i686 0.1.4-1.el7 base libcdr.x86_64 0.1.4-1.el7 base libcdr-devel.i686 0.1.4-1.el7 base libcdr-devel.x86_64 0.1.4-1.el7 base libcdr-doc.noarch 0.1.4-1.el7 base libcdr-tools.x86_64 0.1.4-1.el7 base libcgroup.i686 0.41-21.el7 base libcgroup-devel.i686 0.41-21.el7 base libcgroup-devel.x86_64 0.41-21.el7 base libcgroup-pam.i686 0.41-21.el7 base libcgroup-pam.x86_64 0.41-21.el7 base libchamplain.i686 0.12.16-2.el7 base libchamplain-demos.noarch 0.12.16-2.el7 base libchamplain-devel.i686 0.12.16-2.el7 base libchamplain-devel.x86_64 0.12.16-2.el7 base libchamplain-gtk.i686 0.12.16-2.el7 base libchewing.i686 0.3.4-6.el7 base libchewing-devel.i686 0.3.4-6.el7 base libchewing-devel.x86_64 0.3.4-6.el7 base libchewing-python.x86_64 0.3.4-6.el7 base libcmis.i686 0.5.1-2.el7 base libcmis.x86_64 0.5.1-2.el7 base libcmis-devel.i686 0.5.1-2.el7 base libcmis-devel.x86_64 0.5.1-2.el7 base libcmis-tools.x86_64 0.5.1-2.el7 base libcmpiCppImpl0.i686 2.0.3-5.el7 base libcmpiCppImpl0.x86_64 2.0.3-5.el7 base libcmpiutil.i686 0.5.7-3.el7 base libcmpiutil.x86_64 0.5.7-3.el7 base libcmpiutil-devel.i686 0.5.7-3.el7 base libcmpiutil-devel.x86_64 0.5.7-3.el7 base libcollection.i686 0.7.0-32.el7 base libcollection-devel.i686 0.7.0-32.el7 base libcollection-devel.x86_64 0.7.0-32.el7 base libcom_err.i686 1.42.9-19.el7 base libcom_err-devel.i686 1.42.9-19.el7 base libcom_err-devel.x86_64 1.42.9-19.el7 base libcomps.x86_64 0.1.8-14.el7 extras libcomps-devel.x86_64 0.1.8-14.el7 extras libcomps-doc.noarch 0.1.8-14.el7 extras libconfig.i686 1.4.9-5.el7 base libconfig-devel.i686 1.4.9-5.el7 base libconfig-devel.x86_64 1.4.9-5.el7 base libcroco.i686 0.6.12-6.el7_9 updates libcroco.x86_64 0.6.12-6.el7_9 updates libcroco-devel.i686 0.6.12-6.el7_9 updates libcroco-devel.x86_64 0.6.12-6.el7_9 updates libcryptui.i686 3.12.2-1.el7 base libcryptui.x86_64 3.12.2-1.el7 base libcryptui-devel.i686 3.12.2-1.el7 base libcryptui-devel.x86_64 3.12.2-1.el7 base libcurl.i686 7.29.0-59.el7_9.1 updates libcurl.x86_64 7.29.0-59.el7_9.1 updates libcurl-devel.i686 7.29.0-59.el7_9.1 updates libcurl-devel.x86_64 7.29.0-59.el7_9.1 updates libdaemon.i686 0.14-7.el7 base libdaemon-devel.i686 0.14-7.el7 base libdaemon-devel.x86_64 0.14-7.el7 base libdb.i686 5.3.21-25.el7 base libdb-cxx.i686 5.3.21-25.el7 base libdb-cxx.x86_64 5.3.21-25.el7 base libdb-cxx-devel.i686 5.3.21-25.el7 base libdb-cxx-devel.x86_64 5.3.21-25.el7 base libdb-devel.i686 5.3.21-25.el7 base libdb-devel-doc.noarch 5.3.21-25.el7 base libdb-devel-static.i686 5.3.21-25.el7 base libdb-devel-static.x86_64 5.3.21-25.el7 base libdb-java.i686 5.3.21-25.el7 base libdb-java.x86_64 5.3.21-25.el7 base libdb-java-devel.i686 5.3.21-25.el7 base libdb-java-devel.x86_64 5.3.21-25.el7 base libdb-sql.i686 5.3.21-25.el7 base libdb-sql.x86_64 5.3.21-25.el7 base libdb-sql-devel.i686 5.3.21-25.el7 base libdb-sql-devel.x86_64 5.3.21-25.el7 base libdb-tcl.i686 5.3.21-25.el7 base libdb-tcl.x86_64 5.3.21-25.el7 base libdb-tcl-devel.i686 5.3.21-25.el7 base libdb-tcl-devel.x86_64 5.3.21-25.el7 base libdbi.i686 0.8.4-6.el7 base libdbi.x86_64 0.8.4-6.el7 base libdbi-dbd-mysql.x86_64 0.8.3-16.el7 base libdbi-dbd-pgsql.x86_64 0.8.3-16.el7 base libdbi-dbd-sqlite.x86_64 0.8.3-16.el7 base libdbi-devel.i686 0.8.4-6.el7 base libdbi-devel.x86_64 0.8.4-6.el7 base libdbi-drivers.x86_64 0.8.3-16.el7 base libdbusmenu.i686 16.04.0-4.el7 base libdbusmenu.x86_64 16.04.0-4.el7 base libdbusmenu-devel.i686 16.04.0-4.el7 base libdbusmenu-devel.x86_64 16.04.0-4.el7 base libdbusmenu-doc.noarch 16.04.0-4.el7 base libdbusmenu-gtk2.i686 16.04.0-4.el7 base libdbusmenu-gtk2.x86_64 16.04.0-4.el7 base libdbusmenu-gtk2-devel.i686 16.04.0-4.el7 base libdbusmenu-gtk2-devel.x86_64 16.04.0-4.el7 base libdbusmenu-gtk3.i686 16.04.0-4.el7 base libdbusmenu-gtk3.x86_64 16.04.0-4.el7 base libdbusmenu-gtk3-devel.i686 16.04.0-4.el7 base libdbusmenu-gtk3-devel.x86_64 16.04.0-4.el7 base libdbusmenu-jsonloader.i686 16.04.0-4.el7 base libdbusmenu-jsonloader.x86_64 16.04.0-4.el7 base libdbusmenu-jsonloader-devel.i686 16.04.0-4.el7 base libdbusmenu-jsonloader-devel.x86_64 16.04.0-4.el7 base libdbusmenu-tools.x86_64 16.04.0-4.el7 base libdhash.i686 0.5.0-32.el7 base libdhash-devel.i686 0.5.0-32.el7 base libdhash-devel.x86_64 0.5.0-32.el7 base libdmapsharing.i686 2.9.37-1.el7 base libdmapsharing-devel.i686 2.9.37-1.el7 base libdmapsharing-devel.x86_64 2.9.37-1.el7 base libdmmp.i686 0.4.9-134.el7_9 updates libdmmp.x86_64 0.4.9-134.el7_9 updates libdmmp-devel.i686 0.4.9-134.el7_9 updates libdmmp-devel.x86_64 0.4.9-134.el7_9 updates libdmx.i686 1.1.3-3.el7 base libdmx-devel.i686 1.1.3-3.el7 base libdmx-devel.x86_64 1.1.3-3.el7 base libdnet.i686 1.12-13.1.el7 base libdnet.x86_64 1.12-13.1.el7 base libdnet-devel.i686 1.12-13.1.el7 base libdnet-devel.x86_64 1.12-13.1.el7 base libdnet-progs.x86_64 1.12-13.1.el7 base libdnet-python.x86_64 1.12-13.1.el7 base libdnf.x86_64 0.22.5-2.el7_9 extras libdnf-devel.x86_64 0.22.5-2.el7_9 extras libdrm.i686 2.4.97-2.el7 base libdrm-devel.i686 2.4.97-2.el7 base libdrm-devel.x86_64 2.4.97-2.el7 base libdv.i686 1.0.0-17.el7 base libdv-devel.i686 1.0.0-17.el7 base libdv-devel.x86_64 1.0.0-17.el7 base libdv-tools.x86_64 1.0.0-17.el7 base libdvdnav.i686 5.0.3-1.el7 base libdvdnav-devel.i686 5.0.3-1.el7 base libdvdnav-devel.x86_64 5.0.3-1.el7 base libdvdread.i686 5.0.3-3.el7 base libdvdread-devel.i686 5.0.3-3.el7 base libdvdread-devel.x86_64 5.0.3-3.el7 base libdwarf.i686 20130207-4.el7 base libdwarf-devel.i686 20130207-4.el7 base libdwarf-devel.x86_64 20130207-4.el7 base libdwarf-static.i686 20130207-4.el7 base libdwarf-static.x86_64 20130207-4.el7 base libdwarf-tools.x86_64 20130207-4.el7 base libeasyfc.i686 0.13.0-3.el7 base libeasyfc.x86_64 0.13.0-3.el7 base libeasyfc-devel.i686 0.13.0-3.el7 base libeasyfc-devel.x86_64 0.13.0-3.el7 base libeasyfc-gobject.i686 0.13.0-3.el7 base libeasyfc-gobject.x86_64 0.13.0-3.el7 base libeasyfc-gobject-devel.i686 0.13.0-3.el7 base libeasyfc-gobject-devel.x86_64 0.13.0-3.el7 base libecap.i686 1.0.0-1.el7 base libecap.x86_64 1.0.0-1.el7 base libecap-devel.i686 1.0.0-1.el7 base libecap-devel.x86_64 1.0.0-1.el7 base libedit.i686 3.0-12.20121213cvs.el7 base libedit-devel.i686 3.0-12.20121213cvs.el7 base libedit-devel.x86_64 3.0-12.20121213cvs.el7 base libee.i686 0.4.1-6.el7 base libee.x86_64 0.4.1-6.el7 base libee-devel.i686 0.4.1-6.el7 base libee-devel.x86_64 0.4.1-6.el7 base libee-utils.x86_64 0.4.1-6.el7 base libepoxy.i686 1.5.2-1.el7 base libepoxy-devel.i686 1.5.2-1.el7 base libepoxy-devel.x86_64 1.5.2-1.el7 base liberation-fonts.noarch 1:1.07.2-16.el7 base liberation-narrow-fonts.noarch 1:1.07.2-16.el7 base libesmtp.i686 1.0.6-7.el7 base libesmtp.x86_64 1.0.6-7.el7 base libesmtp-devel.i686 1.0.6-7.el7 base libesmtp-devel.x86_64 1.0.6-7.el7 base libestr.i686 0.1.9-2.el7 base libestr-devel.i686 0.1.9-2.el7 base libestr-devel.x86_64 0.1.9-2.el7 base libetonyek.i686 0.1.7-1.el7 base libetonyek.x86_64 0.1.7-1.el7 base libetonyek-devel.i686 0.1.7-1.el7 base libetonyek-devel.x86_64 0.1.7-1.el7 base libetonyek-doc.noarch 0.1.7-1.el7 base libetonyek-tools.x86_64 0.1.7-1.el7 base libev.x86_64 4.15-7.el7 extras libev-devel.x86_64 4.15-7.el7 extras libev-libevent-devel.x86_64 4.15-7.el7 extras libev-source.noarch 4.15-7.el7 extras libevdev.i686 1.5.6-1.el7 base libevdev-devel.i686 1.5.6-1.el7 base libevdev-devel.x86_64 1.5.6-1.el7 base libevdev-utils.x86_64 1.5.6-1.el7 base libevent.i686 2.0.21-4.el7 base libevent-devel.i686 2.0.21-4.el7 base libevent-devel.x86_64 2.0.21-4.el7 base libevent-doc.noarch 2.0.21-4.el7 base libexif.i686 0.6.22-2.el7_9 updates libexif.x86_64 0.6.22-2.el7_9 updates libexif-devel.i686 0.6.22-2.el7_9 updates libexif-devel.x86_64 0.6.22-2.el7_9 updates libexif-doc.x86_64 0.6.22-2.el7_9 updates libexttextcat.i686 3.4.1-3.el7 base libexttextcat.x86_64 3.4.1-3.el7 base libexttextcat-devel.i686 3.4.1-3.el7 base libexttextcat-devel.x86_64 3.4.1-3.el7 base libexttextcat-tools.x86_64 3.4.1-3.el7 base libfabric.i686 1.7.2-1.el7 base libfabric.x86_64 1.7.2-1.el7 base libfabric-devel.i686 1.7.2-1.el7 base libfabric-devel.x86_64 1.7.2-1.el7 base libfastjson.i686 0.99.4-3.el7 base libfastjson-devel.i686 0.99.4-3.el7 base libfastjson-devel.x86_64 0.99.4-3.el7 base libfdt.x86_64 1.4.6-1.el7 extras libfdt-devel.x86_64 1.4.6-1.el7 extras libffi.i686 3.0.13-19.el7 base libffi-devel.i686 3.0.13-19.el7 base libffi-devel.x86_64 3.0.13-19.el7 base libfontenc.i686 1.1.3-3.el7 base libfontenc-devel.i686 1.1.3-3.el7 base libfontenc-devel.x86_64 1.1.3-3.el7 base libfonts.noarch 1.1.3-13.el7 base libfonts-javadoc.noarch 1.1.3-13.el7 base libformula.noarch 1.1.3-10.el7 base libformula-javadoc.noarch 1.1.3-10.el7 base libfprint.i686 0.8.2-1.el7 base libfprint-devel.i686 0.8.2-1.el7 base libfprint-devel.x86_64 0.8.2-1.el7 base libfreehand.i686 0.1.1-1.el7 base libfreehand.x86_64 0.1.1-1.el7 base libfreehand-devel.i686 0.1.1-1.el7 base libfreehand-devel.x86_64 0.1.1-1.el7 base libfreehand-doc.noarch 0.1.1-1.el7 base libfreehand-tools.x86_64 0.1.1-1.el7 base libgcab1.i686 0.7-4.el7_4 base libgcab1-devel.i686 0.7-4.el7_4 base libgcab1-devel.x86_64 0.7-4.el7_4 base libgcc.i686 4.8.5-44.el7 base libgcrypt.i686 1.5.3-14.el7 base libgcrypt-devel.i686 1.5.3-14.el7 base libgcrypt-devel.x86_64 1.5.3-14.el7 base libgdata.i686 0.17.9-1.el7 base libgdata-devel.i686 0.17.9-1.el7 base libgdata-devel.x86_64 0.17.9-1.el7 base libgdither.i686 0.6-8.el7 base libgdither-devel.i686 0.6-8.el7 base libgdither-devel.x86_64 0.6-8.el7 base libgee.i686 0.20.1-1.el7 base libgee-devel.i686 0.20.1-1.el7 base libgee-devel.x86_64 0.20.1-1.el7 base libgee06.i686 0.6.8-3.el7 base libgee06-devel.i686 0.6.8-3.el7 base libgee06-devel.x86_64 0.6.8-3.el7 base libgepub.i686 0.6.0-1.el7 base libgepub.x86_64 0.6.0-1.el7 base libgepub-devel.i686 0.6.0-1.el7 base libgepub-devel.x86_64 0.6.0-1.el7 base libgexiv2.i686 0.10.8-1.el7 base libgexiv2.x86_64 0.10.8-1.el7 base libgexiv2-devel.i686 0.10.8-1.el7 base libgexiv2-devel.x86_64 0.10.8-1.el7 base libgfortran.i686 4.8.5-44.el7 base libgfortran-static.i686 4.8.5-44.el7 base libgfortran-static.x86_64 4.8.5-44.el7 base libgfortran4.i686 8.3.1-2.1.1.el7 base libgfortran4.x86_64 8.3.1-2.1.1.el7 base libgfortran5.i686 8.3.1-2.1.1.el7 base libgfortran5.x86_64 8.3.1-2.1.1.el7 base libgit2.x86_64 0.26.8-1.el7_9 extras libgit2-devel.x86_64 0.26.8-1.el7_9 extras libgit2-glib.x86_64 0.26.4-8.el7 extras libgit2-glib-devel.x86_64 0.26.4-8.el7 extras libglade2.i686 2.6.4-11.el7 base libglade2-devel.i686 2.6.4-11.el7 base libglade2-devel.x86_64 2.6.4-11.el7 base libglvnd.i686 1:1.0.1-0.8.git5baa1e5.el7 base libglvnd-core-devel.i686 1:1.0.1-0.8.git5baa1e5.el7 base libglvnd-core-devel.x86_64 1:1.0.1-0.8.git5baa1e5.el7 base libglvnd-devel.i686 1:1.0.1-0.8.git5baa1e5.el7 base libglvnd-devel.x86_64 1:1.0.1-0.8.git5baa1e5.el7 base libglvnd-egl.i686 1:1.0.1-0.8.git5baa1e5.el7 base libglvnd-gles.i686 1:1.0.1-0.8.git5baa1e5.el7 base libglvnd-glx.i686 1:1.0.1-0.8.git5baa1e5.el7 base libglvnd-opengl.i686 1:1.0.1-0.8.git5baa1e5.el7 base libglvnd-opengl.x86_64 1:1.0.1-0.8.git5baa1e5.el7 base libgnat.i686 4.8.5-44.el7 base libgnat.x86_64 4.8.5-44.el7 base libgnat-devel.i686 4.8.5-44.el7 base libgnat-devel.x86_64 4.8.5-44.el7 base libgnat-static.i686 4.8.5-44.el7 base libgnat-static.x86_64 4.8.5-44.el7 base libgnome.i686 2.32.1-9.el7 base libgnome.x86_64 2.32.1-9.el7 base libgnome-devel.i686 2.32.1-9.el7 base libgnome-devel.x86_64 2.32.1-9.el7 base libgnome-keyring.i686 3.12.0-1.el7 base libgnome-keyring-devel.i686 3.12.0-1.el7 base libgnome-keyring-devel.x86_64 3.12.0-1.el7 base libgnomecanvas.i686 2.30.3-8.el7 base libgnomecanvas-devel.i686 2.30.3-8.el7 base libgnomecanvas-devel.x86_64 2.30.3-8.el7 base libgnomekbd.i686 3.26.0-3.el7 base libgnomekbd-devel.i686 3.26.0-3.el7 base libgnomekbd-devel.x86_64 3.26.0-3.el7 base libgnomeui.i686 2.24.5-8.el7 base libgnomeui.x86_64 2.24.5-8.el7 base libgnomeui-devel.i686 2.24.5-8.el7 base libgnomeui-devel.x86_64 2.24.5-8.el7 base libgo.i686 4.8.5-44.el7 base libgo.x86_64 4.8.5-44.el7 base libgo-devel.i686 4.8.5-44.el7 base libgo-devel.x86_64 4.8.5-44.el7 base libgo-static.i686 4.8.5-44.el7 base libgo-static.x86_64 4.8.5-44.el7 base libgomp.i686 4.8.5-44.el7 base libgovirt.i686 0.3.4-5.el7 base libgovirt-devel.i686 0.3.4-5.el7 base libgovirt-devel.x86_64 0.3.4-5.el7 base libgpg-error.i686 1.12-3.el7 base libgpg-error-devel.i686 1.12-3.el7 base libgpg-error-devel.x86_64 1.12-3.el7 base libgphoto2.i686 2.5.15-3.el7 base libgphoto2-devel.i686 2.5.15-3.el7 base libgphoto2-devel.x86_64 2.5.15-3.el7 base libgpod.i686 0.8.2-12.el7 base libgpod.x86_64 0.8.2-12.el7 base libgpod-devel.i686 0.8.2-12.el7 base libgpod-devel.x86_64 0.8.2-12.el7 base libgpod-doc.x86_64 0.8.2-12.el7 base libgs.i686 9.25-5.el7 base libgs-devel.i686 9.25-5.el7 base libgs-devel.x86_64 9.25-5.el7 base libgsf.i686 1.14.26-7.el7 base libgsf-devel.i686 1.14.26-7.el7 base libgsf-devel.x86_64 1.14.26-7.el7 base libgtop2.i686 2.38.0-3.el7 base libgtop2-devel.i686 2.38.0-3.el7 base libgtop2-devel.x86_64 2.38.0-3.el7 base libgudev1.i686 219-78.el7_9.3 updates libgudev1.x86_64 219-78.el7_9.3 updates libgudev1-devel.i686 219-78.el7_9.3 updates libgudev1-devel.x86_64 219-78.el7_9.3 updates libguestfs-bash-completion.noarch 1:1.40.2-10.el7 base libguestfs-benchmarking.x86_64 1:1.40.2-10.el7 base libguestfs-devel.x86_64 1:1.40.2-10.el7 base libguestfs-gfs2.x86_64 1:1.40.2-10.el7 base libguestfs-gobject.x86_64 1:1.40.2-10.el7 base libguestfs-gobject-devel.x86_64 1:1.40.2-10.el7 base libguestfs-inspect-icons.noarch 1:1.40.2-10.el7 base libguestfs-java.x86_64 1:1.40.2-10.el7 base libguestfs-java-devel.x86_64 1:1.40.2-10.el7 base libguestfs-javadoc.noarch 1:1.40.2-10.el7 base libguestfs-man-pages-ja.noarch 1:1.40.2-10.el7 base libguestfs-man-pages-uk.noarch 1:1.40.2-10.el7 base libguestfs-rescue.x86_64 1:1.40.2-10.el7 base libguestfs-rsync.x86_64 1:1.40.2-10.el7 base libguestfs-tools.noarch 1:1.40.2-10.el7 base libguestfs-tools-c.x86_64 1:1.40.2-10.el7 base libguestfs-winsupport.x86_64 7.2-3.el7 base libguestfs-xfs.x86_64 1:1.40.2-10.el7 base libgusb.i686 0.2.9-1.el7 base libgusb-devel.i686 0.2.9-1.el7 base libgusb-devel.x86_64 0.2.9-1.el7 base libgweather.i686 3.28.2-4.el7_9 updates libgweather.x86_64 3.28.2-4.el7_9 updates libgweather-devel.i686 3.28.2-4.el7_9 updates libgweather-devel.x86_64 3.28.2-4.el7_9 updates libgxim.i686 0.5.0-3.el7 base libgxim.x86_64 0.5.0-3.el7 base libgxim-devel.i686 0.5.0-3.el7 base libgxim-devel.x86_64 0.5.0-3.el7 base libgxps.i686 0.3.0-4.el7 base libgxps-devel.i686 0.3.0-4.el7 base libgxps-devel.x86_64 0.3.0-4.el7 base libgxps-tools.x86_64 0.3.0-4.el7 base libhangul.i686 0.1.0-8.el7 base libhangul-devel.i686 0.1.0-8.el7 base libhangul-devel.x86_64 0.1.0-8.el7 base libhbaapi.i686 2.2.9-6.el7 base libhbaapi.x86_64 2.2.9-6.el7 base libhbaapi-devel.i686 2.2.9-6.el7 base libhbaapi-devel.x86_64 2.2.9-6.el7 base libhbalinux.i686 1.0.17-2.el7 base libhbalinux.x86_64 1.0.17-2.el7 base libhbalinux-devel.i686 1.0.17-2.el7 base libhbalinux-devel.x86_64 1.0.17-2.el7 base libhif.i686 0.2.1-2.el7 base libhif.x86_64 0.2.1-2.el7 base libhif-devel.i686 0.2.1-2.el7 base libhif-devel.x86_64 0.2.1-2.el7 base libhugetlbfs-devel.i686 2.16-13.el7 base libhugetlbfs-devel.x86_64 2.16-13.el7 base libibcommon.i686 1.2.0-8.el7 base libibcommon.x86_64 1.2.0-8.el7 base libibcommon-devel.i686 1.2.0-8.el7 base libibcommon-devel.x86_64 1.2.0-8.el7 base libibcommon-static.i686 1.2.0-8.el7 base libibcommon-static.x86_64 1.2.0-8.el7 base libibmad.i686 1.3.13-1.el7 base libibmad.x86_64 1.3.13-1.el7 base libibmad-devel.i686 1.3.13-1.el7 base libibmad-devel.x86_64 1.3.13-1.el7 base libibmad-static.i686 1.3.13-1.el7 base libibmad-static.x86_64 1.3.13-1.el7 base libibumad.i686 22.4-6.el7_9 updates libibumad.x86_64 22.4-6.el7_9 updates libibverbs.i686 22.4-6.el7_9 updates libibverbs.x86_64 22.4-6.el7_9 updates libibverbs-utils.x86_64 22.4-6.el7_9 updates libical.i686 3.0.3-2.el7 base libical-devel.i686 3.0.3-2.el7 base libical-devel.x86_64 3.0.3-2.el7 base libical-glib.i686 3.0.3-2.el7 base libical-glib.x86_64 3.0.3-2.el7 base libical-glib-devel.i686 3.0.3-2.el7 base libical-glib-devel.x86_64 3.0.3-2.el7 base libical-glib-doc.noarch 3.0.3-2.el7 base libicu.i686 50.2-4.el7_7 base libicu-devel.i686 50.2-4.el7_7 base libicu-devel.x86_64 50.2-4.el7_7 base libicu-doc.noarch 50.2-4.el7_7 base libid3tag.i686 0.15.1b-17.el7 base libid3tag.x86_64 0.15.1b-17.el7 base libid3tag-devel.i686 0.15.1b-17.el7 base libid3tag-devel.x86_64 0.15.1b-17.el7 base libidn.i686 1.28-4.el7 base libidn-devel.i686 1.28-4.el7 base libidn-devel.x86_64 1.28-4.el7 base libiec61883.i686 1.2.0-10.el7 base libiec61883-devel.i686 1.2.0-10.el7 base libiec61883-devel.x86_64 1.2.0-10.el7 base libiec61883-utils.x86_64 1.2.0-10.el7 base libieee1284.i686 0.2.11-15.el7 base libieee1284-devel.i686 0.2.11-15.el7 base libieee1284-devel.x86_64 0.2.11-15.el7 base libieee1284-python.x86_64 0.2.11-15.el7 base libimobiledevice.i686 1.2.0-1.el7 base libimobiledevice-devel.i686 1.2.0-1.el7 base libimobiledevice-devel.x86_64 1.2.0-1.el7 base libimobiledevice-python.x86_64 1.2.0-1.el7 base libimobiledevice-utils.x86_64 1.2.0-1.el7 base libindicator.i686 12.10.1-6.el7 base libindicator.x86_64 12.10.1-6.el7 base libindicator-devel.i686 12.10.1-6.el7 base libindicator-devel.x86_64 12.10.1-6.el7 base libindicator-gtk3.i686 12.10.1-6.el7 base libindicator-gtk3.x86_64 12.10.1-6.el7 base libindicator-gtk3-devel.i686 12.10.1-6.el7 base libindicator-gtk3-devel.x86_64 12.10.1-6.el7 base libindicator-gtk3-tools.x86_64 12.10.1-6.el7 base libindicator-tools.x86_64 12.10.1-6.el7 base libini_config.i686 1.3.1-32.el7 base libini_config-devel.i686 1.3.1-32.el7 base libini_config-devel.x86_64 1.3.1-32.el7 base libinput.i686 1.10.7-2.el7 base libinput-devel.i686 1.10.7-2.el7 base libinput-devel.x86_64 1.10.7-2.el7 base libinvm-cim.x86_64 1.0.0.1041-3.el7 base libinvm-cim-devel.x86_64 1.0.0.1041-3.el7 base libinvm-cli.x86_64 1.0.0.1096-3.el7 base libinvm-cli-devel.x86_64 1.0.0.1096-3.el7 base libinvm-i18n.x86_64 1.0.0.1016-3.el7 base libinvm-i18n-devel.x86_64 1.0.0.1016-3.el7 base libiodbc.i686 3.52.7-7.el7 base libiodbc-devel.i686 3.52.7-7.el7 base libiodbc-devel.x86_64 3.52.7-7.el7 base libipa_hbac.i686 1.16.5-10.el7_9.8 updates libipa_hbac.x86_64 1.16.5-10.el7_9.8 updates libipa_hbac-devel.i686 1.16.5-10.el7_9.8 updates libipa_hbac-devel.x86_64 1.16.5-10.el7_9.8 updates libiptcdata.i686 1.0.4-11.el7 base libiptcdata-devel.i686 1.0.4-11.el7 base libiptcdata-devel.x86_64 1.0.4-11.el7 base libiptcdata-python.x86_64 1.0.4-11.el7 base libiscsi.i686 1.9.0-7.el7 base libiscsi-devel.i686 1.9.0-7.el7 base libiscsi-devel.x86_64 1.9.0-7.el7 base libiscsi-utils.x86_64 1.9.0-7.el7 base libisofs.i686 1.2.8-4.el7 base libisofs-devel.i686 1.2.8-4.el7 base libisofs-devel.x86_64 1.2.8-4.el7 base libitm.i686 4.8.5-44.el7 base libitm.x86_64 4.8.5-44.el7 base libitm-devel.i686 4.8.5-44.el7 base libitm-devel.x86_64 4.8.5-44.el7 base libitm-static.i686 4.8.5-44.el7 base libitm-static.x86_64 4.8.5-44.el7 base libixpdimm-cim.x86_64 01.00.00.2111-1.el7 base libixpdimm-core.x86_64 01.00.00.2111-1.el7 base libjose.i686 10-1.el7 base libjose.x86_64 10-1.el7 base libjose-devel.i686 10-1.el7 base libjose-devel.x86_64 10-1.el7 base libjpeg-turbo.i686 1.2.90-8.el7 base libjpeg-turbo-devel.i686 1.2.90-8.el7 base libjpeg-turbo-devel.x86_64 1.2.90-8.el7 base libjpeg-turbo-static.i686 1.2.90-8.el7 base libjpeg-turbo-static.x86_64 1.2.90-8.el7 base libjpeg-turbo-utils.x86_64 1.2.90-8.el7 base libkadm5.i686 1.15.1-50.el7 base libkcddb.i686 4.10.5-3.el7 base libkcddb.x86_64 4.10.5-3.el7 base libkcddb-devel.i686 4.10.5-3.el7 base libkcddb-devel.x86_64 4.10.5-3.el7 base libkcompactdisc.i686 4.10.5-3.el7 base libkcompactdisc.x86_64 4.10.5-3.el7 base libkcompactdisc-devel.i686 4.10.5-3.el7 base libkcompactdisc-devel.x86_64 4.10.5-3.el7 base libkdcraw.i686 4.10.5-7.el7 base libkdcraw-devel.i686 4.10.5-7.el7 base libkdcraw-devel.x86_64 4.10.5-7.el7 base libkexiv2.i686 4.10.5-4.el7 base libkexiv2-devel.i686 4.10.5-4.el7 base libkexiv2-devel.x86_64 4.10.5-4.el7 base libkipi.i686 4.10.5-3.el7 base libkipi-devel.i686 4.10.5-3.el7 base libkipi-devel.x86_64 4.10.5-3.el7 base libkkc.i686 0.3.1-9.el7 base libkkc-devel.i686 0.3.1-9.el7 base libkkc-devel.x86_64 0.3.1-9.el7 base libkkc-tools.x86_64 0.3.1-9.el7 base libksane.i686 4.10.5-4.el7 base libksane-devel.i686 4.10.5-4.el7 base libksane-devel.x86_64 4.10.5-4.el7 base libksba.i686 1.3.0-5.el7 base libksba.x86_64 1.3.0-5.el7 base libksba-devel.i686 1.3.0-5.el7 base libksba-devel.x86_64 1.3.0-5.el7 base libkscreen.i686 1:1.0.1-8.el7 base libkscreen-devel.i686 1:1.0.1-8.el7 base libkscreen-devel.x86_64 1:1.0.1-8.el7 base libkworkspace.i686 4.11.19-16.el7_9 updates libkworkspace.x86_64 4.11.19-16.el7_9 updates liblangtag.i686 0.6.2-1.1.el7 base liblangtag.x86_64 0.6.2-1.1.el7 base liblangtag-devel.i686 0.6.2-1.1.el7 base liblangtag-devel.x86_64 0.6.2-1.1.el7 base liblangtag-doc.noarch 0.6.2-1.1.el7 base liblangtag-gobject.i686 0.6.2-1.1.el7 base liblangtag-gobject.x86_64 0.6.2-1.1.el7 base liblayout.noarch 0.2.10-8.el7 base liblayout-javadoc.noarch 0.2.10-8.el7 base libldb.i686 1.5.4-2.el7 updates libldb.x86_64 1.5.4-2.el7 updates libldb-devel.i686 1.5.4-2.el7 updates libldb-devel.x86_64 1.5.4-2.el7 updates libloader.noarch 1.1.3-9.el7 base libloader-javadoc.noarch 1.1.3-9.el7 base liblockfile.i686 1.08-17.el7 base liblockfile.x86_64 1.08-17.el7 base liblockfile-devel.i686 1.08-17.el7 base liblockfile-devel.x86_64 1.08-17.el7 base liblognorm.i686 2.0.2-3.el7 base liblognorm.x86_64 2.0.2-3.el7 base liblognorm-devel.i686 2.0.2-3.el7 base liblognorm-devel.x86_64 2.0.2-3.el7 base liblognorm-doc.x86_64 2.0.2-3.el7 base liblognorm-utils.x86_64 2.0.2-3.el7 base liblouis.i686 2.5.2-12.el7_4 base liblouis-devel.i686 2.5.2-12.el7_4 base liblouis-devel.x86_64 2.5.2-12.el7_4 base liblouis-doc.noarch 2.5.2-12.el7_4 base liblouis-utils.x86_64 2.5.2-12.el7_4 base libluksmeta.i686 8-2.el7 base libluksmeta.x86_64 8-2.el7 base libluksmeta-devel.i686 8-2.el7 base libluksmeta-devel.x86_64 8-2.el7 base libmalaga.i686 7.12-16.el7 base libmalaga.x86_64 7.12-16.el7 base libmatchbox.i686 1.9-15.el7 base libmatchbox.x86_64 1.9-15.el7 base libmatchbox-devel.i686 1.9-15.el7 base libmatchbox-devel.x86_64 1.9-15.el7 base libmaxminddb.i686 1.2.0-6.el7 base libmaxminddb.x86_64 1.2.0-6.el7 base libmaxminddb-devel.i686 1.2.0-6.el7 base libmaxminddb-devel.x86_64 1.2.0-6.el7 base libmbim.i686 1.14.2-1.el7 base libmbim-devel.i686 1.14.2-1.el7 base libmbim-devel.x86_64 1.14.2-1.el7 base libmediaart.i686 1.9.4-1.el7 base libmediaart-devel.i686 1.9.4-1.el7 base libmediaart-devel.x86_64 1.9.4-1.el7 base libmediaart-tests.x86_64 1.9.4-1.el7 base libmemcached.i686 1.0.16-5.el7 base libmemcached.x86_64 1.0.16-5.el7 base libmemcached-devel.i686 1.0.16-5.el7 base libmemcached-devel.x86_64 1.0.16-5.el7 base libmicrohttpd.i686 0.9.33-2.el7 base libmicrohttpd.x86_64 0.9.33-2.el7 base libmicrohttpd-devel.i686 0.9.33-2.el7 base libmicrohttpd-devel.x86_64 0.9.33-2.el7 base libmicrohttpd-doc.noarch 0.9.33-2.el7 base libmng.i686 1.0.10-14.el7 base libmng-devel.i686 1.0.10-14.el7 base libmng-devel.x86_64 1.0.10-14.el7 base libmnl.i686 1.0.3-7.el7 base libmnl-devel.i686 1.0.3-7.el7 base libmnl-devel.x86_64 1.0.3-7.el7 base libmnl-static.i686 1.0.3-7.el7 base libmnl-static.x86_64 1.0.3-7.el7 base libmodman.i686 2.0.1-8.el7 base libmodman-devel.i686 2.0.1-8.el7 base libmodman-devel.x86_64 2.0.1-8.el7 base libmodulemd.x86_64 1.6.3-1.el7 extras libmodulemd-devel.x86_64 1.6.3-1.el7 extras libmount.i686 2.23.2-65.el7_9.1 updates libmount.x86_64 2.23.2-65.el7_9.1 updates libmount-devel.i686 2.23.2-65.el7_9.1 updates libmount-devel.x86_64 2.23.2-65.el7_9.1 updates libmpc.i686 1.0.1-3.el7 base libmpc-devel.i686 1.0.1-3.el7 base libmpc-devel.x86_64 1.0.1-3.el7 base libmpcdec.i686 1.2.6-12.el7 base libmpcdec-devel.i686 1.2.6-12.el7 base libmpcdec-devel.x86_64 1.2.6-12.el7 base libmsn.i686 4.2.1-7.el7 base libmsn.x86_64 4.2.1-7.el7 base libmsn-devel.i686 4.2.1-7.el7 base libmsn-devel.x86_64 4.2.1-7.el7 base libmspack.i686 0.5-0.8.alpha.el7 base libmspack-devel.i686 0.5-0.8.alpha.el7 base libmspack-devel.x86_64 0.5-0.8.alpha.el7 base libmspub.i686 0.1.2-1.el7 base libmspub.x86_64 0.1.2-1.el7 base libmspub-devel.i686 0.1.2-1.el7 base libmspub-devel.x86_64 0.1.2-1.el7 base libmspub-doc.noarch 0.1.2-1.el7 base libmspub-tools.x86_64 0.1.2-1.el7 base libmtp.i686 1.1.14-1.el7 base libmtp-devel.i686 1.1.14-1.el7 base libmtp-devel.x86_64 1.1.14-1.el7 base libmtp-examples.x86_64 1.1.14-1.el7 base libmudflap.i686 4.8.5-44.el7 base libmudflap.x86_64 4.8.5-44.el7 base libmudflap-devel.i686 4.8.5-44.el7 base libmudflap-devel.x86_64 4.8.5-44.el7 base libmudflap-static.i686 4.8.5-44.el7 base libmudflap-static.x86_64 4.8.5-44.el7 base libmusicbrainz.i686 2.1.5-17.el7 base libmusicbrainz.x86_64 2.1.5-17.el7 base libmusicbrainz-devel.i686 2.1.5-17.el7 base libmusicbrainz-devel.x86_64 2.1.5-17.el7 base libmusicbrainz5.i686 5.0.1-9.el7 base libmusicbrainz5-devel.i686 5.0.1-9.el7 base libmusicbrainz5-devel.x86_64 5.0.1-9.el7 base libmwaw.i686 0.3.5-1.el7 base libmwaw.x86_64 0.3.5-1.el7 base libmwaw-devel.i686 0.3.5-1.el7 base libmwaw-devel.x86_64 0.3.5-1.el7 base libmwaw-doc.noarch 0.3.5-1.el7 base libmwaw-tools.x86_64 0.3.5-1.el7 base libmx.i686 1.4.7-10.el7 base libmx.x86_64 1.4.7-10.el7 base libmx-devel.i686 1.4.7-10.el7 base libmx-devel.x86_64 1.4.7-10.el7 base libmx-docs.noarch 1.4.7-10.el7 base libndp.i686 1.2-9.el7 base libndp-devel.i686 1.2-9.el7 base libndp-devel.x86_64 1.2-9.el7 base libnet.i686 1.1.6-7.el7 base libnet.x86_64 1.1.6-7.el7 base libnet-devel.i686 1.1.6-7.el7 base libnet-devel.x86_64 1.1.6-7.el7 base libnetfilter_conntrack.i686 1.0.6-1.el7_3 base libnetfilter_conntrack-devel.i686 1.0.6-1.el7_3 base libnetfilter_conntrack-devel.x86_64 1.0.6-1.el7_3 base libnetfilter_cthelper.i686 1.0.0-11.el7 base libnetfilter_cthelper.x86_64 1.0.0-11.el7 base libnetfilter_cthelper-devel.i686 1.0.0-11.el7 base libnetfilter_cthelper-devel.x86_64 1.0.0-11.el7 base libnetfilter_cttimeout.i686 1.0.0-7.el7 base libnetfilter_cttimeout.x86_64 1.0.0-7.el7 base libnetfilter_cttimeout-devel.i686 1.0.0-7.el7 base libnetfilter_cttimeout-devel.x86_64 1.0.0-7.el7 base libnetfilter_queue.i686 1.0.2-2.el7_2 base libnetfilter_queue.x86_64 1.0.2-2.el7_2 base libnetfilter_queue-devel.i686 1.0.2-2.el7_2 base libnetfilter_queue-devel.x86_64 1.0.2-2.el7_2 base libnfnetlink.i686 1.0.1-4.el7 base libnfnetlink-devel.i686 1.0.1-4.el7 base libnfnetlink-devel.x86_64 1.0.1-4.el7 base libnfsidmap.i686 0.25-19.el7 base libnfsidmap-devel.i686 0.25-19.el7 base libnfsidmap-devel.x86_64 0.25-19.el7 base libnftnl.i686 1.0.8-3.el7 base libnftnl.x86_64 1.0.8-3.el7 base libnftnl-devel.i686 1.0.8-3.el7 base libnftnl-devel.x86_64 1.0.8-3.el7 base libnice.i686 0.1.3-4.el7 base libnice-devel.i686 0.1.3-4.el7 base libnice-devel.x86_64 0.1.3-4.el7 base libnl.i686 1.1.4-3.el7 base libnl-devel.i686 1.1.4-3.el7 base libnl-devel.x86_64 1.1.4-3.el7 base libnl3.i686 3.2.28-4.el7 base libnl3-cli.i686 3.2.28-4.el7 base libnl3-devel.i686 3.2.28-4.el7 base libnl3-devel.x86_64 3.2.28-4.el7 base libnl3-doc.x86_64 3.2.28-4.el7 base libnm-gtk.i686 1.8.6-2.el7 base libnm-gtk-devel.i686 1.8.6-2.el7 base libnm-gtk-devel.x86_64 1.8.6-2.el7 base libnma.i686 1.8.6-2.el7 base libnma-devel.i686 1.8.6-2.el7 base libnma-devel.x86_64 1.8.6-2.el7 base libnotify.i686 0.7.7-1.el7 base libnotify-devel.i686 0.7.7-1.el7 base libnotify-devel.x86_64 0.7.7-1.el7 base libntlm.i686 1.3-6.el7 base libntlm.x86_64 1.3-6.el7 base libntlm-devel.i686 1.3-6.el7 base libntlm-devel.x86_64 1.3-6.el7 base liboauth.i686 0.9.7-4.el7 base liboauth-devel.i686 0.9.7-4.el7 base liboauth-devel.x86_64 0.9.7-4.el7 base libobjc.i686 4.8.5-44.el7 base libobjc.x86_64 4.8.5-44.el7 base libodfgen.i686 0.1.4-1.el7 base libodfgen.x86_64 0.1.4-1.el7 base libodfgen-devel.i686 0.1.4-1.el7 base libodfgen-devel.x86_64 0.1.4-1.el7 base libodfgen-doc.noarch 0.1.4-1.el7 base libofa.i686 0.9.3-24.el7 base libofa-devel.i686 0.9.3-24.el7 base libofa-devel.x86_64 0.9.3-24.el7 base libogg.i686 2:1.3.0-7.el7 base libogg-devel.i686 2:1.3.0-7.el7 base libogg-devel.x86_64 2:1.3.0-7.el7 base libogg-devel-docs.noarch 2:1.3.0-7.el7 base liboil.i686 0.3.16-10.el7 base liboil.x86_64 0.3.16-10.el7 base liboil-devel.i686 0.3.16-10.el7 base liboil-devel.x86_64 0.3.16-10.el7 base libopenraw.i686 0.0.9-7.el7 base libopenraw.x86_64 0.0.9-7.el7 base libopenraw-devel.i686 0.0.9-7.el7 base libopenraw-devel.x86_64 0.0.9-7.el7 base libopenraw-gnome.i686 0.0.9-7.el7 base libopenraw-gnome.x86_64 0.0.9-7.el7 base libopenraw-gnome-devel.i686 0.0.9-7.el7 base libopenraw-gnome-devel.x86_64 0.0.9-7.el7 base libopenraw-pixbuf-loader.i686 0.0.9-7.el7 base libopenraw-pixbuf-loader.x86_64 0.0.9-7.el7 base liborcus.i686 0.12.1-2.el7 base liborcus.x86_64 0.12.1-2.el7 base liborcus-devel.i686 0.12.1-2.el7 base liborcus-devel.x86_64 0.12.1-2.el7 base liborcus-doc.noarch 0.12.1-2.el7 base liborcus-tools.x86_64 0.12.1-2.el7 base libosinfo.i686 1.1.0-5.el7 base libosinfo-devel.i686 1.1.0-5.el7 base libosinfo-devel.x86_64 1.1.0-5.el7 base libosinfo-vala.x86_64 1.1.0-5.el7 base libotf.i686 0.9.13-4.el7 base libotf.x86_64 0.9.13-4.el7 base libotf-devel.i686 0.9.13-4.el7 base libotf-devel.x86_64 0.9.13-4.el7 base libpagemaker.i686 0.0.3-1.el7 base libpagemaker.x86_64 0.0.3-1.el7 base libpagemaker-devel.i686 0.0.3-1.el7 base libpagemaker-devel.x86_64 0.0.3-1.el7 base libpagemaker-doc.noarch 0.0.3-1.el7 base libpagemaker-tools.x86_64 0.0.3-1.el7 base libpaper.i686 1.1.24-9.el7 base libpaper-devel.i686 1.1.24-9.el7 base libpaper-devel.x86_64 1.1.24-9.el7 base libpath_utils.i686 0.2.1-32.el7 base libpath_utils-devel.i686 0.2.1-32.el7 base libpath_utils-devel.x86_64 0.2.1-32.el7 base libpcap.i686 14:1.5.3-12.el7 base libpcap-devel.i686 14:1.5.3-12.el7 base libpcap-devel.x86_64 14:1.5.3-12.el7 base libpciaccess.i686 0.14-1.el7 base libpciaccess-devel.i686 0.14-1.el7 base libpciaccess-devel.x86_64 0.14-1.el7 base libpeas.i686 1.22.0-1.el7 base libpeas-devel.i686 1.22.0-1.el7 base libpeas-devel.x86_64 1.22.0-1.el7 base libpeas-gtk.i686 1.22.0-1.el7 base libpeas-loader-python.i686 1.22.0-1.el7 base libpfm.i686 4.7.0-10.el7 base libpfm.x86_64 4.7.0-10.el7 base libpfm-devel.i686 4.7.0-10.el7 base libpfm-devel.x86_64 4.7.0-10.el7 base libpfm-python.x86_64 4.7.0-10.el7 base libpfm-static.i686 4.7.0-10.el7 base libpfm-static.x86_64 4.7.0-10.el7 base libpinyin.i686 0.9.93-4.el7 base libpinyin-data.i686 0.9.93-4.el7 base libpinyin-devel.i686 0.9.93-4.el7 base libpinyin-devel.x86_64 0.9.93-4.el7 base libpinyin-tools.x86_64 0.9.93-4.el7 base libpipeline.i686 1.2.3-3.el7 base libpipeline-devel.i686 1.2.3-3.el7 base libpipeline-devel.x86_64 1.2.3-3.el7 base libplist.i686 1.12-3.el7 base libplist-devel.i686 1.12-3.el7 base libplist-devel.x86_64 1.12-3.el7 base libplist-python.x86_64 1.12-3.el7 base libpmem.x86_64 1.5.1-2.1.el7 base libpmem-debug.x86_64 1.5.1-2.1.el7 base libpmem-devel.x86_64 1.5.1-2.1.el7 base libpmemblk.x86_64 1.5.1-2.1.el7 base libpmemblk-debug.x86_64 1.5.1-2.1.el7 base libpmemblk-devel.x86_64 1.5.1-2.1.el7 base libpmemlog.x86_64 1.5.1-2.1.el7 base libpmemlog-debug.x86_64 1.5.1-2.1.el7 base libpmemlog-devel.x86_64 1.5.1-2.1.el7 base libpmemobj.x86_64 1.5.1-2.1.el7 base libpmemobj++-devel.x86_64 1.5-1.el7 base libpmemobj++-doc.x86_64 1.5-1.el7 base libpmemobj-debug.x86_64 1.5.1-2.1.el7 base libpmemobj-devel.x86_64 1.5.1-2.1.el7 base libpmempool.x86_64 1.5.1-2.1.el7 base libpmempool-debug.x86_64 1.5.1-2.1.el7 base libpmempool-devel.x86_64 1.5.1-2.1.el7 base libpng.i686 2:1.5.13-8.el7 base libpng-devel.i686 2:1.5.13-8.el7 base libpng-devel.x86_64 2:1.5.13-8.el7 base libpng-static.i686 2:1.5.13-8.el7 base libpng-static.x86_64 2:1.5.13-8.el7 base libpng12.i686 1.2.50-10.el7 base libpng12-devel.i686 1.2.50-10.el7 base libpng12-devel.x86_64 1.2.50-10.el7 base libproxy.i686 0.4.11-11.el7 base libproxy-bin.x86_64 0.4.11-11.el7 base libproxy-devel.i686 0.4.11-11.el7 base libproxy-devel.x86_64 0.4.11-11.el7 base libproxy-gnome.x86_64 0.4.11-11.el7 base libproxy-kde.x86_64 0.4.11-11.el7 base libproxy-networkmanager.x86_64 0.4.11-11.el7 base libproxy-python.noarch 0.4.11-11.el7 base libproxy-webkitgtk3.x86_64 0.4.11-11.el7 base libpsm2.x86_64 11.2.78-1.el7 base libpsm2-compat.x86_64 11.2.78-1.el7 base libpsm2-devel.x86_64 11.2.78-1.el7 base libpst.x86_64 0.6.59-4.el7 base libpst-devel.i686 0.6.59-4.el7 base libpst-devel.x86_64 0.6.59-4.el7 base libpst-devel-doc.x86_64 0.6.59-4.el7 base libpst-doc.x86_64 0.6.59-4.el7 base libpst-libs.i686 0.6.59-4.el7 base libpst-libs.x86_64 0.6.59-4.el7 base libpst-python.x86_64 0.6.59-4.el7 base libpurple.i686 2.10.11-9.el7 base libpurple-devel.i686 2.10.11-9.el7 base libpurple-devel.x86_64 2.10.11-9.el7 base libpurple-perl.x86_64 2.10.11-9.el7 base libpurple-tcl.x86_64 2.10.11-9.el7 base libpwquality.i686 1.2.3-5.el7 base libpwquality-devel.i686 1.2.3-5.el7 base libpwquality-devel.x86_64 1.2.3-5.el7 base libqb.i686 1.0.1-9.el7 base libqb-devel.i686 1.0.1-9.el7 base libqb-devel.x86_64 1.0.1-9.el7 base libqmi.i686 1.18.0-2.el7 base libqmi-devel.i686 1.18.0-2.el7 base libqmi-devel.x86_64 1.18.0-2.el7 base libquadmath.i686 4.8.5-44.el7 base libquadmath-devel.i686 4.8.5-44.el7 base libquadmath-static.i686 4.8.5-44.el7 base libquadmath-static.x86_64 4.8.5-44.el7 base libquvi.i686 0.4.1-5.el7 base libquvi.x86_64 0.4.1-5.el7 base libquvi-devel.i686 0.4.1-5.el7 base libquvi-devel.x86_64 0.4.1-5.el7 base libquvi-scripts.noarch 0.4.10-3.el7 base librabbitmq.i686 0.8.0-3.el7 base librabbitmq.x86_64 0.8.0-3.el7 base librabbitmq-devel.i686 0.8.0-3.el7 base librabbitmq-devel.x86_64 0.8.0-3.el7 base librabbitmq-examples.x86_64 0.8.0-3.el7 base librados2.i686 1:10.2.5-4.el7 base librados2-devel.i686 1:10.2.5-4.el7 base librados2-devel.x86_64 1:10.2.5-4.el7 base libraw1394.i686 2.1.0-2.el7 base libraw1394-devel.i686 2.1.0-2.el7 base libraw1394-devel.x86_64 2.1.0-2.el7 base librbd1.i686 1:10.2.5-4.el7 base librbd1-devel.i686 1:10.2.5-4.el7 base librbd1-devel.x86_64 1:10.2.5-4.el7 base librdkafka.i686 0.11.4-1.el7 base librdkafka.x86_64 0.11.4-1.el7 base librdkafka-devel.i686 0.11.4-1.el7 base librdkafka-devel.x86_64 0.11.4-1.el7 base librdmacm.i686 22.4-6.el7_9 updates librdmacm.x86_64 22.4-6.el7_9 updates librdmacm-utils.x86_64 22.4-6.el7_9 updates libref_array.i686 0.1.5-32.el7 base libref_array-devel.i686 0.1.5-32.el7 base libref_array-devel.x86_64 0.1.5-32.el7 base librelp.i686 1.2.12-1.el7_5.1 base librelp.x86_64 1.2.12-1.el7_5.1 base librelp-devel.i686 1.2.12-1.el7_5.1 base librelp-devel.x86_64 1.2.12-1.el7_5.1 base libreoffice.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-base.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-bsh.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-calc.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-core.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-data.noarch 1:5.3.6.1-25.el7_9 updates libreoffice-draw.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-emailmerge.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-filters.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-gdb-debug-support.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-glade.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-graphicfilter.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-gtk2.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-gtk3.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-ar.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-bg.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-bn.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-ca.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-cs.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-da.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-de.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-dz.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-el.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-es.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-et.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-eu.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-fi.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-fr.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-gl.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-gu.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-he.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-hi.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-hr.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-hu.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-id.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-it.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-ja.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-ko.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-lt.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-lv.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-nb.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-nl.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-nn.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-pl.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-pt-BR.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-pt-PT.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-ro.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-ru.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-si.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-sk.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-sl.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-sv.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-ta.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-tr.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-uk.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-zh-Hans.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-help-zh-Hant.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-impress.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-af.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-ar.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-as.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-bg.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-bn.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-br.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-ca.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-cs.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-cy.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-da.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-de.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-dz.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-el.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-en.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-es.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-et.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-eu.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-fa.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-fi.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-fr.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-ga.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-gl.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-gu.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-he.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-hi.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-hr.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-hu.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-id.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-it.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-ja.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-kk.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-kn.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-ko.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-lt.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-lv.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-mai.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-ml.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-mr.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-nb.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-nl.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-nn.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-nr.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-nso.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-or.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-pa.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-pl.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-pt-BR.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-pt-PT.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-ro.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-ru.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-si.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-sk.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-sl.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-sr.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-ss.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-st.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-sv.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-ta.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-te.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-th.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-tn.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-tr.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-ts.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-uk.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-ve.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-xh.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-zh-Hans.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-zh-Hant.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-langpack-zu.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-librelogo.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-math.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-nlpsolver.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-officebean.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-officebean-common.noarch 1:5.3.6.1-25.el7_9 updates libreoffice-ogltrans.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-opensymbol-fonts.noarch 1:5.3.6.1-25.el7_9 updates libreoffice-pdfimport.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-postgresql.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-pyuno.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-rhino.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-sdk.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-sdk-doc.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-ure.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-ure-common.noarch 1:5.3.6.1-25.el7_9 updates libreoffice-voikko.x86_64 3.4-4.el7 base libreoffice-wiki-publisher.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-writer.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-x11.x86_64 1:5.3.6.1-25.el7_9 updates libreoffice-xsltfilter.x86_64 1:5.3.6.1-25.el7_9 updates libreofficekit.x86_64 1:5.3.6.1-25.el7_9 updates libreofficekit-devel.x86_64 1:5.3.6.1-25.el7_9 updates librepo.i686 1.8.1-8.el7_9 updates librepo.x86_64 1.8.1-8.el7_9 updates librepo-devel.i686 1.8.1-8.el7_9 updates librepo-devel.x86_64 1.8.1-8.el7_9 updates libreport.i686 2.1.11-53.el7.centos base libreport-compat.x86_64 2.1.11-53.el7.centos base libreport-devel.i686 2.1.11-53.el7.centos base libreport-devel.x86_64 2.1.11-53.el7.centos base libreport-gtk.i686 2.1.11-53.el7.centos base libreport-gtk-devel.i686 2.1.11-53.el7.centos base libreport-gtk-devel.x86_64 2.1.11-53.el7.centos base libreport-newt.x86_64 2.1.11-53.el7.centos base libreport-plugin-kerneloops.x86_64 2.1.11-53.el7.centos base libreport-plugin-logger.x86_64 2.1.11-53.el7.centos base libreport-rhel.x86_64 2.1.11-53.el7.centos base libreport-rhel-bugzilla.x86_64 2.1.11-53.el7.centos base libreport-web.i686 2.1.11-53.el7.centos base libreport-web-devel.i686 2.1.11-53.el7.centos base libreport-web-devel.x86_64 2.1.11-53.el7.centos base librepository.noarch 1.1.3-9.el7 base librepository-javadoc.noarch 1.1.3-9.el7 base libreswan.x86_64 3.25-9.1.el7_8 updates librevenge.i686 0.0.2-2.el7 base librevenge.x86_64 0.0.2-2.el7 base librevenge-devel.i686 0.0.2-2.el7 base librevenge-devel.x86_64 0.0.2-2.el7 base librevenge-doc.noarch 0.0.2-2.el7 base librhsm.x86_64 0.0.3-3.el7_9 extras librhsm-devel.x86_64 0.0.3-3.el7_9 extras librpmem.x86_64 1.5.1-2.1.el7 base librpmem-debug.x86_64 1.5.1-2.1.el7 base librpmem-devel.x86_64 1.5.1-2.1.el7 base librsvg2.i686 2.40.20-1.el7 base librsvg2-devel.i686 2.40.20-1.el7 base librsvg2-devel.x86_64 2.40.20-1.el7 base libsamplerate.i686 0.1.8-6.el7 base libsamplerate-devel.i686 0.1.8-6.el7 base libsamplerate-devel.x86_64 0.1.8-6.el7 base libsane-hpaio.i686 3.15.9-5.el7 base libseccomp.i686 2.3.1-4.el7 base libseccomp-devel.i686 2.3.1-4.el7 base libseccomp-devel.x86_64 2.3.1-4.el7 base libsecret.i686 0.18.6-1.el7 base libsecret-devel.i686 0.18.6-1.el7 base libsecret-devel.x86_64 0.18.6-1.el7 base libselinux.i686 2.5-15.el7 base libselinux-devel.i686 2.5-15.el7 base libselinux-devel.x86_64 2.5-15.el7 base libselinux-python3.x86_64 2.5-15.el7 base libselinux-ruby.x86_64 2.5-15.el7 base libselinux-static.i686 2.5-15.el7 base libselinux-static.x86_64 2.5-15.el7 base libsemanage.i686 2.5-14.el7 base libsemanage-devel.i686 2.5-14.el7 base libsemanage-devel.x86_64 2.5-14.el7 base libsemanage-static.i686 2.5-14.el7 base libsemanage-static.x86_64 2.5-14.el7 base libsepol.i686 2.5-10.el7 base libsepol-devel.i686 2.5-10.el7 base libsepol-devel.x86_64 2.5-10.el7 base libsepol-static.i686 2.5-10.el7 base libsepol-static.x86_64 2.5-10.el7 base libserializer.noarch 1.1.2-10.el7 base libserializer-javadoc.noarch 1.1.2-10.el7 base libsexy.i686 0.1.11-23.el7 base libsexy.x86_64 0.1.11-23.el7 base libsexy-devel.i686 0.1.11-23.el7 base libsexy-devel.x86_64 0.1.11-23.el7 base libshout.i686 2.2.2-11.el7 base libshout-devel.i686 2.2.2-11.el7 base libshout-devel.x86_64 2.2.2-11.el7 base libsigc++20.i686 2.10.0-1.el7 base libsigc++20-devel.i686 2.10.0-1.el7 base libsigc++20-devel.x86_64 2.10.0-1.el7 base libsigc++20-doc.noarch 2.10.0-1.el7 base libsmartcols.i686 2.23.2-65.el7_9.1 updates libsmartcols.x86_64 2.23.2-65.el7_9.1 updates libsmartcols-devel.i686 2.23.2-65.el7_9.1 updates libsmartcols-devel.x86_64 2.23.2-65.el7_9.1 updates libsmbclient.i686 4.10.16-15.el7_9 updates libsmbclient.x86_64 4.10.16-15.el7_9 updates libsmbclient-devel.i686 4.10.16-15.el7_9 updates libsmbclient-devel.x86_64 4.10.16-15.el7_9 updates libsmbios.i686 2.3.3-8.el7 base libsmbios-devel.i686 2.3.3-8.el7 base libsmbios-devel.x86_64 2.3.3-8.el7 base libsmi.i686 0.4.8-13.el7 base libsmi.x86_64 0.4.8-13.el7 base libsmi-devel.i686 0.4.8-13.el7 base libsmi-devel.x86_64 0.4.8-13.el7 base libsndfile.i686 1.0.25-12.el7 base libsndfile-devel.i686 1.0.25-12.el7 base libsndfile-devel.x86_64 1.0.25-12.el7 base libsndfile-utils.x86_64 1.0.25-12.el7 base libsolv.i686 0.6.34-4.el7 base libsolv.x86_64 0.6.34-4.el7 base libsolv-demo.x86_64 0.6.34-4.el7 base libsolv-devel.i686 0.6.34-4.el7 base libsolv-devel.x86_64 0.6.34-4.el7 base libsolv-tools.i686 0.6.34-4.el7 base libsolv-tools.x86_64 0.6.34-4.el7 base libsoup.i686 2.62.2-2.el7 base libsoup-devel.i686 2.62.2-2.el7 base libsoup-devel.x86_64 2.62.2-2.el7 base libspectre.i686 0.2.8-1.el7 base libspectre-devel.i686 0.2.8-1.el7 base libspectre-devel.x86_64 0.2.8-1.el7 base libspiro.i686 20071029-12.el7 base libspiro.x86_64 20071029-12.el7 base libspiro-devel.i686 20071029-12.el7 base libspiro-devel.x86_64 20071029-12.el7 base libsrtp.i686 1.4.4-11.20101004cvs.el7 base libsrtp-devel.i686 1.4.4-11.20101004cvs.el7 base libsrtp-devel.x86_64 1.4.4-11.20101004cvs.el7 base libss.i686 1.42.9-19.el7 base libss-devel.i686 1.42.9-19.el7 base libss-devel.x86_64 1.42.9-19.el7 base libssh.x86_64 0.7.1-7.el7 extras libssh-devel.x86_64 0.7.1-7.el7 extras libssh2.i686 1.8.0-4.el7 base libssh2-devel.i686 1.8.0-4.el7 base libssh2-devel.x86_64 1.8.0-4.el7 base libssh2-docs.noarch 1.8.0-4.el7 base libsss_autofs.x86_64 1.16.5-10.el7_9.8 updates libsss_certmap.i686 1.16.5-10.el7_9.8 updates libsss_certmap.x86_64 1.16.5-10.el7_9.8 updates libsss_certmap-devel.i686 1.16.5-10.el7_9.8 updates libsss_certmap-devel.x86_64 1.16.5-10.el7_9.8 updates libsss_idmap.i686 1.16.5-10.el7_9.8 updates libsss_idmap.x86_64 1.16.5-10.el7_9.8 updates libsss_idmap-devel.i686 1.16.5-10.el7_9.8 updates libsss_idmap-devel.x86_64 1.16.5-10.el7_9.8 updates libsss_nss_idmap.i686 1.16.5-10.el7_9.8 updates libsss_nss_idmap.x86_64 1.16.5-10.el7_9.8 updates libsss_nss_idmap-devel.i686 1.16.5-10.el7_9.8 updates libsss_nss_idmap-devel.x86_64 1.16.5-10.el7_9.8 updates libsss_simpleifp.i686 1.16.5-10.el7_9.8 updates libsss_simpleifp.x86_64 1.16.5-10.el7_9.8 updates libsss_simpleifp-devel.i686 1.16.5-10.el7_9.8 updates libsss_simpleifp-devel.x86_64 1.16.5-10.el7_9.8 updates libsss_sudo.x86_64 1.16.5-10.el7_9.8 updates libstaroffice.i686 0.0.4-1.el7 base libstaroffice.x86_64 0.0.4-1.el7 base libstaroffice-devel.i686 0.0.4-1.el7 base libstaroffice-devel.x86_64 0.0.4-1.el7 base libstaroffice-doc.noarch 0.0.4-1.el7 base libstaroffice-tools.x86_64 0.0.4-1.el7 base libstdc++.i686 4.8.5-44.el7 base libstdc++-devel.i686 4.8.5-44.el7 base libstdc++-docs.x86_64 4.8.5-44.el7 base libstdc++-static.i686 4.8.5-44.el7 base libstdc++-static.x86_64 4.8.5-44.el7 base libstoraged.x86_64 2.5.2-4.el7 extras libstoraged-devel.x86_64 2.5.2-4.el7 extras libstoragemgmt.i686 1.8.1-2.el7_9 updates libstoragemgmt.x86_64 1.8.1-2.el7_9 updates libstoragemgmt-arcconf-plugin.noarch 1.8.1-2.el7_9 updates libstoragemgmt-devel.i686 1.8.1-2.el7_9 updates libstoragemgmt-devel.x86_64 1.8.1-2.el7_9 updates libstoragemgmt-hpsa-plugin.noarch 1.8.1-2.el7_9 updates libstoragemgmt-local-plugin.noarch 1.8.1-2.el7_9 updates libstoragemgmt-megaraid-plugin.noarch 1.8.1-2.el7_9 updates libstoragemgmt-nfs-plugin.noarch 1.8.1-2.el7_9 updates libstoragemgmt-nfs-plugin-clibs.x86_64 1.8.1-2.el7_9 updates libstoragemgmt-nstor-plugin.noarch 1.8.1-2.el7_9 updates libstoragemgmt-python.noarch 1.8.1-2.el7_9 updates libstoragemgmt-python-clibs.x86_64 1.8.1-2.el7_9 updates libstoragemgmt-smis-plugin.noarch 1.8.1-2.el7_9 updates libstoragemgmt-targetd-plugin.noarch 1.8.1-2.el7_9 updates libstoragemgmt-udev.x86_64 1.8.1-2.el7_9 updates libsysfs.i686 2.1.0-16.el7 base libsysfs-devel.i686 2.1.0-16.el7 base libsysfs-devel.x86_64 2.1.0-16.el7 base libtalloc.i686 2.1.16-1.el7 base libtalloc-devel.i686 2.1.16-1.el7 base libtalloc-devel.x86_64 2.1.16-1.el7 base libtar.i686 1.2.11-29.el7 base libtar-devel.i686 1.2.11-29.el7 base libtar-devel.x86_64 1.2.11-29.el7 base libtasn1.i686 4.10-1.el7 base libtasn1-devel.i686 4.10-1.el7 base libtasn1-devel.x86_64 4.10-1.el7 base libtasn1-tools.x86_64 4.10-1.el7 base libtdb.i686 1.3.18-1.el7 base libtdb-devel.i686 1.3.18-1.el7 base libtdb-devel.x86_64 1.3.18-1.el7 base libteam.i686 1.29-3.el7 base libteam-devel.i686 1.29-3.el7 base libteam-devel.x86_64 1.29-3.el7 base libteam-doc.x86_64 1.29-3.el7 base libtevent.i686 0.9.39-1.el7 base libtevent-devel.i686 0.9.39-1.el7 base libtevent-devel.x86_64 0.9.39-1.el7 base libthai.i686 0.1.14-9.el7 base libthai-devel.i686 0.1.14-9.el7 base libthai-devel.x86_64 0.1.14-9.el7 base libtheora.i686 1:1.1.1-8.el7 base libtheora-devel.i686 1:1.1.1-8.el7 base libtheora-devel.x86_64 1:1.1.1-8.el7 base libtheora-devel-docs.noarch 1:1.1.1-8.el7 base libtiff.i686 4.0.3-35.el7 base libtiff-devel.i686 4.0.3-35.el7 base libtiff-devel.x86_64 4.0.3-35.el7 base libtiff-static.i686 4.0.3-35.el7 base libtiff-static.x86_64 4.0.3-35.el7 base libtiff-tools.x86_64 4.0.3-35.el7 base libtimezonemap.i686 0.4.4-1.el7 base libtimezonemap-devel.i686 0.4.4-1.el7 base libtimezonemap-devel.x86_64 0.4.4-1.el7 base libtirpc.i686 0.2.4-0.16.el7 base libtirpc-devel.i686 0.2.4-0.16.el7 base libtirpc-devel.x86_64 0.2.4-0.16.el7 base libtnc.i686 1.25-6.el7 base libtnc.x86_64 1.25-6.el7 base libtnc-devel.i686 1.25-6.el7 base libtnc-devel.x86_64 1.25-6.el7 base libtomcrypt.x86_64 1.17-26.el7 extras libtomcrypt-devel.x86_64 1.17-26.el7 extras libtomcrypt-doc.noarch 1.17-26.el7 extras libtommath.x86_64 0.42.0-6.el7 extras libtommath-devel.x86_64 0.42.0-6.el7 extras libtommath-doc.noarch 0.42.0-6.el7 extras libtool-ltdl.i686 2.4.2-22.el7_3 base libtool-ltdl-devel.i686 2.4.2-22.el7_3 base libtool-ltdl-devel.x86_64 2.4.2-22.el7_3 base libtranslit.i686 0.0.2-6.el7 base libtranslit.x86_64 0.0.2-6.el7 base libtranslit-devel.i686 0.0.2-6.el7 base libtranslit-devel.x86_64 0.0.2-6.el7 base libtranslit-icu.i686 0.0.2-6.el7 base libtranslit-icu.x86_64 0.0.2-6.el7 base libtranslit-m17n.i686 0.0.2-6.el7 base libtranslit-m17n.x86_64 0.0.2-6.el7 base libtsan.x86_64 4.8.5-44.el7 base libtsan-static.x86_64 4.8.5-44.el7 base libudisks2.i686 2.8.4-1.el7 base libudisks2-devel.i686 2.8.4-1.el7 base libudisks2-devel.x86_64 2.8.4-1.el7 base libuninameslist.i686 20091231-8.el7 base libuninameslist.x86_64 20091231-8.el7 base libuninameslist-devel.i686 20091231-8.el7 base libuninameslist-devel.x86_64 20091231-8.el7 base libunistring.i686 0.9.3-9.el7 base libunistring-devel.i686 0.9.3-9.el7 base libunistring-devel.x86_64 0.9.3-9.el7 base libunwind.i686 2:1.2-2.el7 base libunwind.x86_64 2:1.2-2.el7 base libunwind-devel.i686 2:1.2-2.el7 base libunwind-devel.x86_64 2:1.2-2.el7 base libusal.i686 1.1.11-25.el7 base libusal-devel.i686 1.1.11-25.el7 base libusal-devel.x86_64 1.1.11-25.el7 base libusb.i686 1:0.1.4-3.el7 base libusb.x86_64 1:0.1.4-3.el7 base libusb-devel.i686 1:0.1.4-3.el7 base libusb-devel.x86_64 1:0.1.4-3.el7 base libusb-static.i686 1:0.1.4-3.el7 base libusb-static.x86_64 1:0.1.4-3.el7 base libusbmuxd.i686 1.0.10-5.el7 base libusbmuxd-devel.i686 1.0.10-5.el7 base libusbmuxd-devel.x86_64 1.0.10-5.el7 base libusbmuxd-utils.x86_64 1.0.10-5.el7 base libusbx.i686 1.0.21-1.el7 base libusbx-devel.i686 1.0.21-1.el7 base libusbx-devel.x86_64 1.0.21-1.el7 base libusbx-devel-doc.noarch 1.0.21-1.el7 base libuser.i686 0.60-9.el7 base libuser-devel.i686 0.60-9.el7 base libuser-devel.x86_64 0.60-9.el7 base libusnic_verbs.x86_64 2.0.3-1.el7 base libutempter.i686 1.1.6-4.el7 base libutempter-devel.i686 1.1.6-4.el7 base libutempter-devel.x86_64 1.1.6-4.el7 base libuuid.i686 2.23.2-65.el7_9.1 updates libuuid.x86_64 2.23.2-65.el7_9.1 updates libuuid-devel.i686 2.23.2-65.el7_9.1 updates libuuid-devel.x86_64 2.23.2-65.el7_9.1 updates libv4l.i686 0.9.5-4.el7 base libv4l-devel.i686 0.9.5-4.el7 base libv4l-devel.x86_64 0.9.5-4.el7 base libva.i686 1.8.3-1.el7 base libva-devel.i686 1.8.3-1.el7 base libvdpau.i686 1.1.1-3.el7 base libvdpau.x86_64 1.1.1-3.el7 base libvdpau-devel.i686 1.1.1-3.el7 base libvdpau-devel.x86_64 1.1.1-3.el7 base libvdpau-docs.noarch 1.1.1-3.el7 base libverto.i686 0.2.5-4.el7 base libverto-devel.i686 0.2.5-4.el7 base libverto-devel.x86_64 0.2.5-4.el7 base libverto-glib.i686 0.2.5-4.el7 base libverto-glib.x86_64 0.2.5-4.el7 base libverto-glib-devel.i686 0.2.5-4.el7 base libverto-glib-devel.x86_64 0.2.5-4.el7 base libverto-libevent.i686 0.2.5-4.el7 base libverto-libevent-devel.i686 0.2.5-4.el7 base libverto-libevent-devel.x86_64 0.2.5-4.el7 base libverto-tevent.i686 0.2.5-4.el7 base libverto-tevent.x86_64 0.2.5-4.el7 base libverto-tevent-devel.i686 0.2.5-4.el7 base libverto-tevent-devel.x86_64 0.2.5-4.el7 base libvirt.x86_64 4.5.0-36.el7_9.5 updates libvirt-admin.x86_64 4.5.0-36.el7_9.5 updates libvirt-bash-completion.x86_64 4.5.0-36.el7_9.5 updates libvirt-cim.i686 0.6.3-19.el7 base libvirt-cim.x86_64 0.6.3-19.el7 base libvirt-client.i686 4.5.0-36.el7_9.5 updates libvirt-client.x86_64 4.5.0-36.el7_9.5 updates libvirt-daemon.x86_64 4.5.0-36.el7_9.5 updates libvirt-daemon-config-network.x86_64 4.5.0-36.el7_9.5 updates libvirt-daemon-config-nwfilter.x86_64 4.5.0-36.el7_9.5 updates libvirt-daemon-driver-interface.x86_64 4.5.0-36.el7_9.5 updates libvirt-daemon-driver-lxc.x86_64 4.5.0-36.el7_9.5 updates libvirt-daemon-driver-network.x86_64 4.5.0-36.el7_9.5 updates libvirt-daemon-driver-nodedev.x86_64 4.5.0-36.el7_9.5 updates libvirt-daemon-driver-nwfilter.x86_64 4.5.0-36.el7_9.5 updates libvirt-daemon-driver-qemu.x86_64 4.5.0-36.el7_9.5 updates libvirt-daemon-driver-secret.x86_64 4.5.0-36.el7_9.5 updates libvirt-daemon-driver-storage.x86_64 4.5.0-36.el7_9.5 updates libvirt-daemon-driver-storage-core.x86_64 4.5.0-36.el7_9.5 updates libvirt-daemon-driver-storage-disk.x86_64 4.5.0-36.el7_9.5 updates libvirt-daemon-driver-storage-gluster.x86_64 4.5.0-36.el7_9.5 updates libvirt-daemon-driver-storage-iscsi.x86_64 4.5.0-36.el7_9.5 updates libvirt-daemon-driver-storage-logical.x86_64 4.5.0-36.el7_9.5 updates libvirt-daemon-driver-storage-mpath.x86_64 4.5.0-36.el7_9.5 updates libvirt-daemon-driver-storage-rbd.x86_64 4.5.0-36.el7_9.5 updates libvirt-daemon-driver-storage-scsi.x86_64 4.5.0-36.el7_9.5 updates libvirt-daemon-kvm.x86_64 4.5.0-36.el7_9.5 updates libvirt-daemon-lxc.x86_64 4.5.0-36.el7_9.5 updates libvirt-dbus.x86_64 1.3.0-1.el7 extras libvirt-devel.i686 4.5.0-36.el7_9.5 updates libvirt-devel.x86_64 4.5.0-36.el7_9.5 updates libvirt-docs.x86_64 4.5.0-36.el7_9.5 updates libvirt-gconfig.i686 1.0.0-1.el7 base libvirt-gconfig-devel.i686 1.0.0-1.el7 base libvirt-gconfig-devel.x86_64 1.0.0-1.el7 base libvirt-glib.i686 1.0.0-1.el7 base libvirt-glib-devel.i686 1.0.0-1.el7 base libvirt-glib-devel.x86_64 1.0.0-1.el7 base libvirt-gobject.i686 1.0.0-1.el7 base libvirt-gobject-devel.i686 1.0.0-1.el7 base libvirt-gobject-devel.x86_64 1.0.0-1.el7 base libvirt-java.noarch 0.4.9-4.el7 base libvirt-java-devel.noarch 0.4.9-4.el7 base libvirt-java-javadoc.noarch 0.4.9-4.el7 base libvirt-libs.i686 4.5.0-36.el7_9.5 updates libvirt-libs.x86_64 4.5.0-36.el7_9.5 updates libvirt-lock-sanlock.x86_64 4.5.0-36.el7_9.5 updates libvirt-login-shell.x86_64 4.5.0-36.el7_9.5 updates libvirt-nss.i686 4.5.0-36.el7_9.5 updates libvirt-nss.x86_64 4.5.0-36.el7_9.5 updates libvirt-snmp.x86_64 0.0.3-6.el7 base libvisio.i686 0.1.6-1.el7 base libvisio.x86_64 0.1.6-1.el7 base libvisio-devel.i686 0.1.6-1.el7 base libvisio-devel.x86_64 0.1.6-1.el7 base libvisio-doc.noarch 0.1.6-1.el7 base libvisio-tools.x86_64 0.1.6-1.el7 base libvisual.i686 0.4.0-16.el7 base libvisual-devel.i686 0.4.0-16.el7 base libvisual-devel.x86_64 0.4.0-16.el7 base libvma.x86_64 8.7.5-1.el7 base libvma-devel.x86_64 8.7.5-1.el7 base libvma-utils.x86_64 8.7.5-1.el7 base libvmem.x86_64 1.5.1-2.1.el7 base libvmem-debug.x86_64 1.5.1-2.1.el7 base libvmem-devel.x86_64 1.5.1-2.1.el7 base libvmmalloc.x86_64 1.5.1-2.1.el7 base libvmmalloc-debug.x86_64 1.5.1-2.1.el7 base libvmmalloc-devel.x86_64 1.5.1-2.1.el7 base libvncserver.i686 0.9.9-14.el7_8.1 updates libvncserver.x86_64 0.9.9-14.el7_8.1 updates libvncserver-devel.i686 0.9.9-14.el7_8.1 updates libvncserver-devel.x86_64 0.9.9-14.el7_8.1 updates libvoikko.i686 3.6-5.el7 base libvoikko.x86_64 3.6-5.el7 base libvoikko-devel.i686 3.6-5.el7 base libvoikko-devel.x86_64 3.6-5.el7 base libvorbis.i686 1:1.3.3-8.el7.1 base libvorbis-devel.i686 1:1.3.3-8.el7.1 base libvorbis-devel.x86_64 1:1.3.3-8.el7.1 base libvorbis-devel-docs.noarch 1:1.3.3-8.el7.1 base libvpx.i686 1.3.0-8.el7 base libvpx-devel.i686 1.3.0-8.el7 base libvpx-devel.x86_64 1.3.0-8.el7 base libvpx-utils.x86_64 1.3.0-8.el7 base libwacom.i686 0.30-1.el7 base libwacom-devel.i686 0.30-1.el7 base libwacom-devel.x86_64 0.30-1.el7 base libwayland-client.i686 1.15.0-1.el7 base libwayland-cursor.i686 1.15.0-1.el7 base libwayland-egl.i686 1.15.0-1.el7 base libwayland-server.i686 1.15.0-1.el7 base libwbclient.i686 4.10.16-15.el7_9 updates libwbclient.x86_64 4.10.16-15.el7_9 updates libwbclient-devel.i686 4.10.16-15.el7_9 updates libwbclient-devel.x86_64 4.10.16-15.el7_9 updates libwebp.i686 0.3.0-10.el7_9 updates libwebp.x86_64 0.3.0-10.el7_9 updates libwebp-devel.i686 0.3.0-10.el7_9 updates libwebp-devel.x86_64 0.3.0-10.el7_9 updates libwebp-java.x86_64 0.3.0-10.el7_9 updates libwebp-tools.x86_64 0.3.0-10.el7_9 updates libwinpr.i686 2.1.1-2.el7 base libwinpr-devel.i686 2.1.1-2.el7 base libwinpr-devel.x86_64 2.1.1-2.el7 base libwmf.i686 0.2.8.4-44.el7 base libwmf.x86_64 0.2.8.4-44.el7 base libwmf-devel.i686 0.2.8.4-44.el7 base libwmf-devel.x86_64 0.2.8.4-44.el7 base libwmf-lite.i686 0.2.8.4-44.el7 base libwmf-lite.x86_64 0.2.8.4-44.el7 base libwnck3.i686 3.24.1-2.el7 base libwnck3-devel.i686 3.24.1-2.el7 base libwnck3-devel.x86_64 3.24.1-2.el7 base libwpd.i686 0.10.0-2.el7 base libwpd.x86_64 0.10.0-2.el7 base libwpd-devel.i686 0.10.0-2.el7 base libwpd-devel.x86_64 0.10.0-2.el7 base libwpd-doc.noarch 0.10.0-2.el7 base libwpd-tools.x86_64 0.10.0-2.el7 base libwpg.i686 0.3.0-1.el7 base libwpg.x86_64 0.3.0-1.el7 base libwpg-devel.i686 0.3.0-1.el7 base libwpg-devel.x86_64 0.3.0-1.el7 base libwpg-doc.noarch 0.3.0-1.el7 base libwpg-tools.x86_64 0.3.0-1.el7 base libwps.i686 0.4.7-1.el7 base libwps.x86_64 0.4.7-1.el7 base libwps-devel.i686 0.4.7-1.el7 base libwps-devel.x86_64 0.4.7-1.el7 base libwps-doc.noarch 0.4.7-1.el7 base libwps-tools.x86_64 0.4.7-1.el7 base libwsman-devel.i686 2.6.3-7.git4391e5c.el7 base libwsman-devel.x86_64 2.6.3-7.git4391e5c.el7 base libwsman1.i686 2.6.3-7.git4391e5c.el7 base libwvstreams.i686 4.6.1-12.el7_8 base libwvstreams-devel.i686 4.6.1-12.el7_8 base libwvstreams-devel.x86_64 4.6.1-12.el7_8 base libwvstreams-static.i686 4.6.1-12.el7_8 base libwvstreams-static.x86_64 4.6.1-12.el7_8 base libxcb.i686 1.13-1.el7 base libxcb-devel.i686 1.13-1.el7 base libxcb-doc.noarch 1.13-1.el7 base libxkbcommon.i686 0.7.1-3.el7 base libxkbcommon-devel.i686 0.7.1-3.el7 base libxkbcommon-devel.x86_64 0.7.1-3.el7 base libxkbcommon-x11.i686 0.7.1-3.el7 base libxkbcommon-x11-devel.i686 0.7.1-3.el7 base libxkbcommon-x11-devel.x86_64 0.7.1-3.el7 base libxkbfile.i686 1.0.9-3.el7 base libxkbfile-devel.i686 1.0.9-3.el7 base libxkbfile-devel.x86_64 1.0.9-3.el7 base libxklavier.i686 5.4-7.el7 base libxklavier-devel.i686 5.4-7.el7 base libxklavier-devel.x86_64 5.4-7.el7 base libxml2.i686 2.9.1-6.el7.5 base libxml2-devel.i686 2.9.1-6.el7.5 base libxml2-devel.x86_64 2.9.1-6.el7.5 base libxml2-static.i686 2.9.1-6.el7.5 base libxml2-static.x86_64 2.9.1-6.el7.5 base libxshmfence.i686 1.2-1.el7 base libxshmfence-devel.i686 1.2-1.el7 base libxshmfence-devel.x86_64 1.2-1.el7 base libxslt.i686 1.1.28-6.el7 base libxslt-devel.i686 1.1.28-6.el7 base libxslt-devel.x86_64 1.1.28-6.el7 base libxslt-python.x86_64 1.1.28-6.el7 base libyami.i686 1.2.0-2.el7 base libyaml.i686 0.1.4-11.el7_0 base libyaml-devel.i686 0.1.4-11.el7_0 base libyaml-devel.x86_64 0.1.4-11.el7_0 base libzapojit.i686 0.0.3-4.el7 base libzapojit.x86_64 0.0.3-4.el7 base libzapojit-devel.i686 0.0.3-4.el7 base libzapojit-devel.x86_64 0.0.3-4.el7 base libzip.i686 0.10.1-8.el7 base libzip.x86_64 0.10.1-8.el7 base libzip-devel.i686 0.10.1-8.el7 base libzip-devel.x86_64 0.10.1-8.el7 base libzmf.i686 0.0.2-1.el7 base libzmf.x86_64 0.0.2-1.el7 base libzmf-devel.i686 0.0.2-1.el7 base libzmf-devel.x86_64 0.0.2-1.el7 base libzmf-doc.noarch 0.0.2-1.el7 base libzmf-tools.x86_64 0.0.2-1.el7 base linux-firmware.noarch 20200421-80.git78c0348.el7_9 updates linuxconsoletools.x86_64 1.4.5-3.el7 base linuxdoc-tools.x86_64 0.9.68-5.el7 base linuxptp.x86_64 2.0-2.el7 base livecd-tools.x86_64 1:21.4-2.el7 extras lksctp-tools.i686 1.0.17-2.el7 base lksctp-tools-devel.i686 1.0.17-2.el7 base lksctp-tools-devel.x86_64 1.0.17-2.el7 base lksctp-tools-doc.x86_64 1.0.17-2.el7 base lldb.x86_64 3.4.2-8.el7 extras lldb-devel.x86_64 3.4.2-8.el7 extras lldpad.i686 1.0.1-5.git036e314.el7 base lldpad-devel.i686 1.0.1-5.git036e314.el7 base lldpad-devel.x86_64 1.0.1-5.git036e314.el7 base llvm.x86_64 3.4.2-8.el7 extras llvm-devel.x86_64 3.4.2-8.el7 extras llvm-doc.noarch 3.4.2-8.el7 extras llvm-libs.x86_64 3.4.2-8.el7 extras llvm-ocaml.x86_64 3.4.2-8.el7 extras llvm-ocaml-devel.x86_64 3.4.2-8.el7 extras llvm-ocaml-doc.noarch 3.4.2-8.el7 extras llvm-private.i686 7.0.1-1.el7 base llvm-private-devel.i686 7.0.1-1.el7 base llvm-private-devel.x86_64 7.0.1-1.el7 base llvm-static.x86_64 3.4.2-8.el7 extras lm_sensors.x86_64 3.4.0-8.20160601gitf9185e5.el7 base lm_sensors-devel.i686 3.4.0-8.20160601gitf9185e5.el7 base lm_sensors-devel.x86_64 3.4.0-8.20160601gitf9185e5.el7 base lm_sensors-libs.i686 3.4.0-8.20160601gitf9185e5.el7 base lm_sensors-sensord.x86_64 3.4.0-8.20160601gitf9185e5.el7 base lockdev.i686 1.0.4-0.13.20111007git.el7 base lockdev-devel.i686 1.0.4-0.13.20111007git.el7 base lockdev-devel.x86_64 1.0.4-0.13.20111007git.el7 base log4cxx.i686 0.10.0-16.el7 base log4cxx.x86_64 0.10.0-16.el7 base log4cxx-devel.i686 0.10.0-16.el7 base log4cxx-devel.x86_64 0.10.0-16.el7 base log4j-javadoc.noarch 1.2.17-16.el7_4 base log4j-manual.noarch 1.2.17-16.el7_4 base logwatch.noarch 7.4.0-35.20130522svn140.el7_5 base lorax.x86_64 19.7.28-1.el7.centos base lorax-composer.x86_64 19.7.43-1.el7_9 extras lpsolve.x86_64 5.5.2.0-8.el7 base lpsolve-devel.i686 5.5.2.0-8.el7 base lpsolve-devel.x86_64 5.5.2.0-8.el7 base lshw-gui.x86_64 B.02.18-17.el7 base ltrace.x86_64 0.7.91-16.el7 base lua.i686 5.1.4-15.el7 base lua-devel.i686 5.1.4-15.el7 base lua-devel.x86_64 5.1.4-15.el7 base lua-guestfs.x86_64 1:1.40.2-10.el7 base lua-static.i686 5.1.4-15.el7 base lua-static.x86_64 5.1.4-15.el7 base luksmeta.x86_64 8-2.el7 base lvm2.x86_64 7:2.02.187-6.el7_9.5 updates lvm2-cluster.x86_64 7:2.02.187-6.el7_9.5 updates lvm2-devel.i686 7:2.02.187-6.el7_9.5 updates lvm2-devel.x86_64 7:2.02.187-6.el7_9.5 updates lvm2-libs.i686 7:2.02.187-6.el7_9.5 updates lvm2-libs.x86_64 7:2.02.187-6.el7_9.5 updates lvm2-lockd.x86_64 7:2.02.187-6.el7_9.5 updates lvm2-python-boom.noarch 7:1.2-2.el7_9.5 updates lvm2-python-libs.x86_64 7:2.02.187-6.el7_9.5 updates lvm2-sysvinit.x86_64 7:2.02.187-6.el7_9.5 updates lynx.x86_64 2.8.8-0.3.dev15.el7 base lz4.i686 1.8.3-1.el7 base lz4-devel.i686 1.8.3-1.el7 base lz4-devel.x86_64 1.8.3-1.el7 base lz4-static.i686 1.8.3-1.el7 base lz4-static.x86_64 1.8.3-1.el7 base lzo.i686 2.06-8.el7 base lzo-devel.i686 2.06-8.el7 base lzo-devel.x86_64 2.06-8.el7 base lzo-minilzo.i686 2.06-8.el7 base m17n-contrib-extras.noarch 1.1.14-3.el7 base m17n-db-devel.noarch 1.6.4-4.el7 base m17n-db-extras.noarch 1.6.4-4.el7 base m17n-lib.i686 1.6.4-14.el7 base m17n-lib-devel.i686 1.6.4-14.el7 base m17n-lib-devel.x86_64 1.6.4-14.el7 base m17n-lib-tools.i686 1.6.4-14.el7 base m17n-lib-tools.x86_64 1.6.4-14.el7 base mailman.x86_64 3:2.1.15-30.el7 base malaga.x86_64 7.12-16.el7 base malaga-devel.i686 7.12-16.el7 base malaga-devel.x86_64 7.12-16.el7 base malaga-suomi-voikko.x86_64 1.12-5.el7 base mallard-rng.noarch 1.0.2-1.el7 base man-pages-cs.noarch 0.18.20090209-17.el7 base man-pages-es.noarch 1.55-21.el7 base man-pages-es-extra.noarch 1.55-21.el7 base man-pages-fr.noarch 3.52-3.el7 base man-pages-it.noarch 3.15-2.el7 base man-pages-ja.noarch 20130615-6.el7 base man-pages-ko.noarch 2:20050219-25.el7 base man-pages-pl.noarch 1:0.3-4.el7 base man-pages-ru.noarch 3.41-3.20120901.el7 base man-pages-zh-CN.noarch 1.5.2-4.el7 base mariadb-bench.x86_64 1:5.5.68-1.el7 base mariadb-devel.i686 1:5.5.68-1.el7 base mariadb-devel.x86_64 1:5.5.68-1.el7 base mariadb-embedded.i686 1:5.5.68-1.el7 base mariadb-embedded.x86_64 1:5.5.68-1.el7 base mariadb-embedded-devel.i686 1:5.5.68-1.el7 base mariadb-embedded-devel.x86_64 1:5.5.68-1.el7 base mariadb-libs.i686 1:5.5.68-1.el7 base mariadb-test.x86_64 1:5.5.68-1.el7 base marisa.i686 0.2.4-4.el7 base marisa-devel.i686 0.2.4-4.el7 base marisa-devel.x86_64 0.2.4-4.el7 base marisa-perl.x86_64 0.2.4-4.el7 base marisa-python.x86_64 0.2.4-4.el7 base marisa-ruby.x86_64 0.2.4-4.el7 base marisa-tools.x86_64 0.2.4-4.el7 base matchbox-window-manager.x86_64 1.2-16.1.20070628svn.el7 base maven.noarch 3.0.5-17.el7 base maven-antrun-plugin.noarch 1.7-8.el7 base maven-antrun-plugin-javadoc.noarch 1.7-8.el7 base maven-archiver.noarch 2.5-9.el7 base maven-archiver-javadoc.noarch 2.5-9.el7 base maven-artifact.noarch 2.2.1-47.el7 base maven-artifact-manager.noarch 2.2.1-47.el7 base maven-artifact-resolver.noarch 1:1.0-10.el7 base maven-artifact-resolver-javadoc.noarch 1:1.0-10.el7 base maven-assembly-plugin.noarch 2.4-8.el7 base maven-assembly-plugin-javadoc.noarch 2.4-8.el7 base maven-cal10n-plugin.noarch 0.7.7-4.el7 base maven-changes-plugin.noarch 2.8-7.el7 base maven-changes-plugin-javadoc.noarch 2.8-7.el7 base maven-clean-plugin.noarch 2.5-8.el7 base maven-clean-plugin-javadoc.noarch 2.5-8.el7 base maven-common-artifact-filters.noarch 1.4-11.el7 base maven-common-artifact-filters-javadoc.noarch 1.4-11.el7 base maven-compiler-plugin.noarch 3.1-4.el7 base maven-compiler-plugin-javadoc.noarch 3.1-4.el7 base maven-dependency-analyzer.noarch 1.3-9.el7 base maven-dependency-analyzer-javadoc.noarch 1.3-9.el7 base maven-dependency-plugin.noarch 2.7-3.el7 base maven-dependency-plugin-javadoc.noarch 2.7-3.el7 base maven-dependency-tree.noarch 2.0-7.el7 base maven-dependency-tree-javadoc.noarch 2.0-7.el7 base maven-deploy-plugin.noarch 2.7-11.el7 base maven-deploy-plugin-javadoc.noarch 2.7-11.el7 base maven-downloader.noarch 1:1.1-6.el7 base maven-downloader-javadoc.noarch 1:1.1-6.el7 base maven-doxia.noarch 1.4-5.el7 base maven-doxia-core.noarch 1.4-5.el7 base maven-doxia-javadoc.noarch 1.4-5.el7 base maven-doxia-logging-api.noarch 1.4-5.el7 base maven-doxia-module-apt.noarch 1.4-5.el7 base maven-doxia-module-confluence.noarch 1.4-5.el7 base maven-doxia-module-docbook-simple.noarch 1.4-5.el7 base maven-doxia-module-fml.noarch 1.4-5.el7 base maven-doxia-module-fo.noarch 1.4-5.el7 base maven-doxia-module-latex.noarch 1.4-5.el7 base maven-doxia-module-rtf.noarch 1.4-5.el7 base maven-doxia-module-twiki.noarch 1.4-5.el7 base maven-doxia-module-xdoc.noarch 1.4-5.el7 base maven-doxia-module-xhtml.noarch 1.4-5.el7 base maven-doxia-modules.noarch 1.4-5.el7 base maven-doxia-sink-api.noarch 1.4-5.el7 base maven-doxia-sitetools.noarch 1.4-3.el7 base maven-doxia-sitetools-javadoc.noarch 1.4-3.el7 base maven-doxia-test-docs.noarch 1.4-5.el7 base maven-doxia-tests.noarch 1.4-5.el7 base maven-doxia-tools.noarch 1.4-15.el7 base maven-doxia-tools-javadoc.noarch 1.4-15.el7 base maven-ear-plugin.noarch 2.8-5.el7 base maven-ear-plugin-javadoc.noarch 2.8-5.el7 base maven-ejb-plugin.noarch 2.3-9.el7 base maven-ejb-plugin-javadoc.noarch 2.3-9.el7 base maven-enforcer.noarch 1.2-8.el7 base maven-enforcer-api.noarch 1.2-8.el7 base maven-enforcer-javadoc.noarch 1.2-8.el7 base maven-enforcer-plugin.noarch 1.2-8.el7 base maven-enforcer-rules.noarch 1.2-8.el7 base maven-error-diagnostics.noarch 2.2.1-47.el7 base maven-failsafe-plugin.noarch 2.15-3.el7 base maven-file-management.noarch 1:1.2.1-8.el7 base maven-file-management-javadoc.noarch 1:1.2.1-8.el7 base maven-filtering.noarch 1.1-3.el7 base maven-filtering-javadoc.noarch 1.1-3.el7 base maven-gpg-plugin.noarch 1.4-11.el7 base maven-gpg-plugin-javadoc.noarch 1.4-11.el7 base maven-hawtjni-plugin.noarch 1.6-10.el7 base maven-install-plugin.noarch 2.4-7.el7 base maven-install-plugin-javadoc.noarch 2.4-7.el7 base maven-invoker.noarch 2.1.1-9.el7 base maven-invoker-javadoc.noarch 2.1.1-9.el7 base maven-invoker-plugin.noarch 1.8-8.el7 base maven-invoker-plugin-javadoc.noarch 1.8-8.el7 base maven-istack-commons-plugin.noarch 2.17-4.el7 base maven-jar-plugin.noarch 2.4-8.el7 base maven-jar-plugin-javadoc.noarch 2.4-8.el7 base maven-jarsigner-plugin.noarch 1.2-9.el7 base maven-jarsigner-plugin-javadoc.noarch 1.2-9.el7 base maven-javadoc.noarch 3.0.5-17.el7 base maven-javadoc-plugin.noarch 2.9-8.el7 base maven-javadoc-plugin-javadoc.noarch 2.9-8.el7 base maven-jxr.noarch 2.3-11.el7 base maven-jxr-javadoc.noarch 2.3-11.el7 base maven-local.noarch 3.4.1-11.el7 base maven-model.noarch 2.2.1-47.el7 base maven-monitor.noarch 2.2.1-47.el7 base maven-osgi.noarch 1:0.2.0-7.el7 base maven-osgi-javadoc.noarch 1:0.2.0-7.el7 base maven-parent.noarch 20-5.el7 base maven-plugin-annotations.noarch 3.1-17.el7 base maven-plugin-build-helper.noarch 1.5-13.el7 base maven-plugin-build-helper-javadoc.noarch 1.5-13.el7 base maven-plugin-bundle.noarch 2.3.7-12.el7 base maven-plugin-bundle-javadoc.noarch 2.3.7-12.el7 base maven-plugin-descriptor.noarch 2.2.1-47.el7 base maven-plugin-jxr.noarch 2.3-11.el7 base maven-plugin-plugin.noarch 3.1-17.el7 base maven-plugin-registry.noarch 2.2.1-47.el7 base maven-plugin-testing.noarch 2.1-11.el7 base maven-plugin-testing-harness.noarch 2.1-11.el7 base maven-plugin-testing-javadoc.noarch 2.1-11.el7 base maven-plugin-testing-tools.noarch 2.1-11.el7 base maven-plugin-tools.noarch 3.1-17.el7 base maven-plugin-tools-annotations.noarch 3.1-17.el7 base maven-plugin-tools-ant.noarch 3.1-17.el7 base maven-plugin-tools-api.noarch 3.1-17.el7 base maven-plugin-tools-beanshell.noarch 3.1-17.el7 base maven-plugin-tools-generators.noarch 3.1-17.el7 base maven-plugin-tools-java.noarch 3.1-17.el7 base maven-plugin-tools-javadoc.noarch 3.1-17.el7 base maven-plugin-tools-javadocs.noarch 3.1-17.el7 base maven-plugin-tools-model.noarch 3.1-17.el7 base maven-plugins-pom.noarch 23-7.el7 base maven-profile.noarch 2.2.1-47.el7 base maven-project.noarch 2.2.1-47.el7 base maven-project-info-reports-plugin.noarch 2.6-8.el7 base maven-project-info-reports-plugin-javadoc.noarch 2.6-8.el7 base maven-release.noarch 2.2.1-12.el7 base maven-release-javadoc.noarch 2.2.1-12.el7 base maven-release-manager.noarch 2.2.1-12.el7 base maven-release-plugin.noarch 2.2.1-12.el7 base maven-remote-resources-plugin.noarch 1.4-7.el7 base maven-remote-resources-plugin-javadoc.noarch 1.4-7.el7 base maven-reporting-api.noarch 1:3.0-5.el7 base maven-reporting-api-javadoc.noarch 1:3.0-5.el7 base maven-reporting-exec.noarch 1.1-5.el7 base maven-reporting-impl.noarch 2.2-8.el7 base maven-reporting-impl-javadoc.noarch 2.2-8.el7 base maven-repository-builder.noarch 1:1.0-0.5.alpha2.el7 base maven-repository-builder-javadoc.noarch 1:1.0-0.5.alpha2.el7 base maven-resources-plugin.noarch 2.6-6.el7 base maven-resources-plugin-javadoc.noarch 2.6-6.el7 base maven-scm.noarch 1.8.1-2.el7 base maven-scm-javadoc.noarch 1.8.1-2.el7 base maven-scm-test.noarch 1.8.1-2.el7 base maven-script.noarch 3.1-17.el7 base maven-script-ant.noarch 3.1-17.el7 base maven-script-beanshell.noarch 3.1-17.el7 base maven-script-interpreter.noarch 1.0-7.el7 base maven-script-interpreter-javadoc.noarch 1.0-7.el7 base maven-settings.noarch 2.2.1-47.el7 base maven-shade-plugin.noarch 2.0-6.el7 base maven-shade-plugin-javadoc.noarch 2.0-6.el7 base maven-shared.noarch 19-4.el7 base maven-shared-incremental.noarch 1.1-6.el7 base maven-shared-incremental-javadoc.noarch 1.1-6.el7 base maven-shared-io.noarch 1:1.1-7.el7 base maven-shared-io-javadoc.noarch 1:1.1-7.el7 base maven-shared-jar.noarch 1:1.1-8.el7 base maven-shared-jar-javadoc.noarch 1:1.1-8.el7 base maven-shared-utils.noarch 0.4-3.el7 base maven-shared-utils-javadoc.noarch 0.4-3.el7 base maven-site-plugin.noarch 3.2-7.el7 base maven-site-plugin-javadoc.noarch 3.2-7.el7 base maven-source-plugin.noarch 2.2.1-7.el7 base maven-source-plugin-javadoc.noarch 2.2.1-7.el7 base maven-surefire.noarch 2.15-3.el7 base maven-surefire-javadoc.noarch 2.15-3.el7 base maven-surefire-plugin.noarch 2.15-3.el7 base maven-surefire-provider-junit.noarch 2.15-3.el7 base maven-surefire-provider-testng.noarch 2.15-3.el7 base maven-surefire-report-parser.noarch 2.15-3.el7 base maven-surefire-report-plugin.noarch 2.15-3.el7 base maven-test-tools.noarch 2.1-11.el7 base maven-toolchain.noarch 2.2.1-47.el7 base maven-verifier.noarch 1.4-7.el7 base maven-verifier-javadoc.noarch 1.4-7.el7 base maven-verifier-plugin.noarch 1.0-10.el7 base maven-verifier-plugin-javadoc.noarch 1.0-10.el7 base maven-wagon.noarch 2.4-3.el7 base maven-wagon-javadoc.noarch 2.4-3.el7 base maven-wagon-provider-test.noarch 2.4-3.el7 base maven-wagon-scm.noarch 2.4-3.el7 base maven-war-plugin.noarch 2.3-9.el7 base maven-war-plugin-javadoc.noarch 2.3-9.el7 base maven2-javadoc.noarch 2.2.1-47.el7 base mc.x86_64 1:4.8.7-11.el7 base mcstrans.x86_64 0.3.4-5.el7 base mdadm.x86_64 4.1-7.el7_9 updates mdds-devel.noarch 1.2.3-1.el7 base meanwhile.i686 1.1.0-12.el7 base meanwhile-devel.i686 1.1.0-12.el7 base meanwhile-devel.x86_64 1.1.0-12.el7 base meanwhile-doc.x86_64 1.1.0-12.el7 base memcached.x86_64 1.4.15-10.el7_3.1 base memcached-devel.i686 1.4.15-10.el7_3.1 base memcached-devel.x86_64 1.4.15-10.el7_3.1 base memkind.x86_64 1.7.0-1.el7 base memkind-devel.x86_64 1.7.0-1.el7 base memstomp.i686 0.1.4-11.el7 base memstomp.x86_64 0.1.4-11.el7 base memtest86+.x86_64 5.01-2.el7 base mercurial.x86_64 2.6.2-11.el7 base mercurial-hgk.x86_64 2.6.2-11.el7 base mesa-demos.x86_64 8.3.0-10.el7 base mesa-dri-drivers.i686 18.3.4-12.el7_9 updates mesa-dri-drivers.x86_64 18.3.4-12.el7_9 updates mesa-filesystem.i686 18.3.4-12.el7_9 updates mesa-filesystem.x86_64 18.3.4-12.el7_9 updates mesa-khr-devel.i686 18.3.4-12.el7_9 updates mesa-khr-devel.x86_64 18.3.4-12.el7_9 updates mesa-libEGL.i686 18.3.4-12.el7_9 updates mesa-libEGL.x86_64 18.3.4-12.el7_9 updates mesa-libEGL-devel.i686 18.3.4-12.el7_9 updates mesa-libEGL-devel.x86_64 18.3.4-12.el7_9 updates mesa-libGL.i686 18.3.4-12.el7_9 updates mesa-libGL.x86_64 18.3.4-12.el7_9 updates mesa-libGL-devel.i686 18.3.4-12.el7_9 updates mesa-libGL-devel.x86_64 18.3.4-12.el7_9 updates mesa-libGLES.i686 18.3.4-12.el7_9 updates mesa-libGLES.x86_64 18.3.4-12.el7_9 updates mesa-libGLES-devel.i686 18.3.4-12.el7_9 updates mesa-libGLES-devel.x86_64 18.3.4-12.el7_9 updates mesa-libGLU.i686 9.0.0-4.el7 base mesa-libGLU-devel.i686 9.0.0-4.el7 base mesa-libGLU-devel.x86_64 9.0.0-4.el7 base mesa-libGLw.i686 8.0.0-5.el7 base mesa-libGLw.x86_64 8.0.0-5.el7 base mesa-libGLw-devel.i686 8.0.0-5.el7 base mesa-libGLw-devel.x86_64 8.0.0-5.el7 base mesa-libOSMesa.i686 18.3.4-12.el7_9 updates mesa-libOSMesa.x86_64 18.3.4-12.el7_9 updates mesa-libOSMesa-devel.i686 18.3.4-12.el7_9 updates mesa-libOSMesa-devel.x86_64 18.3.4-12.el7_9 updates mesa-libgbm.i686 18.3.4-12.el7_9 updates mesa-libgbm.x86_64 18.3.4-12.el7_9 updates mesa-libgbm-devel.i686 18.3.4-12.el7_9 updates mesa-libgbm-devel.x86_64 18.3.4-12.el7_9 updates mesa-libglapi.i686 18.3.4-12.el7_9 updates mesa-libglapi.x86_64 18.3.4-12.el7_9 updates mesa-libxatracker.i686 18.3.4-12.el7_9 updates mesa-libxatracker.x86_64 18.3.4-12.el7_9 updates mesa-libxatracker-devel.i686 18.3.4-12.el7_9 updates mesa-libxatracker-devel.x86_64 18.3.4-12.el7_9 updates mesa-private-llvm.i686 3.9.1-3.el7 base mesa-private-llvm.x86_64 3.9.1-3.el7 base mesa-private-llvm-devel.i686 3.9.1-3.el7 base mesa-private-llvm-devel.x86_64 3.9.1-3.el7 base mesa-vdpau-drivers.i686 18.3.4-12.el7_9 updates mesa-vdpau-drivers.x86_64 18.3.4-12.el7_9 updates mesa-vulkan-drivers.i686 18.3.4-12.el7_9 updates mesa-vulkan-drivers.x86_64 18.3.4-12.el7_9 updates metacity.i686 2.34.13-7.el7 base metacity-devel.i686 2.34.13-7.el7 base metacity-devel.x86_64 2.34.13-7.el7 base mgetty.x86_64 1.1.36-28.el7 base mgetty-sendfax.x86_64 1.1.36-28.el7 base mgetty-viewfax.x86_64 1.1.36-28.el7 base mgetty-voice.x86_64 1.1.36-28.el7 base microcode_ctl.x86_64 2:2.1-73.9.el7_9 updates migrationtools.noarch 47-15.el7 base minicom.x86_64 2.6.2-5.el7 base minizip.i686 1.2.7-19.el7_9 updates minizip.x86_64 1.2.7-19.el7_9 updates minizip-devel.i686 1.2.7-19.el7_9 updates minizip-devel.x86_64 1.2.7-19.el7_9 updates mipv6-daemon.x86_64 2:1.0-5.el7 base mkbootdisk.x86_64 1.5.5-11.el7 base mksh.x86_64 46-8.el7 base mobile-broadband-provider-info-devel.noarch 1.20170310-1.el7 base mock.noarch 1.2.17-1.el7.centos extras mock-lvm.noarch 1.2.17-1.el7.centos extras mock-scm.noarch 1.2.17-1.el7.centos extras mod_auth_kerb.x86_64 5.4-28.el7 base mod_auth_mellon.x86_64 0.14.0-9.el7_9 updates mod_auth_mellon-diagnostics.x86_64 0.14.0-9.el7_9 updates mod_auth_openidc.x86_64 1.8.8-9.el7_9 updates mod_authnz_pam.x86_64 1.1.0-1.el7 base mod_dav_svn.x86_64 1.7.14-16.el7 base mod_fcgid.x86_64 2.3.9-6.el7 base mod_intercept_form_submit.x86_64 1.1.0-1.el7 base mod_ldap.x86_64 2.4.6-97.el7.centos updates mod_proxy_html.x86_64 1:2.4.6-97.el7.centos updates mod_revocator.x86_64 1.0.3-21.el7 base mod_security.x86_64 2.9.2-1.el7 base mod_security-mlogc.x86_64 2.9.2-1.el7 base mod_security_crs.noarch 2.2.9-1.el7 base mod_session.x86_64 2.4.6-97.el7.centos updates mod_ssl.x86_64 1:2.4.6-97.el7.centos updates modello.noarch 1.7-4.el7 base modello-javadoc.noarch 1.7-4.el7 base mojo-parent.noarch 32-4.el7 base mono-icon-theme.noarch 1:4.10.5-4.el7 base motif.i686 2.3.4-14.el7_5 base motif.x86_64 2.3.4-14.el7_5 base motif-devel.i686 2.3.4-14.el7_5 base motif-devel.x86_64 2.3.4-14.el7_5 base motif-static.i686 2.3.4-14.el7_5 base motif-static.x86_64 2.3.4-14.el7_5 base mozjs17.i686 17.0.0-20.el7 base mozjs17-devel.i686 17.0.0-20.el7 base mozjs17-devel.x86_64 17.0.0-20.el7 base mozjs24.i686 24.2.0-7.el7 base mozjs24.x86_64 24.2.0-7.el7 base mozjs24-devel.i686 24.2.0-7.el7 base mozjs24-devel.x86_64 24.2.0-7.el7 base mozjs52.i686 52.9.0-1.el7 base mozjs52-devel.i686 52.9.0-1.el7 base mozjs52-devel.x86_64 52.9.0-1.el7 base mpage.x86_64 2.5.6-14.el7 base mpfr.i686 3.1.1-4.el7 base mpfr-devel.i686 3.1.1-4.el7 base mpfr-devel.x86_64 3.1.1-4.el7 base mpg123.x86_64 1.25.6-1.el7 base mpg123-devel.i686 1.25.6-1.el7 base mpg123-devel.x86_64 1.25.6-1.el7 base mpg123-libs.i686 1.25.6-1.el7 base mpg123-plugins-pulseaudio.x86_64 1.25.6-1.el7 base mpich-3.0.i686 3.0.4-10.el7 base mpich-3.0.x86_64 3.0.4-10.el7 base mpich-3.0-autoload.x86_64 3.0.4-10.el7 base mpich-3.0-devel.i686 3.0.4-10.el7 base mpich-3.0-devel.x86_64 3.0.4-10.el7 base mpich-3.0-doc.noarch 3.0.4-10.el7 base mpich-3.2.i686 3.2-2.el7 base mpich-3.2.x86_64 3.2-2.el7 base mpich-3.2-autoload.x86_64 3.2-2.el7 base mpich-3.2-devel.i686 3.2-2.el7 base mpich-3.2-devel.x86_64 3.2-2.el7 base mpich-3.2-doc.noarch 3.2-2.el7 base mpitests-compat-openmpi16.x86_64 5.4.2-1.el7 base mpitests-mpich.x86_64 5.4.2-1.el7 base mpitests-mpich32.x86_64 5.4.2-1.el7 base mpitests-mvapich2.x86_64 5.4.2-1.el7 base mpitests-mvapich2-psm.x86_64 5.4.2-1.el7 base mpitests-mvapich222.x86_64 5.4.2-1.el7 base mpitests-mvapich222-psm.x86_64 5.4.2-1.el7 base mpitests-mvapich222-psm2.x86_64 5.4.2-1.el7 base mpitests-mvapich23.x86_64 5.4.2-1.el7 base mpitests-mvapich23-psm.x86_64 5.4.2-1.el7 base mpitests-mvapich23-psm2.x86_64 5.4.2-1.el7 base mpitests-openmpi.x86_64 5.4.2-1.el7 base mpitests-openmpi3.x86_64 5.4.2-1.el7 base mrtg.x86_64 2.17.4-11.el7 base msv-demo.noarch 1:2013.5.1-7.el7 base msv-javadoc.noarch 1:2013.5.1-7.el7 base msv-manual.noarch 1:2013.5.1-7.el7 base msv-rngconv.noarch 1:2013.5.1-7.el7 base msv-xmlgen.noarch 1:2013.5.1-7.el7 base mtdev.i686 1.1.5-5.el7 base mtdev-devel.i686 1.1.5-5.el7 base mtdev-devel.x86_64 1.1.5-5.el7 base mtr-gtk.x86_64 2:0.85-7.el7 base munge-maven-plugin.noarch 1.0-2.el7 base munge-maven-plugin-javadoc.noarch 1.0-2.el7 base mutt.x86_64 5:1.5.21-29.el7 base mutter.i686 3.28.3-30.el7 updates mutter.x86_64 3.28.3-30.el7 updates mutter-devel.i686 3.28.3-30.el7 updates mutter-devel.x86_64 3.28.3-30.el7 updates mvapich2-2.0.i686 2.0a-9.el7 base mvapich2-2.0.x86_64 2.0a-9.el7 base mvapich2-2.0-devel.i686 2.0a-9.el7 base mvapich2-2.0-devel.x86_64 2.0a-9.el7 base mvapich2-2.0-doc.noarch 2.0a-9.el7 base mvapich2-2.0-psm.x86_64 2.0a-9.el7 base mvapich2-2.0-psm-devel.x86_64 2.0a-9.el7 base mvapich2-2.2.i686 2.2-4.el7 base mvapich2-2.2.x86_64 2.2-4.el7 base mvapich2-2.2-devel.i686 2.2-4.el7 base mvapich2-2.2-devel.x86_64 2.2-4.el7 base mvapich2-2.2-doc.noarch 2.2-4.el7 base mvapich2-2.2-psm.x86_64 2.2-4.el7 base mvapich2-2.2-psm-devel.x86_64 2.2-4.el7 base mvapich2-2.2-psm2.x86_64 2.2-4.el7 base mvapich2-2.2-psm2-devel.x86_64 2.2-4.el7 base mvapich23.i686 2.3-4.el7 base mvapich23.x86_64 2.3-4.el7 base mvapich23-devel.i686 2.3-4.el7 base mvapich23-devel.x86_64 2.3-4.el7 base mvapich23-doc.noarch 2.3-4.el7 base mvapich23-psm.x86_64 2.3-4.el7 base mvapich23-psm-devel.x86_64 2.3-4.el7 base mvapich23-psm2.x86_64 2.3-4.el7 base mvapich23-psm2-devel.x86_64 2.3-4.el7 base mysql-connector-java.noarch 1:5.1.25-3.el7 base mysql-connector-odbc.x86_64 5.2.5-8.el7 base mythes.i686 1.2.3-7.el7 base mythes.x86_64 1.2.3-7.el7 base mythes-bg.noarch 4.3-6.el7 base mythes-ca.noarch 1.5.0-9.el7 base mythes-cs.noarch 0.20070926-10.el7 base mythes-da.noarch 0.20100629.15.16-6.el7 base mythes-de.noarch 0.20130206-2.el7 base mythes-devel.i686 1.2.3-7.el7 base mythes-devel.x86_64 1.2.3-7.el7 base mythes-el.noarch 0.20070412-11.el7 base mythes-en.noarch 3.0-13.el7 base mythes-es.noarch 0.20130102-2.el7 base mythes-fr.noarch 2.3-4.el7 base mythes-ga.noarch 0.20071001-11.el7 base mythes-hu.noarch 0.20101019-7.el7 base mythes-it.noarch 2.0.9l-10.el7 base mythes-lb.noarch 0.20121128-2.el7 base mythes-lv.noarch 0.9.4-5.el7 base mythes-mi.noarch 0.20080630-9.el7 base mythes-nb.noarch 1:2.0.10-1.el7 base mythes-ne.noarch 1.1-6.el7 base mythes-nl.noarch 0.20130131-2.el7 base mythes-nn.noarch 1:2.0.10-1.el7 base mythes-pl.noarch 1.5-11.el7 base mythes-pt.noarch 0.20060817-11.el7 base mythes-ro.noarch 3.3-7.el7 base mythes-ru.noarch 0.20070613-9.el7 base mythes-sk.noarch 0.20130130-2.el7 base mythes-sl.noarch 0.20130130-2.el7 base mythes-sv.noarch 1.3-6.el7 base mythes-uk.noarch 1.6.5-6.el7 base nafees-web-naskh-fonts.noarch 1.2-11.el7 base nagios-plugins-bacula.x86_64 5.2.13-23.1.el7 base nasm.x86_64 2.10.07-7.el7 base nasm-doc.noarch 2.10.07-7.el7 base nasm-rdoff.x86_64 2.10.07-7.el7 base nautilus.i686 3.26.3.1-7.el7 base nautilus-devel.i686 3.26.3.1-7.el7 base nautilus-devel.x86_64 3.26.3.1-7.el7 base nautilus-extensions.i686 3.26.3.1-7.el7 base navilu-fonts.noarch 1.2-3.el7 base nbdkit.x86_64 1.8.0-4.el7 base nbdkit-basic-plugins.x86_64 1.8.0-4.el7 base nbdkit-devel.x86_64 1.8.0-4.el7 base nbdkit-example-plugins.x86_64 1.8.0-4.el7 base nbdkit-plugin-python-common.x86_64 1.8.0-4.el7 base nbdkit-plugin-python2.x86_64 1.8.0-4.el7 base nbdkit-plugin-vddk.x86_64 1.8.0-4.el7 base ncurses-devel.i686 5.9-14.20130511.el7_4 base ncurses-devel.x86_64 5.9-14.20130511.el7_4 base ncurses-libs.i686 5.9-14.20130511.el7_4 base ncurses-static.i686 5.9-14.20130511.el7_4 base ncurses-static.x86_64 5.9-14.20130511.el7_4 base ncurses-term.noarch 5.9-14.20130511.el7_4 base ndctl-devel.i686 65-5.el7 base ndctl-devel.x86_64 65-5.el7 base ndctl-libs.i686 65-5.el7 base nekohtml.noarch 1.9.14-13.el7 base nekohtml-demo.noarch 1.9.14-13.el7 base nekohtml-javadoc.noarch 1.9.14-13.el7 base neon.i686 0.30.0-4.el7 base neon-devel.i686 0.30.0-4.el7 base neon-devel.x86_64 0.30.0-4.el7 base nepomuk-core-devel.i686 4.10.5-6.el7 base nepomuk-core-devel.x86_64 4.10.5-6.el7 base nepomuk-core-libs.i686 4.10.5-6.el7 base nepomuk-widgets.i686 4.10.5-3.el7 base nepomuk-widgets-devel.i686 4.10.5-3.el7 base nepomuk-widgets-devel.x86_64 4.10.5-3.el7 base net-snmp.x86_64 1:5.7.2-49.el7_9.1 updates net-snmp-agent-libs.i686 1:5.7.2-49.el7_9.1 updates net-snmp-agent-libs.x86_64 1:5.7.2-49.el7_9.1 updates net-snmp-devel.i686 1:5.7.2-49.el7_9.1 updates net-snmp-devel.x86_64 1:5.7.2-49.el7_9.1 updates net-snmp-gui.x86_64 1:5.7.2-49.el7_9.1 updates net-snmp-libs.i686 1:5.7.2-49.el7_9.1 updates net-snmp-libs.x86_64 1:5.7.2-49.el7_9.1 updates net-snmp-perl.x86_64 1:5.7.2-49.el7_9.1 updates net-snmp-python.x86_64 1:5.7.2-49.el7_9.1 updates net-snmp-sysvinit.x86_64 1:5.7.2-49.el7_9.1 updates net-snmp-utils.x86_64 1:5.7.2-49.el7_9.1 updates netcf.x86_64 0.2.8-4.el7 base netcf-devel.i686 0.2.8-4.el7 base netcf-devel.x86_64 0.2.8-4.el7 base netcf-libs.i686 0.2.8-4.el7 base netlabel_tools.x86_64 0.20-5.el7 base netpbm.i686 10.79.00-7.el7 base netpbm.x86_64 10.79.00-7.el7 base netpbm-devel.i686 10.79.00-7.el7 base netpbm-devel.x86_64 10.79.00-7.el7 base netpbm-doc.x86_64 10.79.00-7.el7 base netpbm-progs.x86_64 10.79.00-7.el7 base netsniff-ng.x86_64 0.5.8-10.el7 base nettle.i686 2.7.1-9.el7_9 updates nettle.x86_64 2.7.1-9.el7_9 updates nettle-devel.i686 2.7.1-9.el7_9 updates nettle-devel.x86_64 2.7.1-9.el7_9 updates network-manager-applet.x86_64 1.8.6-2.el7 base newt.i686 0.52.15-4.el7 base newt-devel.i686 0.52.15-4.el7 base newt-devel.x86_64 0.52.15-4.el7 base newt-static.i686 0.52.15-4.el7 base newt-static.x86_64 0.52.15-4.el7 base nextgen-yum4.noarch 4.0.9.2-2.el7_9 extras nfsometer.noarch 1.7-1.el7 base nfstest.noarch 2.1.5-1.el7 base nftables.x86_64 1:0.8-14.el7 base nhn-nanum-brush-fonts.noarch 1.100-9.el7 base nhn-nanum-myeongjo-fonts.noarch 3.020-9.el7 base nhn-nanum-pen-fonts.noarch 1.100-9.el7 base nmap.x86_64 2:6.40-19.el7 base nmap-frontend.noarch 2:6.40-19.el7 base nscd.x86_64 2.17-324.el7_9 updates nspr.i686 4.25.0-2.el7_9 updates nspr.x86_64 4.25.0-2.el7_9 updates nspr-devel.i686 4.25.0-2.el7_9 updates nspr-devel.x86_64 4.25.0-2.el7_9 updates nss.i686 3.53.1-7.el7_9 updates nss.x86_64 3.53.1-7.el7_9 updates nss-devel.i686 3.53.1-7.el7_9 updates nss-devel.x86_64 3.53.1-7.el7_9 updates nss-pam-ldapd.i686 0.8.13-25.el7 base nss-pam-ldapd.x86_64 0.8.13-25.el7 base nss-pem.i686 1.0.3-7.el7 base nss-pkcs11-devel.i686 3.53.1-7.el7_9 updates nss-pkcs11-devel.x86_64 3.53.1-7.el7_9 updates nss-softokn.i686 3.53.1-6.el7_9 updates nss-softokn.x86_64 3.53.1-6.el7_9 updates nss-softokn-devel.i686 3.53.1-6.el7_9 updates nss-softokn-devel.x86_64 3.53.1-6.el7_9 updates nss-softokn-freebl.i686 3.53.1-6.el7_9 updates nss-softokn-freebl.x86_64 3.53.1-6.el7_9 updates nss-softokn-freebl-devel.i686 3.53.1-6.el7_9 updates nss-softokn-freebl-devel.x86_64 3.53.1-6.el7_9 updates nss-sysinit.x86_64 3.53.1-7.el7_9 updates nss-tools.x86_64 3.53.1-7.el7_9 updates nss-util.i686 3.53.1-1.el7_9 updates nss-util.x86_64 3.53.1-1.el7_9 updates nss-util-devel.i686 3.53.1-1.el7_9 updates nss-util-devel.x86_64 3.53.1-1.el7_9 updates nss_compat_ossl.i686 0.9.6-8.el7 base nss_compat_ossl.x86_64 0.9.6-8.el7 base nss_compat_ossl-devel.i686 0.9.6-8.el7 base nss_compat_ossl-devel.x86_64 0.9.6-8.el7 base ntp-doc.noarch 4.2.6p5-29.el7.centos.2 base ntp-perl.noarch 4.2.6p5-29.el7.centos.2 base numactl-devel.i686 2.0.12-5.el7 base numactl-devel.x86_64 2.0.12-5.el7 base numactl-libs.i686 2.0.12-5.el7 base numpy.x86_64 1:1.7.1-13.el7 base numpy-f2py.x86_64 1:1.7.1-13.el7 base nuvola-icon-theme.noarch 4.10.5-4.el7 base nuxwdog.i686 1.0.5-1.el7 base nuxwdog-client-perl.x86_64 1.0.5-1.el7 base nuxwdog-devel.i686 1.0.5-1.el7 base nuxwdog-devel.x86_64 1.0.5-1.el7 base nvme-cli.x86_64 1.8.1-3.el7 base nvmetcli.noarch 0.6-1.el7 base obex-data-server.x86_64 1:0.4.6-6.el7 base obexd.x86_64 1:0.46-5.el7 base objectweb-anttask.noarch 1.3.2-10.el7 base objectweb-anttask-javadoc.noarch 1.3.2-10.el7 base objectweb-asm-javadoc.noarch 3.3.1-9.el7 base objectweb-asm4.noarch 4.0-3.el7 base objectweb-asm4-javadoc.noarch 4.0-3.el7 base ocaml.x86_64 4.05.0-6.el7 base ocaml-brlapi.x86_64 0.6.0-16.el7 base ocaml-calendar.x86_64 2.03.2-7.el7 base ocaml-calendar-devel.x86_64 2.03.2-7.el7 base ocaml-camlp4.x86_64 4.05.0-0.4.gitfc12d8c7.el7 base ocaml-camlp4-devel.x86_64 4.05.0-0.4.gitfc12d8c7.el7 base ocaml-compiler-libs.x86_64 4.05.0-6.el7 base ocaml-csv.x86_64 1.2.3-8.el7 base ocaml-csv-devel.x86_64 1.2.3-8.el7 base ocaml-curses.x86_64 1.0.3-20.el7 base ocaml-curses-devel.x86_64 1.0.3-20.el7 base ocaml-docs.x86_64 4.05.0-6.el7 base ocaml-emacs.x86_64 4.05.0-6.el7 base ocaml-extlib.x86_64 1.5.3-7.el7 base ocaml-extlib-devel.x86_64 1.5.3-7.el7 base ocaml-fileutils.x86_64 0.4.4-9.el7 base ocaml-fileutils-devel.x86_64 0.4.4-9.el7 base ocaml-findlib.x86_64 1.7.3-7.el7 base ocaml-findlib-devel.x86_64 1.7.3-7.el7 base ocaml-gettext.x86_64 0.3.7-1.el7 base ocaml-gettext-devel.x86_64 0.3.7-1.el7 base ocaml-hivex.x86_64 1.3.10-6.11.el7_9 updates ocaml-hivex-devel.x86_64 1.3.10-6.11.el7_9 updates ocaml-libguestfs.x86_64 1:1.40.2-10.el7 base ocaml-libguestfs-devel.x86_64 1:1.40.2-10.el7 base ocaml-libvirt.x86_64 0.6.1.4-17.el7 base ocaml-libvirt-devel.x86_64 0.6.1.4-17.el7 base ocaml-ocamlbuild.x86_64 0.11.0-9.el7 base ocaml-ocamlbuild-devel.x86_64 0.11.0-9.el7 base ocaml-ocamlbuild-doc.x86_64 0.11.0-9.el7 base ocaml-ocamldoc.x86_64 4.05.0-6.el7 base ocaml-runtime.x86_64 4.05.0-6.el7 base ocaml-source.x86_64 4.05.0-6.el7 base ocaml-srpm-macros.noarch 5-2.el7 base ocaml-x11.x86_64 4.05.0-6.el7 base ocaml-xml-light.x86_64 2.3-0.8.svn234.el7 base ocaml-xml-light-devel.x86_64 2.3-0.8.svn234.el7 base oci-register-machine.x86_64 1:0-6.git2b44233.el7 extras oci-systemd-hook.x86_64 1:0.2.0-1.git05e6923.el7_6 extras oci-umount.x86_64 2:2.5-3.el7 extras oddjob-mkhomedir.i686 0.31.5-4.el7 base okular-devel.i686 4.10.5-9.el7 base okular-devel.x86_64 4.10.5-9.el7 base okular-libs.i686 4.10.5-9.el7 base opa-fm.x86_64 1:10.9.0.0.204-1.el7 base opa-libopamgt-devel.x86_64 1:10.9.0.0.204-1.el7 base opa-snapconfig.x86_64 1:10.9.0.0.204-1.el7 base opal.i686 3.10.10-4.el7 base opal.x86_64 3.10.10-4.el7 base opal-devel.i686 3.10.10-4.el7 base opal-devel.x86_64 3.10.10-4.el7 base open-vm-tools.x86_64 11.0.5-3.el7_9.3 updates open-vm-tools-desktop.x86_64 11.0.5-3.el7_9.3 updates open-vm-tools-devel.x86_64 11.0.5-3.el7_9.3 updates open-vm-tools-test.x86_64 11.0.5-3.el7_9.3 updates opencc.i686 0.4.3-3.el7 base opencc-devel.i686 0.4.3-3.el7 base opencc-devel.x86_64 0.4.3-3.el7 base opencc-doc.x86_64 0.4.3-3.el7 base opencc-tools.x86_64 0.4.3-3.el7 base openchange.i686 2.3-3.el7 base openchange.x86_64 2.3-3.el7 base openchange-client.x86_64 2.3-3.el7 base openchange-devel.i686 2.3-3.el7 base openchange-devel.x86_64 2.3-3.el7 base openchange-devel-docs.noarch 2.3-3.el7 base opencryptoki.i686 3.12.1-3.el7_9 updates opencryptoki.x86_64 3.12.1-3.el7_9 updates opencryptoki-devel.i686 3.12.1-3.el7_9 updates opencryptoki-devel.x86_64 3.12.1-3.el7_9 updates opencryptoki-icsftok.i686 3.12.1-3.el7_9 updates opencryptoki-icsftok.x86_64 3.12.1-3.el7_9 updates opencryptoki-libs.i686 3.12.1-3.el7_9 updates opencryptoki-libs.x86_64 3.12.1-3.el7_9 updates opencryptoki-swtok.i686 3.12.1-3.el7_9 updates opencryptoki-swtok.x86_64 3.12.1-3.el7_9 updates opencryptoki-tpmtok.i686 3.12.1-3.el7_9 updates opencryptoki-tpmtok.x86_64 3.12.1-3.el7_9 updates opencv.i686 2.4.5-3.el7 base opencv.x86_64 2.4.5-3.el7 base opencv-core.i686 2.4.5-3.el7 base opencv-core.x86_64 2.4.5-3.el7 base opencv-devel.i686 2.4.5-3.el7 base opencv-devel.x86_64 2.4.5-3.el7 base opencv-devel-docs.noarch 2.4.5-3.el7 base opencv-python.x86_64 2.4.5-3.el7 base opendnssec.x86_64 1.4.7-4.el7 base openhpi.i686 3.8.0-1.el7 base openhpi.x86_64 3.8.0-1.el7 base openhpi-devel.i686 3.8.0-1.el7 base openhpi-devel.x86_64 3.8.0-1.el7 base openhpi-libs.i686 3.8.0-1.el7 base openhpi-libs.x86_64 3.8.0-1.el7 base openjade.i686 1.3.2-45.el7 base openjade.x86_64 1.3.2-45.el7 base openjpeg.x86_64 1.5.1-18.el7 base openjpeg-devel.i686 1.5.1-18.el7 base openjpeg-devel.x86_64 1.5.1-18.el7 base openjpeg-libs.i686 1.5.1-18.el7 base openjpeg2.i686 2.3.1-3.el7_7 base openjpeg2-devel.i686 2.3.1-3.el7_7 base openjpeg2-devel.x86_64 2.3.1-3.el7_7 base openjpeg2-devel-docs.noarch 2.3.1-3.el7_7 base openjpeg2-tools.i686 2.3.1-3.el7_7 base openjpeg2-tools.x86_64 2.3.1-3.el7_7 base openldap.i686 2.4.44-23.el7_9 updates openldap.x86_64 2.4.44-23.el7_9 updates openldap-clients.x86_64 2.4.44-23.el7_9 updates openldap-devel.i686 2.4.44-23.el7_9 updates openldap-devel.x86_64 2.4.44-23.el7_9 updates openldap-servers.x86_64 2.4.44-23.el7_9 updates openldap-servers-sql.x86_64 2.4.44-23.el7_9 updates openlmi.noarch 1.0.2-4.el7 base openlmi-account-doc.noarch 0.5.0-4.el7 base openlmi-fan.x86_64 0.5.0-4.el7 base openlmi-fan-doc.noarch 0.5.0-4.el7 base openlmi-hardware-doc.noarch 0.5.0-4.el7 base openlmi-indicationmanager-libs.i686 0.5.0-4.el7 base openlmi-indicationmanager-libs-devel.i686 0.5.0-4.el7 base openlmi-indicationmanager-libs-devel.x86_64 0.5.0-4.el7 base openlmi-journald.x86_64 0.5.0-4.el7 base openlmi-journald-doc.noarch 0.5.0-4.el7 base openlmi-logicalfile-doc.noarch 0.5.0-4.el7 base openlmi-networking-doc.noarch 0.3.0-3.el7 base openlmi-pcp.noarch 0.5.0-4.el7 base openlmi-powermanagement.x86_64 0.5.0-4.el7 base openlmi-powermanagement-doc.noarch 0.5.0-4.el7 base openlmi-providers.i686 0.5.0-4.el7 base openlmi-providers-devel.i686 0.5.0-4.el7 base openlmi-providers-devel.x86_64 0.5.0-4.el7 base openlmi-python-test.noarch 0.5.0-4.el7 base openlmi-realmd.x86_64 0.5.0-4.el7 base openlmi-realmd-doc.noarch 0.5.0-4.el7 base openlmi-service-doc.noarch 0.5.0-4.el7 base openlmi-software-doc.noarch 0.5.0-4.el7 base openlmi-storage-doc.noarch 0.8.0-2.el7 base openlmi-tools.noarch 0.9-22.el7 base openlmi-tools-doc.noarch 0.9-22.el7 base openmpi.i686 1.10.7-5.el7 base openmpi.x86_64 1.10.7-5.el7 base openmpi-devel.i686 1.10.7-5.el7 base openmpi-devel.x86_64 1.10.7-5.el7 base openmpi3.i686 3.1.3-2.el7 base openmpi3.x86_64 3.1.3-2.el7 base openmpi3-devel.i686 3.1.3-2.el7 base openmpi3-devel.x86_64 3.1.3-2.el7 base openobex.i686 1.5-8.el7 base openobex.x86_64 1.5-8.el7 base openobex-apps.x86_64 1.5-8.el7 base openobex-devel.i686 1.5-8.el7 base openobex-devel.x86_64 1.5-8.el7 base opensc.i686 0.19.0-4.el7_9 updates opensc.x86_64 0.19.0-4.el7_9 updates openscap.i686 1.2.17-13.el7_9 updates openscap.x86_64 1.2.17-13.el7_9 updates openscap-containers.noarch 1.2.17-13.el7_9 updates openscap-devel.i686 1.2.17-13.el7_9 updates openscap-devel.x86_64 1.2.17-13.el7_9 updates openscap-engine-sce.i686 1.2.17-13.el7_9 updates openscap-engine-sce.x86_64 1.2.17-13.el7_9 updates openscap-engine-sce-devel.i686 1.2.17-13.el7_9 updates openscap-engine-sce-devel.x86_64 1.2.17-13.el7_9 updates openscap-extra-probes.x86_64 1.2.17-13.el7_9 updates openscap-python.x86_64 1.2.17-13.el7_9 updates openscap-scanner.x86_64 1.2.17-13.el7_9 updates openscap-utils.x86_64 1.2.17-13.el7_9 updates openslp.i686 1:2.0.0-8.el7_7 base openslp-devel.i686 1:2.0.0-8.el7_7 base openslp-devel.x86_64 1:2.0.0-8.el7_7 base opensm.x86_64 3.3.21-4.el7_9 updates opensm-devel.i686 3.3.21-4.el7_9 updates opensm-devel.x86_64 3.3.21-4.el7_9 updates opensm-libs.i686 3.3.21-4.el7_9 updates opensm-libs.x86_64 3.3.21-4.el7_9 updates opensm-static.i686 3.3.21-4.el7_9 updates opensm-static.x86_64 3.3.21-4.el7_9 updates opensp.i686 1.5.2-19.el7 base opensp.x86_64 1.5.2-19.el7 base opensp-devel.i686 1.5.2-19.el7 base opensp-devel.x86_64 1.5.2-19.el7 base openssh-askpass.x86_64 7.4p1-21.el7 base openssh-cavs.x86_64 7.4p1-21.el7 base openssh-keycat.x86_64 7.4p1-21.el7 base openssh-ldap.x86_64 7.4p1-21.el7 base openssh-server-sysvinit.x86_64 7.4p1-21.el7 base openssl.x86_64 1:1.0.2k-21.el7_9 updates openssl-devel.i686 1:1.0.2k-21.el7_9 updates openssl-devel.x86_64 1:1.0.2k-21.el7_9 updates openssl-libs.i686 1:1.0.2k-21.el7_9 updates openssl-libs.x86_64 1:1.0.2k-21.el7_9 updates openssl-perl.x86_64 1:1.0.2k-21.el7_9 updates openssl-static.i686 1:1.0.2k-21.el7_9 updates openssl-static.x86_64 1:1.0.2k-21.el7_9 updates openssl098e.i686 0.9.8e-29.el7.centos.3 base openwsman-client.i686 2.6.3-7.git4391e5c.el7 base openwsman-perl.x86_64 2.6.3-7.git4391e5c.el7 base openwsman-ruby.x86_64 2.6.3-7.git4391e5c.el7 base openwsman-server.i686 2.6.3-7.git4391e5c.el7 base openwsman-server.x86_64 2.6.3-7.git4391e5c.el7 base oprofile-devel.i686 0.9.9-27.el7 base oprofile-devel.x86_64 0.9.9-27.el7 base oprofile-gui.x86_64 0.9.9-27.el7 base oprofile-jit.i686 0.9.9-27.el7 base oprofile-jit.x86_64 0.9.9-27.el7 base optipng.x86_64 0.7.4-4.el7 base opus.i686 1.0.2-6.el7 base opus-devel.i686 1.0.2-6.el7 base opus-devel.x86_64 1.0.2-6.el7 base orc.i686 0.4.26-1.el7 base orc-compiler.x86_64 0.4.26-1.el7 base orc-devel.i686 0.4.26-1.el7 base orc-devel.x86_64 0.4.26-1.el7 base orc-doc.noarch 0.4.26-1.el7 base ortp.i686 1:0.20.0-10.el7 base ortp.x86_64 1:0.20.0-10.el7 base ortp-devel.i686 1:0.20.0-10.el7 base ortp-devel.x86_64 1:0.20.0-10.el7 base oscap-anaconda-addon.noarch 0.9-3.el7.centos base oscilloscope.noarch 0.13-9.el7 base ostree.x86_64 2019.1-2.el7 extras ostree-devel.x86_64 2019.1-2.el7 extras ostree-fuse.x86_64 2019.1-2.el7 extras ostree-grub2.x86_64 2019.1-2.el7 extras oxygen-cursor-themes.noarch 4.11.19-16.el7_9 updates oxygen-gtk2.i686 1.3.4-3.el7 base oxygen-gtk3.x86_64 1:1.1.4-5.el7 base p11-kit.i686 0.23.5-3.el7 base p11-kit-devel.i686 0.23.5-3.el7 base p11-kit-devel.x86_64 0.23.5-3.el7 base p11-kit-doc.noarch 0.23.5-3.el7 base p11-kit-trust.i686 0.23.5-3.el7 base pacemaker.x86_64 1.1.23-1.el7_9.1 updates pacemaker-cli.x86_64 1.1.23-1.el7_9.1 updates pacemaker-cluster-libs.i686 1.1.23-1.el7_9.1 updates pacemaker-cluster-libs.x86_64 1.1.23-1.el7_9.1 updates pacemaker-cts.x86_64 1.1.23-1.el7_9.1 updates pacemaker-doc.x86_64 1.1.23-1.el7_9.1 updates pacemaker-libs.i686 1.1.23-1.el7_9.1 updates pacemaker-libs.x86_64 1.1.23-1.el7_9.1 updates pacemaker-libs-devel.i686 1.1.23-1.el7_9.1 updates pacemaker-libs-devel.x86_64 1.1.23-1.el7_9.1 updates pacemaker-nagios-plugins-metadata.x86_64 1.1.23-1.el7_9.1 updates pacemaker-remote.x86_64 1.1.23-1.el7_9.1 updates pakchois.i686 0.4-10.el7 base pakchois-devel.i686 0.4-10.el7 base pakchois-devel.x86_64 0.4-10.el7 base paktype-naqsh-fonts.noarch 4.1-2.el7 base paktype-tehreer-fonts.noarch 4.1-2.el7 base pam.i686 1.1.8-23.el7 base pam-devel.i686 1.1.8-23.el7 base pam-devel.x86_64 1.1.8-23.el7 base pam_krb5.i686 2.4.8-6.el7 base pam_krb5.x86_64 2.4.8-6.el7 base pam_pkcs11.i686 0.6.2-30.el7 base pam_pkcs11.x86_64 0.6.2-30.el7 base pam_snapper.i686 0.2.8-4.el7 base pam_snapper.x86_64 0.2.8-4.el7 base pam_ssh_agent_auth.i686 0.10.3-2.21.el7 base pam_ssh_agent_auth.x86_64 0.10.3-2.21.el7 base pango.i686 1.42.4-4.el7_7 base pango-devel.i686 1.42.4-4.el7_7 base pango-devel.x86_64 1.42.4-4.el7_7 base pango-tests.x86_64 1.42.4-4.el7_7 base pangomm.i686 2.40.1-1.el7 base pangomm-devel.i686 2.40.1-1.el7 base pangomm-devel.x86_64 2.40.1-1.el7 base pangomm-doc.noarch 2.40.1-1.el7 base papi.i686 5.2.0-26.el7 base papi.x86_64 5.2.0-26.el7 base papi-devel.i686 5.2.0-26.el7 base papi-devel.x86_64 5.2.0-26.el7 base papi-static.i686 5.2.0-26.el7 base papi-static.x86_64 5.2.0-26.el7 base papi-testsuite.x86_64 5.2.0-26.el7 base paps-devel.i686 0.6.8-28.el7.1 base paps-devel.x86_64 0.6.8-28.el7.1 base paps-libs.i686 0.6.8-28.el7.1 base paratype-pt-sans-caption-fonts.noarch 20101909-3.el7 base parfait-examples.noarch 0.5.4-2.el7 base parfait-javadoc.noarch 0.5.4-2.el7 base parted.i686 3.1-32.el7 base parted-devel.i686 3.1-32.el7 base parted-devel.x86_64 3.1-32.el7 base passivetex.noarch 1.25-17.el7 base patchutils.x86_64 0.3.3-5.el7_9 updates pavucontrol.x86_64 3.0-5.el7 base pax.x86_64 3.4-19.el7 base pciutils-devel.i686 3.5.1-3.el7 base pciutils-devel.x86_64 3.5.1-3.el7 base pciutils-devel-static.i686 3.5.1-3.el7 base pciutils-devel-static.x86_64 3.5.1-3.el7 base pciutils-libs.i686 3.5.1-3.el7 base pcp.x86_64 4.3.2-13.el7_9 updates pcp-conf.x86_64 4.3.2-13.el7_9 updates pcp-devel.i686 4.3.2-12.el7 base pcp-devel.x86_64 4.3.2-13.el7_9 updates pcp-doc.noarch 4.3.2-13.el7_9 updates pcp-export-pcp2elasticsearch.x86_64 4.3.2-13.el7_9 updates pcp-export-pcp2graphite.x86_64 4.3.2-13.el7_9 updates pcp-export-pcp2influxdb.x86_64 4.3.2-13.el7_9 updates pcp-export-pcp2json.x86_64 4.3.2-13.el7_9 updates pcp-export-pcp2spark.x86_64 4.3.2-13.el7_9 updates pcp-export-pcp2xml.x86_64 4.3.2-13.el7_9 updates pcp-export-pcp2zabbix.x86_64 4.3.2-13.el7_9 updates pcp-export-zabbix-agent.x86_64 4.3.2-13.el7_9 updates pcp-gui.x86_64 4.3.2-13.el7_9 updates pcp-import-collectl2pcp.x86_64 4.3.2-13.el7_9 updates pcp-import-ganglia2pcp.x86_64 4.3.2-13.el7_9 updates pcp-import-iostat2pcp.x86_64 4.3.2-13.el7_9 updates pcp-import-mrtg2pcp.x86_64 4.3.2-13.el7_9 updates pcp-import-sar2pcp.x86_64 4.3.2-13.el7_9 updates pcp-libs.i686 4.3.2-12.el7 base pcp-libs.x86_64 4.3.2-13.el7_9 updates pcp-libs-devel.i686 4.3.2-12.el7 base pcp-libs-devel.x86_64 4.3.2-13.el7_9 updates pcp-manager.x86_64 4.3.2-13.el7_9 updates pcp-parfait-agent.noarch 0.5.4-2.el7 base pcp-pmda-activemq.x86_64 4.3.2-13.el7_9 updates pcp-pmda-apache.x86_64 4.3.2-13.el7_9 updates pcp-pmda-bash.x86_64 4.3.2-13.el7_9 updates pcp-pmda-bcc.x86_64 4.3.2-13.el7_9 updates pcp-pmda-bind2.x86_64 4.3.2-13.el7_9 updates pcp-pmda-bonding.x86_64 4.3.2-13.el7_9 updates pcp-pmda-cifs.x86_64 4.3.2-13.el7_9 updates pcp-pmda-cisco.x86_64 4.3.2-13.el7_9 updates pcp-pmda-dbping.x86_64 4.3.2-13.el7_9 updates pcp-pmda-dm.x86_64 4.3.2-13.el7_9 updates pcp-pmda-docker.x86_64 4.3.2-13.el7_9 updates pcp-pmda-ds389.x86_64 4.3.2-13.el7_9 updates pcp-pmda-ds389log.x86_64 4.3.2-13.el7_9 updates pcp-pmda-elasticsearch.x86_64 4.3.2-13.el7_9 updates pcp-pmda-gfs2.x86_64 4.3.2-13.el7_9 updates pcp-pmda-gluster.x86_64 4.3.2-13.el7_9 updates pcp-pmda-gpfs.x86_64 4.3.2-13.el7_9 updates pcp-pmda-gpsd.x86_64 4.3.2-13.el7_9 updates pcp-pmda-haproxy.x86_64 4.3.2-13.el7_9 updates pcp-pmda-infiniband.x86_64 4.3.2-13.el7_9 updates pcp-pmda-json.x86_64 4.3.2-13.el7_9 updates pcp-pmda-libvirt.x86_64 4.3.2-13.el7_9 updates pcp-pmda-lio.x86_64 4.3.2-13.el7_9 updates pcp-pmda-lmsensors.x86_64 4.3.2-13.el7_9 updates pcp-pmda-logger.x86_64 4.3.2-13.el7_9 updates pcp-pmda-lustre.x86_64 4.3.2-13.el7_9 updates pcp-pmda-lustrecomm.x86_64 4.3.2-13.el7_9 updates pcp-pmda-mailq.x86_64 4.3.2-13.el7_9 updates pcp-pmda-memcache.x86_64 4.3.2-13.el7_9 updates pcp-pmda-mic.x86_64 4.3.2-13.el7_9 updates pcp-pmda-mounts.x86_64 4.3.2-13.el7_9 updates pcp-pmda-mysql.x86_64 4.3.2-13.el7_9 updates pcp-pmda-named.x86_64 4.3.2-13.el7_9 updates pcp-pmda-netfilter.x86_64 4.3.2-13.el7_9 updates pcp-pmda-news.x86_64 4.3.2-13.el7_9 updates pcp-pmda-nfsclient.x86_64 4.3.2-13.el7_9 updates pcp-pmda-nginx.x86_64 4.3.2-13.el7_9 updates pcp-pmda-nvidia-gpu.x86_64 4.3.2-13.el7_9 updates pcp-pmda-oracle.x86_64 4.3.2-13.el7_9 updates pcp-pmda-pdns.x86_64 4.3.2-13.el7_9 updates pcp-pmda-perfevent.x86_64 4.3.2-13.el7_9 updates pcp-pmda-postfix.x86_64 4.3.2-13.el7_9 updates pcp-pmda-postgresql.x86_64 4.3.2-13.el7_9 updates pcp-pmda-prometheus.x86_64 4.3.2-13.el7_9 updates pcp-pmda-redis.x86_64 4.3.2-13.el7_9 updates pcp-pmda-roomtemp.x86_64 4.3.2-13.el7_9 updates pcp-pmda-rpm.x86_64 4.3.2-13.el7_9 updates pcp-pmda-rsyslog.x86_64 4.3.2-13.el7_9 updates pcp-pmda-samba.x86_64 4.3.2-13.el7_9 updates pcp-pmda-sendmail.x86_64 4.3.2-13.el7_9 updates pcp-pmda-shping.x86_64 4.3.2-13.el7_9 updates pcp-pmda-slurm.x86_64 4.3.2-13.el7_9 updates pcp-pmda-smart.x86_64 4.3.2-13.el7_9 updates pcp-pmda-snmp.x86_64 4.3.2-13.el7_9 updates pcp-pmda-summary.x86_64 4.3.2-13.el7_9 updates pcp-pmda-systemd.x86_64 4.3.2-13.el7_9 updates pcp-pmda-trace.x86_64 4.3.2-13.el7_9 updates pcp-pmda-unbound.x86_64 4.3.2-13.el7_9 updates pcp-pmda-vmware.x86_64 4.3.2-13.el7_9 updates pcp-pmda-weblog.x86_64 4.3.2-13.el7_9 updates pcp-pmda-zimbra.x86_64 4.3.2-13.el7_9 updates pcp-pmda-zswap.x86_64 4.3.2-13.el7_9 updates pcp-selinux.x86_64 4.3.2-13.el7_9 updates pcp-system-tools.x86_64 4.3.2-13.el7_9 updates pcp-testsuite.x86_64 4.3.2-13.el7_9 updates pcp-webapi.x86_64 4.3.2-13.el7_9 updates pcp-webapp-blinkenlights.noarch 4.3.2-13.el7_9 updates pcp-webapp-grafana.noarch 4.3.2-13.el7_9 updates pcp-webapp-graphite.noarch 4.3.2-13.el7_9 updates pcp-webapp-vector.noarch 4.3.2-13.el7_9 updates pcp-webjs.noarch 4.3.2-13.el7_9 updates pcp-zeroconf.x86_64 4.3.2-13.el7_9 updates pcre.i686 8.32-17.el7 base pcre-devel.i686 8.32-17.el7 base pcre-devel.x86_64 8.32-17.el7 base pcre-static.i686 8.32-17.el7 base pcre-static.x86_64 8.32-17.el7 base pcre-tools.x86_64 8.32-17.el7 base pcre2.i686 10.23-2.el7 base pcre2-devel.i686 10.23-2.el7 base pcre2-devel.x86_64 10.23-2.el7 base pcre2-static.i686 10.23-2.el7 base pcre2-static.x86_64 10.23-2.el7 base pcre2-tools.x86_64 10.23-2.el7 base pcre2-utf16.i686 10.23-2.el7 base pcre2-utf32.i686 10.23-2.el7 base pcre2-utf32.x86_64 10.23-2.el7 base pcs.x86_64 0.9.169-3.el7.centos.1 updates pcs-snmp.x86_64 0.9.169-3.el7.centos.1 updates pcsc-lite-devel.i686 1.8.8-8.el7 base pcsc-lite-devel.x86_64 1.8.8-8.el7 base pcsc-lite-doc.noarch 1.8.8-8.el7 base pcsc-lite-libs.i686 1.8.8-8.el7 base pentaho-libxml.noarch 1.1.3-10.el7 base pentaho-libxml-javadoc.noarch 1.1.3-10.el7 base pentaho-reporting-flow-engine.noarch 1:0.9.4-8.el7 base pentaho-reporting-flow-engine-javadoc.noarch 1:0.9.4-8.el7 base perf.x86_64 3.10.0-1160.31.1.el7 updates perl.x86_64 4:5.16.3-299.el7_9 updates perl-Algorithm-Diff.noarch 1.1902-17.el7 base perl-App-cpanminus.noarch 1.6922-2.el7 base perl-AppConfig.noarch 1.66-20.el7 base perl-Archive-Extract.noarch 1:0.68-3.el7 base perl-Archive-Zip.noarch 1.30-11.el7 base perl-Authen-SASL.noarch 2.15-10.el7 base perl-B-Keywords.noarch 1.13-2.el7 base perl-B-Lint.noarch 1.17-3.el7 base perl-Bit-Vector.x86_64 7.3-3.el7 base perl-Browser-Open.noarch 0.04-6.el7 base perl-CGI.noarch 3.63-4.el7 base perl-CGI-Session.noarch 4.35-16.el7 base perl-CPAN.noarch 1.9800-299.el7_9 updates perl-CPAN-Changes.noarch 0.20-2.el7 base perl-CPAN-Meta.noarch 2.120921-5.el7 base perl-CPAN-Meta-Requirements.noarch 2.122-7.el7 base perl-CPAN-Meta-YAML.noarch 0.008-14.el7 base perl-CPANPLUS.noarch 0.91.38-4.el7 base perl-CPANPLUS-Dist-Build.noarch 0.70-3.el7 base perl-CSS-Tiny.noarch 1.19-5.el7 base perl-Capture-Tiny.noarch 0.24-1.el7 base perl-Carp-Clan.noarch 6.04-10.el7 base perl-Class-Data-Inheritable.noarch 0.08-14.el7 base perl-Class-ISA.noarch 0.36-1010.el7 base perl-Class-Inspector.noarch 1.28-2.el7 base perl-Class-Load.noarch 0.20-3.el7 base perl-Class-Load-XS.x86_64 0.06-3.el7 base perl-Class-Singleton.noarch 1.4-14.el7 base perl-Clone.x86_64 0.34-5.el7 base perl-Config-Simple.noarch 4.59-15.el7 base perl-Config-Tiny.noarch 2.14-7.el7 base perl-Convert-ASN1.noarch 0.26-4.el7 base perl-Crypt-CBC.noarch 2.33-2.el7 base perl-Crypt-DES.x86_64 2.05-20.el7 base perl-Crypt-PasswdMD5.noarch 1.3-17.el7 base perl-Crypt-SSLeay.x86_64 0.64-5.el7 base perl-DBD-Pg.x86_64 2.19.3-4.el7 base perl-DBD-Pg-tests.x86_64 2.19.3-4.el7 base perl-DBIx-Simple.noarch 1.35-7.el7 base perl-Data-OptList.noarch 0.107-9.el7 base perl-Data-Peek.x86_64 0.38-3.el7 base perl-Date-Calc.noarch 6.3-14.el7 base perl-Date-Manip.noarch 6.41-2.el7 base perl-DateTime.x86_64 2:1.04-6.el7 base perl-DateTime-Format-DateParse.noarch 0.05-5.el7 base perl-DateTime-Locale.noarch 0.45-6.el7 base perl-DateTime-TimeZone.noarch 1.70-2.el7 base perl-Devel-CheckLib.noarch 0.99-2.el7 base perl-Devel-Cover.x86_64 1.03-3.el7 base perl-Devel-Cycle.noarch 1.11-13.el7 base perl-Devel-EnforceEncapsulation.noarch 0.50-8.el7 base perl-Devel-Leak.x86_64 0.03-22.el7 base perl-Devel-StackTrace.noarch 1:1.30-2.el7 base perl-Devel-Symdump.noarch 1:2.10-2.el7 base perl-Digest-SHA1.x86_64 2.13-9.el7 base perl-Dist-CheckConflicts.noarch 0.06-2.el7 base perl-Email-Address.noarch 1.898-3.el7 base perl-Encode-devel.x86_64 2.51-7.el7 base perl-Env.noarch 1.04-2.el7 base perl-Exception-Class.noarch 1.37-3.el7 base perl-ExtUtils-CBuilder.noarch 1:0.28.2.6-299.el7_9 updates perl-ExtUtils-Embed.noarch 1.30-299.el7_9 updates perl-ExtUtils-Install.noarch 1.58-299.el7_9 updates perl-FCGI.x86_64 1:0.74-8.el7 base perl-File-CheckTree.noarch 4.42-3.el7 base perl-File-Copy-Recursive.noarch 0.38-14.el7 base perl-File-Fetch.noarch 0.42-2.el7 base perl-File-Find-Rule.noarch 0.33-5.el7 base perl-File-Find-Rule-Perl.noarch 1.13-2.el7 base perl-File-HomeDir.noarch 1.00-4.el7 base perl-File-Inplace.noarch 0.20-8.el7 base perl-File-Remove.noarch 1.52-6.el7 base perl-File-ShareDir.noarch 1.03-8.el7 base perl-File-Slurp.noarch 9999.19-6.el7 base perl-File-Which.noarch 1.09-12.el7 base perl-File-pushd.noarch 1.005-2.el7 base perl-Font-AFM.noarch 1.20-13.el7 base perl-Font-TTF.noarch 1.02-3.el7 base perl-FreezeThaw.noarch 0.5001-10.el7 base perl-GD.x86_64 2.49-3.el7 base perl-GD-Barcode.noarch 1.15-15.el7 base perl-GSSAPI.x86_64 0.28-9.el7 base perl-Git-SVN.noarch 1.8.3.1-23.el7_8 base perl-HTML-Format.noarch 2.10-7.el7 base perl-HTML-FormatText-WithLinks.noarch 0.14-8.el7 base perl-HTML-FormatText-WithLinks-AndTables.noarch 0.02-4.el7 base perl-HTML-Tree.noarch 1:5.03-2.el7 base perl-Hook-LexWrap.noarch 0.24-2.el7 base perl-IO-CaptureOutput.noarch 1.1102-9.el7 base perl-IO-String.noarch 1.08-19.el7 base perl-IO-Tty.x86_64 1.10-11.el7 base perl-IO-Zlib.noarch 1:1.10-299.el7_9 updates perl-IO-stringy.noarch 2.110-22.el7 base perl-IPC-Cmd.noarch 1:0.80-4.el7 base perl-IPC-Run.noarch 0.92-2.el7 base perl-IPC-Run3.noarch 0.045-6.el7 base perl-Image-Base.noarch 1.07-23.el7 base perl-Image-Info.noarch 1.33-3.el7 base perl-Image-Xbm.noarch 1.08-21.el7 base perl-Image-Xpm.noarch 1.09-21.el7 base perl-Inline.noarch 0.53-4.el7 base perl-Inline-Files.noarch 0.68-6.el7 base perl-JSON.noarch 2.59-2.el7 base perl-JSON-PP.noarch 2.27202-2.el7 base perl-JSON-tests.noarch 2.59-2.el7 base perl-LDAP.noarch 1:0.56-6.el7 base perl-LWP-Protocol-https.noarch 6.04-4.el7 base perl-List-MoreUtils.x86_64 0.33-9.el7 base perl-Locale-Codes.noarch 3.26-2.el7 base perl-Locale-Maketext.noarch 1.23-3.el7 base perl-Locale-Maketext-Gettext.noarch 1.27-13.el7 base perl-Locale-Maketext-Simple.noarch 1:0.21-299.el7_9 updates perl-Locale-PO.noarch 0.23-2.el7 base perl-Log-Message.noarch 1:0.08-3.el7 base perl-Log-Message-Simple.noarch 0.10-2.el7 base perl-Mixin-Linewise.noarch 0.004-2.el7 base perl-Module-Build.noarch 2:0.40.05-2.el7 base perl-Module-CoreList.noarch 1:2.76.02-299.el7_9 updates perl-Module-Implementation.noarch 0.06-6.el7 base perl-Module-Install.noarch 1.06-4.el7 base perl-Module-Load.noarch 1:0.24-3.el7 base perl-Module-Load-Conditional.noarch 0.54-3.el7 base perl-Module-Loaded.noarch 1:0.08-299.el7_9 updates perl-Module-Manifest.noarch 1.08-10.el7 base perl-Module-Metadata.noarch 1.000018-2.el7 base perl-Module-Pluggable.noarch 1:4.8-3.el7 base perl-Module-Runtime.noarch 0.013-4.el7 base perl-Module-ScanDeps.noarch 1.10-3.el7 base perl-Module-Signature.noarch 0.73-2.el7 base perl-Net-DNS-Nameserver.x86_64 0.72-6.el7 base perl-Net-DNS-Resolver-Programmable.noarch 0.003-15.el7 base perl-Net-Telnet.noarch 3.03-19.el7 base perl-Newt.x86_64 1.08-36.el7 base perl-Number-Compare.noarch 0.03-6.el7 base perl-Object-Accessor.noarch 1:0.42-299.el7_9 updates perl-Object-Deadly.noarch 0.09-15.el7 base perl-PAR-Dist.noarch 0.49-2.el7 base perl-PCP-LogImport.x86_64 4.3.2-13.el7_9 updates perl-PCP-LogSummary.x86_64 4.3.2-13.el7_9 updates perl-PCP-MMV.x86_64 4.3.2-13.el7_9 updates perl-PCP-PMDA.x86_64 4.3.2-13.el7_9 updates perl-PPI.noarch 1.215-12.el7 base perl-PPI-HTML.noarch 1.08-4.el7 base perl-PPIx-Regexp.noarch 0.034-3.el7 base perl-PPIx-Utilities.noarch 1.001000-8.el7 base perl-Package-Constants.noarch 1:0.02-299.el7_9 updates perl-Package-DeprecationManager.noarch 0.13-7.el7 base perl-Package-Generator.noarch 0.103-14.el7 base perl-Package-Stash.noarch 0.34-2.el7 base perl-Package-Stash-XS.x86_64 0.26-3.el7 base perl-PadWalker.x86_64 1.96-3.el7 base perl-Parallel-Iterator.noarch 1.00-8.el7 base perl-Params-Check.noarch 1:0.38-2.el7 base perl-Params-Util.x86_64 1.07-6.el7 base perl-Params-Validate.x86_64 1.08-4.el7 base perl-Parse-CPAN-Meta.noarch 1:1.4404-5.el7 base perl-Parse-RecDescent.noarch 1.967009-5.el7 base perl-Parse-Yapp.noarch 1.05-50.el7 base perl-Perl-Critic.noarch 1.118-5.el7 base perl-Perl-Critic-More.noarch 1.000-9.el7 base perl-Perl-MinimumVersion.noarch 1.32-2.el7 base perl-Perl-OSType.noarch 1.003-3.el7 base perl-Perl4-CoreLibs.noarch 0.003-7.el7 base perl-Pod-Checker.noarch 1.60-2.el7 base perl-Pod-Coverage.noarch 0.23-3.el7 base perl-Pod-Coverage-TrustPod.noarch 0.100002-5.el7 base perl-Pod-Escapes.noarch 1:1.04-299.el7_9 updates perl-Pod-Eventual.noarch 0.093330-12.el7 base perl-Pod-LaTeX.noarch 0.61-2.el7 base perl-Pod-POM.noarch 0.27-10.el7 base perl-Pod-Parser.noarch 1.61-2.el7 base perl-Pod-Plainer.noarch 1.03-4.el7 base perl-Pod-Spell.noarch 1.04-4.el7 base perl-Probe-Perl.noarch 0.02-3.el7 base perl-Readonly.noarch 1.03-22.el7 base perl-Readonly-XS.x86_64 1.05-15.el7 base perl-SGMLSpm.noarch 1.03ii-31.el7 base perl-SNMP_Session.noarch 1.13-5.el7 base perl-Sort-Versions.noarch 1.5-22.el7 base perl-String-CRC32.x86_64 1.4-19.el7 base perl-String-Format.noarch 1.16-11.el7 base perl-String-ShellQuote.noarch 1.04-10.el7 base perl-String-Similarity.x86_64 1.04-10.el7 base perl-Sub-Exporter.noarch 0.986-2.el7 base perl-Sub-Install.noarch 0.926-6.el7 base perl-Sub-Uplevel.noarch 1:0.24-4.el7 base perl-Switch.noarch 2.16-7.el7 base perl-Syntax-Highlight-Engine-Kate.noarch 0.07-5.el7 base perl-Sys-CPU.x86_64 0.54-4.el7 base perl-Sys-Guestfs.x86_64 1:1.40.2-10.el7 base perl-Sys-MemInfo.x86_64 0.91-7.el7 base perl-Sys-Virt.x86_64 4.5.0-2.el7 base perl-Taint-Runtime.x86_64 0.03-19.el7 base perl-Task-Weaken.noarch 1.04-6.el7 base perl-Template-Toolkit.x86_64 2.24-5.el7 base perl-Term-UI.noarch 0.36-2.el7 base perl-Test-CPAN-Meta.noarch 0.23-2.el7 base perl-Test-ClassAPI.noarch 1.06-14.el7 base perl-Test-Deep.noarch 0.110-2.el7 base perl-Test-Differences.noarch 0.5000-10.el7 base perl-Test-DistManifest.noarch 1.012-6.el7 base perl-Test-EOL.noarch 1.3-7.el7 base perl-Test-Exception.noarch 0.32-2.el7 base perl-Test-Fatal.noarch 0.010-5.el7 base perl-Test-HasVersion.noarch 0.012-7.el7 base perl-Test-Inter.noarch 1.05-2.el7 base perl-Test-Manifest.noarch 1.23-2.el7 base perl-Test-Memory-Cycle.noarch 1.04-17.el7 base perl-Test-MinimumVersion.noarch 0.101080-10.el7 base perl-Test-MockObject.noarch 1.20120301-3.el7 base perl-Test-NoTabs.noarch 1.3-5.el7 base perl-Test-NoWarnings.noarch 1.04-2.el7 base perl-Test-Object.noarch 0.07-17.el7 base perl-Test-Output.noarch 1.01-7.el7 base perl-Test-Perl-Critic.noarch 1.02-10.el7 base perl-Test-Perl-Critic-Policy.noarch 1.118-5.el7 base perl-Test-Pod.noarch 1.48-3.el7 base perl-Test-Pod-Coverage.noarch 1.08-21.el7 base perl-Test-Portability-Files.noarch 0.05-18.el7 base perl-Test-Requires.noarch 0.06-10.el7 base perl-Test-Script.noarch 1.07-12.el7 base perl-Test-Simple.noarch 0.98-243.el7 base perl-Test-Spelling.noarch 0.19-2.el7 base perl-Test-SubCalls.noarch 1.09-14.el7 base perl-Test-Synopsis.noarch 0.06-16.el7 base perl-Test-Taint.x86_64 1.06-5.el7 base perl-Test-Tester.noarch 0.109-3.el7 base perl-Test-Vars.noarch 0.005-3.el7 base perl-Test-Warn.noarch 0.24-6.el7 base perl-Test-Without-Module.noarch 0.17-12.el7 base perl-Text-CSV_XS.x86_64 1.00-3.el7 base perl-Text-CharWidth.x86_64 0.04-18.el7 base perl-Text-Diff.noarch 1.41-5.el7 base perl-Text-Glob.noarch 0.09-7.el7 base perl-Text-Iconv.x86_64 1.7-18.el7 base perl-Text-Soundex.x86_64 3.04-4.el7 base perl-Text-Unidecode.noarch 0.04-20.el7 base perl-Text-WrapI18N.noarch 0.06-17.el7 base perl-Tie-IxHash.noarch 1.22-11.el7 base perl-Time-Piece.x86_64 1.20.1-299.el7_9 updates perl-Tk.x86_64 804.030-6.el7 base perl-Tk-devel.x86_64 804.030-6.el7 base perl-Tree-DAG_Node.noarch 1.12-2.el7 base perl-Try-Tiny.noarch 0.12-2.el7 base perl-UNIVERSAL-can.noarch 1.20120726-3.el7 base perl-UNIVERSAL-isa.noarch 1.20120726-3.el7 base perl-Unicode-Map8.x86_64 0.13-13.el7 base perl-Unicode-String.x86_64 2.09-29.el7 base perl-Version-Requirements.noarch 0.101022-244.el7 base perl-WWW-Curl.x86_64 4.15-13.el7 base perl-XML-Catalog.noarch 1.0.1-1.el7 base perl-XML-DOM.noarch 1.44-19.el7 base perl-XML-Dumper.noarch 0.81-17.el7 base perl-XML-Filter-BufferText.noarch 1.01-17.el7 base perl-XML-Grove.noarch 0.46alpha-52.el7 base perl-XML-Handler-YAWriter.noarch 0.23-18.el7 base perl-XML-LibXML.x86_64 1:2.0018-5.el7 base perl-XML-LibXSLT.x86_64 1.80-4.el7 base perl-XML-RegExp.noarch 0.04-2.el7 base perl-XML-SAX-Writer.noarch 0.53-4.el7 base perl-XML-TokeParser.noarch 0.05-12.el7 base perl-XML-TreeBuilder.noarch 4.2-1.el7 base perl-XML-Twig.noarch 3.44-2.el7 base perl-XML-Writer.noarch 0.623-3.el7 base perl-XML-XPath.noarch 1.13-22.el7 base perl-XML-XPathEngine.noarch 0.14-3.el7 base perl-YAML.noarch 0.84-5.el7 base perl-YAML-Syck.x86_64 1.27-3.el7 base perl-YAML-Tiny.noarch 1.51-6.el7 base perl-autodie.noarch 2.16-2.el7 base perl-core.x86_64 5.16.3-299.el7_9 updates perl-devel.i686 4:5.16.3-299.el7_9 updates perl-devel.x86_64 4:5.16.3-299.el7_9 updates perl-gettext.x86_64 1.05-28.el7 base perl-hivex.x86_64 1.3.10-6.11.el7_9 updates perl-homedir.noarch 1.008010-4.el7 base perl-libintl.x86_64 1.20-12.el7 base perl-libs.i686 4:5.16.3-299.el7_9 updates perl-libs.x86_64 4:5.16.3-299.el7_9 updates perl-libxml-perl.noarch 0.08-19.el7 base perl-local-lib.noarch 1.008010-4.el7 base perl-macros.x86_64 4:5.16.3-299.el7_9 updates perl-prefork.noarch 1.04-11.el7 base perl-tests.x86_64 4:5.16.3-299.el7_9 updates perltidy.noarch 20121207-3.el7 base pesign.x86_64 0.109-10.el7 base phonon.i686 4.6.0-10.el7 base phonon-backend-gstreamer.i686 2:4.6.3-3.el7 base phonon-devel.i686 4.6.0-10.el7 base phonon-devel.x86_64 4.6.0-10.el7 base php.x86_64 5.4.16-48.el7 base php-bcmath.x86_64 5.4.16-48.el7 base php-cli.x86_64 5.4.16-48.el7 base php-common.x86_64 5.4.16-48.el7 base php-dba.x86_64 5.4.16-48.el7 base php-devel.x86_64 5.4.16-48.el7 base php-embedded.x86_64 5.4.16-48.el7 base php-enchant.x86_64 5.4.16-48.el7 base php-fpm.x86_64 5.4.16-48.el7 base php-gd.x86_64 5.4.16-48.el7 base php-intl.x86_64 5.4.16-48.el7 base php-ldap.x86_64 5.4.16-48.el7 base php-mbstring.x86_64 5.4.16-48.el7 base php-mysql.x86_64 5.4.16-48.el7 base php-mysqlnd.x86_64 5.4.16-48.el7 base php-odbc.x86_64 5.4.16-48.el7 base php-pdo.x86_64 5.4.16-48.el7 base php-pear.noarch 1:1.9.4-22.el7 base php-pecl-memcache.x86_64 3.0.8-4.el7 base php-pgsql.x86_64 5.4.16-48.el7 base php-process.x86_64 5.4.16-48.el7 base php-pspell.x86_64 5.4.16-48.el7 base php-recode.x86_64 5.4.16-48.el7 base php-snmp.x86_64 5.4.16-48.el7 base php-soap.x86_64 5.4.16-48.el7 base php-xml.x86_64 5.4.16-48.el7 base php-xmlrpc.x86_64 5.4.16-48.el7 base pidgin.x86_64 2.10.11-9.el7 base pidgin-devel.i686 2.10.11-9.el7 base pidgin-devel.x86_64 2.10.11-9.el7 base pidgin-perl.x86_64 2.10.11-9.el7 base pidgin-sipe.x86_64 1.20.1-2.el7 base pigz.x86_64 2.3.3-1.el7.centos extras pinentry-qt4.x86_64 0.8.1-17.el7 base pixman.i686 0.34.0-1.el7 base pixman-devel.i686 0.34.0-1.el7 base pixman-devel.x86_64 0.34.0-1.el7 base pkgconfig.i686 1:0.27.1-4.el7 base pki-base.noarch 10.5.18-14.el7_9 updates pki-base-java.noarch 10.5.18-14.el7_9 updates pki-ca.noarch 10.5.18-14.el7_9 updates pki-javadoc.noarch 10.5.18-14.el7_9 updates pki-kra.noarch 10.5.18-14.el7_9 updates pki-server.noarch 10.5.18-14.el7_9 updates pki-symkey.x86_64 10.5.18-14.el7_9 updates pki-tools.x86_64 10.5.18-14.el7_9 updates plasma-scriptengine-python.x86_64 4.11.19-16.el7_9 updates plasma-scriptengine-ruby.x86_64 4.11.19-16.el7_9 updates plexus-ant-factory.noarch 1.0-0.12.a2.3.el7 base plexus-ant-factory-javadoc.noarch 1.0-0.12.a2.3.el7 base plexus-archiver.noarch 2.4.2-5.el7_5 base plexus-archiver-javadoc.noarch 2.4.2-5.el7_5 base plexus-bsh-factory.noarch 1.0-0.14.a7.el7 base plexus-bsh-factory-javadoc.noarch 1.0-0.14.a7.el7 base plexus-build-api.noarch 0.0.7-11.el7 base plexus-build-api-javadoc.noarch 0.0.7-11.el7 base plexus-cdc.noarch 1.0-0.20.a14.el7 base plexus-cdc-javadoc.noarch 1.0-0.20.a14.el7 base plexus-cipher.noarch 1.7-5.el7 base plexus-cipher-javadoc.noarch 1.7-5.el7 base plexus-classworlds.noarch 2.4.2-8.el7 base plexus-classworlds-javadoc.noarch 2.4.2-8.el7 base plexus-cli.noarch 1.2-20.el7 base plexus-cli-javadoc.noarch 1.2-20.el7 base plexus-compiler.noarch 2.2-7.el7 base plexus-compiler-extras.noarch 2.2-7.el7 base plexus-compiler-javadoc.noarch 2.2-7.el7 base plexus-compiler-pom.noarch 2.2-7.el7 base plexus-component-api.noarch 1.0-0.16.alpha15.el7 base plexus-component-api-javadoc.noarch 1.0-0.16.alpha15.el7 base plexus-component-factories-pom.noarch 1.0-0.7.alpha11.el7 base plexus-components-pom.noarch 1.2-7.el7 base plexus-containers.noarch 1.5.5-14.el7 base plexus-containers-component-annotations.noarch 1.5.5-14.el7 base plexus-containers-component-javadoc.noarch 1.5.5-14.el7 base plexus-containers-component-metadata.noarch 1.5.5-14.el7 base plexus-containers-container-default.noarch 1.5.5-14.el7 base plexus-containers-javadoc.noarch 1.5.5-14.el7 base plexus-digest.noarch 1.1-15.el7 base plexus-digest-javadoc.noarch 1.1-15.el7 base plexus-i18n.noarch 1.0-0.6.b10.4.el7 base plexus-i18n-javadoc.noarch 1.0-0.6.b10.4.el7 base plexus-interactivity.noarch 1.0-0.14.alpha6.el7 base plexus-interactivity-javadoc.noarch 1.0-0.14.alpha6.el7 base plexus-interpolation.noarch 1.15-8.el7 base plexus-interpolation-javadoc.noarch 1.15-8.el7 base plexus-io.noarch 2.0.5-9.el7 base plexus-io-javadoc.noarch 2.0.5-9.el7 base plexus-mail-sender.noarch 1.0-1.a2.25.el7 base plexus-mail-sender-javadoc.noarch 1.0-1.a2.25.el7 base plexus-pom.noarch 3.3.1-5.el7 base plexus-resources.noarch 1.0-0.15.a7.el7 base plexus-resources-javadoc.noarch 1.0-0.15.a7.el7 base plexus-sec-dispatcher.noarch 1.4-13.el7 base plexus-sec-dispatcher-javadoc.noarch 1.4-13.el7 base plexus-tools-pom.noarch 1.0.11-8.el7 base plexus-utils.noarch 3.0.9-9.el7 base plexus-utils-javadoc.noarch 3.0.9-9.el7 base plexus-velocity.noarch 1.1.8-16.el7 base plexus-velocity-javadoc.noarch 1.1.8-16.el7 base plymouth-core-libs.i686 0.8.9-0.34.20140113.el7.centos base plymouth-devel.i686 0.8.9-0.34.20140113.el7.centos base plymouth-devel.x86_64 0.8.9-0.34.20140113.el7.centos base plymouth-graphics-libs.i686 0.8.9-0.34.20140113.el7.centos base plymouth-plugin-fade-throbber.x86_64 0.8.9-0.34.20140113.el7.centos base plymouth-plugin-script.x86_64 0.8.9-0.34.20140113.el7.centos base plymouth-plugin-space-flares.x86_64 0.8.9-0.34.20140113.el7.centos base plymouth-plugin-throbgress.x86_64 0.8.9-0.34.20140113.el7.centos base plymouth-theme-fade-in.x86_64 0.8.9-0.34.20140113.el7.centos base plymouth-theme-script.x86_64 0.8.9-0.34.20140113.el7.centos base plymouth-theme-solar.x86_64 0.8.9-0.34.20140113.el7.centos base plymouth-theme-spinfinity.x86_64 0.8.9-0.34.20140113.el7.centos base plymouth-theme-spinner.x86_64 0.8.9-0.34.20140113.el7.centos base pm-utils-devel.i686 1.4.1-27.el7 base pm-utils-devel.x86_64 1.4.1-27.el7 base pmdk-convert.x86_64 1.5-1.el7 base pmempool.x86_64 1.5.1-2.1.el7 base pngcrush.x86_64 1.7.59-4.el7 base pngnq.x86_64 1.1-9.el7 base po4a.noarch 0.44-10.el7 base podman.x86_64 1.6.4-29.el7_9 extras podman-docker.noarch 1.6.4-29.el7_9 extras podman-remote.x86_64 1.6.4-29.el7_9 extras policycoreutils-devel.i686 2.5-34.el7 base policycoreutils-devel.x86_64 2.5-34.el7 base policycoreutils-gui.x86_64 2.5-34.el7 base policycoreutils-newrole.x86_64 2.5-34.el7 base policycoreutils-restorecond.x86_64 2.5-34.el7 base policycoreutils-sandbox.x86_64 2.5-34.el7 base polkit.i686 0.112-26.el7 base polkit-devel.i686 0.112-26.el7 base polkit-devel.x86_64 0.112-26.el7 base polkit-docs.noarch 0.112-26.el7 base polkit-qt.i686 0.103.0-10.el7_0 base polkit-qt-devel.i686 0.103.0-10.el7_0 base polkit-qt-devel.x86_64 0.103.0-10.el7_0 base polkit-qt-doc.noarch 0.103.0-10.el7_0 base poppler.i686 0.26.5-43.el7.1 updates poppler.x86_64 0.26.5-43.el7.1 updates poppler-cpp.i686 0.26.5-43.el7.1 updates poppler-cpp.x86_64 0.26.5-43.el7.1 updates poppler-cpp-devel.i686 0.26.5-43.el7.1 updates poppler-cpp-devel.x86_64 0.26.5-43.el7.1 updates poppler-demos.x86_64 0.26.5-43.el7.1 updates poppler-devel.i686 0.26.5-43.el7.1 updates poppler-devel.x86_64 0.26.5-43.el7.1 updates poppler-glib.i686 0.26.5-43.el7.1 updates poppler-glib.x86_64 0.26.5-43.el7.1 updates poppler-glib-devel.i686 0.26.5-43.el7.1 updates poppler-glib-devel.x86_64 0.26.5-43.el7.1 updates poppler-qt.i686 0.26.5-43.el7.1 updates poppler-qt.x86_64 0.26.5-43.el7.1 updates poppler-qt-devel.i686 0.26.5-43.el7.1 updates poppler-qt-devel.x86_64 0.26.5-43.el7.1 updates poppler-utils.x86_64 0.26.5-43.el7.1 updates popt.i686 1.13-16.el7 base popt-devel.i686 1.13-16.el7 base popt-devel.x86_64 1.13-16.el7 base popt-static.i686 1.13-16.el7 base popt-static.x86_64 1.13-16.el7 base postfix-perl-scripts.x86_64 2:2.10.1-9.el7 base postfix-sysvinit.noarch 2:2.10.1-9.el7 base postgresql.i686 9.2.24-7.el7_9 updates postgresql.x86_64 9.2.24-7.el7_9 updates postgresql-contrib.x86_64 9.2.24-7.el7_9 updates postgresql-devel.i686 9.2.24-7.el7_9 updates postgresql-devel.x86_64 9.2.24-7.el7_9 updates postgresql-docs.x86_64 9.2.24-7.el7_9 updates postgresql-jdbc.noarch 9.2.1002-8.el7_8 updates postgresql-jdbc-javadoc.noarch 9.2.1002-8.el7_8 updates postgresql-libs.i686 9.2.24-7.el7_9 updates postgresql-libs.x86_64 9.2.24-7.el7_9 updates postgresql-odbc.x86_64 09.03.0100-2.el7 base postgresql-plperl.x86_64 9.2.24-7.el7_9 updates postgresql-plpython.x86_64 9.2.24-7.el7_9 updates postgresql-pltcl.x86_64 9.2.24-7.el7_9 updates postgresql-server.x86_64 9.2.24-7.el7_9 updates postgresql-static.i686 9.2.24-7.el7_9 updates postgresql-static.x86_64 9.2.24-7.el7_9 updates postgresql-test.x86_64 9.2.24-7.el7_9 updates postgresql-upgrade.x86_64 9.2.24-7.el7_9 updates pothana2000-fonts.noarch 1.3.3-6.el7 base ppp-devel.i686 2.4.5-34.el7_7 base ppp-devel.x86_64 2.4.5-34.el7_7 base pprof.noarch 2.6.1-1.el7 base pps-tools.x86_64 0-0.9.20120407git0deb9c.el7 base pps-tools-devel.i686 0-0.9.20120407git0deb9c.el7 base pps-tools-devel.x86_64 0-0.9.20120407git0deb9c.el7 base pptp.x86_64 1.7.2-22.el7 base pptp-setup.x86_64 1.7.2-22.el7 base prelink.x86_64 0.5.0-9.el7 base procps-ng.i686 3.3.10-28.el7 base procps-ng-devel.i686 3.3.10-28.el7 base procps-ng-devel.x86_64 3.3.10-28.el7 base procps-ng-i18n.x86_64 3.3.10-28.el7 base protobuf.i686 2.5.0-8.el7 base protobuf.x86_64 2.5.0-8.el7 base protobuf-c.i686 1.0.2-3.el7 base protobuf-c.x86_64 1.0.2-3.el7 base protobuf-c-compiler.x86_64 1.0.2-3.el7 base protobuf-c-devel.i686 1.0.2-3.el7 base protobuf-c-devel.x86_64 1.0.2-3.el7 base protobuf-compiler.i686 2.5.0-8.el7 base protobuf-compiler.x86_64 2.5.0-8.el7 base protobuf-devel.i686 2.5.0-8.el7 base protobuf-devel.x86_64 2.5.0-8.el7 base protobuf-emacs.x86_64 2.5.0-8.el7 base protobuf-emacs-el.x86_64 2.5.0-8.el7 base protobuf-java.x86_64 2.5.0-8.el7 base protobuf-javadoc.x86_64 2.5.0-8.el7 base protobuf-lite.i686 2.5.0-8.el7 base protobuf-lite.x86_64 2.5.0-8.el7 base protobuf-lite-devel.i686 2.5.0-8.el7 base protobuf-lite-devel.x86_64 2.5.0-8.el7 base protobuf-lite-static.i686 2.5.0-8.el7 base protobuf-lite-static.x86_64 2.5.0-8.el7 base protobuf-python.x86_64 2.5.0-8.el7 base protobuf-static.i686 2.5.0-8.el7 base protobuf-static.x86_64 2.5.0-8.el7 base protobuf-vim.x86_64 2.5.0-8.el7 base ps_mem.noarch 3.1-7.el7 base psutils.x86_64 1.17-44.el7 base psutils-perl.noarch 1.17-44.el7 base pth.i686 2.0.7-23.el7 base pth-devel.i686 2.0.7-23.el7 base pth-devel.x86_64 2.0.7-23.el7 base ptlib.i686 2.10.10-6.el7 base ptlib.x86_64 2.10.10-6.el7 base ptlib-devel.i686 2.10.10-6.el7 base ptlib-devel.x86_64 2.10.10-6.el7 base publican.noarch 3.2.0-4.el7 base publican-common-db5-web.noarch 3.2.0-4.el7 base publican-common-web.noarch 3.2.0-4.el7 base publican-doc.noarch 3.2.0-4.el7 base publican-redhat.noarch 2.7-6.el7 base pulseaudio.x86_64 10.0-6.el7_9 updates pulseaudio-esound-compat.x86_64 10.0-6.el7_9 updates pulseaudio-gdm-hooks.x86_64 10.0-6.el7_9 updates pulseaudio-libs.i686 10.0-6.el7_9 updates pulseaudio-libs.x86_64 10.0-6.el7_9 updates pulseaudio-libs-devel.i686 10.0-6.el7_9 updates pulseaudio-libs-devel.x86_64 10.0-6.el7_9 updates pulseaudio-libs-glib2.i686 10.0-6.el7_9 updates pulseaudio-libs-glib2.x86_64 10.0-6.el7_9 updates pulseaudio-module-bluetooth.x86_64 10.0-6.el7_9 updates pulseaudio-module-gconf.x86_64 10.0-6.el7_9 updates pulseaudio-module-x11.x86_64 10.0-6.el7_9 updates pulseaudio-module-zeroconf.x86_64 10.0-6.el7_9 updates pulseaudio-qpaeq.x86_64 10.0-6.el7_9 updates pulseaudio-utils.x86_64 10.0-6.el7_9 updates purple-sipe.x86_64 1.20.1-2.el7 base pyOpenSSL-doc.noarch 0.13.1-4.el7 base pycairo-devel.i686 1.8.10-8.el7 base pycairo-devel.x86_64 1.8.10-8.el7 base pygobject2.i686 2.28.6-11.el7 base pygobject2-codegen.x86_64 2.28.6-11.el7 base pygobject2-devel.i686 2.28.6-11.el7 base pygobject2-devel.x86_64 2.28.6-11.el7 base pygobject2-doc.x86_64 2.28.6-11.el7 base pygobject3-devel.x86_64 3.22.0-1.el7_4.1 base pygtk2-codegen.x86_64 2.24.0-9.el7 base pygtk2-devel.i686 2.24.0-9.el7 base pygtk2-devel.x86_64 2.24.0-9.el7 base pygtk2-doc.noarch 2.24.0-9.el7 base pykde4.i686 4.10.5-6.el7 base pykde4-akonadi.i686 4.10.5-6.el7 base pykde4-akonadi.x86_64 4.10.5-6.el7 base pykde4-devel.i686 4.10.5-6.el7 base pykde4-devel.x86_64 4.10.5-6.el7 base pyldb.i686 1.5.4-2.el7 updates pyldb.x86_64 1.5.4-2.el7 updates pyldb-devel.i686 1.5.4-2.el7 updates pyldb-devel.x86_64 1.5.4-2.el7 updates pyorbit.x86_64 2.24.0-15.el7 base pyorbit-devel.i686 2.24.0-15.el7 base pyorbit-devel.x86_64 2.24.0-15.el7 base pyparsing-doc.noarch 1.5.6-9.el7 base pyserial.noarch 2.6-6.el7 base pytalloc.i686 2.1.16-1.el7 base pytalloc-devel.i686 2.1.16-1.el7 base pytalloc-devel.x86_64 2.1.16-1.el7 base pytest.noarch 2.7.0-2.el7 base python.x86_64 2.7.5-90.el7 updates python-appindicator.x86_64 12.10.0-13.el7 base python-babel.noarch 0.9.6-8.el7 base python-backports-lzma.x86_64 0.0.2-9.el7 extras python-bcc.x86_64 0.10.0-1.el7 base python-beaker.noarch 1.5.4-10.el7 base python-blinker.noarch 1.3-2.el7 extras python-blivet.noarch 1:0.61.15.76-1.el7_9 updates python-boto.noarch 2.25.0-2.el7.centos extras python-centos.noarch 0.1.1-2.el7.centos extras python-cffi-doc.noarch 1.6.0-5.el7 base python-cheetah.x86_64 2.4.4-5.el7.centos extras python-cherrypy.noarch 3.2.2-4.el7 base python-construct.noarch 2.5.1-4.el7 extras python-cpio.noarch 0.1-16.el7 base python-criu.x86_64 3.12-2.el7 base python-crypto.x86_64 2.6.1-1.el7.centos extras python-cups-doc.x86_64 1.9.63-6.el7 base python-custodia-ipa.noarch 0.3.1-4.el7 base python-debug.x86_64 2.7.5-90.el7 updates python-devel.x86_64 2.7.5-90.el7 updates python-dmidecode.x86_64 3.12.2-4.el7 base python-docker-py.noarch 1:1.10.6-11.el7 extras python-docker-pycreds.noarch 1:0.3.0-11.el7 extras python-docs.noarch 2.7.5-3.el7 base python-dtopt.noarch 0.1-13.el7 base python-ecdsa.noarch 0.11-3.el7.centos extras python-firewall.noarch 0.6.3-13.el7_9 updates python-flask.noarch 1:0.10.1-5.el7_7 extras python-flask-doc.noarch 1:0.10.1-5.el7_7 extras python-fpconst.noarch 0.7.3-12.el7 base python-gevent.x86_64 1.0-3.el7 extras python-gpod.x86_64 0.8.2-12.el7 base python-greenlet.x86_64 0.4.2-4.el7 extras python-greenlet-devel.x86_64 0.4.2-4.el7 extras python-gudev.x86_64 147.2-7.el7 base python-gunicorn.noarch 18.0-2.el7 extras python-hivex.x86_64 1.3.10-6.11.el7_9 updates python-httplib2.noarch 0.9.2-1.el7 extras python-hwdata.noarch 1.7.3-4.el7 base python-imgcreate.x86_64 1:21.4-2.el7 extras python-inotify-examples.noarch 0.9.4-4.el7 base python-isomd5sum.x86_64 1:1.0.10-5.el7 base python-itsdangerous.noarch 0.23-2.el7 extras python-jinja2.noarch 2.7.2-4.el7 base python-jsonpatch.noarch 1.2-4.el7 base python-jsonpointer.noarch 1.9-2.el7 base python-kerberos.x86_64 1.1-15.el7 base python-kitchen-doc.noarch 1.1.1-5.el7 base python-krbV.x86_64 1.0.90-8.el7 base python-libcomps-doc.noarch 0.1.8-14.el7 extras python-libguestfs.x86_64 1:1.40.2-10.el7 base python-libipa_hbac.x86_64 1.16.5-10.el7_9.8 updates python-librepo.x86_64 1.8.1-8.el7_9 updates python-libs.i686 2.7.5-90.el7 updates python-libs.x86_64 2.7.5-90.el7 updates python-libsss_nss_idmap.x86_64 1.16.5-10.el7_9.8 updates python-libteam.x86_64 1.29-3.el7 base python-libvoikko.noarch 3.6-5.el7 base python-lockfile.noarch 1:0.9.1-4.el7.centos extras python-lxml-docs.noarch 3.2.1-4.el7 base python-magic.noarch 5.11-37.el7 base python-mako.noarch 0.8.1-2.el7 base python-markdown.noarch 2.4.1-1.el7.centos extras python-markupsafe.x86_64 0.11-10.el7 base python-matplotlib.x86_64 1.2.0-16.el7 base python-matplotlib-doc.x86_64 1.2.0-16.el7 base python-matplotlib-qt4.x86_64 1.2.0-16.el7 base python-matplotlib-tk.x86_64 1.2.0-16.el7 base python-memcached.noarch 1.48-4.el7 base python-multilib-conf.noarch 1.2-2.el7.centos extras python-munch.noarch 2.0.2-2.el7.centos extras python-mutagen.noarch 1.20-6.el7 base python-nose.noarch 1.3.7-1.el7 base python-nose-docs.noarch 1.3.7-1.el7 base python-nss-doc.x86_64 0.16.0-3.el7 base python-paramiko.noarch 2.1.1-9.el7 base python-paramiko-doc.noarch 2.1.1-9.el7 base python-passlib.noarch 1.6.5-2.el7 extras python-paste.noarch 1.7.5.1-9.20111221hg1498.el7 base python-pcp.x86_64 4.3.2-13.el7_9 updates python-perf.x86_64 3.10.0-1160.31.1.el7 updates python-pillow.i686 2.0.0-21.gitd1c6db8.el7 base python-pillow-devel.i686 2.0.0-21.gitd1c6db8.el7 base python-pillow-devel.x86_64 2.0.0-21.gitd1c6db8.el7 base python-pillow-doc.x86_64 2.0.0-21.gitd1c6db8.el7 base python-pillow-qt.x86_64 2.0.0-21.gitd1c6db8.el7 base python-pillow-sane.x86_64 2.0.0-21.gitd1c6db8.el7 base python-pillow-tk.x86_64 2.0.0-21.gitd1c6db8.el7 base python-prettytable.noarch 0.7.2-3.el7 base python-psycopg2.x86_64 2.5.1-4.el7 base python-psycopg2-debug.x86_64 2.5.1-4.el7 base python-psycopg2-doc.x86_64 2.5.1-4.el7 base python-py.noarch 1.4.32-1.el7 base python-pyelftools.noarch 0.22-0.5.git20130619.a1d9681.el7 extras python-pygments.noarch 1.4-10.el7 base python-pytoml.noarch 0.1.14-1.git7dea353.el7 extras python-qpid.noarch 0.32-9.el7 extras python-qpid-common.noarch 0.32-9.el7 extras python-qpid-proton.x86_64 0.14.0-2.el7 extras python-qpid-proton-docs.noarch 0.14.0-2.el7 extras python-qrcode.noarch 5.0.1-1.el7 base python-rados.x86_64 1:10.2.5-4.el7 base python-rbd.x86_64 1:10.2.5-4.el7 base python-reportlab.x86_64 2.5-10.el7 base python-reportlab-docs.x86_64 2.5-10.el7 base python-requests-kerberos.noarch 0.7.0-2.el7 extras python-rhsm.x86_64 1.19.10-1.el7_4 base python-rhsm-certificates.x86_64 1.19.10-1.el7_4 base python-rpm-macros.noarch 3-34.el7 base python-rtslib.noarch 2.1.74-1.el7_9 updates python-rtslib-doc.noarch 2.1.74-1.el7_9 updates python-saslwrapper.x86_64 0.16-5.el7 extras python-semantic_version.noarch 2.4.2-2.el7 extras python-semantic_version-doc.noarch 2.4.2-2.el7 extras python-slip-gtk.noarch 0.4.0-4.el7 base python-smbc-doc.x86_64 1.0.13-8.el7 base python-smbios.x86_64 2.3.3-8.el7 base python-sphinx.noarch 1.1.3-11.el7 base python-sphinx-doc.noarch 1.1.3-11.el7 base python-sphinx-theme-alabaster.noarch 0.7.9-1.el7 extras python-sphinx-theme-openlmi.noarch 0.5.0-4.el7 base python-sqlalchemy.x86_64 0.9.8-2.el7 base python-sss.x86_64 1.16.5-10.el7_9.8 updates python-sss-murmur.x86_64 1.16.5-10.el7_9.8 updates python-sssdconfig.noarch 1.16.5-10.el7_9.8 updates python-syspurpose.x86_64 1.24.48-1.el7.centos updates python-tdb.i686 1.3.18-1.el7 base python-tempita.noarch 0.5.1-6.el7 base python-test.x86_64 2.7.5-90.el7 updates python-tevent.x86_64 0.9.39-1.el7 base python-tools.x86_64 2.7.5-90.el7 updates python-tornado.x86_64 4.2.1-5.el7 base python-tornado-doc.x86_64 4.2.1-5.el7 base python-twisted-core.x86_64 12.2.0-5.el7 base python-twisted-core-doc.x86_64 12.2.0-5.el7 base python-twisted-web.x86_64 12.1.0-7.el7_8 base python-twisted-words.x86_64 12.2.0-4.el7 base python-virtualenv.noarch 15.1.0-4.el7_7 base python-volume_key.x86_64 0.3.9-9.el7 base python-webob.noarch 1.2.3-7.el7 base python-websocket-client.noarch 0.56.0-3.git3c25814.el7 extras python-webtest.noarch 1.3.4-6.el7 base python-werkzeug.noarch 0.9.1-2.el7 extras python-werkzeug-doc.noarch 0.9.1-2.el7 extras python-which.noarch 1.1.0-12.el7 base python-zope-interface.x86_64 4.0.5-4.el7 base python2-blivet3.noarch 1:3.1.3-3.el7 base python2-bytesize.x86_64 1.2-1.el7 base python2-caribou.noarch 0.4.21-1.el7 base python2-createrepo_c.x86_64 0.10.0-20.el7 extras python2-crypto.x86_64 2.6.1-15.el7 extras python2-dnf.noarch 4.0.9.2-2.el7_9 extras python2-dnf-plugin-migrate.noarch 4.0.2.2-3.el7_6 extras python2-dnf-plugin-versionlock.noarch 4.0.2.2-3.el7_6 extras python2-dnf-plugins-core.noarch 4.0.2.2-3.el7_6 extras python2-gexiv2.x86_64 0.10.8-1.el7 base python2-gluster.x86_64 6.0-49.1.el7 updates python2-hawkey.x86_64 0.22.5-2.el7_9 extras python2-ipaclient.noarch 4.6.8-5.el7.centos.6 updates python2-ipalib.noarch 4.6.8-5.el7.centos.6 updates python2-ipaserver.noarch 4.6.8-5.el7.centos.6 updates python2-jmespath.noarch 0.9.0-3.el7 extras python2-keycloak-httpd-client-install.noarch 0.8-1.el7 base python2-koji.noarch 1.15.1-1.el7.centos extras python2-koji-cli-plugins.noarch 1.15.1-1.el7.centos extras python2-libcomps.x86_64 0.1.8-14.el7 extras python2-libdnf.x86_64 0.22.5-2.el7_9 extras python2-libfdt.x86_64 1.4.6-1.el7 extras python2-multilib.noarch 1.2-2.el7.centos extras python2-rpm-macros.noarch 3-34.el7 base python2-smartcols.x86_64 0.3.0-2.el7 extras python2-solv.x86_64 0.6.34-4.el7 base python3.i686 3.6.8-18.el7 updates python3.x86_64 3.6.8-18.el7 updates python3-debug.i686 3.6.8-18.el7 updates python3-debug.x86_64 3.6.8-18.el7 updates python3-devel.i686 3.6.8-18.el7 updates python3-devel.x86_64 3.6.8-18.el7 updates python3-idle.i686 3.6.8-18.el7 updates python3-idle.x86_64 3.6.8-18.el7 updates python3-libcomps.x86_64 0.1.8-14.el7 extras python3-libs.i686 3.6.8-18.el7 updates python3-libs.x86_64 3.6.8-18.el7 updates python3-rpm-generators.noarch 6-2.el7 base python3-rpm-macros.noarch 3-34.el7 base python3-test.i686 3.6.8-18.el7 updates python3-test.x86_64 3.6.8-18.el7 updates python3-tkinter.i686 3.6.8-18.el7 updates python3-tkinter.x86_64 3.6.8-18.el7 updates python3-wheel.noarch 0.31.1-5.el7_7 base qca-ossl.i686 2.0.0-0.19.beta3.el7 base qca-ossl.x86_64 2.0.0-0.19.beta3.el7 base qca2.i686 2.0.3-7.el7 base qca2-devel.i686 2.0.3-7.el7 base qca2-devel.x86_64 2.0.3-7.el7 base qdox-javadoc.noarch 1.12.1-10.el7 base qemu-img.x86_64 10:1.5.3-175.el7_9.4 updates qemu-kvm.x86_64 10:1.5.3-175.el7_9.4 updates qemu-kvm-common.x86_64 10:1.5.3-175.el7_9.4 updates qemu-kvm-tools.x86_64 10:1.5.3-175.el7_9.4 updates qgnomeplatform.i686 0.3-5.el7 base qimageblitz.i686 0.0.6-7.el7 base qimageblitz-devel.i686 0.0.6-7.el7 base qimageblitz-devel.x86_64 0.0.6-7.el7 base qimageblitz-examples.x86_64 0.0.6-7.el7 base qjson.i686 0.8.1-4.el7 base qjson-devel.i686 0.8.1-4.el7 base qjson-devel.x86_64 0.8.1-4.el7 base qpdf.x86_64 5.0.1-4.el7 base qpdf-devel.i686 5.0.1-4.el7 base qpdf-devel.x86_64 5.0.1-4.el7 base qpdf-doc.noarch 5.0.1-4.el7 base qpdf-libs.i686 5.0.1-4.el7 base qpid-proton-c.x86_64 0.14.0-2.el7 extras qpid-proton-c-devel.x86_64 0.14.0-2.el7 extras qpid-proton-c-docs.noarch 0.14.0-2.el7 extras qpid-proton-cpp.x86_64 0.14.0-2.el7 extras qpid-proton-cpp-devel.x86_64 0.14.0-2.el7 extras qpid-proton-cpp-docs.noarch 0.14.0-2.el7 extras qrencode.x86_64 3.4.1-3.el7 base qrencode-devel.i686 3.4.1-3.el7 base qrencode-devel.x86_64 3.4.1-3.el7 base qrencode-libs.i686 3.4.1-3.el7 base qt.i686 1:4.8.7-9.el7_9 updates qt.x86_64 1:4.8.7-9.el7_9 updates qt-assistant.x86_64 1:4.8.7-9.el7_9 updates qt-config.x86_64 1:4.8.7-9.el7_9 updates qt-demos.x86_64 1:4.8.7-9.el7_9 updates qt-devel.i686 1:4.8.7-9.el7_9 updates qt-devel.x86_64 1:4.8.7-9.el7_9 updates qt-devel-private.noarch 1:4.8.7-9.el7_9 updates qt-doc.noarch 1:4.8.7-9.el7_9 updates qt-examples.x86_64 1:4.8.7-9.el7_9 updates qt-mysql.i686 1:4.8.7-9.el7_9 updates qt-mysql.x86_64 1:4.8.7-9.el7_9 updates qt-odbc.i686 1:4.8.7-9.el7_9 updates qt-odbc.x86_64 1:4.8.7-9.el7_9 updates qt-postgresql.i686 1:4.8.7-9.el7_9 updates qt-postgresql.x86_64 1:4.8.7-9.el7_9 updates qt-qdbusviewer.x86_64 1:4.8.7-9.el7_9 updates qt-qvfb.x86_64 1:4.8.7-9.el7_9 updates qt-x11.i686 1:4.8.7-9.el7_9 updates qt-x11.x86_64 1:4.8.7-9.el7_9 updates qt3.i686 3.3.8b-51.el7 base qt3-MySQL.i686 3.3.8b-51.el7 base qt3-MySQL.x86_64 3.3.8b-51.el7 base qt3-ODBC.i686 3.3.8b-51.el7 base qt3-ODBC.x86_64 3.3.8b-51.el7 base qt3-PostgreSQL.i686 3.3.8b-51.el7 base qt3-PostgreSQL.x86_64 3.3.8b-51.el7 base qt3-config.x86_64 3.3.8b-51.el7 base qt3-designer.x86_64 3.3.8b-51.el7 base qt3-devel.i686 3.3.8b-51.el7 base qt3-devel.x86_64 3.3.8b-51.el7 base qt3-devel-docs.x86_64 3.3.8b-51.el7 base qt5-assistant.x86_64 5.9.7-1.el7 base qt5-designer.i686 5.9.7-1.el7 base qt5-designer.x86_64 5.9.7-1.el7 base qt5-doctools.x86_64 5.9.7-1.el7 base qt5-linguist.x86_64 5.9.7-1.el7 base qt5-qdbusviewer.x86_64 5.9.7-1.el7 base qt5-qt3d.i686 5.9.7-1.el7 base qt5-qt3d.x86_64 5.9.7-1.el7 base qt5-qt3d-devel.i686 5.9.7-1.el7 base qt5-qt3d-devel.x86_64 5.9.7-1.el7 base qt5-qt3d-doc.noarch 5.9.7-1.el7 base qt5-qt3d-examples.x86_64 5.9.7-1.el7 base qt5-qtbase.i686 5.9.7-5.el7_9 updates qt5-qtbase.x86_64 5.9.7-5.el7_9 updates qt5-qtbase-common.noarch 5.9.7-5.el7_9 updates qt5-qtbase-devel.i686 5.9.7-5.el7_9 updates qt5-qtbase-devel.x86_64 5.9.7-5.el7_9 updates qt5-qtbase-doc.x86_64 5.9.7-5.el7_9 updates qt5-qtbase-examples.x86_64 5.9.7-5.el7_9 updates qt5-qtbase-gui.i686 5.9.7-5.el7_9 updates qt5-qtbase-gui.x86_64 5.9.7-5.el7_9 updates qt5-qtbase-mysql.i686 5.9.7-5.el7_9 updates qt5-qtbase-mysql.x86_64 5.9.7-5.el7_9 updates qt5-qtbase-odbc.i686 5.9.7-5.el7_9 updates qt5-qtbase-odbc.x86_64 5.9.7-5.el7_9 updates qt5-qtbase-postgresql.i686 5.9.7-5.el7_9 updates qt5-qtbase-postgresql.x86_64 5.9.7-5.el7_9 updates qt5-qtbase-static.i686 5.9.7-5.el7_9 updates qt5-qtbase-static.x86_64 5.9.7-5.el7_9 updates qt5-qtcanvas3d.x86_64 5.9.7-1.el7 base qt5-qtcanvas3d-doc.noarch 5.9.7-1.el7 base qt5-qtcanvas3d-examples.x86_64 5.9.7-1.el7 base qt5-qtconnectivity.i686 5.9.7-1.el7 base qt5-qtconnectivity.x86_64 5.9.7-1.el7 base qt5-qtconnectivity-devel.i686 5.9.7-1.el7 base qt5-qtconnectivity-devel.x86_64 5.9.7-1.el7 base qt5-qtconnectivity-doc.noarch 5.9.7-1.el7 base qt5-qtconnectivity-examples.x86_64 5.9.7-1.el7 base qt5-qtdeclarative.i686 5.9.7-1.el7 base qt5-qtdeclarative.x86_64 5.9.7-1.el7 base qt5-qtdeclarative-devel.i686 5.9.7-1.el7 base qt5-qtdeclarative-devel.x86_64 5.9.7-1.el7 base qt5-qtdeclarative-doc.x86_64 5.9.7-1.el7 base qt5-qtdeclarative-examples.x86_64 5.9.7-1.el7 base qt5-qtdeclarative-static.i686 5.9.7-1.el7 base qt5-qtdeclarative-static.x86_64 5.9.7-1.el7 base qt5-qtdoc.noarch 5.9.7-1.el7 base qt5-qtenginio.i686 1:1.6.2-2.el7 base qt5-qtenginio.x86_64 1:1.6.2-2.el7 base qt5-qtenginio-devel.i686 1:1.6.2-2.el7 base qt5-qtenginio-devel.x86_64 1:1.6.2-2.el7 base qt5-qtenginio-doc.noarch 1:1.6.2-2.el7 base qt5-qtenginio-examples.x86_64 1:1.6.2-2.el7 base qt5-qtgraphicaleffects.i686 5.9.7-1.el7 base qt5-qtgraphicaleffects.x86_64 5.9.7-1.el7 base qt5-qtgraphicaleffects-doc.noarch 5.9.7-1.el7 base qt5-qtimageformats.i686 5.9.7-2.el7_9 updates qt5-qtimageformats.x86_64 5.9.7-2.el7_9 updates qt5-qtimageformats-doc.noarch 5.9.7-2.el7_9 updates qt5-qtlocation.i686 5.9.7-1.el7 base qt5-qtlocation.x86_64 5.9.7-1.el7 base qt5-qtlocation-devel.i686 5.9.7-1.el7 base qt5-qtlocation-devel.x86_64 5.9.7-1.el7 base qt5-qtlocation-doc.noarch 5.9.7-1.el7 base qt5-qtlocation-examples.x86_64 5.9.7-1.el7 base qt5-qtmultimedia.i686 5.9.7-1.el7 base qt5-qtmultimedia.x86_64 5.9.7-1.el7 base qt5-qtmultimedia-devel.i686 5.9.7-1.el7 base qt5-qtmultimedia-devel.x86_64 5.9.7-1.el7 base qt5-qtmultimedia-doc.noarch 5.9.7-1.el7 base qt5-qtmultimedia-examples.i686 5.9.7-1.el7 base qt5-qtmultimedia-examples.x86_64 5.9.7-1.el7 base qt5-qtquickcontrols.x86_64 5.9.7-1.el7 base qt5-qtquickcontrols-doc.noarch 5.9.7-1.el7 base qt5-qtquickcontrols-examples.x86_64 5.9.7-1.el7 base qt5-qtquickcontrols2.i686 5.9.7-1.el7 base qt5-qtquickcontrols2.x86_64 5.9.7-1.el7 base qt5-qtquickcontrols2-devel.i686 5.9.7-1.el7 base qt5-qtquickcontrols2-devel.x86_64 5.9.7-1.el7 base qt5-qtquickcontrols2-doc.x86_64 5.9.7-1.el7 base qt5-qtquickcontrols2-examples.x86_64 5.9.7-1.el7 base qt5-qtscript.i686 5.9.7-1.el7 base qt5-qtscript.x86_64 5.9.7-1.el7 base qt5-qtscript-devel.i686 5.9.7-1.el7 base qt5-qtscript-devel.x86_64 5.9.7-1.el7 base qt5-qtscript-doc.noarch 5.9.7-1.el7 base qt5-qtscript-examples.x86_64 5.9.7-1.el7 base qt5-qtsensors.i686 5.9.7-1.el7 base qt5-qtsensors.x86_64 5.9.7-1.el7 base qt5-qtsensors-devel.i686 5.9.7-1.el7 base qt5-qtsensors-devel.x86_64 5.9.7-1.el7 base qt5-qtsensors-doc.noarch 5.9.7-1.el7 base qt5-qtsensors-examples.i686 5.9.7-1.el7 base qt5-qtsensors-examples.x86_64 5.9.7-1.el7 base qt5-qtserialbus.i686 5.9.7-1.el7 base qt5-qtserialbus.x86_64 5.9.7-1.el7 base qt5-qtserialbus-devel.i686 5.9.7-1.el7 base qt5-qtserialbus-devel.x86_64 5.9.7-1.el7 base qt5-qtserialbus-doc.noarch 5.9.7-1.el7 base qt5-qtserialbus-examples.x86_64 5.9.7-1.el7 base qt5-qtserialport.i686 5.9.7-1.el7 base qt5-qtserialport.x86_64 5.9.7-1.el7 base qt5-qtserialport-devel.i686 5.9.7-1.el7 base qt5-qtserialport-devel.x86_64 5.9.7-1.el7 base qt5-qtserialport-doc.noarch 5.9.7-1.el7 base qt5-qtserialport-examples.x86_64 5.9.7-1.el7 base qt5-qtsvg.i686 5.9.7-1.el7 base qt5-qtsvg.x86_64 5.9.7-1.el7 base qt5-qtsvg-devel.i686 5.9.7-1.el7 base qt5-qtsvg-devel.x86_64 5.9.7-1.el7 base qt5-qtsvg-doc.noarch 5.9.7-1.el7 base qt5-qtsvg-examples.x86_64 5.9.7-1.el7 base qt5-qttools.x86_64 5.9.7-1.el7 base qt5-qttools-common.noarch 5.9.7-1.el7 base qt5-qttools-devel.i686 5.9.7-1.el7 base qt5-qttools-devel.x86_64 5.9.7-1.el7 base qt5-qttools-doc.noarch 5.9.7-1.el7 base qt5-qttools-examples.x86_64 5.9.7-1.el7 base qt5-qttools-libs-designer.i686 5.9.7-1.el7 base qt5-qttools-libs-designer.x86_64 5.9.7-1.el7 base qt5-qttools-libs-designercomponents.i686 5.9.7-1.el7 base qt5-qttools-libs-designercomponents.x86_64 5.9.7-1.el7 base qt5-qttools-libs-help.i686 5.9.7-1.el7 base qt5-qttools-libs-help.x86_64 5.9.7-1.el7 base qt5-qttools-static.i686 5.9.7-1.el7 base qt5-qttools-static.x86_64 5.9.7-1.el7 base qt5-qttranslations.noarch 5.9.7-1.el7 base qt5-qtwayland.i686 5.9.7-1.el7 base qt5-qtwayland.x86_64 5.9.7-1.el7 base qt5-qtwayland-devel.i686 5.9.7-1.el7 base qt5-qtwayland-devel.x86_64 5.9.7-1.el7 base qt5-qtwayland-doc.noarch 5.9.7-1.el7 base qt5-qtwayland-examples.x86_64 5.9.7-1.el7 base qt5-qtwebchannel.i686 5.9.7-1.el7 base qt5-qtwebchannel.x86_64 5.9.7-1.el7 base qt5-qtwebchannel-devel.i686 5.9.7-1.el7 base qt5-qtwebchannel-devel.x86_64 5.9.7-1.el7 base qt5-qtwebchannel-doc.noarch 5.9.7-1.el7 base qt5-qtwebchannel-examples.x86_64 5.9.7-1.el7 base qt5-qtwebsockets.i686 5.9.7-1.el7 base qt5-qtwebsockets.x86_64 5.9.7-1.el7 base qt5-qtwebsockets-devel.i686 5.9.7-1.el7 base qt5-qtwebsockets-devel.x86_64 5.9.7-1.el7 base qt5-qtwebsockets-doc.noarch 5.9.7-1.el7 base qt5-qtwebsockets-examples.x86_64 5.9.7-1.el7 base qt5-qtx11extras.i686 5.9.7-1.el7 base qt5-qtx11extras.x86_64 5.9.7-1.el7 base qt5-qtx11extras-devel.i686 5.9.7-1.el7 base qt5-qtx11extras-devel.x86_64 5.9.7-1.el7 base qt5-qtx11extras-doc.noarch 5.9.7-1.el7 base qt5-qtxmlpatterns.i686 5.9.7-1.el7 base qt5-qtxmlpatterns.x86_64 5.9.7-1.el7 base qt5-qtxmlpatterns-devel.i686 5.9.7-1.el7 base qt5-qtxmlpatterns-devel.x86_64 5.9.7-1.el7 base qt5-qtxmlpatterns-doc.noarch 5.9.7-1.el7 base qt5-qtxmlpatterns-examples.x86_64 5.9.7-1.el7 base qt5-rpm-macros.noarch 5.9.7-5.el7_9 updates quagga.i686 0.99.22.4-5.el7_4 base quagga.x86_64 0.99.22.4-5.el7_4 base quagga-contrib.x86_64 0.99.22.4-5.el7_4 base quagga-devel.i686 0.99.22.4-5.el7_4 base quagga-devel.x86_64 0.99.22.4-5.el7_4 base quota-devel.i686 1:4.01-19.el7 base quota-devel.x86_64 1:4.01-19.el7 base quota-doc.noarch 1:4.01-19.el7 base quota-nld.x86_64 1:4.01-19.el7 base quota-warnquota.x86_64 1:4.01-19.el7 base qv4l2.x86_64 0.9.5-4.el7 base raptor2.i686 2.0.9-3.el7 base raptor2-devel.i686 2.0.9-3.el7 base raptor2-devel.x86_64 2.0.9-3.el7 base rarian.i686 0.8.1-11.el7 base rarian-devel.i686 0.8.1-11.el7 base rarian-devel.x86_64 0.8.1-11.el7 base ras-utils.x86_64 7.0-6.el7 base rasqal.i686 0.9.30-4.el7 base rasqal-devel.i686 0.9.30-4.el7 base rasqal-devel.x86_64 0.9.30-4.el7 base rdist.x86_64 1:6.1.5-61.el7 base rdma-core.i686 22.4-6.el7_9 updates rdma-core.x86_64 22.4-6.el7_9 updates rdma-core-devel.i686 22.4-6.el7_9 updates rdma-core-devel.x86_64 22.4-6.el7_9 updates readline.i686 6.2-11.el7 base readline-devel.i686 6.2-11.el7 base readline-devel.x86_64 6.2-11.el7 base readline-static.i686 6.2-11.el7 base readline-static.x86_64 6.2-11.el7 base realmd.x86_64 0.16.1-12.el7_9.1 updates realmd-devel-docs.x86_64 0.16.1-12.el7_9.1 updates rear.x86_64 2.4-13.el7 base recode.i686 3.6-38.el7 base recode.x86_64 3.6-38.el7 base recode-devel.i686 3.6-38.el7 base recode-devel.x86_64 3.6-38.el7 base redfish-finder.noarch 0.3-4.el7 base redhat-lsb.i686 4.1-27.el7.centos.1 base redhat-lsb.x86_64 4.1-27.el7.centos.1 base redhat-lsb-core.i686 4.1-27.el7.centos.1 base redhat-lsb-core.x86_64 4.1-27.el7.centos.1 base redhat-lsb-cxx.i686 4.1-27.el7.centos.1 base redhat-lsb-cxx.x86_64 4.1-27.el7.centos.1 base redhat-lsb-desktop.i686 4.1-27.el7.centos.1 base redhat-lsb-desktop.x86_64 4.1-27.el7.centos.1 base redhat-lsb-languages.i686 4.1-27.el7.centos.1 base redhat-lsb-languages.x86_64 4.1-27.el7.centos.1 base redhat-lsb-printing.i686 4.1-27.el7.centos.1 base redhat-lsb-printing.x86_64 4.1-27.el7.centos.1 base redhat-lsb-submod-multimedia.i686 4.1-27.el7.centos.1 base redhat-lsb-submod-multimedia.x86_64 4.1-27.el7.centos.1 base redhat-lsb-submod-security.i686 4.1-27.el7.centos.1 base redhat-lsb-submod-security.x86_64 4.1-27.el7.centos.1 base redhat-lsb-supplemental.x86_64 4.1-27.el7.centos.1 base redhat-lsb-trialuse.i686 4.1-27.el7.centos.1 base redhat-lsb-trialuse.x86_64 4.1-27.el7.centos.1 base redhat-support-lib-python.noarch 0.12.1-1.el7 base redhat-support-tool.noarch 0.12.2-1.el7 base redhat-upgrade-dracut.x86_64 0.8.10-1.el7 base redhat-upgrade-dracut-plymouth.noarch 0.8.10-1.el7 base redhat-upgrade-tool.noarch 2:0.7.6-1.el7.centos extras redland.i686 1.0.16-6.el7 base redland-devel.i686 1.0.16-6.el7 base redland-devel.x86_64 1.0.16-6.el7 base redland-mysql.x86_64 1.0.16-6.el7 base redland-pgsql.x86_64 1.0.16-6.el7 base regexp-javadoc.noarch 1.5-13.el7 base relaxngDatatype-javadoc.noarch 1.0-11.el7 base relaxngcc.noarch 1.12-6.el7 base relaxngcc-javadoc.noarch 1.12-6.el7 base resource-agents.x86_64 4.1.1-61.el7_9.11 updates resource-agents-aliyun.x86_64 4.1.1-61.el7_9.11 updates resource-agents-gcp.x86_64 4.1.1-61.el7_9.11 updates rest.i686 0.8.1-2.el7 base rest-devel.i686 0.8.1-2.el7 base rest-devel.x86_64 0.8.1-2.el7 base resteasy-base.noarch 3.0.6-4.el7 base resteasy-base-javadoc.noarch 3.0.6-4.el7 base resteasy-base-jaxrs-all.noarch 3.0.6-4.el7 base resteasy-base-jettison-provider.noarch 3.0.6-4.el7 base resteasy-base-providers-pom.noarch 3.0.6-4.el7 base resteasy-base-resteasy-pom.noarch 3.0.6-4.el7 base resteasy-base-tjws.noarch 3.0.6-4.el7 base rhdb-utils.x86_64 9.2.0-5.el7 base rhel-system-roles.noarch 1.0-10.el7_7 extras rhel-system-roles-techpreview.noarch 1.0-2.el7 extras rhino-demo.noarch 1.7R5-1.el7 base rhino-javadoc.noarch 1.7R5-1.el7 base rhino-manual.noarch 1.7R5-1.el7 base rhn-check.x86_64 2.0.2-24.el7 base rhn-client-tools.x86_64 2.0.2-24.el7 base rhn-setup.x86_64 2.0.2-24.el7 base rhn-setup-gnome.x86_64 2.0.2-24.el7 base rhnlib.noarch 2.5.65-8.el7 base rhnsd.x86_64 5.0.13-10.el7 base rhsm-gtk.x86_64 1.24.48-1.el7.centos updates rhythmbox.x86_64 3.4.2-2.el7 base rhythmbox-devel.x86_64 3.4.2-2.el7 base rmt.x86_64 2:1.5.2-13.el7 base rngom-javadoc.noarch 201103-0.8.20120119svn.el7 base rp-pppoe.x86_64 3.11-7.el7 base rpm-apidocs.noarch 4.11.3-45.el7 base rpm-build-libs.i686 4.11.3-45.el7 base rpm-cron.noarch 4.11.3-45.el7 base rpm-devel.i686 4.11.3-45.el7 base rpm-devel.x86_64 4.11.3-45.el7 base rpm-libs.i686 4.11.3-45.el7 base rpm-plugin-systemd-inhibit.x86_64 4.11.3-45.el7 base rpmdevtools.noarch 8.3-8.el7_9 updates rpmemd.x86_64 1.5.1-2.1.el7 base rpmlint.noarch 1.5-4.el7 base rrdtool.i686 1.4.8-9.el7 base rrdtool.x86_64 1.4.8-9.el7 base rrdtool-devel.i686 1.4.8-9.el7 base rrdtool-devel.x86_64 1.4.8-9.el7 base rrdtool-doc.x86_64 1.4.8-9.el7 base rrdtool-lua.x86_64 1.4.8-9.el7 base rrdtool-perl.x86_64 1.4.8-9.el7 base rrdtool-php.x86_64 1.4.8-9.el7 base rrdtool-python.x86_64 1.4.8-9.el7 base rrdtool-ruby.x86_64 1.4.8-9.el7 base rrdtool-tcl.x86_64 1.4.8-9.el7 base rsh.x86_64 0.17-80.el7 base rsh-server.x86_64 0.17-80.el7 base rsyslog.x86_64 8.24.0-57.el7_9.1 updates rsyslog-crypto.x86_64 8.24.0-57.el7_9.1 updates rsyslog-doc.noarch 8.24.0-57.el7_9.1 updates rsyslog-elasticsearch.x86_64 8.24.0-57.el7_9.1 updates rsyslog-gnutls.x86_64 8.24.0-57.el7_9.1 updates rsyslog-gssapi.x86_64 8.24.0-57.el7_9.1 updates rsyslog-kafka.x86_64 8.24.0-57.el7_9.1 updates rsyslog-libdbi.x86_64 8.24.0-57.el7_9.1 updates rsyslog-mmaudit.x86_64 8.24.0-57.el7_9.1 updates rsyslog-mmjsonparse.x86_64 8.24.0-57.el7_9.1 updates rsyslog-mmkubernetes.x86_64 8.24.0-57.el7_9.1 updates rsyslog-mmnormalize.x86_64 8.24.0-57.el7_9.1 updates rsyslog-mmsnmptrapd.x86_64 8.24.0-57.el7_9.1 updates rsyslog-mysql.x86_64 8.24.0-57.el7_9.1 updates rsyslog-pgsql.x86_64 8.24.0-57.el7_9.1 updates rsyslog-relp.x86_64 8.24.0-57.el7_9.1 updates rsyslog-snmp.x86_64 8.24.0-57.el7_9.1 updates rsyslog-udpspoof.x86_64 8.24.0-57.el7_9.1 updates ruby-devel.x86_64 2.0.0.648-36.el7 base ruby-doc.noarch 2.0.0.648-36.el7 base ruby-hivex.x86_64 1.3.10-6.11.el7_9 updates ruby-libguestfs.x86_64 1:1.40.2-10.el7 base ruby-libs.i686 2.0.0.648-36.el7 base ruby-saslwrapper.x86_64 0.16-5.el7 extras ruby-tcltk.x86_64 2.0.0.648-36.el7 base rubygem-abrt-doc.noarch 0.3.0-1.el7 base rubygem-bundler.noarch 1.7.8-3.el7 base rubygem-bundler-doc.noarch 1.7.8-3.el7 base rubygem-minitest.noarch 4.3.2-36.el7 base rubygem-net-http-persistent.noarch 2.8-5.el7 base rubygem-net-http-persistent-doc.noarch 2.8-5.el7 base rubygem-rake.noarch 0.9.6-36.el7 base rubygem-thor.noarch 0.19.1-1.el7 base rubygem-thor-doc.noarch 0.19.1-1.el7 base rubygems-devel.noarch 2.0.14.1-36.el7 base runc.x86_64 1.0.0-69.rc10.el7_9 extras rusers.x86_64 0.17-81.el7 base rusers-server.x86_64 0.17-81.el7 base rwho.x86_64 0.17-54.el7 base saab-fonts.noarch 0.91-10.el7 base sac.noarch 1.3-17.el7 base sac-javadoc.noarch 1.3-17.el7 base samba.x86_64 4.10.16-15.el7_9 updates samba-client.x86_64 4.10.16-15.el7_9 updates samba-client-libs.i686 4.10.16-15.el7_9 updates samba-client-libs.x86_64 4.10.16-15.el7_9 updates samba-common.noarch 4.10.16-15.el7_9 updates samba-common-libs.i686 4.10.16-15.el7_9 updates samba-common-libs.x86_64 4.10.16-15.el7_9 updates samba-common-tools.x86_64 4.10.16-15.el7_9 updates samba-dc.x86_64 4.10.16-15.el7_9 updates samba-dc-libs.x86_64 4.10.16-15.el7_9 updates samba-devel.i686 4.10.16-15.el7_9 updates samba-devel.x86_64 4.10.16-15.el7_9 updates samba-krb5-printing.x86_64 4.10.16-15.el7_9 updates samba-libs.i686 4.10.16-15.el7_9 updates samba-libs.x86_64 4.10.16-15.el7_9 updates samba-pidl.noarch 4.10.16-15.el7_9 updates samba-python.i686 4.10.16-15.el7_9 updates samba-python.x86_64 4.10.16-15.el7_9 updates samba-python-test.x86_64 4.10.16-15.el7_9 updates samba-test.x86_64 4.10.16-15.el7_9 updates samba-test-libs.i686 4.10.16-15.el7_9 updates samba-test-libs.x86_64 4.10.16-15.el7_9 updates samba-vfs-glusterfs.x86_64 4.10.16-15.el7_9 updates samba-winbind.x86_64 4.10.16-15.el7_9 updates samba-winbind-clients.x86_64 4.10.16-15.el7_9 updates samba-winbind-krb5-locator.x86_64 4.10.16-15.el7_9 updates samba-winbind-modules.i686 4.10.16-15.el7_9 updates samba-winbind-modules.x86_64 4.10.16-15.el7_9 updates samyak-devanagari-fonts.noarch 1.2.2-12.el7 base samyak-fonts-common.noarch 1.2.2-12.el7 base samyak-gujarati-fonts.noarch 1.2.2-12.el7 base samyak-malayalam-fonts.noarch 1.2.2-12.el7 base samyak-oriya-fonts.noarch 1.2.2-12.el7 base samyak-tamil-fonts.noarch 1.2.2-12.el7 base sane-backends-devel.i686 1.0.24-12.el7 base sane-backends-devel.x86_64 1.0.24-12.el7 base sane-backends-doc.noarch 1.0.24-12.el7 base sane-backends-drivers-cameras.i686 1.0.24-12.el7 base sane-backends-drivers-cameras.x86_64 1.0.24-12.el7 base sane-backends-drivers-scanners.i686 1.0.24-12.el7 base sane-backends-libs.i686 1.0.24-12.el7 base sane-frontends.x86_64 1.0.14-19.el7 base sanlk-reset.x86_64 3.7.3-1.el7 base sanlock.x86_64 3.7.3-1.el7 base sanlock-devel.x86_64 3.7.3-1.el7 base sanlock-lib.x86_64 3.7.3-1.el7 base sanlock-python.x86_64 3.7.3-1.el7 base saslwrapper.x86_64 0.16-5.el7 extras saslwrapper-devel.x86_64 0.16-5.el7 extras sassist.noarch 0.8.5-2.el7 base satyr.i686 0.13-15.el7 base satyr-devel.i686 0.13-15.el7 base satyr-devel.x86_64 0.13-15.el7 base satyr-python.x86_64 0.13-15.el7 base saxon.noarch 9.3.0.4-11.el7 base saxon-demo.noarch 9.3.0.4-11.el7 base saxon-javadoc.noarch 9.3.0.4-11.el7 base saxon-manual.noarch 9.3.0.4-11.el7 base saxon-scripts.noarch 9.3.0.4-11.el7 base sbc.i686 1.0-5.el7 base sbc-devel.i686 1.0-5.el7 base sbc-devel.x86_64 1.0-5.el7 base sbd.x86_64 1.4.0-15.el7 base sblim-cim-client2.noarch 2.2.1-3.el7 base sblim-cim-client2-javadoc.noarch 2.2.1-3.el7 base sblim-cim-client2-manual.noarch 2.2.1-3.el7 base sblim-cmpi-base.i686 1.6.2-8.el7 base sblim-cmpi-base.x86_64 1.6.2-8.el7 base sblim-cmpi-base-devel.i686 1.6.2-8.el7 base sblim-cmpi-base-devel.x86_64 1.6.2-8.el7 base sblim-cmpi-base-test.x86_64 1.6.2-8.el7 base sblim-cmpi-devel.i686 2.0.3-5.el7 base sblim-cmpi-devel.x86_64 2.0.3-5.el7 base sblim-cmpi-fsvol.i686 1.5.1-12.el7 base sblim-cmpi-fsvol.x86_64 1.5.1-12.el7 base sblim-cmpi-fsvol-devel.i686 1.5.1-12.el7 base sblim-cmpi-fsvol-devel.x86_64 1.5.1-12.el7 base sblim-cmpi-fsvol-test.x86_64 1.5.1-12.el7 base sblim-cmpi-network.i686 1.4.0-11.el7 base sblim-cmpi-network.x86_64 1.4.0-11.el7 base sblim-cmpi-network-devel.i686 1.4.0-11.el7 base sblim-cmpi-network-devel.x86_64 1.4.0-11.el7 base sblim-cmpi-network-test.x86_64 1.4.0-11.el7 base sblim-cmpi-nfsv3.i686 1.1.1-9.el7 base sblim-cmpi-nfsv3.x86_64 1.1.1-9.el7 base sblim-cmpi-nfsv3-test.x86_64 1.1.1-9.el7 base sblim-cmpi-nfsv4.i686 1.1.0-10.el7 base sblim-cmpi-nfsv4.x86_64 1.1.0-10.el7 base sblim-cmpi-nfsv4-test.x86_64 1.1.0-10.el7 base sblim-cmpi-params.x86_64 1.3.0-10.el7 base sblim-cmpi-params-test.x86_64 1.3.0-10.el7 base sblim-cmpi-sysfs.i686 1.2.0-10.el7 base sblim-cmpi-sysfs.x86_64 1.2.0-10.el7 base sblim-cmpi-sysfs-test.x86_64 1.2.0-10.el7 base sblim-cmpi-syslog.i686 0.9.0-4.el7 base sblim-cmpi-syslog.x86_64 0.9.0-4.el7 base sblim-cmpi-syslog-test.x86_64 0.9.0-4.el7 base sblim-gather.i686 2.2.8-9.el7 base sblim-gather.x86_64 2.2.8-9.el7 base sblim-gather-devel.i686 2.2.8-9.el7 base sblim-gather-devel.x86_64 2.2.8-9.el7 base sblim-gather-provider.i686 2.2.8-9.el7 base sblim-gather-provider.x86_64 2.2.8-9.el7 base sblim-gather-test.x86_64 2.2.8-9.el7 base sblim-indication_helper.i686 0.4.2-12.el7 base sblim-indication_helper.x86_64 0.4.2-12.el7 base sblim-indication_helper-devel.i686 0.4.2-12.el7 base sblim-indication_helper-devel.x86_64 0.4.2-12.el7 base sblim-sfcb.i686 1.3.16-12.el7_0 base sblim-sfcb.x86_64 1.3.16-12.el7_0 base sblim-sfcc.i686 2.2.5-6.el7 base sblim-sfcc.x86_64 2.2.5-6.el7 base sblim-sfcc-devel.i686 2.2.5-6.el7 base sblim-sfcc-devel.x86_64 2.2.5-6.el7 base sblim-smis-hba.i686 1.0.0-10.el7 base sblim-smis-hba.x86_64 1.0.0-10.el7 base sblim-testsuite.noarch 1.3.0-8.el7 base sblim-wbemcli.x86_64 1.6.2-11.el7 base scannotation-javadoc.noarch 1.0.3-0.7.r12.el7 base scap-security-guide.noarch 0.1.54-3.el7.centos updates scap-security-guide-doc.noarch 0.1.54-3.el7.centos updates scap-workbench.x86_64 1.1.6-1.el7 base scipy.x86_64 0.12.1-6.el7 base scl-utils-build.x86_64 20130529-19.el7 base scpio.x86_64 1.5.2-13.el7 base screen.x86_64 4.1.0-0.27.20120314git3c2946.el7_9 updates sdparm.x86_64 1.08-3.el7 base seabios.x86_64 1.11.0-2.el7 base seahorse-nautilus.x86_64 3.11.92-11.el7 base seahorse-sharing.x86_64 3.8.0-3.el7 base selinux-policy.noarch 3.13.1-268.el7_9.2 updates selinux-policy-devel.noarch 3.13.1-268.el7_9.2 updates selinux-policy-doc.noarch 3.13.1-268.el7_9.2 updates selinux-policy-minimum.noarch 3.13.1-268.el7_9.2 updates selinux-policy-mls.noarch 3.13.1-268.el7_9.2 updates selinux-policy-sandbox.noarch 3.13.1-268.el7_9.2 updates selinux-policy-targeted.noarch 3.13.1-268.el7_9.2 updates sendmail.x86_64 8.14.7-6.el7 base sendmail-cf.noarch 8.14.7-6.el7 base sendmail-devel.i686 8.14.7-6.el7 base sendmail-devel.x86_64 8.14.7-6.el7 base sendmail-doc.noarch 8.14.7-6.el7 base sendmail-milter.i686 8.14.7-6.el7 base sendmail-milter.x86_64 8.14.7-6.el7 base sendmail-sysvinit.noarch 8.14.7-6.el7 base setools.x86_64 3.3.8-4.el7 base setools-console.x86_64 3.3.8-4.el7 base setools-devel.i686 3.3.8-4.el7 base setools-devel.x86_64 3.3.8-4.el7 base setools-gui.x86_64 3.3.8-4.el7 base setools-libs.i686 3.3.8-4.el7 base setools-libs-tcl.x86_64 3.3.8-4.el7 base sg3_utils-devel.i686 1:1.37-19.el7 base sg3_utils-devel.x86_64 1:1.37-19.el7 base sg3_utils-libs.i686 1:1.37-19.el7 base sgabios.x86_64 1:0.20110622svn-4.el7 base shared-desktop-ontologies-devel.noarch 0.11.0-2.el7 base sharutils.x86_64 4.13.3-8.el7 base shim-ia32.x86_64 15-8.el7 base shim-unsigned-ia32.x86_64 15-8.el7 base shim-unsigned-x64.x86_64 15-8.el7 base shotwell.i686 0.28.4-2.el7 base shotwell.x86_64 0.28.4-2.el7 base si-units-javadoc.noarch 0.6.5-1.el7 base sil-padauk-book-fonts.noarch 2.8-5.el7 base sip.i686 4.14.6-4.el7 base sip-devel.i686 4.14.6-4.el7 base sip-devel.x86_64 4.14.6-4.el7 base sip-macros.x86_64 4.14.6-4.el7 base sisu.noarch 2.3.0-11.el7 base sisu-bean.noarch 2.3.0-11.el7 base sisu-bean-binders.noarch 2.3.0-11.el7 base sisu-bean-containers.noarch 2.3.0-11.el7 base sisu-bean-converters.noarch 2.3.0-11.el7 base sisu-bean-inject.noarch 2.3.0-11.el7 base sisu-bean-locators.noarch 2.3.0-11.el7 base sisu-bean-reflect.noarch 2.3.0-11.el7 base sisu-bean-scanners.noarch 2.3.0-11.el7 base sisu-containers.noarch 2.3.0-11.el7 base sisu-inject.noarch 2.3.0-11.el7 base sisu-inject-bean.noarch 2.3.0-11.el7 base sisu-inject-plexus.noarch 2.3.0-11.el7 base sisu-javadoc.noarch 2.3.0-11.el7 base sisu-maven-plugin.noarch 1.1-8.el7 base sisu-maven-plugin-javadoc.noarch 1.1-8.el7 base sisu-osgi-registry.noarch 2.3.0-11.el7 base sisu-parent.noarch 2.3.0-11.el7 base sisu-plexus.noarch 2.3.0-11.el7 base sisu-plexus-binders.noarch 2.3.0-11.el7 base sisu-plexus-converters.noarch 2.3.0-11.el7 base sisu-plexus-lifecycles.noarch 2.3.0-11.el7 base sisu-plexus-locators.noarch 2.3.0-11.el7 base sisu-plexus-metadata.noarch 2.3.0-11.el7 base sisu-plexus-scanners.noarch 2.3.0-11.el7 base sisu-plexus-shim.noarch 2.3.0-11.el7 base sisu-registries.noarch 2.3.0-11.el7 base sisu-spi-registry.noarch 2.3.0-11.el7 base skopeo.x86_64 1:0.1.40-11.el7_8 extras skopeo-containers.x86_64 1:0.1.31-1.dev.gitae64ff7.el7.centos extras slang.i686 2.2.4-11.el7 base slang-devel.i686 2.2.4-11.el7 base slang-devel.x86_64 2.2.4-11.el7 base slang-slsh.x86_64 2.2.4-11.el7 base slang-static.i686 2.2.4-11.el7 base slang-static.x86_64 2.2.4-11.el7 base slapi-nis.x86_64 0.56.5-3.el7_9 updates slf4j-javadoc.noarch 1.7.4-4.el7_4 base slf4j-manual.noarch 1.7.4-4.el7_4 base slirp4netns.x86_64 0.4.3-4.el7_8 extras smbios-utils.x86_64 2.3.3-8.el7 base smbios-utils-bin.x86_64 2.3.3-8.el7 base smbios-utils-python.x86_64 2.3.3-8.el7 base smc-anjalioldlipi-fonts.noarch 6.0-7.el7 base smc-dyuthi-fonts.noarch 6.0-7.el7 base smc-kalyani-fonts.noarch 6.0-7.el7 base smc-rachana-fonts.noarch 6.0-7.el7 base smc-raghumalayalam-fonts.noarch 6.0-7.el7 base smc-suruma-fonts.noarch 6.0-7.el7 base snakeyaml.noarch 1.11-8.el7 base snakeyaml-javadoc.noarch 1.11-8.el7 base snapper.i686 0.2.8-4.el7 base snapper.x86_64 0.2.8-4.el7 base snapper-devel.i686 0.2.8-4.el7 base snapper-devel.x86_64 0.2.8-4.el7 base snapper-libs.i686 0.2.8-4.el7 base snapper-libs.x86_64 0.2.8-4.el7 base snappy.i686 1.1.0-3.el7 base snappy-devel.i686 1.1.0-3.el7 base snappy-devel.x86_64 1.1.0-3.el7 base sntp.x86_64 4.2.6p5-29.el7.centos.2 base socat.x86_64 1.7.3.2-2.el7 base softhsm-devel.i686 2.1.0-3.el7 base softhsm-devel.x86_64 2.1.0-3.el7 base sonatype-oss-parent.noarch 7-6.el7 base sonatype-plugins-parent.noarch 8-6.el7 base soprano.i686 2.9.2-3.el7 base soprano-apidocs.noarch 2.9.2-3.el7 base soprano-devel.i686 2.9.2-3.el7 base soprano-devel.x86_64 2.9.2-3.el7 base sos.noarch 3.9-5.el7.centos.4 updates sos-collector.noarch 1.8-2.el7_8 base soundtouch.i686 1.4.0-9.el7 base soundtouch-devel.i686 1.4.0-9.el7 base soundtouch-devel.x86_64 1.4.0-9.el7 base source-highlight.i686 3.1.6-6.el7 base source-highlight.x86_64 3.1.6-6.el7 base source-highlight-devel.i686 3.1.6-6.el7 base source-highlight-devel.x86_64 3.1.6-6.el7 base sox.i686 14.4.1-7.el7 base sox-devel.i686 14.4.1-7.el7 base sox-devel.x86_64 14.4.1-7.el7 base spausedd.x86_64 2.4.5-7.el7_9.1 updates spax.x86_64 1.5.2-13.el7 base speech-dispatcher.i686 0.7.1-15.el7 base speech-dispatcher-devel.i686 0.7.1-15.el7 base speech-dispatcher-devel.x86_64 0.7.1-15.el7 base speech-dispatcher-doc.x86_64 0.7.1-15.el7 base speex.i686 1.2-0.19.rc1.el7 base speex-devel.i686 1.2-0.19.rc1.el7 base speex-devel.x86_64 1.2-0.19.rc1.el7 base speex-tools.x86_64 1.2-0.19.rc1.el7 base spice-glib.i686 0.35-5.el7_9.1 updates spice-glib.x86_64 0.35-5.el7_9.1 updates spice-glib-devel.i686 0.35-5.el7_9.1 updates spice-glib-devel.x86_64 0.35-5.el7_9.1 updates spice-gtk-tools.x86_64 0.35-5.el7_9.1 updates spice-gtk3.i686 0.35-5.el7_9.1 updates spice-gtk3.x86_64 0.35-5.el7_9.1 updates spice-gtk3-devel.i686 0.35-5.el7_9.1 updates spice-gtk3-devel.x86_64 0.35-5.el7_9.1 updates spice-gtk3-vala.x86_64 0.35-5.el7_9.1 updates spice-parent.noarch 15-11.el7 base spice-protocol.noarch 0.12.14-1.el7 base spice-server.x86_64 0.14.0-9.el7_9.1 updates spice-server-devel.x86_64 0.14.0-9.el7_9.1 updates spice-streaming-agent-devel.x86_64 0.2-4.el7 base spice-xpi.x86_64 2.8-8.el7 base sqlite.i686 3.7.17-8.el7_7.1 base sqlite-devel.i686 3.7.17-8.el7_7.1 base sqlite-devel.x86_64 3.7.17-8.el7_7.1 base sqlite-doc.noarch 3.7.17-8.el7_7.1 base sqlite-tcl.x86_64 3.7.17-8.el7_7.1 base squid.x86_64 7:3.5.20-17.el7_9.6 updates squid-migration-script.x86_64 7:3.5.20-17.el7_9.6 updates squid-sysvinit.x86_64 7:3.5.20-17.el7_9.6 updates srp_daemon.x86_64 22.4-6.el7_9 updates sshpass.x86_64 1.06-2.el7 extras sssd.x86_64 1.16.5-10.el7_9.8 updates sssd-ad.x86_64 1.16.5-10.el7_9.8 updates sssd-client.i686 1.16.5-10.el7_9.8 updates sssd-client.x86_64 1.16.5-10.el7_9.8 updates sssd-common.x86_64 1.16.5-10.el7_9.8 updates sssd-common-pac.x86_64 1.16.5-10.el7_9.8 updates sssd-dbus.x86_64 1.16.5-10.el7_9.8 updates sssd-ipa.x86_64 1.16.5-10.el7_9.8 updates sssd-kcm.x86_64 1.16.5-10.el7_9.8 updates sssd-krb5.x86_64 1.16.5-10.el7_9.8 updates sssd-krb5-common.x86_64 1.16.5-10.el7_9.8 updates sssd-ldap.x86_64 1.16.5-10.el7_9.8 updates sssd-libwbclient.x86_64 1.16.5-10.el7_9.8 updates sssd-libwbclient-devel.i686 1.16.5-10.el7_9.8 updates sssd-libwbclient-devel.x86_64 1.16.5-10.el7_9.8 updates sssd-polkit-rules.x86_64 1.16.5-10.el7_9.8 updates sssd-proxy.x86_64 1.16.5-10.el7_9.8 updates sssd-tools.x86_64 1.16.5-10.el7_9.8 updates sssd-winbind-idmap.x86_64 1.16.5-10.el7_9.8 updates star.x86_64 1.5.2-13.el7 base startup-notification.i686 0.12-8.el7 base startup-notification-devel.i686 0.12-8.el7 base startup-notification-devel.x86_64 0.12-8.el7 base stax-ex-javadoc.noarch 1.7.1-6.el7 base stax2-api-javadoc.noarch 3.1.1-10.el7 base stix-math-fonts.noarch 1.1.0-5.el7 base storaged.x86_64 2.5.2-4.el7 extras storaged-iscsi.x86_64 2.5.2-4.el7 extras storaged-lvm2.x86_64 2.5.2-4.el7 extras strigi.x86_64 0.7.7-13.20120626.el7 base strigi-devel.i686 0.7.7-13.20120626.el7 base strigi-devel.x86_64 0.7.7-13.20120626.el7 base strigi-libs.i686 0.7.7-13.20120626.el7 base strongimcv.i686 5.2.0-3.el7 base strongimcv.x86_64 5.2.0-3.el7 base stunnel.x86_64 4.56-6.el7 base subscription-manager.x86_64 1.24.48-1.el7.centos updates subscription-manager-cockpit.noarch 1.24.48-1.el7.centos updates subscription-manager-gui.x86_64 1.24.48-1.el7.centos updates subscription-manager-initial-setup-addon.x86_64 1.24.48-1.el7.centos updates subscription-manager-plugin-container.x86_64 1.24.48-1.el7.centos updates subscription-manager-plugin-ostree.x86_64 1.24.48-1.el7.centos updates subscription-manager-rhsm.x86_64 1.24.48-1.el7.centos updates subscription-manager-rhsm-certificates.x86_64 1.24.48-1.el7.centos updates subversion.i686 1.7.14-16.el7 base subversion-devel.i686 1.7.14-16.el7 base subversion-devel.x86_64 1.7.14-16.el7 base subversion-gnome.i686 1.7.14-16.el7 base subversion-gnome.x86_64 1.7.14-16.el7 base subversion-javahl.i686 1.7.14-16.el7 base subversion-javahl.x86_64 1.7.14-16.el7 base subversion-kde.i686 1.7.14-16.el7 base subversion-kde.x86_64 1.7.14-16.el7 base subversion-libs.i686 1.7.14-16.el7 base subversion-perl.i686 1.7.14-16.el7 base subversion-perl.x86_64 1.7.14-16.el7 base subversion-python.x86_64 1.7.14-16.el7 base subversion-ruby.i686 1.7.14-16.el7 base subversion-ruby.x86_64 1.7.14-16.el7 base subversion-tools.x86_64 1.7.14-16.el7 base sudo.x86_64 1.8.23-10.el7_9.1 updates sudo-devel.i686 1.8.23-10.el7_9.1 updates sudo-devel.x86_64 1.8.23-10.el7_9.1 updates suitesparse.i686 4.0.2-10.el7 base suitesparse.x86_64 4.0.2-10.el7 base suitesparse-devel.i686 4.0.2-10.el7 base suitesparse-devel.x86_64 4.0.2-10.el7 base suitesparse-doc.noarch 4.0.2-10.el7 base suitesparse-static.i686 4.0.2-10.el7 base suitesparse-static.x86_64 4.0.2-10.el7 base supermin.x86_64 5.1.19-1.el7 base supermin-helper.x86_64 5.1.19-1.el7 base supermin5-devel.i686 5.1.19-1.el7 base supermin5-devel.x86_64 5.1.19-1.el7 base svgpart.x86_64 4.10.5-3.el7 base svrcore.i686 4.1.3-2.el7 base svrcore-devel.i686 4.1.3-2.el7 base svrcore-devel.x86_64 4.1.3-2.el7 base swig-doc.noarch 2.0.10-5.el7 base swig3.x86_64 3.0.12-17.el7 extras swig3-doc.noarch 3.0.12-17.el7 extras swig3-gdb.x86_64 3.0.12-17.el7 extras symlinks.x86_64 1.4-10.el7 base sysfsutils.x86_64 2.1.0-16.el7 base syslinux-devel.x86_64 4.05-15.el7 base syslinux-perl.x86_64 4.05-15.el7 base syslinux-tftpboot.noarch 4.05-15.el7 base system-config-firewall.noarch 1.2.29-10.el7 base system-config-firewall-base.noarch 1.2.29-10.el7 base system-config-firewall-tui.noarch 1.2.29-10.el7 base system-config-kdump.noarch 2.0.13-21.el7.centos base system-config-keyboard.noarch 1.4.0-5.el7 base system-config-keyboard-base.noarch 1.4.0-5.el7 base system-config-kickstart.noarch 2.9.7-1.el7 base system-config-language.noarch 1.4.0-9.el7 base system-config-users.noarch 1.3.5-5.el7_9 updates system-config-users-docs.noarch 1.0.9-6.el7 base system-storage-manager.noarch 0.4-9.el7 base system-switch-java.noarch 1.1.7.1-0.el7 base systemd.x86_64 219-78.el7_9.3 updates systemd-devel.i686 219-78.el7_9.3 updates systemd-devel.x86_64 219-78.el7_9.3 updates systemd-journal-gateway.x86_64 219-78.el7_9.3 updates systemd-libs.i686 219-78.el7_9.3 updates systemd-libs.x86_64 219-78.el7_9.3 updates systemd-networkd.x86_64 219-78.el7_9.3 updates systemd-python.x86_64 219-78.el7_9.3 updates systemd-resolved.i686 219-78.el7_9.3 updates systemd-resolved.x86_64 219-78.el7_9.3 updates systemd-sysv.x86_64 219-78.el7_9.3 updates systemtap-initscript.x86_64 4.0-13.el7 base systemtap-runtime-java.x86_64 4.0-13.el7 base systemtap-runtime-python2.x86_64 4.0-13.el7 base systemtap-runtime-virtguest.x86_64 4.0-13.el7 base systemtap-runtime-virthost.x86_64 4.0-13.el7 base systemtap-sdt-devel.i686 4.0-13.el7 base systemtap-server.x86_64 4.0-13.el7 base systemtap-testsuite.x86_64 4.0-13.el7 base t1lib.i686 5.1.2-14.el7 base t1lib.x86_64 5.1.2-14.el7 base t1lib-apps.x86_64 5.1.2-14.el7 base t1lib-devel.i686 5.1.2-14.el7 base t1lib-devel.x86_64 5.1.2-14.el7 base t1lib-static.i686 5.1.2-14.el7 base t1lib-static.x86_64 5.1.2-14.el7 base t1utils.x86_64 1.37-6.el7 base taglib.i686 1.8-8.20130218git.el7 base taglib-devel.i686 1.8-8.20130218git.el7 base taglib-devel.x86_64 1.8-8.20130218git.el7 base taglib-doc.noarch 1.8-8.20130218git.el7 base tagsoup-javadoc.noarch 1.2.1-8.el7 base talk.x86_64 0.17-46.el7 base talk-server.x86_64 0.17-46.el7 base tang.x86_64 6-2.el7 base tang-nagios.x86_64 6-2.el7 base targetcli.noarch 2.1.53-1.el7_9 updates tbb.i686 4.1-9.20130314.el7 base tbb.x86_64 4.1-9.20130314.el7 base tbb-devel.i686 4.1-9.20130314.el7 base tbb-devel.x86_64 4.1-9.20130314.el7 base tbb-doc.x86_64 4.1-9.20130314.el7 base tboot.x86_64 1:1.9.9-1.el7 base tcl.i686 1:8.5.13-8.el7 base tcl-brlapi.x86_64 0.6.0-16.el7 base tcl-devel.i686 1:8.5.13-8.el7 base tcl-devel.x86_64 1:8.5.13-8.el7 base tcl-pgtcl.x86_64 2.0.0-5.el7 base tclx.i686 8.4.0-22.el7 base tclx.x86_64 8.4.0-22.el7 base tclx-devel.i686 8.4.0-22.el7 base tclx-devel.x86_64 8.4.0-22.el7 base tcp_wrappers-devel.i686 7.6-77.el7 base tcp_wrappers-devel.x86_64 7.6-77.el7 base tcp_wrappers-libs.i686 7.6-77.el7 base tcsh.x86_64 6.18.01-17.el7_9.1 updates tdb-tools.x86_64 1.3.18-1.el7 base teamd.i686 1.29-3.el7 base teamd-devel.i686 1.29-3.el7 base teamd-devel.x86_64 1.29-3.el7 base teckit.i686 2.5.1-11.el7 base teckit.x86_64 2.5.1-11.el7 base teckit-devel.i686 2.5.1-11.el7 base teckit-devel.x86_64 2.5.1-11.el7 base telepathy-farstream.i686 0.6.0-5.el7 base telepathy-farstream-devel.i686 0.6.0-5.el7 base telepathy-farstream-devel.x86_64 0.6.0-5.el7 base telepathy-glib.i686 0.24.1-1.el7 base telepathy-glib-devel.i686 0.24.1-1.el7 base telepathy-glib-devel.x86_64 0.24.1-1.el7 base telepathy-glib-vala.x86_64 0.24.1-1.el7 base telepathy-logger.i686 0.8.0-5.el7 base telepathy-logger-devel.i686 0.8.0-5.el7 base telepathy-logger-devel.x86_64 0.8.0-5.el7 base telepathy-mission-control.i686 1:5.16.3-3.el7 base telepathy-mission-control-devel.i686 1:5.16.3-3.el7 base telepathy-mission-control-devel.x86_64 1:5.16.3-3.el7 base telnet.x86_64 1:0.17-66.el7 updates telnet-server.x86_64 1:0.17-66.el7 updates testng.noarch 6.8.7-3.el7 base testng-javadoc.noarch 6.8.7-3.el7 base tex-fonts-hebrew.noarch 0.1-21.el7 base tex-preview.noarch 11.87-4.el7 base texi2html.noarch 1.82-10.el7 base texinfo.x86_64 5.1-5.el7 base texinfo-tex.x86_64 5.1-5.el7 base texlive.x86_64 2:2012-45.20130427_r30134.el7 base texlive-adjustbox.noarch 2:svn26555.0-45.el7 base texlive-adjustbox-doc.noarch 2:svn26555.0-45.el7 base texlive-ae.noarch 2:svn15878.1.4-45.el7 base texlive-ae-doc.noarch 2:svn15878.1.4-45.el7 base texlive-algorithms.noarch 2:svn15878.0.1-45.el7 base texlive-algorithms-doc.noarch 2:svn15878.0.1-45.el7 base texlive-amscls.noarch 2:svn29207.0-45.el7 base texlive-amscls-doc.noarch 2:svn29207.0-45.el7 base texlive-amsfonts.noarch 2:svn29208.3.04-45.el7 base texlive-amsfonts-doc.noarch 2:svn29208.3.04-45.el7 base texlive-amsmath.noarch 2:svn29327.2.14-45.el7 base texlive-amsmath-doc.noarch 2:svn29327.2.14-45.el7 base texlive-anysize.noarch 2:svn15878.0-45.el7 base texlive-anysize-doc.noarch 2:svn15878.0-45.el7 base texlive-appendix.noarch 2:svn15878.1.2b-45.el7 base texlive-appendix-doc.noarch 2:svn15878.1.2b-45.el7 base texlive-arabxetex.noarch 2:svn17470.v1.1.4-45.el7 base texlive-arabxetex-doc.noarch 2:svn17470.v1.1.4-45.el7 base texlive-arphic.noarch 2:svn15878.0-45.el7 base texlive-arphic-doc.noarch 2:svn15878.0-45.el7 base texlive-attachfile.noarch 2:svn21866.v1.5b-45.el7 base texlive-attachfile-doc.noarch 2:svn21866.v1.5b-45.el7 base texlive-avantgar.noarch 2:svn28614.0-45.el7 base texlive-babel.noarch 2:svn24756.3.8m-45.el7 base texlive-babel-doc.noarch 2:svn24756.3.8m-45.el7 base texlive-babelbib.noarch 2:svn25245.1.31-45.el7 base texlive-babelbib-doc.noarch 2:svn25245.1.31-45.el7 base texlive-base.noarch 2:2012-45.20130427_r30134.el7 base texlive-beamer.noarch 2:svn29349.3.26-45.el7 base texlive-beamer-doc.noarch 2:svn29349.3.26-45.el7 base texlive-bera.noarch 2:svn20031.0-45.el7 base texlive-bera-doc.noarch 2:svn20031.0-45.el7 base texlive-beton.noarch 2:svn15878.0-45.el7 base texlive-beton-doc.noarch 2:svn15878.0-45.el7 base texlive-bibtex.noarch 2:svn26689.0.99d-45.el7 base texlive-bibtex-bin.x86_64 2:svn26509.0-45.20130427_r30134.el7 base texlive-bibtex-doc.noarch 2:svn26689.0.99d-45.el7 base texlive-bibtopic.noarch 2:svn15878.1.1a-45.el7 base texlive-bibtopic-doc.noarch 2:svn15878.1.1a-45.el7 base texlive-bidi.noarch 2:svn29650.12.2-45.el7 base texlive-bidi-doc.noarch 2:svn29650.12.2-45.el7 base texlive-bigfoot.noarch 2:svn15878.0-45.el7 base texlive-bigfoot-doc.noarch 2:svn15878.0-45.el7 base texlive-bookman.noarch 2:svn28614.0-45.el7 base texlive-booktabs.noarch 2:svn15878.1.61803-45.el7 base texlive-booktabs-doc.noarch 2:svn15878.1.61803-45.el7 base texlive-breakurl.noarch 2:svn15878.1.30-45.el7 base texlive-breakurl-doc.noarch 2:svn15878.1.30-45.el7 base texlive-caption.noarch 2:svn29026.3.3__2013_02_03_-45.el7 base texlive-caption-doc.noarch 2:svn29026.3.3__2013_02_03_-45.el7 base texlive-carlisle.noarch 2:svn18258.0-45.el7 base texlive-carlisle-doc.noarch 2:svn18258.0-45.el7 base texlive-changebar.noarch 2:svn29349.3.5c-45.el7 base texlive-changebar-doc.noarch 2:svn29349.3.5c-45.el7 base texlive-changepage.noarch 2:svn15878.1.0c-45.el7 base texlive-changepage-doc.noarch 2:svn15878.1.0c-45.el7 base texlive-charter.noarch 2:svn15878.0-45.el7 base texlive-charter-doc.noarch 2:svn15878.0-45.el7 base texlive-chngcntr.noarch 2:svn17157.1.0a-45.el7 base texlive-chngcntr-doc.noarch 2:svn17157.1.0a-45.el7 base texlive-cite.noarch 2:svn19955.5.3-45.el7 base texlive-cite-doc.noarch 2:svn19955.5.3-45.el7 base texlive-cjk.noarch 2:svn26296.4.8.3-45.el7 base texlive-cjk-doc.noarch 2:svn26296.4.8.3-45.el7 base texlive-cm.noarch 2:svn29581.0-45.el7 base texlive-cm-doc.noarch 2:svn29581.0-45.el7 base texlive-cm-lgc.noarch 2:svn28250.0.5-45.el7 base texlive-cm-lgc-doc.noarch 2:svn28250.0.5-45.el7 base texlive-cm-super.noarch 2:svn15878.0-45.el7 base texlive-cm-super-doc.noarch 2:svn15878.0-45.el7 base texlive-cmap.noarch 2:svn26568.0-45.el7 base texlive-cmap-doc.noarch 2:svn26568.0-45.el7 base texlive-cmextra.noarch 2:svn14075.0-45.el7 base texlive-cns.noarch 2:svn15878.0-45.el7 base texlive-cns-doc.noarch 2:svn15878.0-45.el7 base texlive-collectbox.noarch 2:svn26557.0-45.el7 base texlive-collectbox-doc.noarch 2:svn26557.0-45.el7 base texlive-collection-basic.noarch 2:svn26314.0-45.20130427_r30134.el7 base texlive-collection-documentation-base.noarch 2:svn17091.0-45.20130427_r30134.el7 base texlive-collection-fontsrecommended.noarch 2:svn28082.0-45.20130427_r30134.el7 base texlive-collection-htmlxml.noarch 2:svn28251.0-45.20130427_r30134.el7 base texlive-collection-latex.noarch 2:svn25030.0-45.20130427_r30134.el7 base texlive-collection-latexrecommended.noarch 2:svn25795.0-45.20130427_r30134.el7 base texlive-collection-xetex.noarch 2:svn29634.0-45.20130427_r30134.el7 base texlive-colortbl.noarch 2:svn25394.v1.0a-45.el7 base texlive-colortbl-doc.noarch 2:svn25394.v1.0a-45.el7 base texlive-courier.noarch 2:svn28614.0-45.el7 base texlive-crop.noarch 2:svn15878.1.5-45.el7 base texlive-crop-doc.noarch 2:svn15878.1.5-45.el7 base texlive-csquotes.noarch 2:svn24393.5.1d-45.el7 base texlive-csquotes-doc.noarch 2:svn24393.5.1d-45.el7 base texlive-ctable.noarch 2:svn26694.1.23-45.el7 base texlive-ctable-doc.noarch 2:svn26694.1.23-45.el7 base texlive-currfile.noarch 2:svn29012.0.7b-45.el7 base texlive-currfile-doc.noarch 2:svn29012.0.7b-45.el7 base texlive-datetime.noarch 2:svn19834.2.58-45.el7 base texlive-datetime-doc.noarch 2:svn19834.2.58-45.el7 base texlive-dvipdfm.noarch 2:svn26689.0.13.2d-45.el7 base texlive-dvipdfm-bin.noarch 2:svn13663.0-45.20130427_r30134.el7 base texlive-dvipdfm-doc.noarch 2:svn26689.0.13.2d-45.el7 base texlive-dvipdfmx.noarch 2:svn26765.0-45.el7 base texlive-dvipdfmx-bin.x86_64 2:svn26509.0-45.20130427_r30134.el7 base texlive-dvipdfmx-def.noarch 2:svn15878.0-45.el7 base texlive-dvipdfmx-doc.noarch 2:svn26765.0-45.el7 base texlive-dvipng.noarch 2:svn26689.1.14-45.el7 base texlive-dvipng-bin.x86_64 2:svn26509.0-45.20130427_r30134.el7 base texlive-dvipng-doc.noarch 2:svn26689.1.14-45.el7 base texlive-dvips.noarch 2:svn29585.0-45.el7 base texlive-dvips-bin.x86_64 2:svn26509.0-45.20130427_r30134.el7 base texlive-dvips-doc.noarch 2:svn29585.0-45.el7 base texlive-ec.noarch 2:svn25033.1.0-45.el7 base texlive-ec-doc.noarch 2:svn25033.1.0-45.el7 base texlive-eepic.noarch 2:svn15878.1.1e-45.el7 base texlive-eepic-doc.noarch 2:svn15878.1.1e-45.el7 base texlive-enctex.noarch 2:svn28602.0-45.el7 base texlive-enctex-doc.noarch 2:svn28602.0-45.el7 base texlive-enumitem.noarch 2:svn24146.3.5.2-45.el7 base texlive-enumitem-doc.noarch 2:svn24146.3.5.2-45.el7 base texlive-epsf.noarch 2:svn21461.2.7.4-45.el7 base texlive-epsf-doc.noarch 2:svn21461.2.7.4-45.el7 base texlive-epstopdf.noarch 2:svn26577.0-45.el7 base texlive-epstopdf-bin.noarch 2:svn18336.0-45.20130427_r30134.el7 base texlive-epstopdf-doc.noarch 2:svn26577.0-45.el7 base texlive-eso-pic.noarch 2:svn21515.2.0c-45.el7 base texlive-eso-pic-doc.noarch 2:svn21515.2.0c-45.el7 base texlive-etex.noarch 2:svn22198.2.1-45.el7 base texlive-etex-doc.noarch 2:svn22198.2.1-45.el7 base texlive-etex-pkg.noarch 2:svn15878.2.0-45.el7 base texlive-etex-pkg-doc.noarch 2:svn15878.2.0-45.el7 base texlive-etoolbox.noarch 2:svn20922.2.1-45.el7 base texlive-etoolbox-doc.noarch 2:svn20922.2.1-45.el7 base texlive-euenc.noarch 2:svn19795.0.1h-45.el7 base texlive-euenc-doc.noarch 2:svn19795.0.1h-45.el7 base texlive-euler.noarch 2:svn17261.2.5-45.el7 base texlive-euler-doc.noarch 2:svn17261.2.5-45.el7 base texlive-euro.noarch 2:svn22191.1.1-45.el7 base texlive-euro-doc.noarch 2:svn22191.1.1-45.el7 base texlive-eurosym.noarch 2:svn17265.1.4_subrfix-45.el7 base texlive-eurosym-doc.noarch 2:svn17265.1.4_subrfix-45.el7 base texlive-extsizes.noarch 2:svn17263.1.4a-45.el7 base texlive-extsizes-doc.noarch 2:svn17263.1.4a-45.el7 base texlive-fancybox.noarch 2:svn18304.1.4-45.el7 base texlive-fancybox-doc.noarch 2:svn18304.1.4-45.el7 base texlive-fancyhdr.noarch 2:svn15878.3.1-45.el7 base texlive-fancyhdr-doc.noarch 2:svn15878.3.1-45.el7 base texlive-fancyref.noarch 2:svn15878.0.9c-45.el7 base texlive-fancyref-doc.noarch 2:svn15878.0.9c-45.el7 base texlive-fancyvrb.noarch 2:svn18492.2.8-45.el7 base texlive-fancyvrb-doc.noarch 2:svn18492.2.8-45.el7 base texlive-filecontents.noarch 2:svn24250.1.3-45.el7 base texlive-filecontents-doc.noarch 2:svn24250.1.3-45.el7 base texlive-filehook.noarch 2:svn24280.0.5d-45.el7 base texlive-filehook-doc.noarch 2:svn24280.0.5d-45.el7 base texlive-fix2col.noarch 2:svn17133.0-45.el7 base texlive-fix2col-doc.noarch 2:svn17133.0-45.el7 base texlive-fixlatvian.noarch 2:svn21631.1a-45.el7 base texlive-fixlatvian-doc.noarch 2:svn21631.1a-45.el7 base texlive-float.noarch 2:svn15878.1.3d-45.el7 base texlive-float-doc.noarch 2:svn15878.1.3d-45.el7 base texlive-fmtcount.noarch 2:svn28068.2.02-45.el7 base texlive-fmtcount-doc.noarch 2:svn28068.2.02-45.el7 base texlive-fncychap.noarch 2:svn20710.v1.34-45.el7 base texlive-fncychap-doc.noarch 2:svn20710.v1.34-45.el7 base texlive-fontbook.noarch 2:svn23608.0.2-45.el7 base texlive-fontbook-doc.noarch 2:svn23608.0.2-45.el7 base texlive-fontspec.noarch 2:svn29412.v2.3a-45.el7 base texlive-fontspec-doc.noarch 2:svn29412.v2.3a-45.el7 base texlive-fontware.noarch 2:svn26689.0-45.el7 base texlive-fontware-bin.x86_64 2:svn26509.0-45.20130427_r30134.el7 base texlive-fontwrap.noarch 2:svn15878.0-45.el7 base texlive-fontwrap-doc.noarch 2:svn15878.0-45.el7 base texlive-footmisc.noarch 2:svn23330.5.5b-45.el7 base texlive-footmisc-doc.noarch 2:svn23330.5.5b-45.el7 base texlive-fp.noarch 2:svn15878.0-45.el7 base texlive-fp-doc.noarch 2:svn15878.0-45.el7 base texlive-fpl.noarch 2:svn15878.1.002-45.el7 base texlive-fpl-doc.noarch 2:svn15878.1.002-45.el7 base texlive-framed.noarch 2:svn26789.0.96-45.el7 base texlive-framed-doc.noarch 2:svn26789.0.96-45.el7 base texlive-garuda-c90.noarch 2:svn15878.0-45.el7 base texlive-geometry.noarch 2:svn19716.5.6-45.el7 base texlive-geometry-doc.noarch 2:svn19716.5.6-45.el7 base texlive-glyphlist.noarch 2:svn28576.0-45.el7 base texlive-graphics.noarch 2:svn25405.1.0o-45.el7 base texlive-graphics-doc.noarch 2:svn25405.1.0o-45.el7 base texlive-gsftopk.noarch 2:svn26689.1.19.2-45.el7 base texlive-gsftopk-bin.x86_64 2:svn26509.0-45.20130427_r30134.el7 base texlive-helvetic.noarch 2:svn28614.0-45.el7 base texlive-hyperref.noarch 2:svn28213.6.83m-45.el7 base texlive-hyperref-doc.noarch 2:svn28213.6.83m-45.el7 base texlive-hyph-utf8.noarch 2:svn29641.0-45.el7 base texlive-hyph-utf8-doc.noarch 2:svn29641.0-45.el7 base texlive-hyphen-base.noarch 2:svn29197.0-45.el7 base texlive-hyphenat.noarch 2:svn15878.2.3c-45.el7 base texlive-hyphenat-doc.noarch 2:svn15878.2.3c-45.el7 base texlive-ifetex.noarch 2:svn24853.1.2-45.el7 base texlive-ifetex-doc.noarch 2:svn24853.1.2-45.el7 base texlive-ifluatex.noarch 2:svn26725.1.3-45.el7 base texlive-ifluatex-doc.noarch 2:svn26725.1.3-45.el7 base texlive-ifmtarg.noarch 2:svn19363.1.2a-45.el7 base texlive-ifmtarg-doc.noarch 2:svn19363.1.2a-45.el7 base texlive-ifoddpage.noarch 2:svn23979.0-45.el7 base texlive-ifoddpage-doc.noarch 2:svn23979.0-45.el7 base texlive-iftex.noarch 2:svn29654.0.2-45.el7 base texlive-iftex-doc.noarch 2:svn29654.0.2-45.el7 base texlive-ifxetex.noarch 2:svn19685.0.5-45.el7 base texlive-ifxetex-doc.noarch 2:svn19685.0.5-45.el7 base texlive-index.noarch 2:svn24099.4.1beta-45.el7 base texlive-index-doc.noarch 2:svn24099.4.1beta-45.el7 base texlive-jadetex.noarch 2:svn23409.3.13-45.el7 base texlive-jadetex-bin.noarch 2:svn3006.0-45.20130427_r30134.el7 base texlive-jadetex-doc.noarch 2:svn23409.3.13-45.el7 base texlive-jknapltx.noarch 2:svn19440.0-45.el7 base texlive-jknapltx-doc.noarch 2:svn19440.0-45.el7 base texlive-kastrup.noarch 2:svn15878.0-45.el7 base texlive-kastrup-doc.noarch 2:svn15878.0-45.el7 base texlive-kerkis.noarch 2:svn15878.0-45.el7 base texlive-kerkis-doc.noarch 2:svn15878.0-45.el7 base texlive-koma-script.noarch 2:svn27255.3.11b-45.el7 base texlive-kpathsea.noarch 2:svn28792.0-45.el7 base texlive-kpathsea-bin.x86_64 2:svn27347.0-45.20130427_r30134.el7 base texlive-kpathsea-doc.noarch 2:svn28792.0-45.el7 base texlive-kpathsea-lib.i686 2:2012-45.20130427_r30134.el7 base texlive-kpathsea-lib.x86_64 2:2012-45.20130427_r30134.el7 base texlive-kpathsea-lib-devel.i686 2:2012-45.20130427_r30134.el7 base texlive-kpathsea-lib-devel.x86_64 2:2012-45.20130427_r30134.el7 base texlive-l3experimental.noarch 2:svn29361.SVN_4467-45.el7 base texlive-l3experimental-doc.noarch 2:svn29361.SVN_4467-45.el7 base texlive-l3kernel.noarch 2:svn29409.SVN_4469-45.el7 base texlive-l3kernel-doc.noarch 2:svn29409.SVN_4469-45.el7 base texlive-l3packages.noarch 2:svn29361.SVN_4467-45.el7 base texlive-l3packages-doc.noarch 2:svn29361.SVN_4467-45.el7 base texlive-lastpage.noarch 2:svn28985.1.2l-45.el7 base texlive-lastpage-doc.noarch 2:svn28985.1.2l-45.el7 base texlive-latex.noarch 2:svn27907.0-45.el7 base texlive-latex-bin.noarch 2:svn26689.0-45.el7 base texlive-latex-bin-bin.noarch 2:svn14050.0-45.20130427_r30134.el7 base texlive-latex-doc.noarch 2:svn27907.0-45.el7 base texlive-latex-fonts.noarch 2:svn28888.0-45.el7 base texlive-latex-fonts-doc.noarch 2:svn28888.0-45.el7 base texlive-latexconfig.noarch 2:svn28991.0-45.el7 base texlive-lettrine.noarch 2:svn29391.1.64-45.el7 base texlive-lettrine-doc.noarch 2:svn29391.1.64-45.el7 base texlive-listings.noarch 2:svn15878.1.4-45.el7 base texlive-listings-doc.noarch 2:svn15878.1.4-45.el7 base texlive-lm.noarch 2:svn28119.2.004-45.el7 base texlive-lm-doc.noarch 2:svn28119.2.004-45.el7 base texlive-lm-math.noarch 2:svn29044.1.958-45.el7 base texlive-lm-math-doc.noarch 2:svn29044.1.958-45.el7 base texlive-ltxmisc.noarch 2:svn21927.0-45.el7 base texlive-lua-alt-getopt.noarch 2:svn29349.0.7.0-45.el7 base texlive-lua-alt-getopt-doc.noarch 2:svn29349.0.7.0-45.el7 base texlive-lualatex-math.noarch 2:svn29346.1.2-45.el7 base texlive-lualatex-math-doc.noarch 2:svn29346.1.2-45.el7 base texlive-luaotfload.noarch 2:svn26718.1.26-45.el7 base texlive-luaotfload-bin.noarch 2:svn18579.0-45.20130427_r30134.el7 base texlive-luaotfload-doc.noarch 2:svn26718.1.26-45.el7 base texlive-luatex.noarch 2:svn26689.0.70.1-45.el7 base texlive-luatex-bin.x86_64 2:svn26912.0-45.20130427_r30134.el7 base texlive-luatex-doc.noarch 2:svn26689.0.70.1-45.el7 base texlive-luatexbase.noarch 2:svn22560.0.31-45.el7 base texlive-luatexbase-doc.noarch 2:svn22560.0.31-45.el7 base texlive-makecmds.noarch 2:svn15878.0-45.el7 base texlive-makecmds-doc.noarch 2:svn15878.0-45.el7 base texlive-makeindex.noarch 2:svn26689.2.12-45.el7 base texlive-makeindex-bin.x86_64 2:svn26509.0-45.20130427_r30134.el7 base texlive-makeindex-doc.noarch 2:svn26689.2.12-45.el7 base texlive-marginnote.noarch 2:svn25880.v1.1i-45.el7 base texlive-marginnote-doc.noarch 2:svn25880.v1.1i-45.el7 base texlive-marvosym.noarch 2:svn29349.2.2a-45.el7 base texlive-marvosym-doc.noarch 2:svn29349.2.2a-45.el7 base texlive-mathpazo.noarch 2:svn15878.1.003-45.el7 base texlive-mathpazo-doc.noarch 2:svn15878.1.003-45.el7 base texlive-mathspec.noarch 2:svn15878.0.2-45.el7 base texlive-mathspec-doc.noarch 2:svn15878.0.2-45.el7 base texlive-mdwtools.noarch 2:svn15878.1.05.4-45.el7 base texlive-mdwtools-doc.noarch 2:svn15878.1.05.4-45.el7 base texlive-memoir.noarch 2:svn21638.3.6j_patch_6.0g-45.el7 base texlive-memoir-doc.noarch 2:svn21638.3.6j_patch_6.0g-45.el7 base texlive-metafont.noarch 2:svn26689.2.718281-45.el7 base texlive-metafont-bin.x86_64 2:svn26912.0-45.20130427_r30134.el7 base texlive-metalogo.noarch 2:svn18611.0.12-45.el7 base texlive-metalogo-doc.noarch 2:svn18611.0.12-45.el7 base texlive-metapost.noarch 2:svn26689.1.212-45.el7 base texlive-metapost-bin.x86_64 2:svn26509.0-45.20130427_r30134.el7 base texlive-metapost-doc.noarch 2:svn26689.1.212-45.el7 base texlive-metapost-examples-doc.noarch 2:svn15878.0-45.el7 base texlive-mflogo.noarch 2:svn17487.0-45.el7 base texlive-mflogo-doc.noarch 2:svn17487.0-45.el7 base texlive-mfnfss.noarch 2:svn19410.0-45.el7 base texlive-mfnfss-doc.noarch 2:svn19410.0-45.el7 base texlive-mfware.noarch 2:svn26689.0-45.el7 base texlive-mfware-bin.x86_64 2:svn26509.0-45.20130427_r30134.el7 base texlive-mh.noarch 2:svn29420.0-45.el7 base texlive-mh-doc.noarch 2:svn29420.0-45.el7 base texlive-microtype.noarch 2:svn29392.2.5-45.el7 base texlive-microtype-doc.noarch 2:svn29392.2.5-45.el7 base texlive-misc.noarch 2:svn24955.0-45.el7 base texlive-mnsymbol.noarch 2:svn18651.1.4-45.el7 base texlive-mnsymbol-doc.noarch 2:svn18651.1.4-45.el7 base texlive-mparhack.noarch 2:svn15878.1.4-45.el7 base texlive-mparhack-doc.noarch 2:svn15878.1.4-45.el7 base texlive-mptopdf.noarch 2:svn26689.0-45.el7 base texlive-mptopdf-bin.noarch 2:svn18674.0-45.20130427_r30134.el7 base texlive-ms.noarch 2:svn24467.0-45.el7 base texlive-ms-doc.noarch 2:svn24467.0-45.el7 base texlive-multido.noarch 2:svn18302.1.42-45.el7 base texlive-multido-doc.noarch 2:svn18302.1.42-45.el7 base texlive-multirow.noarch 2:svn17256.1.6-45.el7 base texlive-multirow-doc.noarch 2:svn17256.1.6-45.el7 base texlive-natbib.noarch 2:svn20668.8.31b-45.el7 base texlive-natbib-doc.noarch 2:svn20668.8.31b-45.el7 base texlive-ncctools.noarch 2:svn15878.3.5-45.el7 base texlive-ncctools-doc.noarch 2:svn15878.3.5-45.el7 base texlive-ncntrsbk.noarch 2:svn28614.0-45.el7 base texlive-norasi-c90.noarch 2:svn15878.0-45.el7 base texlive-ntgclass.noarch 2:svn15878.0-45.el7 base texlive-ntgclass-doc.noarch 2:svn15878.0-45.el7 base texlive-oberdiek.noarch 2:svn26725.0-45.el7 base texlive-oberdiek-doc.noarch 2:svn26725.0-45.el7 base texlive-overpic.noarch 2:svn19712.0.53-45.el7 base texlive-overpic-doc.noarch 2:svn19712.0.53-45.el7 base texlive-palatino.noarch 2:svn28614.0-45.el7 base texlive-paralist.noarch 2:svn15878.2.3b-45.el7 base texlive-paralist-doc.noarch 2:svn15878.2.3b-45.el7 base texlive-parallel.noarch 2:svn15878.0-45.el7 base texlive-parallel-doc.noarch 2:svn15878.0-45.el7 base texlive-parskip.noarch 2:svn19963.2.0-45.el7 base texlive-parskip-doc.noarch 2:svn19963.2.0-45.el7 base texlive-passivetex.noarch 2:svn15878.0-45.el7 base texlive-pdfpages.noarch 2:svn27574.0.4t-45.el7 base texlive-pdfpages-doc.noarch 2:svn27574.0.4t-45.el7 base texlive-pdftex.noarch 2:svn29585.1.40.11-45.el7 base texlive-pdftex-bin.x86_64 2:svn27321.0-45.20130427_r30134.el7 base texlive-pdftex-def.noarch 2:svn22653.0.06d-45.el7 base texlive-pdftex-doc.noarch 2:svn29585.1.40.11-45.el7 base texlive-pgf.noarch 2:svn22614.2.10-45.el7 base texlive-pgf-doc.noarch 2:svn22614.2.10-45.el7 base texlive-philokalia.noarch 2:svn18651.1.1-45.el7 base texlive-philokalia-doc.noarch 2:svn18651.1.1-45.el7 base texlive-placeins.noarch 2:svn19848.2.2-45.el7 base texlive-placeins-doc.noarch 2:svn19848.2.2-45.el7 base texlive-plain.noarch 2:svn26647.0-45.el7 base texlive-polyglossia.noarch 2:svn26163.v1.2.1-45.el7 base texlive-polyglossia-doc.noarch 2:svn26163.v1.2.1-45.el7 base texlive-powerdot.noarch 2:svn25656.1.4i-45.el7 base texlive-powerdot-doc.noarch 2:svn25656.1.4i-45.el7 base texlive-preprint.noarch 2:svn16085.0-45.el7 base texlive-preprint-doc.noarch 2:svn16085.0-45.el7 base texlive-psfrag.noarch 2:svn15878.3.04-45.el7 base texlive-psfrag-doc.noarch 2:svn15878.3.04-45.el7 base texlive-pslatex.noarch 2:svn16416.0-45.el7 base texlive-psnfss.noarch 2:svn23394.9.2a-45.el7 base texlive-psnfss-doc.noarch 2:svn23394.9.2a-45.el7 base texlive-pspicture.noarch 2:svn15878.0-45.el7 base texlive-pspicture-doc.noarch 2:svn15878.0-45.el7 base texlive-pst-3d.noarch 2:svn17257.1.10-45.el7 base texlive-pst-3d-doc.noarch 2:svn17257.1.10-45.el7 base texlive-pst-blur.noarch 2:svn15878.2.0-45.el7 base texlive-pst-blur-doc.noarch 2:svn15878.2.0-45.el7 base texlive-pst-coil.noarch 2:svn24020.1.06-45.el7 base texlive-pst-coil-doc.noarch 2:svn24020.1.06-45.el7 base texlive-pst-eps.noarch 2:svn15878.1.0-45.el7 base texlive-pst-eps-doc.noarch 2:svn15878.1.0-45.el7 base texlive-pst-fill.noarch 2:svn15878.1.01-45.el7 base texlive-pst-fill-doc.noarch 2:svn15878.1.01-45.el7 base texlive-pst-grad.noarch 2:svn15878.1.06-45.el7 base texlive-pst-grad-doc.noarch 2:svn15878.1.06-45.el7 base texlive-pst-math.noarch 2:svn20176.0.61-45.el7 base texlive-pst-math-doc.noarch 2:svn20176.0.61-45.el7 base texlive-pst-node.noarch 2:svn27799.1.25-45.el7 base texlive-pst-node-doc.noarch 2:svn27799.1.25-45.el7 base texlive-pst-plot.noarch 2:svn28729.1.44-45.el7 base texlive-pst-plot-doc.noarch 2:svn28729.1.44-45.el7 base texlive-pst-slpe.noarch 2:svn24391.1.31-45.el7 base texlive-pst-slpe-doc.noarch 2:svn24391.1.31-45.el7 base texlive-pst-text.noarch 2:svn15878.1.00-45.el7 base texlive-pst-text-doc.noarch 2:svn15878.1.00-45.el7 base texlive-pst-tree.noarch 2:svn24142.1.12-45.el7 base texlive-pst-tree-doc.noarch 2:svn24142.1.12-45.el7 base texlive-pstricks.noarch 2:svn29678.2.39-45.el7 base texlive-pstricks-add.noarch 2:svn28750.3.59-45.el7 base texlive-pstricks-add-doc.noarch 2:svn28750.3.59-45.el7 base texlive-pstricks-doc.noarch 2:svn29678.2.39-45.el7 base texlive-ptext.noarch 2:svn28124.1-45.el7 base texlive-ptext-doc.noarch 2:svn28124.1-45.el7 base texlive-pxfonts.noarch 2:svn15878.0-45.el7 base texlive-pxfonts-doc.noarch 2:svn15878.0-45.el7 base texlive-qstest.noarch 2:svn15878.0-45.el7 base texlive-qstest-doc.noarch 2:svn15878.0-45.el7 base texlive-rcs.noarch 2:svn15878.0-45.el7 base texlive-rcs-doc.noarch 2:svn15878.0-45.el7 base texlive-realscripts.noarch 2:svn29423.0.3b-45.el7 base texlive-realscripts-doc.noarch 2:svn29423.0.3b-45.el7 base texlive-rotating.noarch 2:svn16832.2.16b-45.el7 base texlive-rotating-doc.noarch 2:svn16832.2.16b-45.el7 base texlive-rsfs.noarch 2:svn15878.0-45.el7 base texlive-rsfs-doc.noarch 2:svn15878.0-45.el7 base texlive-sansmath.noarch 2:svn17997.1.1-45.el7 base texlive-sansmath-doc.noarch 2:svn17997.1.1-45.el7 base texlive-sauerj.noarch 2:svn15878.0-45.el7 base texlive-sauerj-doc.noarch 2:svn15878.0-45.el7 base texlive-scheme-basic.noarch 2:svn25923.0-45.20130427_r30134.el7 base texlive-section.noarch 2:svn20180.0-45.el7 base texlive-section-doc.noarch 2:svn20180.0-45.el7 base texlive-sectsty.noarch 2:svn15878.2.0.2-45.el7 base texlive-sectsty-doc.noarch 2:svn15878.2.0.2-45.el7 base texlive-seminar.noarch 2:svn18322.1.5-45.el7 base texlive-seminar-doc.noarch 2:svn18322.1.5-45.el7 base texlive-sepnum.noarch 2:svn20186.2.0-45.el7 base texlive-sepnum-doc.noarch 2:svn20186.2.0-45.el7 base texlive-setspace.noarch 2:svn24881.6.7a-45.el7 base texlive-setspace-doc.noarch 2:svn24881.6.7a-45.el7 base texlive-showexpl.noarch 2:svn27790.v0.3j-45.el7 base texlive-showexpl-doc.noarch 2:svn27790.v0.3j-45.el7 base texlive-soul.noarch 2:svn15878.2.4-45.el7 base texlive-soul-doc.noarch 2:svn15878.2.4-45.el7 base texlive-stmaryrd.noarch 2:svn22027.0-45.el7 base texlive-stmaryrd-doc.noarch 2:svn22027.0-45.el7 base texlive-subfig.noarch 2:svn15878.1.3-45.el7 base texlive-subfig-doc.noarch 2:svn15878.1.3-45.el7 base texlive-subfigure.noarch 2:svn15878.2.1.5-45.el7 base texlive-subfigure-doc.noarch 2:svn15878.2.1.5-45.el7 base texlive-svn-prov.noarch 2:svn18017.3.1862-45.el7 base texlive-svn-prov-doc.noarch 2:svn18017.3.1862-45.el7 base texlive-symbol.noarch 2:svn28614.0-45.el7 base texlive-t2.noarch 2:svn29349.0-45.el7 base texlive-t2-doc.noarch 2:svn29349.0-45.el7 base texlive-tetex.noarch 2:svn29585.3.0-45.el7 base texlive-tetex-bin.noarch 2:svn27344.0-45.20130427_r30134.el7 base texlive-tetex-doc.noarch 2:svn29585.3.0-45.el7 base texlive-tex.noarch 2:svn26689.3.1415926-45.el7 base texlive-tex-bin.x86_64 2:svn26912.0-45.20130427_r30134.el7 base texlive-tex-gyre.noarch 2:svn18651.2.004-45.el7 base texlive-tex-gyre-doc.noarch 2:svn18651.2.004-45.el7 base texlive-tex-gyre-math.noarch 2:svn29045.0-45.el7 base texlive-tex-gyre-math-doc.noarch 2:svn29045.0-45.el7 base texlive-tex4ht.noarch 2:svn29474.0-45.el7 base texlive-tex4ht-bin.x86_64 2:svn26509.0-45.20130427_r30134.el7 base texlive-tex4ht-doc.noarch 2:svn29474.0-45.el7 base texlive-texconfig.noarch 2:svn29349.0-45.el7 base texlive-texconfig-bin.noarch 2:svn27344.0-45.20130427_r30134.el7 base texlive-texlive.infra.noarch 2:svn28217.0-45.el7 base texlive-texlive.infra-bin.x86_64 2:svn22566.0-45.20130427_r30134.el7 base texlive-texlive.infra-doc.noarch 2:svn28217.0-45.el7 base texlive-textcase.noarch 2:svn15878.0-45.el7 base texlive-textcase-doc.noarch 2:svn15878.0-45.el7 base texlive-textpos.noarch 2:svn28261.1.7h-45.el7 base texlive-textpos-doc.noarch 2:svn28261.1.7h-45.el7 base texlive-thailatex.noarch 2:svn29349.0.5.1-45.el7 base texlive-thailatex-doc.noarch 2:svn29349.0.5.1-45.el7 base texlive-threeparttable.noarch 2:svn17383.0-45.el7 base texlive-threeparttable-doc.noarch 2:svn17383.0-45.el7 base texlive-thumbpdf.noarch 2:svn26689.3.15-45.el7 base texlive-thumbpdf-bin.noarch 2:svn6898.0-45.20130427_r30134.el7 base texlive-thumbpdf-doc.noarch 2:svn26689.3.15-45.el7 base texlive-times.noarch 2:svn28614.0-45.el7 base texlive-tipa.noarch 2:svn29349.1.3-45.el7 base texlive-tipa-doc.noarch 2:svn29349.1.3-45.el7 base texlive-titlesec.noarch 2:svn24852.2.10.0-45.el7 base texlive-titlesec-doc.noarch 2:svn24852.2.10.0-45.el7 base texlive-titling.noarch 2:svn15878.2.1d-45.el7 base texlive-titling-doc.noarch 2:svn15878.2.1d-45.el7 base texlive-tocloft.noarch 2:svn20084.2.3e-45.el7 base texlive-tocloft-doc.noarch 2:svn20084.2.3e-45.el7 base texlive-tools.noarch 2:svn26263.0-45.el7 base texlive-tools-doc.noarch 2:svn26263.0-45.el7 base texlive-txfonts.noarch 2:svn15878.0-45.el7 base texlive-txfonts-doc.noarch 2:svn15878.0-45.el7 base texlive-type1cm.noarch 2:svn21820.0-45.el7 base texlive-type1cm-doc.noarch 2:svn21820.0-45.el7 base texlive-typehtml.noarch 2:svn17134.0-45.el7 base texlive-typehtml-doc.noarch 2:svn17134.0-45.el7 base texlive-ucharclasses.noarch 2:svn27820.2.0-45.el7 base texlive-ucharclasses-doc.noarch 2:svn27820.2.0-45.el7 base texlive-ucs.noarch 2:svn27549.2.1-45.el7 base texlive-ucs-doc.noarch 2:svn27549.2.1-45.el7 base texlive-uhc.noarch 2:svn16791.0-45.el7 base texlive-uhc-doc.noarch 2:svn16791.0-45.el7 base texlive-ulem.noarch 2:svn26785.0-45.el7 base texlive-ulem-doc.noarch 2:svn26785.0-45.el7 base texlive-underscore.noarch 2:svn18261.0-45.el7 base texlive-underscore-doc.noarch 2:svn18261.0-45.el7 base texlive-unicode-math.noarch 2:svn29413.0.7d-45.el7 base texlive-unicode-math-doc.noarch 2:svn29413.0.7d-45.el7 base texlive-unisugar.noarch 2:svn22357.0.92-45.el7 base texlive-unisugar-doc.noarch 2:svn22357.0.92-45.el7 base texlive-url.noarch 2:svn16864.3.2-45.el7 base texlive-url-doc.noarch 2:svn16864.3.2-45.el7 base texlive-utopia.noarch 2:svn15878.0-45.el7 base texlive-utopia-doc.noarch 2:svn15878.0-45.el7 base texlive-varwidth.noarch 2:svn24104.0.92-45.el7 base texlive-varwidth-doc.noarch 2:svn24104.0.92-45.el7 base texlive-wadalab.noarch 2:svn22576.0-45.el7 base texlive-wadalab-doc.noarch 2:svn22576.0-45.el7 base texlive-was.noarch 2:svn21439.0-45.el7 base texlive-was-doc.noarch 2:svn21439.0-45.el7 base texlive-wasy.noarch 2:svn15878.0-45.el7 base texlive-wasy-doc.noarch 2:svn15878.0-45.el7 base texlive-wasysym.noarch 2:svn15878.2.0-45.el7 base texlive-wasysym-doc.noarch 2:svn15878.2.0-45.el7 base texlive-wrapfig.noarch 2:svn22048.3.6-45.el7 base texlive-wrapfig-doc.noarch 2:svn22048.3.6-45.el7 base texlive-xcolor.noarch 2:svn15878.2.11-45.el7 base texlive-xcolor-doc.noarch 2:svn15878.2.11-45.el7 base texlive-xdvi.noarch 2:svn26689.22.85-45.el7 base texlive-xdvi-bin.x86_64 2:svn26509.0-45.20130427_r30134.el7 base texlive-xecjk.noarch 2:svn28816.3.1.2-45.el7 base texlive-xecjk-doc.noarch 2:svn28816.3.1.2-45.el7 base texlive-xecolor.noarch 2:svn29660.0.1-45.el7 base texlive-xecolor-doc.noarch 2:svn29660.0.1-45.el7 base texlive-xecyr.noarch 2:svn20221.1.1-45.el7 base texlive-xecyr-doc.noarch 2:svn20221.1.1-45.el7 base texlive-xeindex.noarch 2:svn16760.0.2-45.el7 base texlive-xeindex-doc.noarch 2:svn16760.0.2-45.el7 base texlive-xepersian.noarch 2:svn29661.12.1-45.el7 base texlive-xepersian-doc.noarch 2:svn29661.12.1-45.el7 base texlive-xesearch.noarch 2:svn16041.0-45.el7 base texlive-xesearch-doc.noarch 2:svn16041.0-45.el7 base texlive-xetex.noarch 2:svn26330.0.9997.5-45.el7 base texlive-xetex-bin.x86_64 2:svn26912.0-45.20130427_r30134.el7 base texlive-xetex-def.noarch 2:svn29154.0.95-45.el7 base texlive-xetex-doc.noarch 2:svn26330.0.9997.5-45.el7 base texlive-xetex-itrans.noarch 2:svn24105.4.0-45.el7 base texlive-xetex-itrans-doc.noarch 2:svn24105.4.0-45.el7 base texlive-xetex-pstricks.noarch 2:svn17055.0-45.el7 base texlive-xetex-pstricks-doc.noarch 2:svn17055.0-45.el7 base texlive-xetex-tibetan.noarch 2:svn28847.0.1-45.el7 base texlive-xetex-tibetan-doc.noarch 2:svn28847.0.1-45.el7 base texlive-xetexconfig.noarch 2:svn28819.0-45.el7 base texlive-xetexfontinfo.noarch 2:svn15878.0-45.el7 base texlive-xetexfontinfo-doc.noarch 2:svn15878.0-45.el7 base texlive-xifthen.noarch 2:svn15878.1.3-45.el7 base texlive-xifthen-doc.noarch 2:svn15878.1.3-45.el7 base texlive-xkeyval.noarch 2:svn27995.2.6a-45.el7 base texlive-xkeyval-doc.noarch 2:svn27995.2.6a-45.el7 base texlive-xltxtra.noarch 2:svn19809.0.5e-45.el7 base texlive-xltxtra-doc.noarch 2:svn19809.0.5e-45.el7 base texlive-xmltex.noarch 2:svn28273.0.8-45.el7 base texlive-xmltex-bin.noarch 2:svn3006.0-45.20130427_r30134.el7 base texlive-xmltex-doc.noarch 2:svn28273.0.8-45.el7 base texlive-xstring.noarch 2:svn29258.1.7a-45.el7 base texlive-xstring-doc.noarch 2:svn29258.1.7a-45.el7 base texlive-xtab.noarch 2:svn23347.2.3f-45.el7 base texlive-xtab-doc.noarch 2:svn23347.2.3f-45.el7 base texlive-xunicode.noarch 2:svn23897.0.981-45.el7 base texlive-xunicode-doc.noarch 2:svn23897.0.981-45.el7 base texlive-zapfchan.noarch 2:svn28614.0-45.el7 base texlive-zapfding.noarch 2:svn28614.0-45.el7 base tftp.x86_64 5.2-22.el7 base tftp-server.x86_64 5.2-22.el7 base thai-scalable-garuda-fonts.noarch 0.5.0-7.el7 base thai-scalable-kinnari-fonts.noarch 0.5.0-7.el7 base thai-scalable-loma-fonts.noarch 0.5.0-7.el7 base thai-scalable-norasi-fonts.noarch 0.5.0-7.el7 base thai-scalable-purisa-fonts.noarch 0.5.0-7.el7 base thai-scalable-sawasdee-fonts.noarch 0.5.0-7.el7 base thai-scalable-tlwgmono-fonts.noarch 0.5.0-7.el7 base thai-scalable-tlwgtypewriter-fonts.noarch 0.5.0-7.el7 base thai-scalable-tlwgtypist-fonts.noarch 0.5.0-7.el7 base thai-scalable-tlwgtypo-fonts.noarch 0.5.0-7.el7 base thai-scalable-umpush-fonts.noarch 0.5.0-7.el7 base thunderbird.x86_64 78.11.0-1.el7.centos updates tibetan-machine-uni-fonts.noarch 1.901-12.el7 base tigervnc.x86_64 1.8.0-22.el7 updates tigervnc-icons.noarch 1.8.0-22.el7 updates tigervnc-license.noarch 1.8.0-22.el7 updates tigervnc-server.x86_64 1.8.0-22.el7 updates tigervnc-server-applet.noarch 1.8.0-22.el7 updates tigervnc-server-minimal.x86_64 1.8.0-22.el7 updates tigervnc-server-module.x86_64 1.8.0-22.el7 updates tix.i686 1:8.4.3-12.el7 base tix.x86_64 1:8.4.3-12.el7 base tix-devel.i686 1:8.4.3-12.el7 base tix-devel.x86_64 1:8.4.3-12.el7 base tix-doc.x86_64 1:8.4.3-12.el7 base tk.i686 1:8.5.13-6.el7 base tk-devel.i686 1:8.5.13-6.el7 base tk-devel.x86_64 1:8.5.13-6.el7 base tkinter.x86_64 2.7.5-90.el7 updates tmpwatch.x86_64 2.11-6.el7 base tmux.x86_64 1.8-4.el7 base tn5250.i686 0.17.4-10.el7 base tn5250-devel.i686 0.17.4-10.el7 base tn5250-devel.x86_64 0.17.4-10.el7 base tncfhh.i686 0.8.3-16.el7 base tncfhh.x86_64 0.8.3-16.el7 base tncfhh-devel.i686 0.8.3-16.el7 base tncfhh-devel.x86_64 0.8.3-16.el7 base tncfhh-examples.i686 0.8.3-16.el7 base tncfhh-examples.x86_64 0.8.3-16.el7 base tncfhh-libs.i686 0.8.3-16.el7 base tncfhh-libs.x86_64 0.8.3-16.el7 base tncfhh-utils.i686 0.8.3-16.el7 base tncfhh-utils.x86_64 0.8.3-16.el7 base tog-pegasus-devel.i686 2:2.14.1-8.el7 base tog-pegasus-devel.x86_64 2:2.14.1-8.el7 base tog-pegasus-libs.i686 2:2.14.1-8.el7 base tog-pegasus-test.x86_64 2:2.14.1-8.el7 base tokyocabinet.i686 1.4.48-3.el7 base tokyocabinet.x86_64 1.4.48-3.el7 base tokyocabinet-devel.i686 1.4.48-3.el7 base tokyocabinet-devel.x86_64 1.4.48-3.el7 base tokyocabinet-devel-doc.noarch 1.4.48-3.el7 base tomcat.noarch 7.0.76-16.el7_9 updates tomcat-admin-webapps.noarch 7.0.76-16.el7_9 updates tomcat-docs-webapp.noarch 7.0.76-16.el7_9 updates tomcat-el-2.2-api.noarch 7.0.76-16.el7_9 updates tomcat-javadoc.noarch 7.0.76-16.el7_9 updates tomcat-jsp-2.2-api.noarch 7.0.76-16.el7_9 updates tomcat-jsvc.noarch 7.0.76-16.el7_9 updates tomcat-lib.noarch 7.0.76-16.el7_9 updates tomcat-servlet-3.0-api.noarch 7.0.76-16.el7_9 updates tomcat-webapps.noarch 7.0.76-16.el7_9 updates totem-devel.x86_64 1:3.26.2-1.el7 base totem-pl-parser.i686 3.26.1-1.el7 base totem-pl-parser-devel.i686 3.26.1-1.el7 base totem-pl-parser-devel.x86_64 3.26.1-1.el7 base tpm-quote-tools.x86_64 1.0.2-3.el7 base tpm-tools.i686 1.3.9-6.el7 base tpm-tools.x86_64 1.3.9-6.el7 base tpm-tools-devel.i686 1.3.9-6.el7 base tpm-tools-devel.x86_64 1.3.9-6.el7 base tpm-tools-pkcs11.x86_64 1.3.9-6.el7 base tpm2-abrmd.i686 1.1.0-11.el7 base tpm2-abrmd.x86_64 1.1.0-11.el7 base tpm2-abrmd-devel.i686 1.1.0-11.el7 base tpm2-abrmd-devel.x86_64 1.1.0-11.el7 base tpm2-tools.x86_64 3.0.4-3.el7 base tpm2-tss.i686 1.4.0-3.el7 base tpm2-tss.x86_64 1.4.0-3.el7 base tpm2-tss-devel.i686 1.4.0-3.el7 base tpm2-tss-devel.x86_64 1.4.0-3.el7 base trace-cmd.x86_64 2.7.0-3.el7 base tracker.i686 1.10.5-8.el7 base tracker-devel.i686 1.10.5-8.el7 base tracker-devel.x86_64 1.10.5-8.el7 base tracker-docs.noarch 1.10.5-8.el7 base tracker-needle.x86_64 1.10.5-8.el7 base tracker-preferences.x86_64 1.10.5-8.el7 base trang.noarch 20091111-14.el7 base transfig.x86_64 1:3.2.5d-13.el7 base tree.x86_64 1.6.0-10.el7 base trousers.i686 0.3.14-2.el7 base trousers-devel.i686 0.3.14-2.el7 base trousers-devel.x86_64 0.3.14-2.el7 base trousers-static.i686 0.3.14-2.el7 base trousers-static.x86_64 0.3.14-2.el7 base tuna.noarch 0.13-9.el7 base tuned.noarch 2.11.0-11.el7_9 updates tuned-gtk.noarch 2.11.0-11.el7_9 updates tuned-profiles-atomic.noarch 2.11.0-11.el7_9 updates tuned-profiles-compat.noarch 2.11.0-11.el7_9 updates tuned-profiles-cpu-partitioning.noarch 2.11.0-11.el7_9 updates tuned-profiles-mssql.noarch 2.11.0-11.el7_9 updates tuned-profiles-oracle.noarch 2.11.0-11.el7_9 updates tuned-utils.noarch 2.11.0-11.el7_9 updates tuned-utils-systemtap.noarch 2.11.0-11.el7_9 updates turbojpeg.i686 1.2.90-8.el7 base turbojpeg.x86_64 1.2.90-8.el7 base turbojpeg-devel.i686 1.2.90-8.el7 base turbojpeg-devel.x86_64 1.2.90-8.el7 base txw2-javadoc.noarch 20110809-8.el7 base tzdata.noarch 2021a-1.el7 updates tzdata-java.noarch 2021a-1.el7 updates uboot-images-armv7.noarch 2019.07-3.el7 extras uboot-images-armv8.noarch 2019.07-3.el7 extras uboot-tools.x86_64 2019.07-3.el7 extras ucx.x86_64 1.5.2-1.el7 base ucx-devel.x86_64 1.5.2-1.el7 base ucx-static.x86_64 1.5.2-1.el7 base udftools.x86_64 1.0.0b3-26.el7 base udisks2-iscsi.x86_64 2.8.4-1.el7 base udisks2-lsm.x86_64 2.8.4-1.el7 base udisks2-lvm2.x86_64 2.8.4-1.el7 base unbound.x86_64 1.6.6-5.el7_8 base unbound-devel.i686 1.6.6-5.el7_8 base unbound-devel.x86_64 1.6.6-5.el7_8 base unbound-libs.i686 1.6.6-5.el7_8 base unbound-python.x86_64 1.6.6-5.el7_8 base unicode-ucd.noarch 6.3.0-2.el7 base unique3.i686 3.0.2-8.el7 base unique3.x86_64 3.0.2-8.el7 base unique3-devel.i686 3.0.2-8.el7 base unique3-devel.x86_64 3.0.2-8.el7 base unique3-docs.noarch 3.0.2-8.el7 base unit-api-javadoc.noarch 1.0-3.el7 base units.x86_64 2.01-5.el7 base unixODBC.i686 2.3.1-14.el7 base unixODBC.x86_64 2.3.1-14.el7 base unixODBC-devel.i686 2.3.1-14.el7 base unixODBC-devel.x86_64 2.3.1-14.el7 base unoconv.noarch 0.6-8.el7 base unzip.x86_64 6.0-22.el7_9 updates uom-lib-javadoc.noarch 1.0.1-5.el7 base uom-parent.noarch 1.0.3-2.el7 base uom-se-javadoc.noarch 1.0.4-3.el7 base uom-systems-javadoc.noarch 0.7-1.el7 base upower.i686 0.99.7-1.el7 base upower-devel.i686 0.99.7-1.el7 base upower-devel.x86_64 0.99.7-1.el7 base upower-devel-docs.noarch 0.99.7-1.el7 base uriparser.i686 0.7.5-10.el7 base uriparser.x86_64 0.7.5-10.el7 base uriparser-devel.i686 0.7.5-10.el7 base uriparser-devel.x86_64 0.7.5-10.el7 base urlview.x86_64 0.9-15.20121210git6cfcad.el7 base urw-base35-fonts-devel.noarch 20170801-10.el7 base urw-base35-fonts-legacy.noarch 20170801-10.el7 base urw-fonts.noarch 2.4-16.el7 base usbguard.i686 0.7.4-3.el7 base usbguard.x86_64 0.7.4-3.el7 base usbguard-devel.i686 0.7.4-3.el7 base usbguard-devel.x86_64 0.7.4-3.el7 base usbguard-tools.x86_64 0.7.4-3.el7 base usbmuxd.i686 1.1.0-1.el7 base usbredir.i686 0.7.1-3.el7 base usbredir-devel.i686 0.7.1-3.el7 base usbredir-devel.x86_64 0.7.1-3.el7 base usbredir-server.x86_64 0.7.1-3.el7 base usermode-gtk.x86_64 1.111-6.el7 base usnic-tools.x86_64 1.1.2.0-1.el7 base ustr.i686 1.0.4-16.el7 base ustr-debug.i686 1.0.4-16.el7 base ustr-debug.x86_64 1.0.4-16.el7 base ustr-debug-static.i686 1.0.4-16.el7 base ustr-debug-static.x86_64 1.0.4-16.el7 base ustr-devel.i686 1.0.4-16.el7 base ustr-devel.x86_64 1.0.4-16.el7 base ustr-static.i686 1.0.4-16.el7 base ustr-static.x86_64 1.0.4-16.el7 base util-linux.i686 2.23.2-65.el7_9.1 updates util-linux.x86_64 2.23.2-65.el7_9.1 updates uuid.i686 1.6.2-26.el7 base uuid.x86_64 1.6.2-26.el7 base uuid-c++.i686 1.6.2-26.el7 base uuid-c++.x86_64 1.6.2-26.el7 base uuid-c++-devel.i686 1.6.2-26.el7 base uuid-c++-devel.x86_64 1.6.2-26.el7 base uuid-dce.i686 1.6.2-26.el7 base uuid-dce.x86_64 1.6.2-26.el7 base uuid-dce-devel.i686 1.6.2-26.el7 base uuid-dce-devel.x86_64 1.6.2-26.el7 base uuid-devel.i686 1.6.2-26.el7 base uuid-devel.x86_64 1.6.2-26.el7 base uuid-perl.x86_64 1.6.2-26.el7 base uuid-php.x86_64 1.6.2-26.el7 base uuidd.x86_64 2.23.2-65.el7_9.1 updates v4l-utils.x86_64 0.9.5-4.el7 base v4l-utils-devel-tools.x86_64 0.9.5-4.el7 base vala.i686 0.40.8-1.el7 base vala.x86_64 0.40.8-1.el7 base vala-devel.i686 0.40.8-1.el7 base vala-devel.x86_64 0.40.8-1.el7 base vala-doc.noarch 0.40.8-1.el7 base valadoc.i686 0.40.8-1.el7 base valadoc.x86_64 0.40.8-1.el7 base valadoc-devel.i686 0.40.8-1.el7 base valadoc-devel.x86_64 0.40.8-1.el7 base valgrind.i686 1:3.15.0-11.el7 base valgrind.x86_64 1:3.15.0-11.el7 base valgrind-devel.i686 1:3.15.0-11.el7 base valgrind-devel.x86_64 1:3.15.0-11.el7 base valgrind-openmpi.x86_64 1:3.15.0-11.el7 base velocity-demo.noarch 1.7-10.el7 base velocity-javadoc.noarch 1.7-10.el7 base velocity-manual.noarch 1.7-10.el7 base vemana2000-fonts.noarch 1.1.3-6.el7 base veritysetup.x86_64 2.0.3-6.el7 base vigra.i686 1.9.0-11.el7 base vigra.x86_64 1.9.0-11.el7 base vigra-devel.i686 1.9.0-11.el7 base vigra-devel.x86_64 1.9.0-11.el7 base vim-X11.x86_64 2:7.4.629-8.el7_9 updates vim-common.x86_64 2:7.4.629-8.el7_9 updates vim-enhanced.x86_64 2:7.4.629-8.el7_9 updates vim-filesystem.x86_64 2:7.4.629-8.el7_9 updates vim-minimal.x86_64 2:7.4.629-8.el7_9 updates vinagre.i686 3.22.0-14.el7 base virt-dib.x86_64 1:1.40.2-10.el7 base virt-p2v-maker.x86_64 1:1.40.2-10.el7 base virt-v2v.x86_64 1:1.40.2-10.el7 base virt-who.noarch 0.28.10-1.el7_9 updates virtuoso-opensource-utils.x86_64 1:6.1.6-7.el7 base vlgothic-p-fonts.noarch 20130607-2.el7 base voikko-tools.x86_64 3.6-5.el7 base volume_key.x86_64 0.3.9-9.el7 base volume_key-devel.i686 0.3.9-9.el7 base volume_key-devel.x86_64 0.3.9-9.el7 base volume_key-libs.i686 0.3.9-9.el7 base vsftpd.x86_64 3.0.2-29.el7_9 updates vsftpd-sysvinit.x86_64 3.0.2-29.el7_9 updates vte291.i686 0.52.4-1.el7 base vte291-devel.i686 0.52.4-1.el7 base vte291-devel.x86_64 0.52.4-1.el7 base vte3.i686 0.36.5-1.el7 base vte3.x86_64 0.36.5-1.el7 base vte3-devel.i686 0.36.5-1.el7 base vte3-devel.x86_64 0.36.5-1.el7 base vulkan.i686 1.1.97.0-1.el7 base vulkan.x86_64 1.1.97.0-1.el7 base vulkan-devel.i686 1.1.97.0-1.el7 base vulkan-devel.x86_64 1.1.97.0-1.el7 base vulkan-filesystem.noarch 1.1.97.0-1.el7 base watchdog.x86_64 5.13-12.el7 base wavpack.i686 4.60.1-9.el7 base wavpack-devel.i686 4.60.1-9.el7 base wavpack-devel.x86_64 4.60.1-9.el7 base wayland-devel.i686 1.15.0-1.el7 base wayland-doc.noarch 1.15.0-1.el7 base wayland-protocols-devel.noarch 1.14-1.el7 base webkitgtk3.i686 2.4.11-2.el7 base webkitgtk3-devel.i686 2.4.11-2.el7 base webkitgtk3-devel.x86_64 2.4.11-2.el7 base webkitgtk3-doc.noarch 2.4.11-2.el7 base webkitgtk4.i686 2.28.2-2.el7 base webkitgtk4-devel.i686 2.28.2-2.el7 base webkitgtk4-devel.x86_64 2.28.2-2.el7 base webkitgtk4-doc.noarch 2.28.2-2.el7 base webkitgtk4-jsc.i686 2.28.2-2.el7 base webkitgtk4-jsc-devel.i686 2.28.2-2.el7 base webkitgtk4-jsc-devel.x86_64 2.28.2-2.el7 base webrtc-audio-processing.i686 0.3-1.el7 base webrtc-audio-processing-devel.i686 0.3-1.el7 base webrtc-audio-processing-devel.x86_64 0.3-1.el7 base weld-parent.noarch 17-9.el7 base whois.x86_64 5.1.1-2.el7 base wireshark.i686 1.10.14-25.el7 base wireshark.x86_64 1.10.14-25.el7 base wireshark-devel.i686 1.10.14-25.el7 base wireshark-devel.x86_64 1.10.14-25.el7 base wireshark-gnome.x86_64 1.10.14-25.el7 base woodstox-core.noarch 4.1.2-8.el7 base woodstox-core-javadoc.noarch 4.1.2-8.el7 base wordnet.i686 3.0-21.el7 base wordnet.x86_64 3.0-21.el7 base wordnet-browser.x86_64 3.0-21.el7 base wordnet-devel.i686 3.0-21.el7 base wordnet-devel.x86_64 3.0-21.el7 base wordnet-doc.noarch 3.0-21.el7 base wpa_supplicant.x86_64 1:2.6-12.el7_9.2 updates wqy-unibit-fonts.noarch 1.1.0-13.el7 base ws-commons-util.noarch 1.0.1-29.el7 base ws-commons-util-javadoc.noarch 1.0.1-29.el7 base ws-jaxme-javadoc.noarch 0.5.2-10.el7 base ws-jaxme-manual.noarch 0.5.2-10.el7 base wsdl4j.noarch 1.6.3-3.el7 base wsdl4j-javadoc.noarch 1.6.3-3.el7 base x86info.x86_64 1:1.30-6.el7 base xalan-j2-demo.noarch 2.7.1-23.el7 base xalan-j2-javadoc.noarch 2.7.1-23.el7 base xalan-j2-manual.noarch 2.7.1-23.el7 base xalan-j2-xsltc.noarch 2.7.1-23.el7 base xbean.noarch 3.13-6.el7 base xbean-javadoc.noarch 3.13-6.el7 base xcb-proto.noarch 1.13-1.el7 base xcb-util.i686 0.4.0-2.el7 base xcb-util-devel.i686 0.4.0-2.el7 base xcb-util-devel.x86_64 0.4.0-2.el7 base xcb-util-image.i686 0.4.0-2.el7 base xcb-util-image-devel.i686 0.4.0-2.el7 base xcb-util-image-devel.x86_64 0.4.0-2.el7 base xcb-util-keysyms.i686 0.4.0-1.el7 base xcb-util-keysyms-devel.i686 0.4.0-1.el7 base xcb-util-keysyms-devel.x86_64 0.4.0-1.el7 base xcb-util-renderutil.i686 0.3.9-3.el7 base xcb-util-renderutil-devel.i686 0.3.9-3.el7 base xcb-util-renderutil-devel.x86_64 0.3.9-3.el7 base xcb-util-wm.i686 0.4.1-5.el7 base xcb-util-wm-devel.i686 0.4.1-5.el7 base xcb-util-wm-devel.x86_64 0.4.1-5.el7 base xchat.x86_64 1:2.8.8-25.el7 base xchat-tcl.x86_64 1:2.8.8-25.el7 base xdelta.x86_64 3.0.7-4.el7 base xdg-desktop-portal.i686 1.0.2-1.el7 base xdg-desktop-portal-devel.i686 1.0.2-1.el7 base xdg-desktop-portal-devel.x86_64 1.0.2-1.el7 base xerces-c.i686 3.1.1-10.el7_7 base xerces-c.x86_64 3.1.1-10.el7_7 base xerces-c-devel.i686 3.1.1-10.el7_7 base xerces-c-devel.x86_64 3.1.1-10.el7_7 base xerces-c-doc.noarch 3.1.1-10.el7_7 base xerces-j2-demo.noarch 2.11.0-17.el7_0 base xerces-j2-javadoc.noarch 2.11.0-17.el7_0 base xferstats.x86_64 2.16-28.el7 base xfsprogs.i686 4.5.0-22.el7 base xfsprogs-devel.i686 4.5.0-22.el7 base xfsprogs-devel.x86_64 4.5.0-22.el7 base xguest.noarch 1.0.10-32.el7 base xhtml1-dtds.noarch 1.0-20020801.11.el7 base xhtml2fo-style-xsl.noarch 20051222-9.el7 base xhtml2ps.noarch 1.0-0.14.b7.el7 base xinetd.x86_64 2:2.3.15-14.el7 base xisdnload.x86_64 3.2-99.el7 base xkeyboard-config-devel.noarch 2.24-1.el7 base xml-commons-apis-javadoc.noarch 1.4.01-16.el7 base xml-commons-apis-manual.noarch 1.4.01-16.el7 base xml-commons-apis12.noarch 1.2.04-10.el7 base xml-commons-apis12-javadoc.noarch 1.2.04-10.el7 base xml-commons-apis12-manual.noarch 1.2.04-10.el7 base xml-commons-resolver-javadoc.noarch 1.2-15.el7 base xml-stylebook.noarch 1.0-0.14.b3_xalan2.svn313293.el7 base xml-stylebook-demo.noarch 1.0-0.14.b3_xalan2.svn313293.el7 base xml-stylebook-javadoc.noarch 1.0-0.14.b3_xalan2.svn313293.el7 base xmlgraphics-commons.noarch 1.5-3.el7 base xmlgraphics-commons-javadoc.noarch 1.5-3.el7 base xmlrpc-c.i686 1.32.5-1905.svn2451.el7 base xmlrpc-c-apps.x86_64 1.32.5-1905.svn2451.el7 base xmlrpc-c-c++.i686 1.32.5-1905.svn2451.el7 base xmlrpc-c-c++.x86_64 1.32.5-1905.svn2451.el7 base xmlrpc-c-client.i686 1.32.5-1905.svn2451.el7 base xmlrpc-c-client++.i686 1.32.5-1905.svn2451.el7 base xmlrpc-c-client++.x86_64 1.32.5-1905.svn2451.el7 base xmlrpc-c-devel.i686 1.32.5-1905.svn2451.el7 base xmlrpc-c-devel.x86_64 1.32.5-1905.svn2451.el7 base xmlrpc-client.noarch 1:3.1.3-9.el7_5 base xmlrpc-common.noarch 1:3.1.3-9.el7_5 base xmlrpc-javadoc.noarch 1:3.1.3-9.el7_5 base xmlrpc-server.noarch 1:3.1.3-9.el7_5 base xmlsec1.i686 1.2.20-7.el7_4 base xmlsec1-devel.i686 1.2.20-7.el7_4 base xmlsec1-devel.x86_64 1.2.20-7.el7_4 base xmlsec1-gcrypt.i686 1.2.20-7.el7_4 base xmlsec1-gcrypt.x86_64 1.2.20-7.el7_4 base xmlsec1-gcrypt-devel.i686 1.2.20-7.el7_4 base xmlsec1-gcrypt-devel.x86_64 1.2.20-7.el7_4 base xmlsec1-gnutls.i686 1.2.20-7.el7_4 base xmlsec1-gnutls.x86_64 1.2.20-7.el7_4 base xmlsec1-gnutls-devel.i686 1.2.20-7.el7_4 base xmlsec1-gnutls-devel.x86_64 1.2.20-7.el7_4 base xmlsec1-nss.i686 1.2.20-7.el7_4 base xmlsec1-nss.x86_64 1.2.20-7.el7_4 base xmlsec1-nss-devel.i686 1.2.20-7.el7_4 base xmlsec1-nss-devel.x86_64 1.2.20-7.el7_4 base xmlsec1-openssl.i686 1.2.20-7.el7_4 base xmlsec1-openssl-devel.i686 1.2.20-7.el7_4 base xmlsec1-openssl-devel.x86_64 1.2.20-7.el7_4 base xmlto.x86_64 0.0.25-7.el7 base xmlto-tex.noarch 0.0.25-7.el7 base xmlto-xhtml.noarch 0.0.25-7.el7 base xmltoman.noarch 0.4-9.el7 base xmlunit.noarch 1.4-6.el7 base xmlunit-javadoc.noarch 1.4-6.el7 base xmvn.noarch 1.3.0-6.el7_3 base xmvn-javadoc.noarch 1.3.0-6.el7_3 base xorg-sgml-doctools.noarch 1.10-5.el7 base xorg-x11-apps.x86_64 7.7-7.el7 base xorg-x11-docs.noarch 1.6-7.el7 base xorg-x11-drv-ati.x86_64 19.0.1-3.el7_7 updates xorg-x11-drv-evdev-devel.i686 2.10.6-1.el7 base xorg-x11-drv-evdev-devel.x86_64 2.10.6-1.el7 base xorg-x11-drv-intel.i686 2.99.917-28.20180530.el7 base xorg-x11-drv-intel-devel.i686 2.99.917-28.20180530.el7 base xorg-x11-drv-intel-devel.x86_64 2.99.917-28.20180530.el7 base xorg-x11-drv-keyboard.x86_64 1.9.0-1.el7 base xorg-x11-drv-libinput.x86_64 0.27.1-2.el7 base xorg-x11-drv-libinput-devel.i686 0.27.1-2.el7 base xorg-x11-drv-libinput-devel.x86_64 0.27.1-2.el7 base xorg-x11-drv-mouse.x86_64 1.9.2-2.el7 base xorg-x11-drv-mouse-devel.i686 1.9.2-2.el7 base xorg-x11-drv-mouse-devel.x86_64 1.9.2-2.el7 base xorg-x11-drv-openchrome.i686 0.5.0-3.el7.1 base xorg-x11-drv-openchrome.x86_64 0.5.0-3.el7.1 base xorg-x11-drv-openchrome-devel.i686 0.5.0-3.el7.1 base xorg-x11-drv-openchrome-devel.x86_64 0.5.0-3.el7.1 base xorg-x11-drv-synaptics-devel.i686 1.9.0-2.el7 base xorg-x11-drv-synaptics-devel.x86_64 1.9.0-2.el7 base xorg-x11-drv-wacom-devel.i686 0.36.1-3.el7 base xorg-x11-drv-wacom-devel.x86_64 0.36.1-3.el7 base xorg-x11-fonts-100dpi.noarch 7.5-9.el7 base xorg-x11-fonts-75dpi.noarch 7.5-9.el7 base xorg-x11-fonts-ISO8859-1-100dpi.noarch 7.5-9.el7 base xorg-x11-fonts-ISO8859-1-75dpi.noarch 7.5-9.el7 base xorg-x11-fonts-ISO8859-14-100dpi.noarch 7.5-9.el7 base xorg-x11-fonts-ISO8859-14-75dpi.noarch 7.5-9.el7 base xorg-x11-fonts-ISO8859-15-100dpi.noarch 7.5-9.el7 base xorg-x11-fonts-ISO8859-15-75dpi.noarch 7.5-9.el7 base xorg-x11-fonts-ISO8859-2-100dpi.noarch 7.5-9.el7 base xorg-x11-fonts-ISO8859-2-75dpi.noarch 7.5-9.el7 base xorg-x11-fonts-ISO8859-9-100dpi.noarch 7.5-9.el7 base xorg-x11-fonts-ISO8859-9-75dpi.noarch 7.5-9.el7 base xorg-x11-fonts-cyrillic.noarch 7.5-9.el7 base xorg-x11-fonts-ethiopic.noarch 7.5-9.el7 base xorg-x11-fonts-misc.noarch 7.5-9.el7 base xorg-x11-server-Xdmx.x86_64 1.20.4-16.el7_9 updates xorg-x11-server-Xephyr.x86_64 1.20.4-16.el7_9 updates xorg-x11-server-Xnest.x86_64 1.20.4-16.el7_9 updates xorg-x11-server-Xorg.x86_64 1.20.4-16.el7_9 updates xorg-x11-server-Xspice.x86_64 0.1.5-5.el7 base xorg-x11-server-Xvfb.x86_64 1.20.4-16.el7_9 updates xorg-x11-server-Xwayland.x86_64 1.20.4-16.el7_9 updates xorg-x11-server-common.x86_64 1.20.4-16.el7_9 updates xorg-x11-server-devel.i686 1.20.4-16.el7_9 updates xorg-x11-server-devel.x86_64 1.20.4-16.el7_9 updates xorg-x11-server-source.noarch 1.20.4-16.el7_9 updates xorg-x11-util-macros.noarch 1.19.0-3.el7 base xorg-x11-xbitmaps.noarch 1.1.1-6.el7 base xorg-x11-xinit-session.x86_64 1.3.4-2.el7 base xorg-x11-xkb-extras.x86_64 7.7-14.el7 base xorg-x11-xkb-utils-devel.i686 7.7-14.el7 base xorg-x11-xkb-utils-devel.x86_64 7.7-14.el7 base xorg-x11-xtrans-devel.noarch 1.3.5-1.el7 base xorriso.x86_64 1.4.8-3.el7 base xpp3-javadoc.noarch 1.1.3.8-11.el7 base xpp3-minimal.noarch 1.1.3.8-11.el7 base xrestop.x86_64 0.4-14.el7 base xsane.x86_64 0.999-9.el7 base xsane-common.x86_64 0.999-9.el7 base xsane-gimp.x86_64 0.999-9.el7 base xsom-javadoc.noarch 0-10.20110809svn.el7 base xstream.noarch 1.3.1-13.el7_9 updates xstream-javadoc.noarch 1.3.1-13.el7_9 updates xterm.x86_64 295-3.el7_9.1 updates xulrunner.i686 31.6.0-2.el7.centos base xulrunner-devel.i686 31.6.0-2.el7.centos base xulrunner-devel.x86_64 31.6.0-2.el7.centos base xz-compat-libs.i686 5.2.2-1.el7 base xz-compat-libs.x86_64 5.2.2-1.el7 base xz-devel.i686 5.2.2-1.el7 base xz-devel.x86_64 5.2.2-1.el7 base xz-java.noarch 1.3-3.el7 base xz-java-javadoc.noarch 1.3-3.el7 base xz-libs.i686 5.2.2-1.el7 base xz-lzma-compat.x86_64 5.2.2-1.el7 base yajl.i686 2.0.4-4.el7 base yajl-devel.i686 2.0.4-4.el7 base yajl-devel.x86_64 2.0.4-4.el7 base yelp-devel.i686 2:3.28.1-1.el7 base yelp-devel.x86_64 2:3.28.1-1.el7 base yelp-libs.i686 2:3.28.1-1.el7 base yelp-tools.noarch 3.28.0-1.el7 base yelp-xsl-devel.noarch 3.28.0-1.el7 base yp-tools.x86_64 2.14-5.el7 base ypbind.x86_64 3:1.37.1-9.el7 base ypserv.x86_64 2.31-12.el7 base yum-NetworkManager-dispatcher.noarch 1.1.31-54.el7_8 base yum-cron.noarch 3.4.3-168.el7.centos base yum-plugin-aliases.noarch 1.1.31-54.el7_8 base yum-plugin-auto-update-debug-info.noarch 1.1.31-54.el7_8 base yum-plugin-changelog.noarch 1.1.31-54.el7_8 base yum-plugin-copr.noarch 1.1.31-54.el7_8 base yum-plugin-filter-data.noarch 1.1.31-54.el7_8 base yum-plugin-fs-snapshot.noarch 1.1.31-54.el7_8 base yum-plugin-keys.noarch 1.1.31-54.el7_8 base yum-plugin-list-data.noarch 1.1.31-54.el7_8 base yum-plugin-local.noarch 1.1.31-54.el7_8 base yum-plugin-merge-conf.noarch 1.1.31-54.el7_8 base yum-plugin-ovl.noarch 1.1.31-54.el7_8 base yum-plugin-post-transaction-actions.noarch 1.1.31-54.el7_8 base yum-plugin-pre-transaction-actions.noarch 1.1.31-54.el7_8 base yum-plugin-priorities.noarch 1.1.31-54.el7_8 base yum-plugin-protectbase.noarch 1.1.31-54.el7_8 base yum-plugin-ps.noarch 1.1.31-54.el7_8 base yum-plugin-remove-with-leaves.noarch 1.1.31-54.el7_8 base yum-plugin-rpm-warm-cache.noarch 1.1.31-54.el7_8 base yum-plugin-show-leaves.noarch 1.1.31-54.el7_8 base yum-plugin-tmprepo.noarch 1.1.31-54.el7_8 base yum-plugin-tsflags.noarch 1.1.31-54.el7_8 base yum-plugin-upgrade-helper.noarch 1.1.31-54.el7_8 base yum-plugin-verify.noarch 1.1.31-54.el7_8 base yum-plugin-versionlock.noarch 1.1.31-54.el7_8 base yum-rhn-plugin.noarch 2.0.1-10.el7 base yum-updateonboot.noarch 1.1.31-54.el7_8 base zlib.i686 1.2.7-19.el7_9 updates zlib.x86_64 1.2.7-19.el7_9 updates zlib-devel.i686 1.2.7-19.el7_9 updates zlib-devel.x86_64 1.2.7-19.el7_9 updates zlib-static.i686 1.2.7-19.el7_9 updates zlib-static.x86_64 1.2.7-19.el7_9 updates zsh.x86_64 5.0.2-34.el7_8.2 base zsh-html.x86_64 5.0.2-34.el7_8.2 base zziplib.i686 0.13.62-12.el7 base zziplib.x86_64 0.13.62-12.el7 base zziplib-devel.i686 0.13.62-12.el7 base zziplib-devel.x86_64 0.13.62-12.el7 base zziplib-utils.x86_64 0.13.62-12.el7 base [root@localhost ~]# gcc -v Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper Target: x86_64-redhat-linux Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux Thread model: posix gcc version 4.8.5 20150623 (Red Hat 4.8.5-44) (GCC) [root@localhost ~]# yum -y install centos-release-scl Loaded plugins: fastestmirror, langpacks Loading mirror speeds from cached hostfile * base: ftp.sjtu.edu.cn * extras: ftp.sjtu.edu.cn * updates: ftp.sjtu.edu.cn base | 3.6 kB 00:00:00 extras | 2.9 kB 00:00:00 updates | 2.9 kB 00:00:00 Resolving Dependencies --> Running transaction check ---> Package centos-release-scl.noarch 0:2-3.el7.centos will be installed --> Processing Dependency: centos-release-scl-rh for package: centos-release-scl-2-3.el7.centos.noarch --> Running transaction check ---> Package centos-release-scl-rh.noarch 0:2-3.el7.centos will be installed --> Finished Dependency Resolution Dependencies Resolved ============================================================================================================================================ Package Arch Version Repository Size ============================================================================================================================================ Installing: centos-release-scl noarch 2-3.el7.centos extras 12 k Installing for dependencies: centos-release-scl-rh noarch 2-3.el7.centos extras 12 k Transaction Summary ============================================================================================================================================ Install 1 Package (+1 Dependent package) Total download size: 24 k Installed size: 39 k Downloading packages: warning: /var/cache/yum/x86_64/7/extras/packages/centos-release-scl-2-3.el7.centos.noarch.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY Public key for centos-release-scl-2-3.el7.centos.noarch.rpm is not installed (1/2): centos-release-scl-2-3.el7.centos.noarch.rpm | 12 kB 00:00:00 (2/2): centos-release-scl-rh-2-3.el7.centos.noarch.rpm | 12 kB 00:00:00 -------------------------------------------------------------------------------------------------------------------------------------------- Total 100 kB/s | 24 kB 00:00:00 Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 Importing GPG key 0xF4A80EB5: Userid : "CentOS-7 Key (CentOS 7 Official Signing Key) <security@centos.org>" Fingerprint: 6341 ab27 53d7 8a78 a7c2 7bb1 24c6 a8a7 f4a8 0eb5 Package : centos-release-7-9.2009.0.el7.centos.x86_64 (@anaconda) From : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 Running transaction check Running transaction test Transaction test succeeded Running transaction Installing : centos-release-scl-rh-2-3.el7.centos.noarch 1/2 Installing : centos-release-scl-2-3.el7.centos.noarch 2/2 Verifying : centos-release-scl-2-3.el7.centos.noarch 1/2 Verifying : centos-release-scl-rh-2-3.el7.centos.noarch 2/2 Installed: centos-release-scl.noarch 0:2-3.el7.centos Dependency Installed: centos-release-scl-rh.noarch 0:2-3.el7.centos Complete! [root@localhost ~]# yum -y install devtoolset-9-gcc devtoolset-9-gcc-c++ devtoolset-9-binutils Loaded plugins: fastestmirror, langpacks Existing lock /var/run/yum.pid: another copy is running as pid 102431. Another app is currently holding the yum lock; waiting for it to exit... The other application is: PackageKit Memory : 61 M RSS (496 MB VSZ) Started: Thu Jun 24 20:46:34 2021 - 00:10 ago State : Sleeping, pid: 102431 Another app is currently holding the yum lock; waiting for it to exit... The other application is: PackageKit Memory : 61 M RSS (496 MB VSZ) Started: Thu Jun 24 20:46:34 2021 - 00:12 ago State : Sleeping, pid: 102431 Loading mirror speeds from cached hostfile * base: ftp.sjtu.edu.cn * centos-sclo-rh: ftp.sjtu.edu.cn * centos-sclo-sclo: ftp.sjtu.edu.cn * extras: ftp.sjtu.edu.cn * updates: ftp.sjtu.edu.cn Resolving Dependencies --> Running transaction check ---> Package devtoolset-9-binutils.x86_64 0:2.32-16.el7 will be installed --> Processing Dependency: devtoolset-9-runtime for package: devtoolset-9-binutils-2.32-16.el7.x86_64 ---> Package devtoolset-9-gcc.x86_64 0:9.3.1-2.el7 will be installed ---> Package devtoolset-9-gcc-c++.x86_64 0:9.3.1-2.el7 will be installed --> Processing Dependency: devtoolset-9-libstdc++-devel = 9.3.1-2.el7 for package: devtoolset-9-gcc-c++-9.3.1-2.el7.x86_64 --> Running transaction check ---> Package devtoolset-9-libstdc++-devel.x86_64 0:9.3.1-2.el7 will be installed ---> Package devtoolset-9-runtime.x86_64 0:9.1-0.el7 will be installed --> Finished Dependency Resolution Dependencies Resolved ============================================================================================================================================ Package Arch Version Repository Size ============================================================================================================================================ Installing: devtoolset-9-binutils x86_64 2.32-16.el7 centos-sclo-rh 5.9 M devtoolset-9-gcc x86_64 9.3.1-2.el7 centos-sclo-rh 32 M devtoolset-9-gcc-c++ x86_64 9.3.1-2.el7 centos-sclo-rh 12 M Installing for dependencies: devtoolset-9-libstdc++-devel x86_64 9.3.1-2.el7 centos-sclo-rh 3.1 M devtoolset-9-runtime x86_64 9.1-0.el7 centos-sclo-rh 20 k Transaction Summary ============================================================================================================================================ Install 3 Packages (+2 Dependent packages) Total download size: 53 M Installed size: 151 M Downloading packages: warning: /var/cache/yum/x86_64/7/centos-sclo-rh/packages/devtoolset-9-binutils-2.32-16.el7.x86_64.rpm: Header V4 RSA/SHA1 Signature, key ID f2ee9d55: NOKEY Public key for devtoolset-9-binutils-2.32-16.el7.x86_64.rpm is not installed (1/5): devtoolset-9-binutils-2.32-16.el7.x86_64.rpm | 5.9 MB 00:00:07 (2/5): devtoolset-9-libstdc++-devel-9.3.1-2.el7.x86_64.rpm | 3.1 MB 00:00:06 (3/5): devtoolset-9-runtime-9.1-0.el7.x86_64.rpm | 20 kB 00:00:00 (4/5): devtoolset-9-gcc-c++-9.3.1-2.el7.x86_64.rpm | 12 MB 00:00:19 (5/5): devtoolset-9-gcc-9.3.1-2.el7.x86_64.rpm | 32 MB 00:00:29 -------------------------------------------------------------------------------------------------------------------------------------------- Total 1.8 MB/s | 53 MB 00:00:29 Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-SCLo Importing GPG key 0xF2EE9D55: Userid : "CentOS SoftwareCollections SIG (https://wiki.centos.org/SpecialInterestGroup/SCLo) <security@centos.org>" Fingerprint: c4db d535 b1fb ba14 f8ba 64a8 4eb8 4e71 f2ee 9d55 Package : centos-release-scl-rh-2-3.el7.centos.noarch (@extras) From : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-SCLo Running transaction check Running transaction test Transaction test succeeded Running transaction Installing : devtoolset-9-runtime-9.1-0.el7.x86_64 1/5 Installing : devtoolset-9-libstdc++-devel-9.3.1-2.el7.x86_64 2/5 Installing : devtoolset-9-binutils-2.32-16.el7.x86_64 3/5 Installing : devtoolset-9-gcc-9.3.1-2.el7.x86_64 4/5 Installing : devtoolset-9-gcc-c++-9.3.1-2.el7.x86_64 5/5 Verifying : devtoolset-9-gcc-9.3.1-2.el7.x86_64 1/5 Verifying : devtoolset-9-gcc-c++-9.3.1-2.el7.x86_64 2/5 Verifying : devtoolset-9-libstdc++-devel-9.3.1-2.el7.x86_64 3/5 Verifying : devtoolset-9-binutils-2.32-16.el7.x86_64 4/5 Verifying : devtoolset-9-runtime-9.1-0.el7.x86_64 5/5 Installed: devtoolset-9-binutils.x86_64 0:2.32-16.el7 devtoolset-9-gcc.x86_64 0:9.3.1-2.el7 devtoolset-9-gcc-c++.x86_64 0:9.3.1-2.el7 Dependency Installed: devtoolset-9-libstdc++-devel.x86_64 0:9.3.1-2.el7 devtoolset-9-runtime.x86_64 0:9.1-0.el7 Complete! [root@localhost ~]# scl enable devtoolset-9 bash [root@192 ~]# echo "source /opt/rh/devtoolset-9/enable" >>/etc/profile [root@192 ~]# gcc -v Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/opt/rh/devtoolset-9/root/usr/libexec/gcc/x86_64-redhat-linux/9/lto-wrapper Target: x86_64-redhat-linux Configured with: ../configure --enable-bootstrap --enable-languages=c,c++,fortran,lto --prefix=/opt/rh/devtoolset-9/root/usr --mandir=/opt/rh/devtoolset-9/root/usr/share/man --infodir=/opt/rh/devtoolset-9/root/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-gcc-major-version-only --with-linker-hash-style=gnu --with-default-libstdcxx-abi=gcc4-compatible --enable-plugin --enable-initfini-array --with-isl=/builddir/build/BUILD/gcc-9.3.1-20200408/obj-x86_64-redhat-linux/isl-install --disable-libmpx --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux Thread model: posix gcc version 9.3.1 20200408 (Red Hat 9.3.1-2) (GCC) [root@192 ~]# cd /usr/local [root@192 local]# mkdir soft [root@192 local]# cd soft [root@192 soft]# wget http://download.redis.io/releases/redis-6.0.6.tar.gz --2021-06-24 20:50:15-- http://download.redis.io/releases/redis-6.0.6.tar.gz Resolving download.redis.io (download.redis.io)... 45.60.125.1 Connecting to download.redis.io (download.redis.io)|45.60.125.1|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 2228781 (2.1M) [application/octet-stream] Saving to: ‘redis-6.0.6.tar.gz’ 100%[==================================================================================================>] 2,228,781 245KB/s in 17s 2021-06-24 20:50:33 (130 KB/s) - ‘redis-6.0.6.tar.gz’ saved [2228781/2228781] [root@192 soft]# ls -all total 2180 drwxr-xr-x. 2 root root 32 Jun 24 20:50 . drwxr-xr-x. 13 root root 143 Jun 24 20:49 .. -rw-r--r--. 1 root root 2228781 Jul 21 2020 redis-6.0.6.tar.gz [root@192 soft]# tar xzf redis-6.0.6.tar.gz [root@192 soft]# ls -all total 2184 drwxr-xr-x. 3 root root 51 Jun 24 20:51 . drwxr-xr-x. 13 root root 143 Jun 24 20:49 .. drwxrwxr-x. 7 root root 4096 Jul 21 2020 redis-6.0.6 -rw-r--r--. 1 root root 2228781 Jul 21 2020 redis-6.0.6.tar.gz [root@192 soft]# cd redis-6.0.6/ [root@192 redis-6.0.6]# make install cd src && make install make[1]: Entering directory `/usr/local/soft/redis-6.0.6/src' CC Makefile.dep make[1]: Leaving directory `/usr/local/soft/redis-6.0.6/src' make[1]: Entering directory `/usr/local/soft/redis-6.0.6/src' rm -rf redis-server redis-sentinel redis-cli redis-benchmark redis-check-rdb redis-check-aof *.o *.gcda *.gcno *.gcov redis.info lcov-html Makefile.dep dict-benchmark rm -f adlist.d quicklist.d ae.d anet.d dict.d server.d sds.d zmalloc.d lzf_c.d lzf_d.d pqsort.d zipmap.d sha1.d ziplist.d release.d networking.d util.d object.d db.d replication.d rdb.d t_string.d t_list.d t_set.d t_zset.d t_hash.d config.d aof.d pubsub.d multi.d debug.d sort.d intset.d syncio.d cluster.d crc16.d endianconv.d slowlog.d scripting.d bio.d rio.d rand.d memtest.d crcspeed.d crc64.d bitops.d sentinel.d notify.d setproctitle.d blocked.d hyperloglog.d latency.d sparkline.d redis-check-rdb.d redis-check-aof.d geo.d lazyfree.d module.d evict.d expire.d geohash.d geohash_helper.d childinfo.d defrag.d siphash.d rax.d t_stream.d listpack.d localtime.d lolwut.d lolwut5.d lolwut6.d acl.d gopher.d tracking.d connection.d tls.d sha256.d timeout.d setcpuaffinity.d anet.d adlist.d dict.d redis-cli.d zmalloc.d release.d ae.d crcspeed.d crc64.d siphash.d crc16.d ae.d anet.d redis-benchmark.d adlist.d dict.d zmalloc.d siphash.d (cd ../deps && make distclean) make[2]: Entering directory `/usr/local/soft/redis-6.0.6/deps' (cd hiredis && make clean) > /dev/null || true (cd linenoise && make clean) > /dev/null || true (cd lua && make clean) > /dev/null || true (cd jemalloc && [ -f Makefile ] && make distclean) > /dev/null || true (rm -f .make-*) make[2]: Leaving directory `/usr/local/soft/redis-6.0.6/deps' (rm -f .make-*) echo STD=-std=c11 -pedantic -DREDIS_STATIC='' >> .make-settings echo WARN=-Wall -W -Wno-missing-field-initializers >> .make-settings echo OPT=-O2 >> .make-settings echo MALLOC=jemalloc >> .make-settings echo CFLAGS= >> .make-settings echo LDFLAGS= >> .make-settings echo REDIS_CFLAGS= >> .make-settings echo REDIS_LDFLAGS= >> .make-settings echo PREV_FINAL_CFLAGS=-std=c11 -pedantic -DREDIS_STATIC='' -Wall -W -Wno-missing-field-initializers -O2 -g -ggdb -I../deps/hiredis -I../deps/linenoise -I../deps/lua/src -DUSE_JEMALLOC -I../deps/jemalloc/include >> .make-settings echo PREV_FINAL_LDFLAGS= -g -ggdb -rdynamic >> .make-settings (cd ../deps && make hiredis linenoise lua jemalloc) make[2]: Entering directory `/usr/local/soft/redis-6.0.6/deps' (cd hiredis && make clean) > /dev/null || true (cd linenoise && make clean) > /dev/null || true (cd lua && make clean) > /dev/null || true (cd jemalloc && [ -f Makefile ] && make distclean) > /dev/null || true (rm -f .make-*) (echo "" > .make-cflags) (echo "" > .make-ldflags) MAKE hiredis cd hiredis && make static make[3]: Entering directory `/usr/local/soft/redis-6.0.6/deps/hiredis' cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -Wno-missing-field-initializers -g -ggdb net.c cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -Wno-missing-field-initializers -g -ggdb hiredis.c cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -Wno-missing-field-initializers -g -ggdb sds.c cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -Wno-missing-field-initializers -g -ggdb async.c cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -Wno-missing-field-initializers -g -ggdb read.c cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -Wno-missing-field-initializers -g -ggdb sockcompat.c ar rcs libhiredis.a net.o hiredis.o sds.o async.o read.o sockcompat.o make[3]: Leaving directory `/usr/local/soft/redis-6.0.6/deps/hiredis' MAKE linenoise cd linenoise && make make[3]: Entering directory `/usr/local/soft/redis-6.0.6/deps/linenoise' cc -Wall -Os -g -c linenoise.c make[3]: Leaving directory `/usr/local/soft/redis-6.0.6/deps/linenoise' MAKE lua cd lua/src && make all CFLAGS="-O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' " MYLDFLAGS="" AR="ar rcu" make[3]: Entering directory `/usr/local/soft/redis-6.0.6/deps/lua/src' cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o lapi.o lapi.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o lcode.o lcode.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o ldebug.o ldebug.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o ldo.o ldo.c ldo.c: In function ‘f_parser’: ldo.c:496:7: warning: unused variable ‘c’ [-Wunused-variable] 496 | int c = luaZ_lookahead(p->z); | ^ cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o ldump.o ldump.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o lfunc.o lfunc.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o lgc.o lgc.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o llex.o llex.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o lmem.o lmem.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o lobject.o lobject.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o lopcodes.o lopcodes.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o lparser.o lparser.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o lstate.o lstate.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o lstring.o lstring.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o ltable.o ltable.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o ltm.o ltm.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o lundump.o lundump.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o lvm.o lvm.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o lzio.o lzio.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o strbuf.o strbuf.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o fpconv.o fpconv.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o lauxlib.o lauxlib.c lauxlib.c: In function ‘luaL_loadfile’: lauxlib.c:577:4: warning: this ‘while’ clause does not guard... [-Wmisleading-indentation] 577 | while ((c = getc(lf.f)) != EOF && c != LUA_SIGNATURE[0]) ; | ^~~~~ lauxlib.c:578:5: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘while’ 578 | lf.extraline = 0; | ^~ cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o lbaselib.o lbaselib.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o ldblib.o ldblib.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o liolib.o liolib.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o lmathlib.o lmathlib.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o loslib.o loslib.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o ltablib.o ltablib.c ltablib.c: In function ‘addfield’: ltablib.c:137:3: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] 137 | if (!lua_isstring(L, -1)) | ^~ ltablib.c:140:5: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ 140 | luaL_addvalue(b); | ^~~~~~~~~~~~~ cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o lstrlib.o lstrlib.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o loadlib.o loadlib.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o linit.o linit.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o lua_cjson.o lua_cjson.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o lua_struct.o lua_struct.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o lua_cmsgpack.o lua_cmsgpack.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o lua_bit.o lua_bit.c ar rcu liblua.a lapi.o lcode.o ldebug.o ldo.o ldump.o lfunc.o lgc.o llex.o lmem.o lobject.o lopcodes.o lparser.o lstate.o lstring.o ltable.o ltm.o lundump.o lvm.o lzio.o strbuf.o fpconv.o lauxlib.o lbaselib.o ldblib.o liolib.o lmathlib.o loslib.o ltablib.o lstrlib.o loadlib.o linit.o lua_cjson.o lua_struct.o lua_cmsgpack.o lua_bit.o # DLL needs all object files ranlib liblua.a cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o lua.o lua.c cc -o lua lua.o liblua.a -lm /opt/rh/devtoolset-9/root/usr/libexec/gcc/x86_64-redhat-linux/9/ld: liblua.a(loslib.o): in function `os_tmpname': loslib.c:(.text+0x27c): warning: the use of `tmpnam' is dangerous, better use `mkstemp' cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o luac.o luac.c cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o print.o print.c cc -o luac luac.o print.o liblua.a -lm make[3]: Leaving directory `/usr/local/soft/redis-6.0.6/deps/lua/src' MAKE jemalloc cd jemalloc && ./configure --with-version=5.1.0-0-g0 --with-lg-quantum=3 --with-jemalloc-prefix=je_ --enable-cc-silence CFLAGS="-std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops " LDFLAGS="" configure: WARNING: unrecognized options: --enable-cc-silence checking for xsltproc... /usr/bin/xsltproc checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking whether compiler is cray... no checking whether compiler supports -std=gnu11... yes checking whether compiler supports -Wall... yes checking whether compiler supports -Wshorten-64-to-32... no checking whether compiler supports -Wsign-compare... yes checking whether compiler supports -Wundef... yes checking whether compiler supports -Wno-format-zero-length... yes checking whether compiler supports -pipe... yes checking whether compiler supports -g3... yes checking how to run the C preprocessor... gcc -E checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking whether g++ supports C++14 features by default... yes checking whether compiler supports -Wall... yes checking whether compiler supports -g3... yes checking whether libstdc++ linkage is compilable... yes checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking whether byte ordering is bigendian... no checking size of void *... 8 checking size of int... 4 checking size of long... 8 checking size of long long... 8 checking size of intmax_t... 8 checking build system type... x86_64-pc-linux-gnu checking host system type... x86_64-pc-linux-gnu checking whether pause instruction is compilable... yes checking number of significant virtual address bits... 48 checking for ar... ar checking for nm... nm checking for gawk... gawk checking malloc.h usability... yes checking malloc.h presence... yes checking for malloc.h... yes checking whether malloc_usable_size definition can use const argument... no checking for library containing log... -lm checking whether __attribute__ syntax is compilable... yes checking whether compiler supports -fvisibility=hidden... yes checking whether compiler supports -fvisibility=hidden... yes checking whether compiler supports -Werror... yes checking whether compiler supports -herror_on_warning... no checking whether tls_model attribute is compilable... yes checking whether compiler supports -Werror... yes checking whether compiler supports -herror_on_warning... no checking whether alloc_size attribute is compilable... yes checking whether compiler supports -Werror... yes checking whether compiler supports -herror_on_warning... no checking whether format(gnu_printf, ...) attribute is compilable... yes checking whether compiler supports -Werror... yes checking whether compiler supports -herror_on_warning... no checking whether format(printf, ...) attribute is compilable... yes checking for a BSD-compatible install... /usr/bin/install -c checking for ranlib... ranlib checking for ld... /opt/rh/devtoolset-9/root/usr/bin/ld checking for autoconf... /usr/bin/autoconf checking for memalign... yes checking for valloc... yes checking whether compiler supports -O3... yes checking whether compiler supports -O3... yes checking whether compiler supports -funroll-loops... yes checking configured backtracing method... N/A checking for sbrk... yes checking whether utrace(2) is compilable... no checking whether a program using __builtin_unreachable is compilable... yes checking whether a program using __builtin_ffsl is compilable... yes checking LG_PAGE... 12 checking pthread.h usability... yes checking pthread.h presence... yes checking for pthread.h... yes checking for pthread_create in -lpthread... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for dlsym... no checking for dlsym in -ldl... yes checking whether pthread_atfork(3) is compilable... yes checking whether pthread_setname_np(3) is compilable... yes checking for library containing clock_gettime... none required checking whether clock_gettime(CLOCK_MONOTONIC_COARSE, ...) is compilable... yes checking whether clock_gettime(CLOCK_MONOTONIC, ...) is compilable... yes checking whether mach_absolute_time() is compilable... no checking whether compiler supports -Werror... yes checking whether syscall(2) is compilable... yes checking for secure_getenv... yes checking for sched_getcpu... yes checking for sched_setaffinity... yes checking for issetugid... no checking for _malloc_thread_cleanup... no checking for _pthread_mutex_init_calloc_cb... no checking for TLS... yes checking whether C11 atomics is compilable... no checking whether GCC __atomic atomics is compilable... yes checking whether GCC __sync atomics is compilable... yes checking whether Darwin OSAtomic*() is compilable... no checking whether madvise(2) is compilable... yes checking whether madvise(..., MADV_FREE) is compilable... no checking whether madvise(..., MADV_DONTNEED) is compilable... yes checking whether madvise(..., MADV_DO[NT]DUMP) is compilable... yes checking whether madvise(..., MADV_[NO]HUGEPAGE) is compilable... yes checking whether to force 32-bit __sync_{add,sub}_and_fetch()... no checking whether to force 64-bit __sync_{add,sub}_and_fetch()... no checking for __builtin_clz... yes checking whether Darwin os_unfair_lock_*() is compilable... no checking whether Darwin OSSpin*() is compilable... no checking whether glibc malloc hook is compilable... yes checking whether glibc memalign hook is compilable... yes checking whether pthreads adaptive mutexes is compilable... yes checking whether compiler supports -D_GNU_SOURCE... yes checking whether compiler supports -Werror... yes checking whether compiler supports -herror_on_warning... no checking whether strerror_r returns char with gnu source is compilable... yes checking for stdbool.h that conforms to C99... yes checking for _Bool... yes configure: creating ./config.status config.status: creating Makefile config.status: creating jemalloc.pc config.status: creating doc/html.xsl config.status: creating doc/manpages.xsl config.status: creating doc/jemalloc.xml config.status: creating include/jemalloc/jemalloc_macros.h config.status: creating include/jemalloc/jemalloc_protos.h config.status: creating include/jemalloc/jemalloc_typedefs.h config.status: creating include/jemalloc/internal/jemalloc_preamble.h config.status: creating test/test.sh config.status: creating test/include/test/jemalloc_test.h config.status: creating config.stamp config.status: creating bin/jemalloc-config config.status: creating bin/jemalloc.sh config.status: creating bin/jeprof config.status: creating include/jemalloc/jemalloc_defs.h config.status: creating include/jemalloc/internal/jemalloc_internal_defs.h config.status: creating test/include/test/jemalloc_test_defs.h config.status: executing include/jemalloc/internal/public_symbols.txt commands config.status: executing include/jemalloc/internal/private_symbols.awk commands config.status: executing include/jemalloc/internal/private_symbols_jet.awk commands config.status: executing include/jemalloc/internal/public_namespace.h commands config.status: executing include/jemalloc/internal/public_unnamespace.h commands config.status: executing include/jemalloc/internal/size_classes.h commands config.status: executing include/jemalloc/jemalloc_protos_jet.h commands config.status: executing include/jemalloc/jemalloc_rename.h commands config.status: executing include/jemalloc/jemalloc_mangle.h commands config.status: executing include/jemalloc/jemalloc_mangle_jet.h commands config.status: executing include/jemalloc/jemalloc.h commands configure: WARNING: unrecognized options: --enable-cc-silence =============================================================================== jemalloc version : 5.1.0-0-g0 library revision : 2 CONFIG : --with-version=5.1.0-0-g0 --with-lg-quantum=3 --with-jemalloc-prefix=je_ --enable-cc-silence 'CFLAGS=-std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops ' LDFLAGS= CC : gcc CONFIGURE_CFLAGS : -std=gnu11 -Wall -Wsign-compare -Wundef -Wno-format-zero-length -pipe -g3 -fvisibility=hidden -O3 -funroll-loops SPECIFIED_CFLAGS : -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops EXTRA_CFLAGS : CPPFLAGS : -D_GNU_SOURCE -D_REENTRANT CXX : g++ CONFIGURE_CXXFLAGS : -Wall -g3 -fvisibility=hidden -O3 SPECIFIED_CXXFLAGS : EXTRA_CXXFLAGS : LDFLAGS : EXTRA_LDFLAGS : DSO_LDFLAGS : -shared -Wl,-soname,$(@F) LIBS : -lm -lstdc++ -lpthread -ldl RPATH_EXTRA : XSLTPROC : /usr/bin/xsltproc XSLROOT : /usr/share/sgml/docbook/xsl-stylesheets PREFIX : /usr/local BINDIR : /usr/local/bin DATADIR : /usr/local/share INCLUDEDIR : /usr/local/include LIBDIR : /usr/local/lib MANDIR : /usr/local/share/man srcroot : abs_srcroot : /usr/local/soft/redis-6.0.6/deps/jemalloc/ objroot : abs_objroot : /usr/local/soft/redis-6.0.6/deps/jemalloc/ JEMALLOC_PREFIX : je_ JEMALLOC_PRIVATE_NAMESPACE : je_ install_suffix : malloc_conf : autogen : 0 debug : 0 stats : 1 prof : 0 prof-libunwind : 0 prof-libgcc : 0 prof-gcc : 0 fill : 1 utrace : 0 xmalloc : 0 log : 0 lazy_lock : 0 cache-oblivious : 1 cxx : 1 =============================================================================== cd jemalloc && make CFLAGS="-std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops " LDFLAGS="" lib/libjemalloc.a make[3]: Entering directory `/usr/local/soft/redis-6.0.6/deps/jemalloc' gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/jemalloc.sym.o src/jemalloc.c nm -a src/jemalloc.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/jemalloc.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/arena.sym.o src/arena.c nm -a src/arena.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/arena.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/background_thread.sym.o src/background_thread.c nm -a src/background_thread.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/background_thread.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/base.sym.o src/base.c nm -a src/base.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/base.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/bin.sym.o src/bin.c nm -a src/bin.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/bin.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/bitmap.sym.o src/bitmap.c nm -a src/bitmap.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/bitmap.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/ckh.sym.o src/ckh.c nm -a src/ckh.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/ckh.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/ctl.sym.o src/ctl.c nm -a src/ctl.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/ctl.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/div.sym.o src/div.c nm -a src/div.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/div.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/extent.sym.o src/extent.c nm -a src/extent.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/extent.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/extent_dss.sym.o src/extent_dss.c nm -a src/extent_dss.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/extent_dss.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/extent_mmap.sym.o src/extent_mmap.c nm -a src/extent_mmap.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/extent_mmap.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/hash.sym.o src/hash.c nm -a src/hash.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/hash.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/hooks.sym.o src/hooks.c nm -a src/hooks.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/hooks.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/large.sym.o src/large.c nm -a src/large.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/large.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/log.sym.o src/log.c nm -a src/log.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/log.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/malloc_io.sym.o src/malloc_io.c src/malloc_io.c: In function ‘malloc_vsnprintf’: src/malloc_io.c:369:2: warning: case label value exceeds maximum value for type 369 | case '?' | 0x80: \ | ^~~~ src/malloc_io.c:581:5: note: in expansion of macro ‘GET_ARG_NUMERIC’ 581 | GET_ARG_NUMERIC(val, 'p'); | ^~~~~~~~~~~~~~~ src/malloc_io.c:387:2: warning: case label value exceeds maximum value for type 387 | case 'j' | 0x80: \ | ^~~~ src/malloc_io.c:581:5: note: in expansion of macro ‘GET_ARG_NUMERIC’ 581 | GET_ARG_NUMERIC(val, 'p'); | ^~~~~~~~~~~~~~~ src/malloc_io.c:375:2: warning: case label value exceeds maximum value for type 375 | case 'l' | 0x80: \ | ^~~~ src/malloc_io.c:581:5: note: in expansion of macro ‘GET_ARG_NUMERIC’ 581 | GET_ARG_NUMERIC(val, 'p'); | ^~~~~~~~~~~~~~~ src/malloc_io.c:381:2: warning: case label value exceeds maximum value for type 381 | case 'q' | 0x80: \ | ^~~~ src/malloc_io.c:581:5: note: in expansion of macro ‘GET_ARG_NUMERIC’ 581 | GET_ARG_NUMERIC(val, 'p'); | ^~~~~~~~~~~~~~~ src/malloc_io.c:396:2: warning: case label value exceeds maximum value for type 396 | case 'z' | 0x80: \ | ^~~~ src/malloc_io.c:581:5: note: in expansion of macro ‘GET_ARG_NUMERIC’ 581 | GET_ARG_NUMERIC(val, 'p'); | ^~~~~~~~~~~~~~~ nm -a src/malloc_io.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/malloc_io.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/mutex.sym.o src/mutex.c nm -a src/mutex.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/mutex.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/mutex_pool.sym.o src/mutex_pool.c nm -a src/mutex_pool.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/mutex_pool.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/nstime.sym.o src/nstime.c nm -a src/nstime.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/nstime.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/pages.sym.o src/pages.c nm -a src/pages.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/pages.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/prng.sym.o src/prng.c nm -a src/prng.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/prng.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/prof.sym.o src/prof.c nm -a src/prof.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/prof.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/rtree.sym.o src/rtree.c nm -a src/rtree.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/rtree.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/stats.sym.o src/stats.c nm -a src/stats.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/stats.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/sz.sym.o src/sz.c nm -a src/sz.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/sz.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/tcache.sym.o src/tcache.c nm -a src/tcache.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/tcache.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/ticker.sym.o src/ticker.c nm -a src/ticker.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/ticker.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/tsd.sym.o src/tsd.c nm -a src/tsd.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/tsd.sym gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -DJEMALLOC_NO_PRIVATE_NAMESPACE -o src/witness.sym.o src/witness.c nm -a src/witness.sym.o | gawk -f include/jemalloc/internal/private_symbols.awk > src/witness.sym /bin/sh include/jemalloc/internal/private_namespace.sh src/jemalloc.sym src/arena.sym src/background_thread.sym src/base.sym src/bin.sym src/bitmap.sym src/ckh.sym src/ctl.sym src/div.sym src/extent.sym src/extent_dss.sym src/extent_mmap.sym src/hash.sym src/hooks.sym src/large.sym src/log.sym src/malloc_io.sym src/mutex.sym src/mutex_pool.sym src/nstime.sym src/pages.sym src/prng.sym src/prof.sym src/rtree.sym src/stats.sym src/sz.sym src/tcache.sym src/ticker.sym src/tsd.sym src/witness.sym > include/jemalloc/internal/private_namespace.gen.h cp include/jemalloc/internal/private_namespace.gen.h include/jemalloc/internal/private_namespace.gen.h gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/jemalloc.o src/jemalloc.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/arena.o src/arena.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/background_thread.o src/background_thread.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/base.o src/base.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/bin.o src/bin.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/bitmap.o src/bitmap.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/ckh.o src/ckh.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/ctl.o src/ctl.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/div.o src/div.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/extent.o src/extent.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/extent_dss.o src/extent_dss.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/extent_mmap.o src/extent_mmap.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/hash.o src/hash.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/hooks.o src/hooks.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/large.o src/large.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/log.o src/log.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/malloc_io.o src/malloc_io.c src/malloc_io.c: In function ‘je_malloc_vsnprintf’: src/malloc_io.c:369:2: warning: case label value exceeds maximum value for type 369 | case '?' | 0x80: \ | ^~~~ src/malloc_io.c:581:5: note: in expansion of macro ‘GET_ARG_NUMERIC’ 581 | GET_ARG_NUMERIC(val, 'p'); | ^~~~~~~~~~~~~~~ src/malloc_io.c:387:2: warning: case label value exceeds maximum value for type 387 | case 'j' | 0x80: \ | ^~~~ src/malloc_io.c:581:5: note: in expansion of macro ‘GET_ARG_NUMERIC’ 581 | GET_ARG_NUMERIC(val, 'p'); | ^~~~~~~~~~~~~~~ src/malloc_io.c:375:2: warning: case label value exceeds maximum value for type 375 | case 'l' | 0x80: \ | ^~~~ src/malloc_io.c:581:5: note: in expansion of macro ‘GET_ARG_NUMERIC’ 581 | GET_ARG_NUMERIC(val, 'p'); | ^~~~~~~~~~~~~~~ src/malloc_io.c:381:2: warning: case label value exceeds maximum value for type 381 | case 'q' | 0x80: \ | ^~~~ src/malloc_io.c:581:5: note: in expansion of macro ‘GET_ARG_NUMERIC’ 581 | GET_ARG_NUMERIC(val, 'p'); | ^~~~~~~~~~~~~~~ src/malloc_io.c:396:2: warning: case label value exceeds maximum value for type 396 | case 'z' | 0x80: \ | ^~~~ src/malloc_io.c:581:5: note: in expansion of macro ‘GET_ARG_NUMERIC’ 581 | GET_ARG_NUMERIC(val, 'p'); | ^~~~~~~~~~~~~~~ gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/mutex.o src/mutex.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/mutex_pool.o src/mutex_pool.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/nstime.o src/nstime.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/pages.o src/pages.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/prng.o src/prng.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/prof.o src/prof.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/rtree.o src/rtree.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/stats.o src/stats.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/sz.o src/sz.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/tcache.o src/tcache.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/ticker.o src/ticker.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/tsd.o src/tsd.c gcc -std=gnu99 -Wall -pipe -g3 -O3 -funroll-loops -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/witness.o src/witness.c g++ -Wall -g3 -fvisibility=hidden -O3 -c -D_GNU_SOURCE -D_REENTRANT -Iinclude -Iinclude -o src/jemalloc_cpp.o src/jemalloc_cpp.cpp ar crus lib/libjemalloc.a src/jemalloc.o src/arena.o src/background_thread.o src/base.o src/bin.o src/bitmap.o src/ckh.o src/ctl.o src/div.o src/extent.o src/extent_dss.o src/extent_mmap.o src/hash.o src/hooks.o src/large.o src/log.o src/malloc_io.o src/mutex.o src/mutex_pool.o src/nstime.o src/pages.o src/prng.o src/prof.o src/rtree.o src/stats.o src/sz.o src/tcache.o src/ticker.o src/tsd.o src/witness.o src/jemalloc_cpp.o make[3]: Leaving directory `/usr/local/soft/redis-6.0.6/deps/jemalloc' make[2]: Leaving directory `/usr/local/soft/redis-6.0.6/deps' CC adlist.o CC quicklist.o CC ae.o CC anet.o CC dict.o CC server.o CC sds.o CC zmalloc.o CC lzf_c.o CC lzf_d.o CC pqsort.o CC zipmap.o CC sha1.o CC ziplist.o CC release.o CC networking.o CC util.o CC object.o CC db.o CC replication.o CC rdb.o CC t_string.o CC t_list.o CC t_set.o CC t_zset.o CC t_hash.o CC config.o CC aof.o CC pubsub.o CC multi.o CC debug.o CC sort.o CC intset.o CC syncio.o CC cluster.o CC crc16.o CC endianconv.o CC slowlog.o CC scripting.o CC bio.o CC rio.o CC rand.o CC memtest.o CC crcspeed.o CC crc64.o CC bitops.o CC sentinel.o CC notify.o CC setproctitle.o CC blocked.o CC hyperloglog.o CC latency.o CC sparkline.o CC redis-check-rdb.o CC redis-check-aof.o CC geo.o CC lazyfree.o CC module.o CC evict.o CC expire.o CC geohash.o CC geohash_helper.o CC childinfo.o CC defrag.o CC siphash.o CC rax.o CC t_stream.o CC listpack.o CC localtime.o CC lolwut.o CC lolwut5.o CC lolwut6.o CC acl.o CC gopher.o CC tracking.o CC connection.o CC tls.o CC sha256.o CC timeout.o CC setcpuaffinity.o LINK redis-server INSTALL redis-sentinel CC redis-cli.o LINK redis-cli CC redis-benchmark.o LINK redis-benchmark INSTALL redis-check-rdb INSTALL redis-check-aof Hint: It's a good idea to run 'make test' ;) INSTALL install INSTALL install INSTALL install INSTALL install INSTALL install make[1]: Leaving directory `/usr/local/soft/redis-6.0.6/src' [root@192 redis-6.0.6]# ls -all total 272 drwxrwxr-x. 7 root root 4096 Jul 21 2020 . drwxr-xr-x. 3 root root 51 Jun 24 20:51 .. -rw-rw-r--. 1 root root 80561 Jul 21 2020 00-RELEASENOTES -rw-rw-r--. 1 root root 51 Jul 21 2020 BUGS -rw-rw-r--. 1 root root 2381 Jul 21 2020 CONTRIBUTING -rw-rw-r--. 1 root root 1487 Jul 21 2020 COPYING drwxrwxr-x. 6 root root 192 Jun 24 20:52 deps drwxrwxr-x. 3 root root 23 Jul 21 2020 .github -rw-rw-r--. 1 root root 408 Jul 21 2020 .gitignore -rw-rw-r--. 1 root root 11 Jul 21 2020 INSTALL -rw-rw-r--. 1 root root 151 Jul 21 2020 Makefile -rw-rw-r--. 1 root root 6888 Jul 21 2020 MANIFESTO -rw-rw-r--. 1 root root 20806 Jul 21 2020 README.md -rw-rw-r--. 1 root root 83392 Jul 21 2020 redis.conf -rwxrwxr-x. 1 root root 275 Jul 21 2020 runtest -rwxrwxr-x. 1 root root 280 Jul 21 2020 runtest-cluster -rwxrwxr-x. 1 root root 679 Jul 21 2020 runtest-moduleapi -rwxrwxr-x. 1 root root 281 Jul 21 2020 runtest-sentinel -rw-rw-r--. 1 root root 10743 Jul 21 2020 sentinel.conf drwxrwxr-x. 3 root root 8192 Jun 24 20:54 src drwxrwxr-x. 11 root root 182 Jul 21 2020 tests -rw-rw-r--. 1 root root 3055 Jul 21 2020 TLS.md drwxrwxr-x. 9 root root 4096 Jul 21 2020 utils [root@192 redis-6.0.6]# vim redis.conf [root@192 redis-6.0.6]# cat redis.conf # Redis configuration file example. # # Note that in order to read the configuration file, Redis must be # started with the file path as first argument: # # ./redis-server /path/to/redis.conf # Note on units: when memory size is needed, it is possible to specify # it in the usual form of 1k 5GB 4M and so forth: # # 1k => 1000 bytes # 1kb => 1024 bytes # 1m => 1000000 bytes # 1mb => 1024*1024 bytes # 1g => 1000000000 bytes # 1gb => 1024*1024*1024 bytes # # units are case insensitive so 1GB 1Gb 1gB are all the same. ################################## INCLUDES ################################### # Include one or more other config files here. This is useful if you # have a standard template that goes to all Redis servers but also need # to customize a few per-server settings. Include files can include # other files, so use this wisely. # # Notice option "include" won't be rewritten by command "CONFIG REWRITE" # from admin or Redis Sentinel. Since Redis always uses the last processed # line as value of a configuration directive, you'd better put includes # at the beginning of this file to avoid overwriting config change at runtime. # # If instead you are interested in using includes to override configuration # options, it is better to use include as the last line. # # include /path/to/local.conf # include /path/to/other.conf ################################## MODULES ##################################### # Load modules at startup. If the server is not able to load modules # it will abort. It is possible to use multiple loadmodule directives. # # loadmodule /path/to/my_module.so # loadmodule /path/to/other_module.so ################################## NETWORK ##################################### # By default, if no "bind" configuration directive is specified, Redis listens # for connections from all the network interfaces available on the server. # It is possible to listen to just one or multiple selected interfaces using # the "bind" configuration directive, followed by one or more IP addresses. # # Examples: # # bind 192.168.1.100 10.0.0.1 # bind 127.0.0.1 ::1 # # ~~~ WARNING ~~~ If the computer running Redis is directly exposed to the # internet, binding to all the interfaces is dangerous and will expose the # instance to everybody on the internet. So by default we uncomment the # following bind directive, that will force Redis to listen only into # the IPv4 loopback interface address (this means Redis will be able to # accept connections only from clients running into the same computer it # is running). # # IF YOU ARE SURE YOU WANT YOUR INSTANCE TO LISTEN TO ALL THE INTERFACES # JUST COMMENT THE FOLLOWING LINE. # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ bind 127.0.0.1 # Protected mode is a layer of security protection, in order to avoid that # Redis instances left open on the internet are accessed and exploited. # # When protected mode is on and if: # # 1) The server is not binding explicitly to a set of addresses using the # "bind" directive. # 2) No password is configured. # # The server only accepts connections from clients connecting from the # IPv4 and IPv6 loopback addresses 127.0.0.1 and ::1, and from Unix domain # sockets. # # By default protected mode is enabled. You should disable it only if # you are sure you want clients from other hosts to connect to Redis # even if no authentication is configured, nor a specific set of interfaces # are explicitly listed using the "bind" directive. protected-mode no # Accept connections on the specified port, default is 6379 (IANA #815344). # If port 0 is specified Redis will not listen on a TCP socket. port 6379 # TCP listen() backlog. # # In high requests-per-second environments you need an high backlog in order # to avoid slow clients connections issues. Note that the Linux kernel # will silently truncate it to the value of /proc/sys/net/core/somaxconn so # make sure to raise both the value of somaxconn and tcp_max_syn_backlog # in order to get the desired effect. tcp-backlog 511 # Unix socket. # # Specify the path for the Unix socket that will be used to listen for # incoming connections. There is no default, so Redis will not listen # on a unix socket when not specified. # # unixsocket /tmp/redis.sock # unixsocketperm 700 # Close the connection after a client is idle for N seconds (0 to disable) timeout 0 # TCP keepalive. # # If non-zero, use SO_KEEPALIVE to send TCP ACKs to clients in absence # of communication. This is useful for two reasons: # # 1) Detect dead peers. # 2) Take the connection alive from the point of view of network # equipment in the middle. # # On Linux, the specified value (in seconds) is the period used to send ACKs. # Note that to close the connection the double of the time is needed. # On other kernels the period depends on the kernel configuration. # # A reasonable value for this option is 300 seconds, which is the new # Redis default starting with Redis 3.2.1. tcp-keepalive 300 ################################# TLS/SSL ##################################### # By default, TLS/SSL is disabled. To enable it, the "tls-port" configuration # directive can be used to define TLS-listening ports. To enable TLS on the # default port, use: # # port 0 # tls-port 6379 # Configure a X.509 certificate and private key to use for authenticating the # server to connected clients, masters or cluster peers. These files should be # PEM formatted. # # tls-cert-file redis.crt # tls-key-file redis.key # Configure a DH parameters file to enable Diffie-Hellman (DH) key exchange: # # tls-dh-params-file redis.dh # Configure a CA certificate(s) bundle or directory to authenticate TLS/SSL # clients and peers. Redis requires an explicit configuration of at least one # of these, and will not implicitly use the system wide configuration. # # tls-ca-cert-file ca.crt # tls-ca-cert-dir /etc/ssl/certs # By default, clients (including replica servers) on a TLS port are required # to authenticate using valid client side certificates. # # It is possible to disable authentication using this directive. # # tls-auth-clients no # By default, a Redis replica does not attempt to establish a TLS connection # with its master. # # Use the following directive to enable TLS on replication links. # # tls-replication yes # By default, the Redis Cluster bus uses a plain TCP connection. To enable # TLS for the bus protocol, use the following directive: # # tls-cluster yes # Explicitly specify TLS versions to support. Allowed values are case insensitive # and include "TLSv1", "TLSv1.1", "TLSv1.2", "TLSv1.3" (OpenSSL >= 1.1.1) or # any combination. To enable only TLSv1.2 and TLSv1.3, use: # # tls-protocols "TLSv1.2 TLSv1.3" # Configure allowed ciphers. See the ciphers(1ssl) manpage for more information # about the syntax of this string. # # Note: this configuration applies only to <= TLSv1.2. # # tls-ciphers DEFAULT:!MEDIUM # Configure allowed TLSv1.3 ciphersuites. See the ciphers(1ssl) manpage for more # information about the syntax of this string, and specifically for TLSv1.3 # ciphersuites. # # tls-ciphersuites TLS_CHACHA20_POLY1305_SHA256 # When choosing a cipher, use the server's preference instead of the client # preference. By default, the server follows the client's preference. # # tls-prefer-server-ciphers yes # By default, TLS session caching is enabled to allow faster and less expensive # reconnections by clients that support it. Use the following directive to disable # caching. # # tls-session-caching no # Change the default number of TLS sessions cached. A zero value sets the cache # to unlimited size. The default size is 20480. # # tls-session-cache-size 5000 # Change the default timeout of cached TLS sessions. The default timeout is 300 # seconds. # # tls-session-cache-timeout 60 ################################# GENERAL ##################################### # By default Redis does not run as a daemon. Use 'yes' if you need it. # Note that Redis will write a pid file in /var/run/redis.pid when daemonized. daemonize no # If you run Redis from upstart or systemd, Redis can interact with your # supervision tree. Options: # supervised no - no supervision interaction # supervised upstart - signal upstart by putting Redis into SIGSTOP mode # supervised systemd - signal systemd by writing READY=1 to $NOTIFY_SOCKET # supervised auto - detect upstart or systemd method based on # UPSTART_JOB or NOTIFY_SOCKET environment variables # Note: these supervision methods only signal "process is ready." # They do not enable continuous liveness pings back to your supervisor. supervised no # If a pid file is specified, Redis writes it where specified at startup # and removes it at exit. # # When the server runs non daemonized, no pid file is created if none is # specified in the configuration. When the server is daemonized, the pid file # is used even if not specified, defaulting to "/var/run/redis.pid". # # Creating a pid file is best effort: if Redis is not able to create it # nothing bad happens, the server will start and run normally. pidfile /var/run/redis_6379.pid # Specify the server verbosity level. # This can be one of: # debug (a lot of information, useful for development/testing) # verbose (many rarely useful info, but not a mess like the debug level) # notice (moderately verbose, what you want in production probably) # warning (only very important / critical messages are logged) loglevel notice # Specify the log file name. Also the empty string can be used to force # Redis to log on the standard output. Note that if you use standard # output for logging but daemonize, logs will be sent to /dev/null logfile "" # To enable logging to the system logger, just set 'syslog-enabled' to yes, # and optionally update the other syslog parameters to suit your needs. # syslog-enabled no # Specify the syslog identity. # syslog-ident redis # Specify the syslog facility. Must be USER or between LOCAL0-LOCAL7. # syslog-facility local0 # Set the number of databases. The default database is DB 0, you can select # a different one on a per-connection basis using SELECT <dbid> where # dbid is a number between 0 and 'databases'-1 databases 16 # By default Redis shows an ASCII art logo only when started to log to the # standard output and if the standard output is a TTY. Basically this means # that normally a logo is displayed only in interactive sessions. # # However it is possible to force the pre-4.0 behavior and always show a # ASCII art logo in startup logs by setting the following option to yes. always-show-logo yes ################################ SNAPSHOTTING ################################ # # Save the DB on disk: # # save <seconds> <changes> # # Will save the DB if both the given number of seconds and the given # number of write operations against the DB occurred. # # In the example below the behaviour will be to save: # after 900 sec (15 min) if at least 1 key changed # after 300 sec (5 min) if at least 10 keys changed # after 60 sec if at least 10000 keys changed # # Note: you can disable saving completely by commenting out all "save" lines. # # It is also possible to remove all the previously configured save # points by adding a save directive with a single empty string argument # like in the following example: # # save "" save 900 1 save 300 10 save 60 10000 # By default Redis will stop accepting writes if RDB snapshots are enabled # (at least one save point) and the latest background save failed. # This will make the user aware (in a hard way) that data is not persisting # on disk properly, otherwise chances are that no one will notice and some # disaster will happen. # # If the background saving process will start working again Redis will # automatically allow writes again. # # However if you have setup your proper monitoring of the Redis server # and persistence, you may want to disable this feature so that Redis will # continue to work as usual even if there are problems with disk, # permissions, and so forth. stop-writes-on-bgsave-error yes # Compress string objects using LZF when dump .rdb databases? # For default that's set to 'yes' as it's almost always a win. # If you want to save some CPU in the saving child set it to 'no' but # the dataset will likely be bigger if you have compressible values or keys. rdbcompression yes # Since version 5 of RDB a CRC64 checksum is placed at the end of the file. # This makes the format more resistant to corruption but there is a performance # hit to pay (around 10%) when saving and loading RDB files, so you can disable it # for maximum performances. # # RDB files created with checksum disabled have a checksum of zero that will # tell the loading code to skip the check. rdbchecksum yes # The filename where to dump the DB dbfilename dump.rdb # Remove RDB files used by replication in instances without persistence # enabled. By default this option is disabled, however there are environments # where for regulations or other security concerns, RDB files persisted on # disk by masters in order to feed replicas, or stored on disk by replicas # in order to load them for the initial synchronization, should be deleted # ASAP. Note that this option ONLY WORKS in instances that have both AOF # and RDB persistence disabled, otherwise is completely ignored. # # An alternative (and sometimes better) way to obtain the same effect is # to use diskless replication on both master and replicas instances. However # in the case of replicas, diskless is not always an option. rdb-del-sync-files no # The working directory. # # The DB will be written inside this directory, with the filename specified # above using the 'dbfilename' configuration directive. # # The Append Only File will also be created inside this directory. # # Note that you must specify a directory here, not a file name. dir ./ ################################# REPLICATION ################################# # Master-Replica replication. Use replicaof to make a Redis instance a copy of # another Redis server. A few things to understand ASAP about Redis replication. # # +------------------+ +---------------+ # | Master | ---> | Replica | # | (receive writes) | | (exact copy) | # +------------------+ +---------------+ # # 1) Redis replication is asynchronous, but you can configure a master to # stop accepting writes if it appears to be not connected with at least # a given number of replicas. # 2) Redis replicas are able to perform a partial resynchronization with the # master if the replication link is lost for a relatively small amount of # time. You may want to configure the replication backlog size (see the next # sections of this file) with a sensible value depending on your needs. # 3) Replication is automatic and does not need user intervention. After a # network partition replicas automatically try to reconnect to masters # and resynchronize with them. # # replicaof <masterip> <masterport> # If the master is password protected (using the "requirepass" configuration # directive below) it is possible to tell the replica to authenticate before # starting the replication synchronization process, otherwise the master will # refuse the replica request. # # masterauth <master-password> # # However this is not enough if you are using Redis ACLs (for Redis version # 6 or greater), and the default user is not capable of running the PSYNC # command and/or other commands needed for replication. In this case it's # better to configure a special user to use with replication, and specify the # masteruser configuration as such: # # masteruser <username> # # When masteruser is specified, the replica will authenticate against its # master using the new AUTH form: AUTH <username> <password>. # When a replica loses its connection with the master, or when the replication # is still in progress, the replica can act in two different ways: # # 1) if replica-serve-stale-data is set to 'yes' (the default) the replica will # still reply to client requests, possibly with out of date data, or the # data set may just be empty if this is the first synchronization. # # 2) if replica-serve-stale-data is set to 'no' the replica will reply with # an error "SYNC with master in progress" to all the kind of commands # but to INFO, replicaOF, AUTH, PING, SHUTDOWN, REPLCONF, ROLE, CONFIG, # SUBSCRIBE, UNSUBSCRIBE, PSUBSCRIBE, PUNSUBSCRIBE, PUBLISH, PUBSUB, # COMMAND, POST, HOST: and LATENCY. # replica-serve-stale-data yes # You can configure a replica instance to accept writes or not. Writing against # a replica instance may be useful to store some ephemeral data (because data # written on a replica will be easily deleted after resync with the master) but # may also cause problems if clients are writing to it because of a # misconfiguration. # # Since Redis 2.6 by default replicas are read-only. # # Note: read only replicas are not designed to be exposed to untrusted clients # on the internet. It's just a protection layer against misuse of the instance. # Still a read only replica exports by default all the administrative commands # such as CONFIG, DEBUG, and so forth. To a limited extent you can improve # security of read only replicas using 'rename-command' to shadow all the # administrative / dangerous commands. replica-read-only yes # Replication SYNC strategy: disk or socket. # # New replicas and reconnecting replicas that are not able to continue the # replication process just receiving differences, need to do what is called a # "full synchronization". An RDB file is transmitted from the master to the # replicas. # # The transmission can happen in two different ways: # # 1) Disk-backed: The Redis master creates a new process that writes the RDB # file on disk. Later the file is transferred by the parent # process to the replicas incrementally. # 2) Diskless: The Redis master creates a new process that directly writes the # RDB file to replica sockets, without touching the disk at all. # # With disk-backed replication, while the RDB file is generated, more replicas # can be queued and served with the RDB file as soon as the current child # producing the RDB file finishes its work. With diskless replication instead # once the transfer starts, new replicas arriving will be queued and a new # transfer will start when the current one terminates. # # When diskless replication is used, the master waits a configurable amount of # time (in seconds) before starting the transfer in the hope that multiple # replicas will arrive and the transfer can be parallelized. # # With slow disks and fast (large bandwidth) networks, diskless replication # works better. repl-diskless-sync no # When diskless replication is enabled, it is possible to configure the delay # the server waits in order to spawn the child that transfers the RDB via socket # to the replicas. # # This is important since once the transfer starts, it is not possible to serve # new replicas arriving, that will be queued for the next RDB transfer, so the # server waits a delay in order to let more replicas arrive. # # The delay is specified in seconds, and by default is 5 seconds. To disable # it entirely just set it to 0 seconds and the transfer will start ASAP. repl-diskless-sync-delay 5 # ----------------------------------------------------------------------------- # WARNING: RDB diskless load is experimental. Since in this setup the replica # does not immediately store an RDB on disk, it may cause data loss during # failovers. RDB diskless load + Redis modules not handling I/O reads may also # cause Redis to abort in case of I/O errors during the initial synchronization # stage with the master. Use only if your do what you are doing. # ----------------------------------------------------------------------------- # # Replica can load the RDB it reads from the replication link directly from the # socket, or store the RDB to a file and read that file after it was completely # recived from the master. # # In many cases the disk is slower than the network, and storing and loading # the RDB file may increase replication time (and even increase the master's # Copy on Write memory and salve buffers). # However, parsing the RDB file directly from the socket may mean that we have # to flush the contents of the current database before the full rdb was # received. For this reason we have the following options: # # "disabled" - Don't use diskless load (store the rdb file to the disk first) # "on-empty-db" - Use diskless load only when it is completely safe. # "swapdb" - Keep a copy of the current db contents in RAM while parsing # the data directly from the socket. note that this requires # sufficient memory, if you don't have it, you risk an OOM kill. repl-diskless-load disabled # Replicas send PINGs to server in a predefined interval. It's possible to # change this interval with the repl_ping_replica_period option. The default # value is 10 seconds. # # repl-ping-replica-period 10 # The following option sets the replication timeout for: # # 1) Bulk transfer I/O during SYNC, from the point of view of replica. # 2) Master timeout from the point of view of replicas (data, pings). # 3) Replica timeout from the point of view of masters (REPLCONF ACK pings). # # It is important to make sure that this value is greater than the value # specified for repl-ping-replica-period otherwise a timeout will be detected # every time there is low traffic between the master and the replica. # # repl-timeout 60 # Disable TCP_NODELAY on the replica socket after SYNC? # # If you select "yes" Redis will use a smaller number of TCP packets and # less bandwidth to send data to replicas. But this can add a delay for # the data to appear on the replica side, up to 40 milliseconds with # Linux kernels using a default configuration. # # If you select "no" the delay for data to appear on the replica side will # be reduced but more bandwidth will be used for replication. # # By default we optimize for low latency, but in very high traffic conditions # or when the master and replicas are many hops away, turning this to "yes" may # be a good idea. repl-disable-tcp-nodelay no # Set the replication backlog size. The backlog is a buffer that accumulates # replica data when replicas are disconnected for some time, so that when a # replica wants to reconnect again, often a full resync is not needed, but a # partial resync is enough, just passing the portion of data the replica # missed while disconnected. # # The bigger the replication backlog, the longer the time the replica can be # disconnected and later be able to perform a partial resynchronization. # # The backlog is only allocated once there is at least a replica connected. # # repl-backlog-size 1mb # After a master has no longer connected replicas for some time, the backlog # will be freed. The following option configures the amount of seconds that # need to elapse, starting from the time the last replica disconnected, for # the backlog buffer to be freed. # # Note that replicas never free the backlog for timeout, since they may be # promoted to masters later, and should be able to correctly "partially # resynchronize" with the replicas: hence they should always accumulate backlog. # # A value of 0 means to never release the backlog. # # repl-backlog-ttl 3600 # The replica priority is an integer number published by Redis in the INFO # output. It is used by Redis Sentinel in order to select a replica to promote # into a master if the master is no longer working correctly. # # A replica with a low priority number is considered better for promotion, so # for instance if there are three replicas with priority 10, 100, 25 Sentinel # will pick the one with priority 10, that is the lowest. # # However a special priority of 0 marks the replica as not able to perform the # role of master, so a replica with priority of 0 will never be selected by # Redis Sentinel for promotion. # # By default the priority is 100. replica-priority 100 # It is possible for a master to stop accepting writes if there are less than # N replicas connected, having a lag less or equal than M seconds. # # The N replicas need to be in "online" state. # # The lag in seconds, that must be <= the specified value, is calculated from # the last ping received from the replica, that is usually sent every second. # # This option does not GUARANTEE that N replicas will accept the write, but # will limit the window of exposure for lost writes in case not enough replicas # are available, to the specified number of seconds. # # For example to require at least 3 replicas with a lag <= 10 seconds use: # # min-replicas-to-write 3 # min-replicas-max-lag 10 # # Setting one or the other to 0 disables the feature. # # By default min-replicas-to-write is set to 0 (feature disabled) and # min-replicas-max-lag is set to 10. # A Redis master is able to list the address and port of the attached # replicas in different ways. For example the "INFO replication" section # offers this information, which is used, among other tools, by # Redis Sentinel in order to discover replica instances. # Another place where this info is available is in the output of the # "ROLE" command of a master. # # The listed IP and address normally reported by a replica is obtained # in the following way: # # IP: The address is auto detected by checking the peer address # of the socket used by the replica to connect with the master. # # Port: The port is communicated by the replica during the replication # handshake, and is normally the port that the replica is using to # listen for connections. # # However when port forwarding or Network Address Translation (NAT) is # used, the replica may be actually reachable via different IP and port # pairs. The following two options can be used by a replica in order to # report to its master a specific set of IP and port, so that both INFO # and ROLE will report those values. # # There is no need to use both the options if you need to override just # the port or the IP address. # # replica-announce-ip 5.5.5.5 # replica-announce-port 1234 ############################### KEYS TRACKING ################################# # Redis implements server assisted support for client side caching of values. # This is implemented using an invalidation table that remembers, using # 16 millions of slots, what clients may have certain subsets of keys. In turn # this is used in order to send invalidation messages to clients. Please # to understand more about the feature check this page: # # https://redis.io/topics/client-side-caching # # When tracking is enabled for a client, all the read only queries are assumed # to be cached: this will force Redis to store information in the invalidation # table. When keys are modified, such information is flushed away, and # invalidation messages are sent to the clients. However if the workload is # heavily dominated by reads, Redis could use more and more memory in order # to track the keys fetched by many clients. # # For this reason it is possible to configure a maximum fill value for the # invalidation table. By default it is set to 1M of keys, and once this limit # is reached, Redis will start to evict keys in the invalidation table # even if they were not modified, just to reclaim memory: this will in turn # force the clients to invalidate the cached values. Basically the table # maximum size is a trade off between the memory you want to spend server # side to track information about who cached what, and the ability of clients # to retain cached objects in memory. # # If you set the value to 0, it means there are no limits, and Redis will # retain as many keys as needed in the invalidation table. # In the "stats" INFO section, you can find information about the number of # keys in the invalidation table at every given moment. # # Note: when key tracking is used in broadcasting mode, no memory is used # in the server side so this setting is useless. # # tracking-table-max-keys 1000000 ################################## SECURITY ################################### # Warning: since Redis is pretty fast an outside user can try up to # 1 million passwords per second against a modern box. This means that you # should use very strong passwords, otherwise they will be very easy to break. # Note that because the password is really a shared secret between the client # and the server, and should not be memorized by any human, the password # can be easily a long string from /dev/urandom or whatever, so by using a # long and unguessable password no brute force attack will be possible. # Redis ACL users are defined in the following format: # # user <username> ... acl rules ... # # For example: # # user worker +@list +@connection ~jobs:* on >ffa9203c493aa99 # # The special username "default" is used for new connections. If this user # has the "nopass" rule, then new connections will be immediately authenticated # as the "default" user without the need of any password provided via the # AUTH command. Otherwise if the "default" user is not flagged with "nopass" # the connections will start in not authenticated state, and will require # AUTH (or the HELLO command AUTH option) in order to be authenticated and # start to work. # # The ACL rules that describe what an user can do are the following: # # on Enable the user: it is possible to authenticate as this user. # off Disable the user: it's no longer possible to authenticate # with this user, however the already authenticated connections # will still work. # +<command> Allow the execution of that command # -<command> Disallow the execution of that command # +@<category> Allow the execution of all the commands in such category # with valid categories are like @admin, @set, @sortedset, ... # and so forth, see the full list in the server.c file where # the Redis command table is described and defined. # The special category @all means all the commands, but currently # present in the server, and that will be loaded in the future # via modules. # +<command>|subcommand Allow a specific subcommand of an otherwise # disabled command. Note that this form is not # allowed as negative like -DEBUG|SEGFAULT, but # only additive starting with "+". # allcommands Alias for +@all. Note that it implies the ability to execute # all the future commands loaded via the modules system. # nocommands Alias for -@all. # ~<pattern> Add a pattern of keys that can be mentioned as part of # commands. For instance ~* allows all the keys. The pattern # is a glob-style pattern like the one of KEYS. # It is possible to specify multiple patterns. # allkeys Alias for ~* # resetkeys Flush the list of allowed keys patterns. # ><password> Add this passowrd to the list of valid password for the user. # For example >mypass will add "mypass" to the list. # This directive clears the "nopass" flag (see later). # <<password> Remove this password from the list of valid passwords. # nopass All the set passwords of the user are removed, and the user # is flagged as requiring no password: it means that every # password will work against this user. If this directive is # used for the default user, every new connection will be # immediately authenticated with the default user without # any explicit AUTH command required. Note that the "resetpass" # directive will clear this condition. # resetpass Flush the list of allowed passwords. Moreover removes the # "nopass" status. After "resetpass" the user has no associated # passwords and there is no way to authenticate without adding # some password (or setting it as "nopass" later). # reset Performs the following actions: resetpass, resetkeys, off, # -@all. The user returns to the same state it has immediately # after its creation. # # ACL rules can be specified in any order: for instance you can start with # passwords, then flags, or key patterns. However note that the additive # and subtractive rules will CHANGE MEANING depending on the ordering. # For instance see the following example: # # user alice on +@all -DEBUG ~* >somepassword # # This will allow "alice" to use all the commands with the exception of the # DEBUG command, since +@all added all the commands to the set of the commands # alice can use, and later DEBUG was removed. However if we invert the order # of two ACL rules the result will be different: # # user alice on -DEBUG +@all ~* >somepassword # # Now DEBUG was removed when alice had yet no commands in the set of allowed # commands, later all the commands are added, so the user will be able to # execute everything. # # Basically ACL rules are processed left-to-right. # # For more information about ACL configuration please refer to # the Redis web site at https://redis.io/topics/acl # ACL LOG # # The ACL Log tracks failed commands and authentication events associated # with ACLs. The ACL Log is useful to troubleshoot failed commands blocked # by ACLs. The ACL Log is stored in memory. You can reclaim memory with # ACL LOG RESET. Define the maximum entry length of the ACL Log below. acllog-max-len 128 # Using an external ACL file # # Instead of configuring users here in this file, it is possible to use # a stand-alone file just listing users. The two methods cannot be mixed: # if you configure users here and at the same time you activate the exteranl # ACL file, the server will refuse to start. # # The format of the external ACL user file is exactly the same as the # format that is used inside redis.conf to describe users. # # aclfile /etc/redis/users.acl # IMPORTANT NOTE: starting with Redis 6 "requirepass" is just a compatiblity # layer on top of the new ACL system. The option effect will be just setting # the password for the default user. Clients will still authenticate using # AUTH <password> as usually, or more explicitly with AUTH default <password> # if they follow the new protocol: both will work. # requirepass 12345678 # Command renaming (DEPRECATED). # # ------------------------------------------------------------------------ # WARNING: avoid using this option if possible. Instead use ACLs to remove # commands from the default user, and put them only in some admin user you # create for administrative purposes. # ------------------------------------------------------------------------ # # It is possible to change the name of dangerous commands in a shared # environment. For instance the CONFIG command may be renamed into something # hard to guess so that it will still be available for internal-use tools # but not available for general clients. # # Example: # # rename-command CONFIG b840fc02d524045429941cc15f59e41cb7be6c52 # # It is also possible to completely kill a command by renaming it into # an empty string: # # rename-command CONFIG "" # # Please note that changing the name of commands that are logged into the # AOF file or transmitted to replicas may cause problems. ################################### CLIENTS #################################### # Set the max number of connected clients at the same time. By default # this limit is set to 10000 clients, however if the Redis server is not # able to configure the process file limit to allow for the specified limit # the max number of allowed clients is set to the current file limit # minus 32 (as Redis reserves a few file descriptors for internal uses). # # Once the limit is reached Redis will close all the new connections sending # an error 'max number of clients reached'. # # IMPORTANT: When Redis Cluster is used, the max number of connections is also # shared with the cluster bus: every node in the cluster will use two # connections, one incoming and another outgoing. It is important to size the # limit accordingly in case of very large clusters. # # maxclients 10000 ############################## MEMORY MANAGEMENT ################################ # Set a memory usage limit to the specified amount of bytes. # When the memory limit is reached Redis will try to remove keys # according to the eviction policy selected (see maxmemory-policy). # # If Redis can't remove keys according to the policy, or if the policy is # set to 'noeviction', Redis will start to reply with errors to commands # that would use more memory, like SET, LPUSH, and so on, and will continue # to reply to read-only commands like GET. # # This option is usually useful when using Redis as an LRU or LFU cache, or to # set a hard memory limit for an instance (using the 'noeviction' policy). # # WARNING: If you have replicas attached to an instance with maxmemory on, # the size of the output buffers needed to feed the replicas are subtracted # from the used memory count, so that network problems / resyncs will # not trigger a loop where keys are evicted, and in turn the output # buffer of replicas is full with DELs of keys evicted triggering the deletion # of more keys, and so forth until the database is completely emptied. # # In short... if you have replicas attached it is suggested that you set a lower # limit for maxmemory so that there is some free RAM on the system for replica # output buffers (but this is not needed if the policy is 'noeviction'). # # maxmemory <bytes> # MAXMEMORY POLICY: how Redis will select what to remove when maxmemory # is reached. You can select one from the following behaviors: # # volatile-lru -> Evict using approximated LRU, only keys with an expire set. # allkeys-lru -> Evict any key using approximated LRU. # volatile-lfu -> Evict using approximated LFU, only keys with an expire set. # allkeys-lfu -> Evict any key using approximated LFU. # volatile-random -> Remove a random key having an expire set. # allkeys-random -> Remove a random key, any key. # volatile-ttl -> Remove the key with the nearest expire time (minor TTL) # noeviction -> Don't evict anything, just return an error on write operations. # # LRU means Least Recently Used # LFU means Least Frequently Used # # Both LRU, LFU and volatile-ttl are implemented using approximated # randomized algorithms. # # Note: with any of the above policies, Redis will return an error on write # operations, when there are no suitable keys for eviction. # # At the date of writing these commands are: set setnx setex append # incr decr rpush lpush rpushx lpushx linsert lset rpoplpush sadd # sinter sinterstore sunion sunionstore sdiff sdiffstore zadd zincrby # zunionstore zinterstore hset hsetnx hmset hincrby incrby decrby # getset mset msetnx exec sort # # The default is: # # maxmemory-policy noeviction # LRU, LFU and minimal TTL algorithms are not precise algorithms but approximated # algorithms (in order to save memory), so you can tune it for speed or # accuracy. For default Redis will check five keys and pick the one that was # used less recently, you can change the sample size using the following # configuration directive. # # The default of 5 produces good enough results. 10 Approximates very closely # true LRU but costs more CPU. 3 is faster but not very accurate. # # maxmemory-samples 5 # Starting from Redis 5, by default a replica will ignore its maxmemory setting # (unless it is promoted to master after a failover or manually). It means # that the eviction of keys will be just handled by the master, sending the # DEL commands to the replica as keys evict in the master side. # # This behavior ensures that masters and replicas stay consistent, and is usually # what you want, however if your replica is writable, or you want the replica # to have a different memory setting, and you are sure all the writes performed # to the replica are idempotent, then you may change this default (but be sure # to understand what you are doing). # # Note that since the replica by default does not evict, it may end using more # memory than the one set via maxmemory (there are certain buffers that may # be larger on the replica, or data structures may sometimes take more memory # and so forth). So make sure you monitor your replicas and make sure they # have enough memory to never hit a real out-of-memory condition before the # master hits the configured maxmemory setting. # # replica-ignore-maxmemory yes # Redis reclaims expired keys in two ways: upon access when those keys are # found to be expired, and also in background, in what is called the # "active expire key". The key space is slowly and interactively scanned # looking for expired keys to reclaim, so that it is possible to free memory # of keys that are expired and will never be accessed again in a short time. # # The default effort of the expire cycle will try to avoid having more than # ten percent of expired keys still in memory, and will try to avoid consuming # more than 25% of total memory and to add latency to the system. However # it is possible to increase the expire "effort" that is normally set to # "1", to a greater value, up to the value "10". At its maximum value the # system will use more CPU, longer cycles (and technically may introduce # more latency), and will tollerate less already expired keys still present # in the system. It's a tradeoff betweeen memory, CPU and latecy. # # active-expire-effort 1 ############################# LAZY FREEING #################################### # Redis has two primitives to delete keys. One is called DEL and is a blocking # deletion of the object. It means that the server stops processing new commands # in order to reclaim all the memory associated with an object in a synchronous # way. If the key deleted is associated with a small object, the time needed # in order to execute the DEL command is very small and comparable to most other # O(1) or O(log_N) commands in Redis. However if the key is associated with an # aggregated value containing millions of elements, the server can block for # a long time (even seconds) in order to complete the operation. # # For the above reasons Redis also offers non blocking deletion primitives # such as UNLINK (non blocking DEL) and the ASYNC option of FLUSHALL and # FLUSHDB commands, in order to reclaim memory in background. Those commands # are executed in constant time. Another thread will incrementally free the # object in the background as fast as possible. # # DEL, UNLINK and ASYNC option of FLUSHALL and FLUSHDB are user-controlled. # It's up to the design of the application to understand when it is a good # idea to use one or the other. However the Redis server sometimes has to # delete keys or flush the whole database as a side effect of other operations. # Specifically Redis deletes objects independently of a user call in the # following scenarios: # # 1) On eviction, because of the maxmemory and maxmemory policy configurations, # in order to make room for new data, without going over the specified # memory limit. # 2) Because of expire: when a key with an associated time to live (see the # EXPIRE command) must be deleted from memory. # 3) Because of a side effect of a command that stores data on a key that may # already exist. For example the RENAME command may delete the old key # content when it is replaced with another one. Similarly SUNIONSTORE # or SORT with STORE option may delete existing keys. The SET command # itself removes any old content of the specified key in order to replace # it with the specified string. # 4) During replication, when a replica performs a full resynchronization with # its master, the content of the whole database is removed in order to # load the RDB file just transferred. # # In all the above cases the default is to delete objects in a blocking way, # like if DEL was called. However you can configure each case specifically # in order to instead release memory in a non-blocking way like if UNLINK # was called, using the following configuration directives. lazyfree-lazy-eviction no lazyfree-lazy-expire no lazyfree-lazy-server-del no replica-lazy-flush no # It is also possible, for the case when to replace the user code DEL calls # with UNLINK calls is not easy, to modify the default behavior of the DEL # command to act exactly like UNLINK, using the following configuration # directive: lazyfree-lazy-user-del no ################################ THREADED I/O ################################# # Redis is mostly single threaded, however there are certain threaded # operations such as UNLINK, slow I/O accesses and other things that are # performed on side threads. # # Now it is also possible to handle Redis clients socket reads and writes # in different I/O threads. Since especially writing is so slow, normally # Redis users use pipelining in order to speedup the Redis performances per # core, and spawn multiple instances in order to scale more. Using I/O # threads it is possible to easily speedup two times Redis without resorting # to pipelining nor sharding of the instance. # # By default threading is disabled, we suggest enabling it only in machines # that have at least 4 or more cores, leaving at least one spare core. # Using more than 8 threads is unlikely to help much. We also recommend using # threaded I/O only if you actually have performance problems, with Redis # instances being able to use a quite big percentage of CPU time, otherwise # there is no point in using this feature. # # So for instance if you have a four cores boxes, try to use 2 or 3 I/O # threads, if you have a 8 cores, try to use 6 threads. In order to # enable I/O threads use the following configuration directive: # # io-threads 4 # # Setting io-threads to 1 will just use the main thread as usually. # When I/O threads are enabled, we only use threads for writes, that is # to thread the write(2) syscall and transfer the client buffers to the # socket. However it is also possible to enable threading of reads and # protocol parsing using the following configuration directive, by setting # it to yes: # # io-threads-do-reads no # # Usually threading reads doesn't help much. # # NOTE 1: This configuration directive cannot be changed at runtime via # CONFIG SET. Aso this feature currently does not work when SSL is # enabled. # # NOTE 2: If you want to test the Redis speedup using redis-benchmark, make # sure you also run the benchmark itself in threaded mode, using the # --threads option to match the number of Redis theads, otherwise you'll not # be able to notice the improvements. ############################## APPEND ONLY MODE ############################### # By default Redis asynchronously dumps the dataset on disk. This mode is # good enough in many applications, but an issue with the Redis process or # a power outage may result into a few minutes of writes lost (depending on # the configured save points). # # The Append Only File is an alternative persistence mode that provides # much better durability. For instance using the default data fsync policy # (see later in the config file) Redis can lose just one second of writes in a # dramatic event like a server power outage, or a single write if something # wrong with the Redis process itself happens, but the operating system is # still running correctly. # # AOF and RDB persistence can be enabled at the same time without problems. # If the AOF is enabled on startup Redis will load the AOF, that is the file # with the better durability guarantees. # # Please check http://redis.io/topics/persistence for more information. appendonly no # The name of the append only file (default: "appendonly.aof") appendfilename "appendonly.aof" # The fsync() call tells the Operating System to actually write data on disk # instead of waiting for more data in the output buffer. Some OS will really flush # data on disk, some other OS will just try to do it ASAP. # # Redis supports three different modes: # # no: don't fsync, just let the OS flush the data when it wants. Faster. # always: fsync after every write to the append only log. Slow, Safest. # everysec: fsync only one time every second. Compromise. # # The default is "everysec", as that's usually the right compromise between # speed and data safety. It's up to you to understand if you can relax this to # "no" that will let the operating system flush the output buffer when # it wants, for better performances (but if you can live with the idea of # some data loss consider the default persistence mode that's snapshotting), # or on the contrary, use "always" that's very slow but a bit safer than # everysec. # # More details please check the following article: # http://antirez.com/post/redis-persistence-demystified.html # # If unsure, use "everysec". # appendfsync always appendfsync everysec # appendfsync no # When the AOF fsync policy is set to always or everysec, and a background # saving process (a background save or AOF log background rewriting) is # performing a lot of I/O against the disk, in some Linux configurations # Redis may block too long on the fsync() call. Note that there is no fix for # this currently, as even performing fsync in a different thread will block # our synchronous write(2) call. # # In order to mitigate this problem it's possible to use the following option # that will prevent fsync() from being called in the main process while a # BGSAVE or BGREWRITEAOF is in progress. # # This means that while another child is saving, the durability of Redis is # the same as "appendfsync none". In practical terms, this means that it is # possible to lose up to 30 seconds of log in the worst scenario (with the # default Linux settings). # # If you have latency problems turn this to "yes". Otherwise leave it as # "no" that is the safest pick from the point of view of durability. no-appendfsync-on-rewrite no # Automatic rewrite of the append only file. # Redis is able to automatically rewrite the log file implicitly calling # BGREWRITEAOF when the AOF log size grows by the specified percentage. # # This is how it works: Redis remembers the size of the AOF file after the # latest rewrite (if no rewrite has happened since the restart, the size of # the AOF at startup is used). # # This base size is compared to the current size. If the current size is # bigger than the specified percentage, the rewrite is triggered. Also # you need to specify a minimal size for the AOF file to be rewritten, this # is useful to avoid rewriting the AOF file even if the percentage increase # is reached but it is still pretty small. # # Specify a percentage of zero in order to disable the automatic AOF # rewrite feature. auto-aof-rewrite-percentage 100 auto-aof-rewrite-min-size 64mb # An AOF file may be found to be truncated at the end during the Redis # startup process, when the AOF data gets loaded back into memory. # This may happen when the system where Redis is running # crashes, especially when an ext4 filesystem is mounted without the # data=ordered option (however this can't happen when Redis itself # crashes or aborts but the operating system still works correctly). # # Redis can either exit with an error when this happens, or load as much # data as possible (the default now) and start if the AOF file is found # to be truncated at the end. The following option controls this behavior. # # If aof-load-truncated is set to yes, a truncated AOF file is loaded and # the Redis server starts emitting a log to inform the user of the event. # Otherwise if the option is set to no, the server aborts with an error # and refuses to start. When the option is set to no, the user requires # to fix the AOF file using the "redis-check-aof" utility before to restart # the server. # # Note that if the AOF file will be found to be corrupted in the middle # the server will still exit with an error. This option only applies when # Redis will try to read more data from the AOF file but not enough bytes # will be found. aof-load-truncated yes # When rewriting the AOF file, Redis is able to use an RDB preamble in the # AOF file for faster rewrites and recoveries. When this option is turned # on the rewritten AOF file is composed of two different stanzas: # # [RDB file][AOF tail] # # When loading Redis recognizes that the AOF file starts with the "REDIS" # string and loads the prefixed RDB file, and continues loading the AOF # tail. aof-use-rdb-preamble yes ################################ LUA SCRIPTING ############################### # Max execution time of a Lua script in milliseconds. # # If the maximum execution time is reached Redis will log that a script is # still in execution after the maximum allowed time and will start to # reply to queries with an error. # # When a long running script exceeds the maximum execution time only the # SCRIPT KILL and SHUTDOWN NOSAVE commands are available. The first can be # used to stop a script that did not yet called write commands. The second # is the only way to shut down the server in the case a write command was # already issued by the script but the user doesn't want to wait for the natural # termination of the script. # # Set it to 0 or a negative value for unlimited execution without warnings. lua-time-limit 5000 ################################ REDIS CLUSTER ############################### # Normal Redis instances can't be part of a Redis Cluster; only nodes that are # started as cluster nodes can. In order to start a Redis instance as a # cluster node enable the cluster support uncommenting the following: # # cluster-enabled yes # Every cluster node has a cluster configuration file. This file is not # intended to be edited by hand. It is created and updated by Redis nodes. # Every Redis Cluster node requires a different cluster configuration file. # Make sure that instances running in the same system do not have # overlapping cluster configuration file names. # # cluster-config-file nodes-6379.conf # Cluster node timeout is the amount of milliseconds a node must be unreachable # for it to be considered in failure state. # Most other internal time limits are multiple of the node timeout. # # cluster-node-timeout 15000 # A replica of a failing master will avoid to start a failover if its data # looks too old. # # There is no simple way for a replica to actually have an exact measure of # its "data age", so the following two checks are performed: # # 1) If there are multiple replicas able to failover, they exchange messages # in order to try to give an advantage to the replica with the best # replication offset (more data from the master processed). # Replicas will try to get their rank by offset, and apply to the start # of the failover a delay proportional to their rank. # # 2) Every single replica computes the time of the last interaction with # its master. This can be the last ping or command received (if the master # is still in the "connected" state), or the time that elapsed since the # disconnection with the master (if the replication link is currently down). # If the last interaction is too old, the replica will not try to failover # at all. # # The point "2" can be tuned by user. Specifically a replica will not perform # the failover if, since the last interaction with the master, the time # elapsed is greater than: # # (node-timeout * replica-validity-factor) + repl-ping-replica-period # # So for example if node-timeout is 30 seconds, and the replica-validity-factor # is 10, and assuming a default repl-ping-replica-period of 10 seconds, the # replica will not try to failover if it was not able to talk with the master # for longer than 310 seconds. # # A large replica-validity-factor may allow replicas with too old data to failover # a master, while a too small value may prevent the cluster from being able to # elect a replica at all. # # For maximum availability, it is possible to set the replica-validity-factor # to a value of 0, which means, that replicas will always try to failover the # master regardless of the last time they interacted with the master. # (However they'll always try to apply a delay proportional to their # offset rank). # # Zero is the only value able to guarantee that when all the partitions heal # the cluster will always be able to continue. # # cluster-replica-validity-factor 10 # Cluster replicas are able to migrate to orphaned masters, that are masters # that are left without working replicas. This improves the cluster ability # to resist to failures as otherwise an orphaned master can't be failed over # in case of failure if it has no working replicas. # # Replicas migrate to orphaned masters only if there are still at least a # given number of other working replicas for their old master. This number # is the "migration barrier". A migration barrier of 1 means that a replica # will migrate only if there is at least 1 other working replica for its master # and so forth. It usually reflects the number of replicas you want for every # master in your cluster. # # Default is 1 (replicas migrate only if their masters remain with at least # one replica). To disable migration just set it to a very large value. # A value of 0 can be set but is useful only for debugging and dangerous # in production. # # cluster-migration-barrier 1 # By default Redis Cluster nodes stop accepting queries if they detect there # is at least an hash slot uncovered (no available node is serving it). # This way if the cluster is partially down (for example a range of hash slots # are no longer covered) all the cluster becomes, eventually, unavailable. # It automatically returns available as soon as all the slots are covered again. # # However sometimes you want the subset of the cluster which is working, # to continue to accept queries for the part of the key space that is still # covered. In order to do so, just set the cluster-require-full-coverage # option to no. # # cluster-require-full-coverage yes # This option, when set to yes, prevents replicas from trying to failover its # master during master failures. However the master can still perform a # manual failover, if forced to do so. # # This is useful in different scenarios, especially in the case of multiple # data center operations, where we want one side to never be promoted if not # in the case of a total DC failure. # # cluster-replica-no-failover no # This option, when set to yes, allows nodes to serve read traffic while the # the cluster is in a down state, as long as it believes it owns the slots. # # This is useful for two cases. The first case is for when an application # doesn't require consistency of data during node failures or network partitions. # One example of this is a cache, where as long as the node has the data it # should be able to serve it. # # The second use case is for configurations that don't meet the recommended # three shards but want to enable cluster mode and scale later. A # master outage in a 1 or 2 shard configuration causes a read/write outage to the # entire cluster without this option set, with it set there is only a write outage. # Without a quorum of masters, slot ownership will not change automatically. # # cluster-allow-reads-when-down no # In order to setup your cluster make sure to read the documentation # available at http://redis.io web site. ########################## CLUSTER DOCKER/NAT support ######################## # In certain deployments, Redis Cluster nodes address discovery fails, because # addresses are NAT-ted or because ports are forwarded (the typical case is # Docker and other containers). # # In order to make Redis Cluster working in such environments, a static # configuration where each node knows its public address is needed. The # following two options are used for this scope, and are: # # * cluster-announce-ip # * cluster-announce-port # * cluster-announce-bus-port # # Each instruct the node about its address, client port, and cluster message # bus port. The information is then published in the header of the bus packets # so that other nodes will be able to correctly map the address of the node # publishing the information. # # If the above options are not used, the normal Redis Cluster auto-detection # will be used instead. # # Note that when remapped, the bus port may not be at the fixed offset of # clients port + 10000, so you can specify any port and bus-port depending # on how they get remapped. If the bus-port is not set, a fixed offset of # 10000 will be used as usually. # # Example: # # cluster-announce-ip 10.1.1.5 # cluster-announce-port 6379 # cluster-announce-bus-port 6380 ################################## SLOW LOG ################################### # The Redis Slow Log is a system to log queries that exceeded a specified # execution time. The execution time does not include the I/O operations # like talking with the client, sending the reply and so forth, # but just the time needed to actually execute the command (this is the only # stage of command execution where the thread is blocked and can not serve # other requests in the meantime). # # You can configure the slow log with two parameters: one tells Redis # what is the execution time, in microseconds, to exceed in order for the # command to get logged, and the other parameter is the length of the # slow log. When a new command is logged the oldest one is removed from the # queue of logged commands. # The following time is expressed in microseconds, so 1000000 is equivalent # to one second. Note that a negative number disables the slow log, while # a value of zero forces the logging of every command. slowlog-log-slower-than 10000 # There is no limit to this length. Just be aware that it will consume memory. # You can reclaim memory used by the slow log with SLOWLOG RESET. slowlog-max-len 128 ################################ LATENCY MONITOR ############################## # The Redis latency monitoring subsystem samples different operations # at runtime in order to collect data related to possible sources of # latency of a Redis instance. # # Via the LATENCY command this information is available to the user that can # print graphs and obtain reports. # # The system only logs operations that were performed in a time equal or # greater than the amount of milliseconds specified via the # latency-monitor-threshold configuration directive. When its value is set # to zero, the latency monitor is turned off. # # By default latency monitoring is disabled since it is mostly not needed # if you don't have latency issues, and collecting data has a performance # impact, that while very small, can be measured under big load. Latency # monitoring can easily be enabled at runtime using the command # "CONFIG SET latency-monitor-threshold <milliseconds>" if needed. latency-monitor-threshold 0 ############################# EVENT NOTIFICATION ############################## # Redis can notify Pub/Sub clients about events happening in the key space. # This feature is documented at http://redis.io/topics/notifications # # For instance if keyspace events notification is enabled, and a client # performs a DEL operation on key "foo" stored in the Database 0, two # messages will be published via Pub/Sub: # # PUBLISH __keyspace@0__:foo del # PUBLISH __keyevent@0__:del foo # # It is possible to select the events that Redis will notify among a set # of classes. Every class is identified by a single character: # # K Keyspace events, published with __keyspace@<db>__ prefix. # E Keyevent events, published with __keyevent@<db>__ prefix. # g Generic commands (non-type specific) like DEL, EXPIRE, RENAME, ... # $ String commands # l List commands # s Set commands # h Hash commands # z Sorted set commands # x Expired events (events generated every time a key expires) # e Evicted events (events generated when a key is evicted for maxmemory) # t Stream commands # m Key-miss events (Note: It is not included in the 'A' class) # A Alias for g$lshzxet, so that the "AKE" string means all the events # (Except key-miss events which are excluded from 'A' due to their # unique nature). # # The "notify-keyspace-events" takes as argument a string that is composed # of zero or multiple characters. The empty string means that notifications # are disabled. # # Example: to enable list and generic events, from the point of view of the # event name, use: # # notify-keyspace-events Elg # # Example 2: to get the stream of the expired keys subscribing to channel # name __keyevent@0__:expired use: # # notify-keyspace-events Ex # # By default all notifications are disabled because most users don't need # this feature and the feature has some overhead. Note that if you don't # specify at least one of K or E, no events will be delivered. notify-keyspace-events "" ############################### GOPHER SERVER ################################# # Redis contains an implementation of the Gopher protocol, as specified in # the RFC 1436 (https://www.ietf.org/rfc/rfc1436.txt). # # The Gopher protocol was very popular in the late '90s. It is an alternative # to the web, and the implementation both server and client side is so simple # that the Redis server has just 100 lines of code in order to implement this # support. # # What do you do with Gopher nowadays? Well Gopher never *really* died, and # lately there is a movement in order for the Gopher more hierarchical content # composed of just plain text documents to be resurrected. Some want a simpler # internet, others believe that the mainstream internet became too much # controlled, and it's cool to create an alternative space for people that # want a bit of fresh air. # # Anyway for the 10nth birthday of the Redis, we gave it the Gopher protocol # as a gift. # # --- HOW IT WORKS? --- # # The Redis Gopher support uses the inline protocol of Redis, and specifically # two kind of inline requests that were anyway illegal: an empty request # or any request that starts with "/" (there are no Redis commands starting # with such a slash). Normal RESP2/RESP3 requests are completely out of the # path of the Gopher protocol implementation and are served as usually as well. # # If you open a connection to Redis when Gopher is enabled and send it # a string like "/foo", if there is a key named "/foo" it is served via the # Gopher protocol. # # In order to create a real Gopher "hole" (the name of a Gopher site in Gopher # talking), you likely need a script like the following: # # https://github.com/antirez/gopher2redis # # --- SECURITY WARNING --- # # If you plan to put Redis on the internet in a publicly accessible address # to server Gopher pages MAKE SURE TO SET A PASSWORD to the instance. # Once a password is set: # # 1. The Gopher server (when enabled, not by default) will still serve # content via Gopher. # 2. However other commands cannot be called before the client will # authenticate. # # So use the 'requirepass' option to protect your instance. # # To enable Gopher support uncomment the following line and set # the option from no (the default) to yes. # # gopher-enabled no ############################### ADVANCED CONFIG ############################### # Hashes are encoded using a memory efficient data structure when they have a # small number of entries, and the biggest entry does not exceed a given # threshold. These thresholds can be configured using the following directives. hash-max-ziplist-entries 512 hash-max-ziplist-value 64 # Lists are also encoded in a special way to save a lot of space. # The number of entries allowed per internal list node can be specified # as a fixed maximum size or a maximum number of elements. # For a fixed maximum size, use -5 through -1, meaning: # -5: max size: 64 Kb <-- not recommended for normal workloads # -4: max size: 32 Kb <-- not recommended # -3: max size: 16 Kb <-- probably not recommended # -2: max size: 8 Kb <-- good # -1: max size: 4 Kb <-- good # Positive numbers mean store up to _exactly_ that number of elements # per list node. # The highest performing option is usually -2 (8 Kb size) or -1 (4 Kb size), # but if your use case is unique, adjust the settings as necessary. list-max-ziplist-size -2 # Lists may also be compressed. # Compress depth is the number of quicklist ziplist nodes from *each* side of # the list to *exclude* from compression. The head and tail of the list # are always uncompressed for fast push/pop operations. Settings are: # 0: disable all list compression # 1: depth 1 means "don't start compressing until after 1 node into the list, # going from either the head or tail" # So: [head]->node->node->...->node->[tail] # [head], [tail] will always be uncompressed; inner nodes will compress. # 2: [head]->[next]->node->node->...->node->[prev]->[tail] # 2 here means: don't compress head or head->next or tail->prev or tail, # but compress all nodes between them. # 3: [head]->[next]->[next]->node->node->...->node->[prev]->[prev]->[tail] # etc. list-compress-depth 0 # Sets have a special encoding in just one case: when a set is composed # of just strings that happen to be integers in radix 10 in the range # of 64 bit signed integers. # The following configuration setting sets the limit in the size of the # set in order to use this special memory saving encoding. set-max-intset-entries 512 # Similarly to hashes and lists, sorted sets are also specially encoded in # order to save a lot of space. This encoding is only used when the length and # elements of a sorted set are below the following limits: zset-max-ziplist-entries 128 zset-max-ziplist-value 64 # HyperLogLog sparse representation bytes limit. The limit includes the # 16 bytes header. When an HyperLogLog using the sparse representation crosses # this limit, it is converted into the dense representation. # # A value greater than 16000 is totally useless, since at that point the # dense representation is more memory efficient. # # The suggested value is ~ 3000 in order to have the benefits of # the space efficient encoding without slowing down too much PFADD, # which is O(N) with the sparse encoding. The value can be raised to # ~ 10000 when CPU is not a concern, but space is, and the data set is # composed of many HyperLogLogs with cardinality in the 0 - 15000 range. hll-sparse-max-bytes 3000 # Streams macro node max size / items. The stream data structure is a radix # tree of big nodes that encode multiple items inside. Using this configuration # it is possible to configure how big a single node can be in bytes, and the # maximum number of items it may contain before switching to a new node when # appending new stream entries. If any of the following settings are set to # zero, the limit is ignored, so for instance it is possible to set just a # max entires limit by setting max-bytes to 0 and max-entries to the desired # value. stream-node-max-bytes 4096 stream-node-max-entries 100 # Active rehashing uses 1 millisecond every 100 milliseconds of CPU time in # order to help rehashing the main Redis hash table (the one mapping top-level # keys to values). The hash table implementation Redis uses (see dict.c) # performs a lazy rehashing: the more operation you run into a hash table # that is rehashing, the more rehashing "steps" are performed, so if the # server is idle the rehashing is never complete and some more memory is used # by the hash table. # # The default is to use this millisecond 10 times every second in order to # actively rehash the main dictionaries, freeing memory when possible. # # If unsure: # use "activerehashing no" if you have hard latency requirements and it is # not a good thing in your environment that Redis can reply from time to time # to queries with 2 milliseconds delay. # # use "activerehashing yes" if you don't have such hard requirements but # want to free memory asap when possible. activerehashing yes # The client output buffer limits can be used to force disconnection of clients # that are not reading data from the server fast enough for some reason (a # common reason is that a Pub/Sub client can't consume messages as fast as the # publisher can produce them). # # The limit can be set differently for the three different classes of clients: # # normal -> normal clients including MONITOR clients # replica -> replica clients # pubsub -> clients subscribed to at least one pubsub channel or pattern # # The syntax of every client-output-buffer-limit directive is the following: # # client-output-buffer-limit <class> <hard limit> <soft limit> <soft seconds> # # A client is immediately disconnected once the hard limit is reached, or if # the soft limit is reached and remains reached for the specified number of # seconds (continuously). # So for instance if the hard limit is 32 megabytes and the soft limit is # 16 megabytes / 10 seconds, the client will get disconnected immediately # if the size of the output buffers reach 32 megabytes, but will also get # disconnected if the client reaches 16 megabytes and continuously overcomes # the limit for 10 seconds. # # By default normal clients are not limited because they don't receive data # without asking (in a push way), but just after a request, so only # asynchronous clients may create a scenario where data is requested faster # than it can read. # # Instead there is a default limit for pubsub and replica clients, since # subscribers and replicas receive data in a push fashion. # # Both the hard or the soft limit can be disabled by setting them to zero. client-output-buffer-limit normal 0 0 0 client-output-buffer-limit replica 256mb 64mb 60 client-output-buffer-limit pubsub 32mb 8mb 60 # Client query buffers accumulate new commands. They are limited to a fixed # amount by default in order to avoid that a protocol desynchronization (for # instance due to a bug in the client) will lead to unbound memory usage in # the query buffer. However you can configure it here if you have very special # needs, such us huge multi/exec requests or alike. # # client-query-buffer-limit 1gb # In the Redis protocol, bulk requests, that are, elements representing single # # proto-max-bulk-len 512mb # Redis calls an internal function to perform many background tasks, like # closing connections of clients in timeout, purging expired keys that are # never requested, and so forth. # # Not all tasks are performed with the same frequency, but Redis checks for # tasks to perform according to the specified "hz" value. # # By default "hz" is set to 10. Raising the value will use more CPU when # Redis is idle, but at the same time will make Redis more responsive when # there are many keys expiring at the same time, and timeouts may be # handled with more precision. # # The range is between 1 and 500, however a value over 100 is usually not # a good idea. Most users should use the default of 10 and raise this up to # 100 only in environments where very low latency is required. hz 10 # Normally it is useful to have an HZ value which is proportional to the # number of clients connected. This is useful in order, for instance, to # avoid too many clients are processed for each background task invocation # in order to avoid latency spikes. # # Since the default HZ value by default is conservatively set to 10, Redis # offers, and enables by default, the ability to use an adaptive HZ value # which will temporary raise when there are many connected clients. # # When dynamic HZ is enabled, the actual configured HZ will be used # as a baseline, but multiples of the configured HZ value will be actually # used as needed once more clients are connected. In this way an idle # instance will use very little CPU time while a busy instance will be # more responsive. dynamic-hz yes # When a child rewrites the AOF file, if the following option is enabled # the file will be fsync-ed every 32 MB of data generated. This is useful # in order to commit the file to the disk more incrementally and avoid # big latency spikes. aof-rewrite-incremental-fsync yes # When redis saves RDB file, if the following option is enabled # the file will be fsync-ed every 32 MB of data generated. This is useful # in order to commit the file to the disk more incrementally and avoid # big latency spikes. rdb-save-incremental-fsync yes # Redis LFU eviction (see maxmemory setting) can be tuned. However it is a good # idea to start with the default settings and only change them after investigating # how to improve the performances and how the keys LFU change over time, which # is possible to inspect via the OBJECT FREQ command. # # There are two tunable parameters in the Redis LFU implementation: the # counter logarithm factor and the counter decay time. It is important to # understand what the two parameters mean before changing them. # # The LFU counter is just 8 bits per key, it's maximum value is 255, so Redis # uses a probabilistic increment with logarithmic behavior. Given the value # of the old counter, when a key is accessed, the counter is incremented in # this way: # # 1. A random number R between 0 and 1 is extracted. # 2. A probability P is calculated as 1/(old_value*lfu_log_factor+1). # 3. The counter is incremented only if R < P. # # The default lfu-log-factor is 10. This is a table of how the frequency # counter changes with a different number of accesses with different # logarithmic factors: # # +--------+------------+------------+------------+------------+------------+ # | factor | 100 hits | 1000 hits | 100K hits | 1M hits | 10M hits | # +--------+------------+------------+------------+------------+------------+ # | 0 | 104 | 255 | 255 | 255 | 255 | # +--------+------------+------------+------------+------------+------------+ # | 1 | 18 | 49 | 255 | 255 | 255 | # +--------+------------+------------+------------+------------+------------+ # | 10 | 10 | 18 | 142 | 255 | 255 | # +--------+------------+------------+------------+------------+------------+ # | 100 | 8 | 11 | 49 | 143 | 255 | # +--------+------------+------------+------------+------------+------------+ # # NOTE: The above table was obtained by running the following commands: # # redis-benchmark -n 1000000 incr foo # redis-cli object freq foo # # NOTE 2: The counter initial value is 5 in order to give new objects a chance # to accumulate hits. # # The counter decay time is the time, in minutes, that must elapse in order # for the key counter to be divided by two (or decremented if it has a value # less <= 10). # # The default value for the lfu-decay-time is 1. A Special value of 0 means to # decay the counter every time it happens to be scanned. # # lfu-log-factor 10 # lfu-decay-time 1 ########################### ACTIVE DEFRAGMENTATION ####################### # # What is active defragmentation? # ------------------------------- # # Active (online) defragmentation allows a Redis server to compact the # spaces left between small allocations and deallocations of data in memory, # thus allowing to reclaim back memory. # # Fragmentation is a natural process that happens with every allocator (but # less so with Jemalloc, fortunately) and certain workloads. Normally a server # restart is needed in order to lower the fragmentation, or at least to flush # away all the data and create it again. However thanks to this feature # implemented by Oran Agra for Redis 4.0 this process can happen at runtime # in an "hot" way, while the server is running. # # Basically when the fragmentation is over a certain level (see the # configuration options below) Redis will start to create new copies of the # values in contiguous memory regions by exploiting certain specific Jemalloc # features (in order to understand if an allocation is causing fragmentation # and to allocate it in a better place), and at the same time, will release the # old copies of the data. This process, repeated incrementally for all the keys # will cause the fragmentation to drop back to normal values. # # Important things to understand: # # 1. This feature is disabled by default, and only works if you compiled Redis # to use the copy of Jemalloc we ship with the source code of Redis. # This is the default with Linux builds. # # 2. You never need to enable this feature if you don't have fragmentation # issues. # # 3. Once you experience fragmentation, you can enable this feature when # needed with the command "CONFIG SET activedefrag yes". # # The configuration parameters are able to fine tune the behavior of the # defragmentation process. If you are not sure about what they mean it is # a good idea to leave the defaults untouched. # Enabled active defragmentation # activedefrag no # Minimum amount of fragmentation waste to start active defrag # active-defrag-ignore-bytes 100mb # Minimum percentage of fragmentation to start active defrag # active-defrag-threshold-lower 10 # Maximum percentage of fragmentation at which we use maximum effort # active-defrag-threshold-upper 100 # Minimal effort for defrag in CPU percentage, to be used when the lower # threshold is reached # active-defrag-cycle-min 1 # Maximal effort for defrag in CPU percentage, to be used when the upper # threshold is reached # active-defrag-cycle-max 25 # Maximum number of set/hash/zset/list fields that will be processed from # the main dictionary scan # active-defrag-max-scan-fields 1000 # Jemalloc background thread for purging will be enabled by default jemalloc-bg-thread yes # It is possible to pin different threads and processes of Redis to specific # CPUs in your system, in order to maximize the performances of the server. # This is useful both in order to pin different Redis threads in different # CPUs, but also in order to make sure that multiple Redis instances running # in the same host will be pinned to different CPUs. # # Normally you can do this using the "taskset" command, however it is also # possible to this via Redis configuration directly, both in Linux and FreeBSD. # # You can pin the server/IO threads, bio threads, aof rewrite child process, and # the bgsave child process. The syntax to specify the cpu list is the same as # the taskset command: # # Set redis server/io threads to cpu affinity 0,2,4,6: # server_cpulist 0-7:2 # # Set bio threads to cpu affinity 1,3: # bio_cpulist 1,3 # # Set aof rewrite child process to cpu affinity 8,9,10,11: # aof_rewrite_cpulist 8-11 # # Set bgsave child process to cpu affinity 1,10,11 # bgsave_cpulist 1,10-11 [root@192 redis-6.0.6]# vim redis.conf [root@192 redis-6.0.6]# redis-server /usr/local/soft/redis-6.0.6/redis.conf 106969:C 24 Jun 2021 21:08:50.819 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 106969:C 24 Jun 2021 21:08:50.819 # Redis version=6.0.6, bits=64, commit=00000000, modified=0, pid=106969, just started 106969:C 24 Jun 2021 21:08:50.819 # Configuration loaded [root@192 redis-6.0.6]# redis-cli -h 192.168.42.112 -p 6379 -a 12345678 Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe. ^[[A ^C [root@192 redis-6.0.6]# redis-cli -h 127.0.0.1 -p 6379 -a 12345678 Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe. 127.0.0.1:6379> set name fiser OK 127.0.0.1:6379> get name "fiser" 127.0.0.1:6379>
1.查看防火墙端口
firewall-cmd--list-ports
2.开启端口
firewall-cmd--zone=public--add-port=6379/tcp--permanent
3.重启防火墙
firewall-cmd --reload #重启
firewallsystemctl stop firewalld.service#停止
firewallsystemctl disable firewalld.service#禁止firewall开机启动
为人:谦逊、激情、博学、审问、慎思、明辨、 笃行
学问:纸上得来终觉浅,绝知此事要躬行
为事:工欲善其事,必先利其器。
态度:道阻且长,行则将至;行而不辍,未来可期
.....................................................................
------- 桃之夭夭,灼灼其华。之子于归,宜其室家。 ---------------
------- 桃之夭夭,有蕡其实。之子于归,宜其家室。 ---------------
------- 桃之夭夭,其叶蓁蓁。之子于归,宜其家人。 ---------------
=====================================================================
* 博客文章部分截图及内容来自于学习的书本及相应培训课程以及网络其他博客,仅做学习讨论之用,不做商业用途。
* 如有侵权,马上联系我,我立马删除对应链接。 * @author Alan -liu * @Email no008@foxmail.com
转载请标注出处! ✧*꧁一品堂.技术学习笔记꧂*✧. ---> https://www.cnblogs.com/ios9/
学问:纸上得来终觉浅,绝知此事要躬行
为事:工欲善其事,必先利其器。
态度:道阻且长,行则将至;行而不辍,未来可期
.....................................................................
------- 桃之夭夭,灼灼其华。之子于归,宜其室家。 ---------------
------- 桃之夭夭,有蕡其实。之子于归,宜其家室。 ---------------
------- 桃之夭夭,其叶蓁蓁。之子于归,宜其家人。 ---------------
=====================================================================
* 博客文章部分截图及内容来自于学习的书本及相应培训课程以及网络其他博客,仅做学习讨论之用,不做商业用途。
* 如有侵权,马上联系我,我立马删除对应链接。 * @author Alan -liu * @Email no008@foxmail.com
转载请标注出处! ✧*꧁一品堂.技术学习笔记꧂*✧. ---> https://www.cnblogs.com/ios9/