패키지 관리

yum과 dnf

  • RHEL에서 패키지관리자는 yum 및 dnf
  • RHEL7 버전까지는 yum 사용, RHEL8 버전부터 dnf 사용
  • yum은 파이썬2 기반, dnf는 파이썬3 기반
  • RHEL8 이후 버전의 yum은 내부적으로 dnf 호출

yum

yum 명령어 표

명령 레포지토리 패키지 그룹
목록 repolist list grouplist
정보 repoinfo info groupinfo
검색 - search -
의존성 정보 - deplist -
파일 정보 - provides -
설치 - install groupinstall
제거 - remove groupremove

레포지토리 목록

  • yum repolist: 레포지토리 목록
    • 출력정보의 id는 <레포명>/<버전이름>/<아키텍처> 형식
[user@localhost ~]# yum repolist
Loaded plugins: product-id, search-disabled-repos, subscription-manager
repo id                                                 repo name                                                      status
rhel-7-server-rpms/7Server/x86_64                       Red Hat Enterprise Linux 7 Server (RPMs)                       34,484
repolist: 34,484

레포지토리 정보

  • yum repoinfo: 특정 레포지토리 정보
[user@localhost ~]$ yum repoinfo rhel-7-server-rpms
Loaded plugins: product-id, search-disabled-repos, subscription-manager
Repo-id      : rhel-7-server-rpms/7Server/x86_64
Repo-name    : Red Hat Enterprise Linux 7 Server (RPMs)
Repo-status  : enabled
Repo-revision: 1750688071
Repo-updated : Mon Jun 23 10:14:31 2025
Repo-pkgs    : 34,484
Repo-size    : 66 G
Repo-baseurl : https://cdn.redhat.com/content/dist/rhel/server/7/7Server/x86_64/os
Repo-expire  : 86,400 second(s) (last: Sun Aug 10 23:26:42 2025)
  Filter     : read-only:present
Repo-filename: /etc/yum.repos.d/redhat.repo

repolist: 34,484

패키지 목록

  • yum list available: 아직 설치되지 않은 패키지 목록
[user@localhost ~]$ yum list available 
Loaded plugins: product-id, search-disabled-repos, subscription-manager
Available Packages
389-ds-base.x86_64                   1.3.11.1-5.el7_9         rhel-7-server-rpms
389-ds-base-libs.x86_64              1.3.11.1-5.el7_9         rhel-7-server-rpms
ElectricFence.i686                   2.2.2-39.el7             rhel-7-server-rpms
ElectricFence.x86_64                 2.2.2-39.el7             rhel-7-server-rpms
GConf2.i686                          3.2.6-8.el7              rhel-7-server-rpms
GConf2.x86_64                        3.2.6-8.el7              rhel-7-server-rpms
GeoIP.i686                           1.5.0-14.el7             rhel-7-server-rpms
GeoIP.x86_64                         1.5.0-14.el7             rhel-7-server-rpms
...
  • yum list installed: 설치된 패키지 목록
[user@localhost ~]$ yum list installed
Loaded plugins: product-id, search-disabled-repos, subscription-manager
Installed Packages
NetworkManager.x86_64                                             1:1.18.8-1.el7                          @anaconda/7.9      
NetworkManager-config-server.noarch                               1:1.18.8-1.el7                          @anaconda/7.9      
NetworkManager-libnm.x86_64                                       1:1.18.8-1.el7                          @anaconda/7.9      
NetworkManager-team.x86_64                                        1:1.18.8-1.el7                          @anaconda/7.9      
NetworkManager-tui.x86_64                                         1:1.18.8-1.el7                          @anaconda/7.9      
Red_Hat_Enterprise_Linux-Release_Notes-7-en-US.noarch             7-2.el7                                 @anaconda/7.9      
acl.x86_64                                                        2.2.51-15.el7                           @anaconda/7.9      
aic94xx-firmware.noarch                                           30-6.el7                                @anaconda/7.9      
...                     

패키지 검색

  • yum search 검색어: 이름(name)과 요약(summary)에서 검색
[user@localhost ~]$ yum search noti
Loaded plugins: product-id, search-disabled-repos, subscription-manager
===================================================== N/S matched: noti =====================================================
abrt-console-notification.x86_64 : ABRT console notification script
libnotify.i686 : Desktop notification library
libnotify.x86_64 : Desktop notification library
libnotify-devel.i686 : Development files for libnotify
libnotify-devel.x86_64 : Development files for libnotify
startup-notification-devel.i686 : Development portions of startup-notification
startup-notification-devel.x86_64 : Development portions of startup-notification
libevent.i686 : Abstract asynchronous event notification library
libevent.x86_64 : Abstract asynchronous event notification library
python-inotify.noarch : Monitor filesystem events with Python under Linux
startup-notification.i686 : Library for tracking application startup
startup-notification.x86_64 : Library for tracking application startup

  Name and summary matches only, use "search all" for everything.
  • yum search all 검색어: 이름(name), 요약(summary), 설명(description)에서 검색
[user@localhost ~]$ yum search all noti
Loaded plugins: product-id, search-disabled-repos, subscription-manager
======================================================= Matched: noti =======================================================
startup-notification-devel.i686 : Development portions of startup-notification
startup-notification-devel.x86_64 : Development portions of startup-notification
libnotify.i686 : Desktop notification library
libnotify.x86_64 : Desktop notification library
libnotify-devel.i686 : Development files for libnotify
libnotify-devel.x86_64 : Development files for libnotify
python-inotify.noarch : Monitor filesystem events with Python under Linux
startup-notification.i686 : Library for tracking application startup
startup-notification.x86_64 : Library for tracking application startup
abrt-console-notification.x86_64 : ABRT console notification script
kernel-debug.x86_64 : The Linux kernel compiled with extra debugging enabled
libevent.i686 : Abstract asynchronous event notification library
libevent.x86_64 : Abstract asynchronous event notification library
log4cxx.i686 : A port to C++ of the Log4j project
log4cxx.x86_64 : A port to C++ of the Log4j project
perl-constant.noarch : Perl pragma to declare constants

패키지 정보

  • yum info 패키지명
[user@localhost ~]$ yum info python-inotify
Loaded plugins: product-id, search-disabled-repos, subscription-manager
Installed Packages
Name        : python-inotify
Arch        : noarch
Version     : 0.9.4
Release     : 4.el7
Size        : 256 k
Repo        : installed
From repo   : anaconda
Summary     : Monitor filesystem events with Python under Linux
URL         : https://github.com/seb-m/pyinotify
License     : MIT
Description : This is a Python module for watching filesystems changes. pyinotify
            : can be used for various kind of fs monitoring. pyinotify relies on a
            : recent Linux Kernel feature (merged in kernel 2.6.13) called
            : inotify. inotify is an event-driven notifier, its notifications are
            : exported from kernel space to user space.

패키지 의존성 정보

  • yum deplist 패키지명
[user@localhost ~]$ yum deplist python-inotify
Loaded plugins: product-id, search-disabled-repos, subscription-manager
package: python-inotify.noarch 0.9.4-4.el7
  dependency: /bin/bash
   provider: bash.x86_64 4.2.46-35.el7_9
  dependency: /usr/bin/env
   provider: coreutils.x86_64 8.22-24.el7_9.2
  dependency: python(abi) = 2.7
   provider: python.x86_64 2.7.5-94.el7_9

패키지 파일 정보

  • yum provides 파일패턴: 해당 파일을 제공하는 패키지 목록 출력
[user@localhost ~]$ yum provides repoquery
Loaded plugins: product-id, search-disabled-repos, subscription-manager
yum-utils-1.1.31-24.el7.noarch : Utilities based around the yum package manager
Repo        : rhel-7-server-rpms
Matched from:
Filename    : /usr/bin/repoquery



yum-utils-1.1.31-25.el7_0.noarch : Utilities based around the yum package manager
Repo        : rhel-7-server-rpms
Matched from:
Filename    : /usr/bin/repoquery

패키지 설치

  • yum install [--assumeno] 패키지명
    • 실제로 설치하지 않는 경우에는 –assumeno 옵션 추가
[root@localhost ~]# yum install --assumeno tree
Loaded plugins: product-id, search-disabled-repos, subscription-manager
Resolving Dependencies
--> Running transaction check
---> Package tree.x86_64 0:1.6.0-10.el7 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

=============================================================================================================================
 Package                Arch                     Version                          Repository                            Size
=============================================================================================================================
Installing:
 tree                   x86_64                   1.6.0-10.el7                     rhel-7-server-rpms                    46 k

Transaction Summary
=============================================================================================================================
Install  1 Package

Total download size: 46 k
Installed size: 87 k
Exiting on user command
Your transaction was saved, rerun it with:
 yum load-transaction /tmp/yum_save_tx.2025-08-11.21-59.TTh5K5.yumtx
[root@localhost ~]# yum install tree
Loaded plugins: product-id, search-disabled-repos, subscription-manager
Resolving Dependencies
--> Running transaction check
---> Package tree.x86_64 0:1.6.0-10.el7 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

=============================================================================================================================
 Package                Arch                     Version                          Repository                            Size
=============================================================================================================================
Installing:
 tree                   x86_64                   1.6.0-10.el7                     rhel-7-server-rpms                    46 k

Transaction Summary
=============================================================================================================================
Install  1 Package

Total download size: 46 k
Installed size: 87 k
Is this ok [y/d/N]:  y
Downloading packages:
tree-1.6.0-10.el7.x86_64.rpm                                                                          |  46 kB  00:00:07     
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  Installing : tree-1.6.0-10.el7.x86_64                                                                                  1/1 
  Verifying  : tree-1.6.0-10.el7.x86_64                                                                                  1/1 

Installed:
  tree.x86_64 0:1.6.0-10.el7                                                                                                 

Complete!

패키지 제거

  • yum remove [--assumeno] 패키지명
[root@localhost ~]# yum remove --assumeno tree
Loaded plugins: product-id, search-disabled-repos, subscription-manager
Resolving Dependencies
--> Running transaction check
---> Package tree.x86_64 0:1.6.0-10.el7 will be erased
--> Finished Dependency Resolution

Dependencies Resolved

=============================================================================================================================
 Package                Arch                     Version                         Repository                             Size
=============================================================================================================================
Removing:
 tree                   x86_64                   1.6.0-10.el7                    @rhel-7-server-rpms                    87 k

Transaction Summary
=============================================================================================================================
Remove  1 Package

Installed size: 87 k
Exiting on user command
Your transaction was saved, rerun it with:
 yum load-transaction /tmp/yum_save_tx.2025-08-11.22-03.62tCKp.yumtx
[root@localhost ~]# yum remove tree
Loaded plugins: product-id, search-disabled-repos, subscription-manager
Resolving Dependencies
--> Running transaction check
---> Package tree.x86_64 0:1.6.0-10.el7 will be erased
--> Finished Dependency Resolution

Dependencies Resolved

=============================================================================================================================
 Package                Arch                     Version                         Repository                             Size
=============================================================================================================================
Removing:
 tree                   x86_64                   1.6.0-10.el7                    @rhel-7-server-rpms                    87 k

Transaction Summary
=============================================================================================================================
Remove  1 Package

Installed size: 87 k
Is this ok [y/N]: y
Downloading packages:
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  Erasing    : tree-1.6.0-10.el7.x86_64                                                                                  1/1 
  Verifying  : tree-1.6.0-10.el7.x86_64                                                                                  1/1 

Removed:
  tree.x86_64 0:1.6.0-10.el7                                                                                                 

Complete!

그룹 목록

  • yum grouplist available
[user@localhost ~]$ yum grouplist available
Loaded plugins: product-id, search-disabled-repos, subscription-manager
There is no installed groups file.
Maybe run: yum groups mark convert (see man yum)
Available Environment Groups:
   Minimal Install
   Infrastructure Server
   File and Print Server
   Basic Web Server
   Virtualization Host
   Server with GUI
Available Groups:
   Compatibility Libraries
   Console Internet Tools
   Development Tools
   Graphical Administration Tools
   Legacy UNIX Compatibility
   Scientific Support
   Security Tools
   Smart Card Support
   System Administration Tools
   System Management
Done
  • yum grouplist installed

그룹 정보

[user@localhost ~]$ yum groupinfo "Development Tools"
Loaded plugins: product-id, search-disabled-repos, subscription-manager
There is no installed groups file.
Maybe run: yum groups mark convert (see man yum)

Group: Development Tools
 Group-Id: development
 Description: A basic development environment.
 Mandatory Packages:
   +autoconf
   +automake
    binutils
   +bison
   +flex
    gcc
   +gcc-c++
    gettext
   +libtool
    make
   +patch
    pkgconfig
   +redhat-rpm-config
   +rpm-build
   +rpm-sign
 Default Packages:
   +byacc
   +cscope
   +ctags
   +diffstat
   +doxygen
   +elfutils
   +gcc-gfortran
   +git
   +indent
   +intltool
   +patchutils
   +rcs
   +subversion
   +swig
   +systemtap
 Optional Packages:
   ElectricFence
   ant
   babel
   bzr
   chrpath
   cmake
   compat-gcc-44
   compat-gcc-44-c++
   cvs
   dejagnu
   expect
   gcc-gnat
   gcc-objc
   gcc-objc++
   imake
   javapackages-tools
   ksc
   mercurial
   mod_dav_svn
   nasm
   perltidy
   rpmdevtools
   rpmlint
   systemtap-sdt-devel
   systemtap-server

그룹 설치

  • yum groupinstall [--assumeno] "패키지명"
[root@localhost ~]# yum groupinstall "Development Tools"
Loaded plugins: product-id, search-disabled-repos, subscription-manager
There is no installed groups file.
Maybe run: yum groups mark convert (see man yum)
Resolving Dependencies
--> Running transaction check
---> Package autoconf.noarch 0:2.69-11.el7 will be installed
--> Processing Dependency: m4 >= 1.4.14 for package: autoconf-2.69-11.el7.noarch
--> Processing Dependency: perl(Data::Dumper) for package: autoconf-2.69-11.el7.noarch
---> Package automake.noarch 0:1.13.4-3.el7 will be installed
--> Processing Dependency: perl(TAP::Parser) for package: automake-1.13.4-3.el7.noarch
--> Processing Dependency: perl(Thread::Queue) for package: automake-1.13.4-3.el7.noarch
---> Package bison.x86_64 0:3.0.4-2.el7 will be installed
---> Package byacc.x86_64 0:1.9.20130304-3.el7 will be installed
---> Package cscope.x86_64 0:15.8-10.el7 will be installed
---> Package ctags.x86_64 0:5.8-13.el7 will be installed
---> Package diffstat.x86_64 0:1.57-4.el7 will be installed
---> Package doxygen.x86_64 1:1.8.5-4.el7 will be installed
---> Package elfutils.x86_64 0:0.176-5.el7 will be installed
---> Package flex.x86_64 0:2.5.37-6.el7 will be installed
---> Package gcc-c++.x86_64 0:4.8.5-44.el7 will be installed
--> Processing Dependency: libstdc++-devel = 4.8.5-44.el7 for package: gcc-c++-4.8.5-44.el7.x86_64
---> Package gcc-gfortran.x86_64 0:4.8.5-44.el7 will be installed
--> Processing Dependency: libgfortran = 4.8.5-44.el7 for package: gcc-gfortran-4.8.5-44.el7.x86_64
--> Processing Dependency: libquadmath = 4.8.5-44.el7 for package: gcc-gfortran-4.8.5-44.el7.x86_64
--> Processing Dependency: libquadmath-devel = 4.8.5-44.el7 for package: gcc-gfortran-4.8.5-44.el7.x86_64
--> Processing Dependency: libgfortran.so.3()(64bit) for package: gcc-gfortran-4.8.5-44.el7.x86_64
---> Package git.x86_64 0:1.8.3.1-25.el7_9 will be installed
--> Processing Dependency: perl-Git = 1.8.3.1-25.el7_9 for package: git-1.8.3.1-25.el7_9.x86_64
--> Processing Dependency: perl(Error) for package: git-1.8.3.1-25.el7_9.x86_64
--> Processing Dependency: perl(Git) for package: git-1.8.3.1-25.el7_9.x86_64
--> Processing Dependency: perl(Term::ReadKey) for package: git-1.8.3.1-25.el7_9.x86_64
--> Processing Dependency: rsync for package: git-1.8.3.1-25.el7_9.x86_64
---> Package indent.x86_64 0:2.2.11-13.el7 will be installed
---> Package intltool.noarch 0:0.50.2-7.el7 will be installed
--> Processing Dependency: gettext-devel for package: intltool-0.50.2-7.el7.noarch
--> Processing Dependency: perl(XML::Parser) for package: intltool-0.50.2-7.el7.noarch
---> Package libtool.x86_64 0:2.4.2-22.el7_3 will be installed
---> Package patch.x86_64 0:2.7.1-12.el7_7 will be installed
---> Package patchutils.x86_64 0:0.3.3-5.el7_9 will be installed
---> Package rcs.x86_64 0:5.9.0-7.el7 will be installed
---> Package redhat-rpm-config.noarch 0:9.1.0-88.el7 will be installed
--> Processing Dependency: dwz >= 0.4 for package: redhat-rpm-config-9.1.0-88.el7.noarch
--> Processing Dependency: perl-srpm-macros for package: redhat-rpm-config-9.1.0-88.el7.noarch
--> Processing Dependency: python-srpm-macros for package: redhat-rpm-config-9.1.0-88.el7.noarch
--> Processing Dependency: zip for package: redhat-rpm-config-9.1.0-88.el7.noarch
---> Package rpm-build.x86_64 0:4.11.3-48.el7_9 will be installed
--> Processing Dependency: rpm = 4.11.3-48.el7_9 for package: rpm-build-4.11.3-48.el7_9.x86_64
--> Processing Dependency: /usr/bin/gdb-add-index for package: rpm-build-4.11.3-48.el7_9.x86_64
--> Processing Dependency: unzip for package: rpm-build-4.11.3-48.el7_9.x86_64
---> Package rpm-sign.x86_64 0:4.11.3-48.el7_9 will be installed
--> Processing Dependency: rpm-build-libs(x86-64) = 4.11.3-48.el7_9 for package: rpm-sign-4.11.3-48.el7_9.x86_64
---> Package subversion.x86_64 0:1.7.14-16.el7 will be installed
--> Processing Dependency: subversion-libs(x86-64) = 1.7.14-16.el7 for package: subversion-1.7.14-16.el7.x86_64
--> Processing Dependency: libapr-1.so.0()(64bit) for package: subversion-1.7.14-16.el7.x86_64
--> Processing Dependency: libaprutil-1.so.0()(64bit) for package: subversion-1.7.14-16.el7.x86_64
--> Processing Dependency: libneon.so.27()(64bit) for package: subversion-1.7.14-16.el7.x86_64
--> Processing Dependency: libsvn_client-1.so.0()(64bit) for package: subversion-1.7.14-16.el7.x86_64
--> Processing Dependency: libsvn_delta-1.so.0()(64bit) for package: subversion-1.7.14-16.el7.x86_64
--> Processing Dependency: libsvn_diff-1.so.0()(64bit) for package: subversion-1.7.14-16.el7.x86_64
--> Processing Dependency: libsvn_fs-1.so.0()(64bit) for package: subversion-1.7.14-16.el7.x86_64
--> Processing Dependency: libsvn_fs_base-1.so.0()(64bit) for package: subversion-1.7.14-16.el7.x86_64
--> Processing Dependency: libsvn_fs_fs-1.so.0()(64bit) for package: subversion-1.7.14-16.el7.x86_64
--> Processing Dependency: libsvn_fs_util-1.so.0()(64bit) for package: subversion-1.7.14-16.el7.x86_64
--> Processing Dependency: libsvn_ra-1.so.0()(64bit) for package: subversion-1.7.14-16.el7.x86_64
--> Processing Dependency: libsvn_ra_local-1.so.0()(64bit) for package: subversion-1.7.14-16.el7.x86_64
--> Processing Dependency: libsvn_ra_neon-1.so.0()(64bit) for package: subversion-1.7.14-16.el7.x86_64
--> Processing Dependency: libsvn_ra_svn-1.so.0()(64bit) for package: subversion-1.7.14-16.el7.x86_64
--> Processing Dependency: libsvn_repos-1.so.0()(64bit) for package: subversion-1.7.14-16.el7.x86_64
--> Processing Dependency: libsvn_subr-1.so.0()(64bit) for package: subversion-1.7.14-16.el7.x86_64
--> Processing Dependency: libsvn_wc-1.so.0()(64bit) for package: subversion-1.7.14-16.el7.x86_64
---> Package swig.x86_64 0:2.0.10-5.el7 will be installed
---> Package systemtap.x86_64 0:4.0-13.el7 will be installed
--> Processing Dependency: systemtap-client = 4.0-13.el7 for package: systemtap-4.0-13.el7.x86_64
--> Processing Dependency: systemtap-devel = 4.0-13.el7 for package: systemtap-4.0-13.el7.x86_64
--> Running transaction check
---> Package apr.x86_64 0:1.4.8-7.el7 will be installed
---> Package apr-util.x86_64 0:1.5.2-6.el7_9.1 will be installed
---> Package dwz.x86_64 0:0.11-3.el7 will be installed
---> Package gdb.x86_64 0:7.6.1-120.el7 will be installed
---> Package gettext-devel.x86_64 0:0.19.8.1-3.el7_9 will be installed
--> Processing Dependency: gettext = 0.19.8.1-3.el7_9 for package: gettext-devel-0.19.8.1-3.el7_9.x86_64
--> Processing Dependency: gettext-common-devel = 0.19.8.1-3.el7_9 for package: gettext-devel-0.19.8.1-3.el7_9.x86_64
--> Processing Dependency: gettext-libs = 0.19.8.1-3.el7_9 for package: gettext-devel-0.19.8.1-3.el7_9.x86_64
---> Package libgfortran.x86_64 0:4.8.5-44.el7 will be installed
---> Package libquadmath.x86_64 0:4.8.5-44.el7 will be installed
---> Package libquadmath-devel.x86_64 0:4.8.5-44.el7 will be installed
---> Package libstdc++-devel.x86_64 0:4.8.5-44.el7 will be installed
---> Package m4.x86_64 0:1.4.16-10.el7 will be installed
---> Package neon.x86_64 0:0.30.0-4.el7 will be installed
--> Processing Dependency: libgnutls.so.28(GNUTLS_1_4)(64bit) for package: neon-0.30.0-4.el7.x86_64
--> Processing Dependency: libgnutls.so.28(GNUTLS_2_12)(64bit) for package: neon-0.30.0-4.el7.x86_64
--> Processing Dependency: libgnutls.so.28(GNUTLS_3_0_0)(64bit) for package: neon-0.30.0-4.el7.x86_64
--> Processing Dependency: libgnutls.so.28()(64bit) for package: neon-0.30.0-4.el7.x86_64
--> Processing Dependency: libpakchois.so.0()(64bit) for package: neon-0.30.0-4.el7.x86_64
--> Processing Dependency: libproxy.so.1()(64bit) for package: neon-0.30.0-4.el7.x86_64
---> Package perl-Data-Dumper.x86_64 0:2.145-3.el7 will be installed
---> Package perl-Error.noarch 1:0.17020-2.el7 will be installed
---> Package perl-Git.noarch 0:1.8.3.1-25.el7_9 will be installed
---> Package perl-TermReadKey.x86_64 0:2.30-20.el7 will be installed
---> Package perl-Test-Harness.noarch 0:3.28-3.el7 will be installed
---> Package perl-Thread-Queue.noarch 0:3.02-2.el7 will be installed
---> Package perl-XML-Parser.x86_64 0:2.41-10.el7 will be installed
---> Package perl-srpm-macros.noarch 0:1-8.el7 will be installed
---> Package python-srpm-macros.noarch 0:3-34.el7 will be installed
---> Package rpm.x86_64 0:4.11.3-45.el7 will be updated
--> Processing Dependency: rpm = 4.11.3-45.el7 for package: rpm-python-4.11.3-45.el7.x86_64
--> Processing Dependency: rpm = 4.11.3-45.el7 for package: rpm-libs-4.11.3-45.el7.x86_64
---> Package rpm.x86_64 0:4.11.3-48.el7_9 will be an update
---> Package rpm-build-libs.x86_64 0:4.11.3-45.el7 will be updated
---> Package rpm-build-libs.x86_64 0:4.11.3-48.el7_9 will be an update
---> Package rsync.x86_64 0:3.1.2-12.el7_9 will be installed
---> Package subversion-libs.x86_64 0:1.7.14-16.el7 will be installed
---> Package systemtap-client.x86_64 0:4.0-13.el7 will be installed
--> Processing Dependency: systemtap-runtime = 4.0-13.el7 for package: systemtap-client-4.0-13.el7.x86_64
--> Processing Dependency: mokutil for package: systemtap-client-4.0-13.el7.x86_64
--> Processing Dependency: libavahi-client.so.3()(64bit) for package: systemtap-client-4.0-13.el7.x86_64
--> Processing Dependency: libavahi-common.so.3()(64bit) for package: systemtap-client-4.0-13.el7.x86_64
---> Package systemtap-devel.x86_64 0:4.0-13.el7 will be installed
---> Package unzip.x86_64 0:6.0-24.el7_9 will be installed
---> Package zip.x86_64 0:3.0-11.el7 will be installed
--> Running transaction check
---> Package avahi-libs.x86_64 0:0.6.31-20.el7 will be installed
---> Package gettext.x86_64 0:0.19.8.1-3.el7 will be updated
---> Package gettext.x86_64 0:0.19.8.1-3.el7_9 will be an update
---> Package gettext-common-devel.noarch 0:0.19.8.1-3.el7_9 will be installed
---> Package gettext-libs.x86_64 0:0.19.8.1-3.el7 will be updated
---> Package gettext-libs.x86_64 0:0.19.8.1-3.el7_9 will be an update
---> Package gnutls.x86_64 0:3.3.29-9.el7_6 will be installed
--> Processing Dependency: trousers >= 0.3.11.2 for package: gnutls-3.3.29-9.el7_6.x86_64
--> Processing Dependency: libhogweed.so.2()(64bit) for package: gnutls-3.3.29-9.el7_6.x86_64
--> Processing Dependency: libnettle.so.4()(64bit) for package: gnutls-3.3.29-9.el7_6.x86_64
---> Package libproxy.x86_64 0:0.4.11-11.el7 will be installed
--> Processing Dependency: libmodman.so.1()(64bit) for package: libproxy-0.4.11-11.el7.x86_64
---> Package mokutil.x86_64 0:15.8-1.el7 will be installed
--> Processing Dependency: libefivar.so.1(LIBEFIVAR_0.24)(64bit) for package: mokutil-15.8-1.el7.x86_64
--> Processing Dependency: libefivar.so.1(libefivar.so.0)(64bit) for package: mokutil-15.8-1.el7.x86_64
--> Processing Dependency: libefivar.so.1()(64bit) for package: mokutil-15.8-1.el7.x86_64
---> Package pakchois.x86_64 0:0.4-10.el7 will be installed
---> Package rpm-libs.x86_64 0:4.11.3-45.el7 will be updated
---> Package rpm-libs.x86_64 0:4.11.3-48.el7_9 will be an update
---> Package rpm-python.x86_64 0:4.11.3-45.el7 will be updated
---> Package rpm-python.x86_64 0:4.11.3-48.el7_9 will be an update
---> Package systemtap-runtime.x86_64 0:4.0-13.el7 will be installed
--> Processing Dependency: libdyninstAPI.so.9.3()(64bit) for package: systemtap-runtime-4.0-13.el7.x86_64
--> Processing Dependency: libsymtabAPI.so.9.3()(64bit) for package: systemtap-runtime-4.0-13.el7.x86_64
--> Running transaction check
---> Package dyninst.x86_64 0:9.3.1-3.el7 will be installed
--> Processing Dependency: libboost_date_time-mt.so.1.53.0()(64bit) for package: dyninst-9.3.1-3.el7.x86_64
--> Processing Dependency: libboost_system-mt.so.1.53.0()(64bit) for package: dyninst-9.3.1-3.el7.x86_64
--> Processing Dependency: libboost_thread-mt.so.1.53.0()(64bit) for package: dyninst-9.3.1-3.el7.x86_64
--> Processing Dependency: libdwarf.so.0()(64bit) for package: dyninst-9.3.1-3.el7.x86_64
---> Package efivar-libs.x86_64 0:36-12.el7 will be installed
---> Package libmodman.x86_64 0:2.0.1-8.el7 will be installed
---> Package nettle.x86_64 0:2.7.1-9.el7_9 will be installed
---> Package trousers.x86_64 0:0.3.14-2.el7 will be installed
--> Running transaction check
---> Package boost-date-time.x86_64 0:1.53.0-28.el7 will be installed
---> Package boost-system.x86_64 0:1.53.0-28.el7 will be installed
---> Package boost-thread.x86_64 0:1.53.0-28.el7 will be installed
---> Package libdwarf.x86_64 0:20130207-4.el7 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

=============================================================================================================================
 Package                           Arch                Version                         Repository                       Size
=============================================================================================================================
Installing for group install "Development Tools":
 autoconf                          noarch              2.69-11.el7                     rhel-7-server-rpms              701 k
 automake                          noarch              1.13.4-3.el7                    rhel-7-server-rpms              679 k
 bison                             x86_64              3.0.4-2.el7                     rhel-7-server-rpms              674 k
 byacc                             x86_64              1.9.20130304-3.el7              rhel-7-server-rpms               65 k
 cscope                            x86_64              15.8-10.el7                     rhel-7-server-rpms              203 k
 ctags                             x86_64              5.8-13.el7                      rhel-7-server-rpms              155 k
 diffstat                          x86_64              1.57-4.el7                      rhel-7-server-rpms               35 k
 doxygen                           x86_64              1:1.8.5-4.el7                   rhel-7-server-rpms              3.6 M
 elfutils                          x86_64              0.176-5.el7                     rhel-7-server-rpms              308 k
 flex                              x86_64              2.5.37-6.el7                    rhel-7-server-rpms              293 k
 gcc-c++                           x86_64              4.8.5-44.el7                    rhel-7-server-rpms              7.2 M
 gcc-gfortran                      x86_64              4.8.5-44.el7                    rhel-7-server-rpms              6.7 M
 git                               x86_64              1.8.3.1-25.el7_9                rhel-7-server-rpms              4.4 M
 indent                            x86_64              2.2.11-13.el7                   rhel-7-server-rpms              150 k
 intltool                          noarch              0.50.2-7.el7                    rhel-7-server-rpms               59 k
 libtool                           x86_64              2.4.2-22.el7_3                  rhel-7-server-rpms              588 k
 patch                             x86_64              2.7.1-12.el7_7                  rhel-7-server-rpms              111 k
 patchutils                        x86_64              0.3.3-5.el7_9                   rhel-7-server-rpms              104 k
 rcs                               x86_64              5.9.0-7.el7                     rhel-7-server-rpms              231 k
 redhat-rpm-config                 noarch              9.1.0-88.el7                    rhel-7-server-rpms               81 k
 rpm-build                         x86_64              4.11.3-48.el7_9                 rhel-7-server-rpms              150 k
 rpm-sign                          x86_64              4.11.3-48.el7_9                 rhel-7-server-rpms               49 k
 subversion                        x86_64              1.7.14-16.el7                   rhel-7-server-rpms              1.0 M
 swig                              x86_64              2.0.10-5.el7                    rhel-7-server-rpms              1.3 M
 systemtap                         x86_64              4.0-13.el7                      rhel-7-server-rpms               15 k
Installing for dependencies:
 apr                               x86_64              1.4.8-7.el7                     rhel-7-server-rpms              104 k
 apr-util                          x86_64              1.5.2-6.el7_9.1                 rhel-7-server-rpms               92 k
 avahi-libs                        x86_64              0.6.31-20.el7                   rhel-7-server-rpms               62 k
 boost-date-time                   x86_64              1.53.0-28.el7                   rhel-7-server-rpms               52 k
 boost-system                      x86_64              1.53.0-28.el7                   rhel-7-server-rpms               40 k
 boost-thread                      x86_64              1.53.0-28.el7                   rhel-7-server-rpms               58 k
 dwz                               x86_64              0.11-3.el7                      rhel-7-server-rpms               99 k
 dyninst                           x86_64              9.3.1-3.el7                     rhel-7-server-rpms              3.5 M
 efivar-libs                       x86_64              36-12.el7                       rhel-7-server-rpms               89 k
 gdb                               x86_64              7.6.1-120.el7                   rhel-7-server-rpms              2.4 M
 gettext-common-devel              noarch              0.19.8.1-3.el7_9                rhel-7-server-rpms              410 k
 gettext-devel                     x86_64              0.19.8.1-3.el7_9                rhel-7-server-rpms              320 k
 gnutls                            x86_64              3.3.29-9.el7_6                  rhel-7-server-rpms              681 k
 libdwarf                          x86_64              20130207-4.el7                  rhel-7-server-rpms              109 k
 libgfortran                       x86_64              4.8.5-44.el7                    rhel-7-server-rpms              301 k
 libmodman                         x86_64              2.0.1-8.el7                     rhel-7-server-rpms               28 k
 libproxy                          x86_64              0.4.11-11.el7                   rhel-7-server-rpms               65 k
 libquadmath                       x86_64              4.8.5-44.el7                    rhel-7-server-rpms              190 k
 libquadmath-devel                 x86_64              4.8.5-44.el7                    rhel-7-server-rpms               54 k
 libstdc++-devel                   x86_64              4.8.5-44.el7                    rhel-7-server-rpms              1.5 M
 m4                                x86_64              1.4.16-10.el7                   rhel-7-server-rpms              256 k
 mokutil                           x86_64              15.8-1.el7                      rhel-7-server-rpms               44 k
 neon                              x86_64              0.30.0-4.el7                    rhel-7-server-rpms              166 k
 nettle                            x86_64              2.7.1-9.el7_9                   rhel-7-server-rpms              328 k
 pakchois                          x86_64              0.4-10.el7                      rhel-7-server-rpms               14 k
 perl-Data-Dumper                  x86_64              2.145-3.el7                     rhel-7-server-rpms               47 k
 perl-Error                        noarch              1:0.17020-2.el7                 rhel-7-server-rpms               32 k
 perl-Git                          noarch              1.8.3.1-25.el7_9                rhel-7-server-rpms               56 k
 perl-TermReadKey                  x86_64              2.30-20.el7                     rhel-7-server-rpms               31 k
 perl-Test-Harness                 noarch              3.28-3.el7                      rhel-7-server-rpms              302 k
 perl-Thread-Queue                 noarch              3.02-2.el7                      rhel-7-server-rpms               17 k
 perl-XML-Parser                   x86_64              2.41-10.el7                     rhel-7-server-rpms              223 k
 perl-srpm-macros                  noarch              1-8.el7                         rhel-7-server-rpms              4.7 k
 python-srpm-macros                noarch              3-34.el7                        rhel-7-server-rpms              8.8 k
 rsync                             x86_64              3.1.2-12.el7_9                  rhel-7-server-rpms              408 k
 subversion-libs                   x86_64              1.7.14-16.el7                   rhel-7-server-rpms              922 k
 systemtap-client                  x86_64              4.0-13.el7                      rhel-7-server-rpms              3.6 M
 systemtap-devel                   x86_64              4.0-13.el7                      rhel-7-server-rpms              2.2 M
 systemtap-runtime                 x86_64              4.0-13.el7                      rhel-7-server-rpms              444 k
 trousers                          x86_64              0.3.14-2.el7                    rhel-7-server-rpms              289 k
 unzip                             x86_64              6.0-24.el7_9                    rhel-7-server-rpms              173 k
 zip                               x86_64              3.0-11.el7                      rhel-7-server-rpms              260 k
Updating for dependencies:
 gettext                           x86_64              0.19.8.1-3.el7_9                rhel-7-server-rpms              1.0 M
 gettext-libs                      x86_64              0.19.8.1-3.el7_9                rhel-7-server-rpms              502 k
 rpm                               x86_64              4.11.3-48.el7_9                 rhel-7-server-rpms              1.2 M
 rpm-build-libs                    x86_64              4.11.3-48.el7_9                 rhel-7-server-rpms              108 k
 rpm-libs                          x86_64              4.11.3-48.el7_9                 rhel-7-server-rpms              279 k
 rpm-python                        x86_64              4.11.3-48.el7_9                 rhel-7-server-rpms               84 k

Transaction Summary
=============================================================================================================================
Install  25 Packages (+42 Dependent packages)
Upgrade              (  6 Dependent packages)

Total size: 52 M
Total download size: 50 M
Is this ok [y/d/N]: y
Downloading packages:
Delta RPMs disabled because /usr/bin/applydeltarpm not installed.
(1/69): avahi-libs-0.6.31-20.el7.x86_64.rpm                                                           |  62 kB  00:00:06     
(2/69): bison-3.0.4-2.el7.x86_64.rpm                                                                  | 674 kB  00:00:06     
(3/69): boost-date-time-1.53.0-28.el7.x86_64.rpm                                                      |  52 kB  00:00:00     
(4/69): boost-thread-1.53.0-28.el7.x86_64.rpm                                                         |  58 kB  00:00:00     
(5/69): byacc-1.9.20130304-3.el7.x86_64.rpm                                                           |  65 kB  00:00:00     
(6/69): cscope-15.8-10.el7.x86_64.rpm                                                                 | 203 kB  00:00:00     
(7/69): boost-system-1.53.0-28.el7.x86_64.rpm                                                         |  40 kB  00:00:02     
(8/69): ctags-5.8-13.el7.x86_64.rpm                                                                   | 155 kB  00:00:00     
(9/69): diffstat-1.57-4.el7.x86_64.rpm                                                                |  35 kB  00:00:00     
(10/69): doxygen-1.8.5-4.el7.x86_64.rpm                                                               | 3.6 MB  00:00:00     
(11/69): dwz-0.11-3.el7.x86_64.rpm                                                                    |  99 kB  00:00:00     
(12/69): dyninst-9.3.1-3.el7.x86_64.rpm                                                               | 3.5 MB  00:00:00     
(13/69): efivar-libs-36-12.el7.x86_64.rpm                                                             |  89 kB  00:00:00     
(14/69): elfutils-0.176-5.el7.x86_64.rpm                                                              | 308 kB  00:00:00     
(15/69): flex-2.5.37-6.el7.x86_64.rpm                                                                 | 293 kB  00:00:00     
(16/69): gcc-c++-4.8.5-44.el7.x86_64.rpm                                                              | 7.2 MB  00:00:01     
(17/69): gcc-gfortran-4.8.5-44.el7.x86_64.rpm                                                         | 6.7 MB  00:00:01     
(18/69): gdb-7.6.1-120.el7.x86_64.rpm                                                                 | 2.4 MB  00:00:00     
(19/69): gettext-0.19.8.1-3.el7_9.x86_64.rpm                                                          | 1.0 MB  00:00:00     
(20/69): gettext-common-devel-0.19.8.1-3.el7_9.noarch.rpm                                             | 410 kB  00:00:00     
(21/69): gettext-devel-0.19.8.1-3.el7_9.x86_64.rpm                                                    | 320 kB  00:00:00     
(22/69): gettext-libs-0.19.8.1-3.el7_9.x86_64.rpm                                                     | 502 kB  00:00:00     
(23/69): git-1.8.3.1-25.el7_9.x86_64.rpm                                                              | 4.4 MB  00:00:00     
(24/69): gnutls-3.3.29-9.el7_6.x86_64.rpm                                                             | 681 kB  00:00:00     
(25/69): intltool-0.50.2-7.el7.noarch.rpm                                                             |  59 kB  00:00:00     
(26/69): indent-2.2.11-13.el7.x86_64.rpm                                                              | 150 kB  00:00:00     
(27/69): libgfortran-4.8.5-44.el7.x86_64.rpm                                                          | 301 kB  00:00:00     
(28/69): libdwarf-20130207-4.el7.x86_64.rpm                                                           | 109 kB  00:00:00     
(29/69): libmodman-2.0.1-8.el7.x86_64.rpm                                                             |  28 kB  00:00:00     
(30/69): libproxy-0.4.11-11.el7.x86_64.rpm                                                            |  65 kB  00:00:00     
(31/69): libquadmath-4.8.5-44.el7.x86_64.rpm                                                          | 190 kB  00:00:00     
(32/69): libquadmath-devel-4.8.5-44.el7.x86_64.rpm                                                    |  54 kB  00:00:00     
(33/69): libtool-2.4.2-22.el7_3.x86_64.rpm                                                            | 588 kB  00:00:00     
(34/69): libstdc++-devel-4.8.5-44.el7.x86_64.rpm                                                      | 1.5 MB  00:00:00     
(35/69): mokutil-15.8-1.el7.x86_64.rpm                                                                |  44 kB  00:00:00     
(36/69): m4-1.4.16-10.el7.x86_64.rpm                                                                  | 256 kB  00:00:00     
(37/69): nettle-2.7.1-9.el7_9.x86_64.rpm                                                              | 328 kB  00:00:00     
(38/69): neon-0.30.0-4.el7.x86_64.rpm                                                                 | 166 kB  00:00:00     
(39/69): pakchois-0.4-10.el7.x86_64.rpm                                                               |  14 kB  00:00:00     
(40/69): patch-2.7.1-12.el7_7.x86_64.rpm                                                              | 111 kB  00:00:00     
(41/69): patchutils-0.3.3-5.el7_9.x86_64.rpm                                                          | 104 kB  00:00:00     
(42/69): perl-Data-Dumper-2.145-3.el7.x86_64.rpm                                                      |  47 kB  00:00:00     
(43/69): perl-Git-1.8.3.1-25.el7_9.noarch.rpm                                                         |  56 kB  00:00:00     
(44/69): perl-TermReadKey-2.30-20.el7.x86_64.rpm                                                      |  31 kB  00:00:00     
(45/69): perl-Test-Harness-3.28-3.el7.noarch.rpm                                                      | 302 kB  00:00:00     
(46/69): perl-Error-0.17020-2.el7.noarch.rpm                                                          |  32 kB  00:00:02     
(47/69): perl-Thread-Queue-3.02-2.el7.noarch.rpm                                                      |  17 kB  00:00:00     
(48/69): perl-srpm-macros-1-8.el7.noarch.rpm                                                          | 4.7 kB  00:00:02     
(49/69): perl-XML-Parser-2.41-10.el7.x86_64.rpm                                                       | 223 kB  00:00:05     
(50/69): python-srpm-macros-3-34.el7.noarch.rpm                                                       | 8.8 kB  00:00:02     
(51/69): redhat-rpm-config-9.1.0-88.el7.noarch.rpm                                                    |  81 kB  00:00:02     
(52/69): rcs-5.9.0-7.el7.x86_64.rpm                                                                   | 231 kB  00:00:03     
(53/69): rpm-4.11.3-48.el7_9.x86_64.rpm                                                               | 1.2 MB  00:00:00     
(54/69): rpm-build-4.11.3-48.el7_9.x86_64.rpm                                                         | 150 kB  00:00:00     
(55/69): rpm-build-libs-4.11.3-48.el7_9.x86_64.rpm                                                    | 108 kB  00:00:00     
(56/69): rpm-python-4.11.3-48.el7_9.x86_64.rpm                                                        |  84 kB  00:00:00     
(57/69): rpm-libs-4.11.3-48.el7_9.x86_64.rpm                                                          | 279 kB  00:00:00     
(58/69): rpm-sign-4.11.3-48.el7_9.x86_64.rpm                                                          |  49 kB  00:00:00     
(59/69): rsync-3.1.2-12.el7_9.x86_64.rpm                                                              | 408 kB  00:00:00     
(60/69): subversion-1.7.14-16.el7.x86_64.rpm                                                          | 1.0 MB  00:00:00     
(61/69): subversion-libs-1.7.14-16.el7.x86_64.rpm                                                     | 922 kB  00:00:03     
(62/69): systemtap-4.0-13.el7.x86_64.rpm                                                              |  15 kB  00:00:00     
(63/69): systemtap-client-4.0-13.el7.x86_64.rpm                                                       | 3.6 MB  00:00:00     
(64/69): systemtap-devel-4.0-13.el7.x86_64.rpm                                                        | 2.2 MB  00:00:00     
(65/69): swig-2.0.10-5.el7.x86_64.rpm                                                                 | 1.3 MB  00:00:04     
(66/69): trousers-0.3.14-2.el7.x86_64.rpm                                                             | 289 kB  00:00:00     
(67/69): systemtap-runtime-4.0-13.el7.x86_64.rpm                                                      | 444 kB  00:00:00     
(68/69): zip-3.0-11.el7.x86_64.rpm                                                                    | 260 kB  00:00:00     
(69/69): unzip-6.0-24.el7_9.x86_64.rpm                                                                | 173 kB  00:00:00     
-----------------------------------------------------------------------------------------------------------------------------
Total                                                                                        1.2 MB/s |  50 MB  00:00:43     
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  Updating   : rpm-libs-4.11.3-48.el7_9.x86_64                                                                          1/79 
  Updating   : rpm-4.11.3-48.el7_9.x86_64                                                                               2/79 
  Updating   : rpm-build-libs-4.11.3-48.el7_9.x86_64                                                                    3/79 
  Installing : apr-1.4.8-7.el7.x86_64                                                                                   4/79 
  Installing : libquadmath-4.8.5-44.el7.x86_64                                                                          5/79 
  Installing : m4-1.4.16-10.el7.x86_64                                                                                  6/79 
  Installing : apr-util-1.5.2-6.el7_9.1.x86_64                                                                          7/79 
  Installing : avahi-libs-0.6.31-20.el7.x86_64                                                                          8/79 
  Installing : zip-3.0-11.el7.x86_64                                                                                    9/79 
  Updating   : gettext-libs-0.19.8.1-3.el7_9.x86_64                                                                    10/79 
  Installing : boost-system-1.53.0-28.el7.x86_64                                                                       11/79 
  Installing : patch-2.7.1-12.el7_7.x86_64                                                                             12/79 
  Installing : 1:perl-Error-0.17020-2.el7.noarch                                                                       13/79 
  Installing : perl-Thread-Queue-3.02-2.el7.noarch                                                                     14/79 
  Installing : unzip-6.0-24.el7_9.x86_64                                                                               15/79 
  Installing : boost-thread-1.53.0-28.el7.x86_64                                                                       16/79 
  Updating   : gettext-0.19.8.1-3.el7_9.x86_64                                                                         17/79 
  Installing : systemtap-devel-4.0-13.el7.x86_64                                                                       18/79 
  Installing : libgfortran-4.8.5-44.el7.x86_64                                                                         19/79 
  Installing : libquadmath-devel-4.8.5-44.el7.x86_64                                                                   20/79 
  Installing : libdwarf-20130207-4.el7.x86_64                                                                          21/79 
  Installing : libmodman-2.0.1-8.el7.x86_64                                                                            22/79 
  Installing : libproxy-0.4.11-11.el7.x86_64                                                                           23/79 
  Installing : pakchois-0.4-10.el7.x86_64                                                                              24/79 
  Installing : python-srpm-macros-3-34.el7.noarch                                                                      25/79 
  Installing : libstdc++-devel-4.8.5-44.el7.x86_64                                                                     26/79 
  Installing : dwz-0.11-3.el7.x86_64                                                                                   27/79 
  Installing : efivar-libs-36-12.el7.x86_64                                                                            28/79 
  Installing : mokutil-15.8-1.el7.x86_64                                                                               29/79 
  Installing : elfutils-0.176-5.el7.x86_64                                                                             30/79 
  Installing : nettle-2.7.1-9.el7_9.x86_64                                                                             31/79 
  Installing : perl-Data-Dumper-2.145-3.el7.x86_64                                                                     32/79 
  Installing : autoconf-2.69-11.el7.noarch                                                                             33/79 
  Installing : gettext-common-devel-0.19.8.1-3.el7_9.noarch                                                            34/79 
  Installing : perl-srpm-macros-1-8.el7.noarch                                                                         35/79 
  Installing : redhat-rpm-config-9.1.0-88.el7.noarch                                                                   36/79 
  Installing : boost-date-time-1.53.0-28.el7.x86_64                                                                    37/79 
  Installing : dyninst-9.3.1-3.el7.x86_64                                                                              38/79 
  Installing : systemtap-runtime-4.0-13.el7.x86_64                                                                     39/79 
  Installing : systemtap-client-4.0-13.el7.x86_64                                                                      40/79 
  Installing : gdb-7.6.1-120.el7.x86_64                                                                                41/79 
  Installing : perl-TermReadKey-2.30-20.el7.x86_64                                                                     42/79 
  Installing : perl-Test-Harness-3.28-3.el7.noarch                                                                     43/79 
  Installing : automake-1.13.4-3.el7.noarch                                                                            44/79 
  Installing : perl-XML-Parser-2.41-10.el7.x86_64                                                                      45/79 
  Installing : rsync-3.1.2-12.el7_9.x86_64                                                                             46/79 
  Installing : perl-Git-1.8.3.1-25.el7_9.noarch                                                                        47/79 
  Installing : git-1.8.3.1-25.el7_9.x86_64                                                                             48/79 
  Installing : gettext-devel-0.19.8.1-3.el7_9.x86_64                                                                   49/79 
  Installing : trousers-0.3.14-2.el7.x86_64                                                                            50/79 
  Installing : gnutls-3.3.29-9.el7_6.x86_64                                                                            51/79 
  Installing : neon-0.30.0-4.el7.x86_64                                                                                52/79 
  Installing : subversion-libs-1.7.14-16.el7.x86_64                                                                    53/79 
  Installing : subversion-1.7.14-16.el7.x86_64                                                                         54/79 
  Installing : intltool-0.50.2-7.el7.noarch                                                                            55/79 
  Installing : libtool-2.4.2-22.el7_3.x86_64                                                                           56/79 
  Installing : rpm-build-4.11.3-48.el7_9.x86_64                                                                        57/79 
  Installing : systemtap-4.0-13.el7.x86_64                                                                             58/79 
  Installing : gcc-c++-4.8.5-44.el7.x86_64                                                                             59/79 
  Installing : gcc-gfortran-4.8.5-44.el7.x86_64                                                                        60/79 
  Installing : flex-2.5.37-6.el7.x86_64                                                                                61/79 
  Installing : bison-3.0.4-2.el7.x86_64                                                                                62/79 
  Updating   : rpm-python-4.11.3-48.el7_9.x86_64                                                                       63/79 
  Installing : rpm-sign-4.11.3-48.el7_9.x86_64                                                                         64/79 
  Installing : diffstat-1.57-4.el7.x86_64                                                                              65/79 
  Installing : cscope-15.8-10.el7.x86_64                                                                               66/79 
  Installing : indent-2.2.11-13.el7.x86_64                                                                             67/79 
  Installing : swig-2.0.10-5.el7.x86_64                                                                                68/79 
  Installing : 1:doxygen-1.8.5-4.el7.x86_64                                                                            69/79 
  Installing : rcs-5.9.0-7.el7.x86_64                                                                                  70/79 
  Installing : byacc-1.9.20130304-3.el7.x86_64                                                                         71/79 
  Installing : patchutils-0.3.3-5.el7_9.x86_64                                                                         72/79 
  Installing : ctags-5.8-13.el7.x86_64                                                                                 73/79 
  Cleanup    : rpm-python-4.11.3-45.el7.x86_64                                                                         74/79 
  Cleanup    : rpm-build-libs-4.11.3-45.el7.x86_64                                                                     75/79 
  Cleanup    : rpm-libs-4.11.3-45.el7.x86_64                                                                           76/79 
  Cleanup    : rpm-4.11.3-45.el7.x86_64                                                                                77/79 
  Cleanup    : gettext-0.19.8.1-3.el7.x86_64                                                                           78/79 
  Cleanup    : gettext-libs-0.19.8.1-3.el7.x86_64                                                                      79/79 
  Verifying  : trousers-0.3.14-2.el7.x86_64                                                                             1/79 
  Verifying  : ctags-5.8-13.el7.x86_64                                                                                  2/79 
  Verifying  : gcc-c++-4.8.5-44.el7.x86_64                                                                              3/79 
  Verifying  : gcc-gfortran-4.8.5-44.el7.x86_64                                                                         4/79 
  Verifying  : rsync-3.1.2-12.el7_9.x86_64                                                                              5/79 
  Verifying  : perl-XML-Parser-2.41-10.el7.x86_64                                                                       6/79 
  Verifying  : patchutils-0.3.3-5.el7_9.x86_64                                                                          7/79 
  Verifying  : rpm-4.11.3-48.el7_9.x86_64                                                                               8/79 
  Verifying  : byacc-1.9.20130304-3.el7.x86_64                                                                          9/79 
  Verifying  : boost-thread-1.53.0-28.el7.x86_64                                                                       10/79 
  Verifying  : unzip-6.0-24.el7_9.x86_64                                                                               11/79 
  Verifying  : apr-util-1.5.2-6.el7_9.1.x86_64                                                                         12/79 
  Verifying  : dyninst-9.3.1-3.el7.x86_64                                                                              13/79 
  Verifying  : systemtap-runtime-4.0-13.el7.x86_64                                                                     14/79 
  Verifying  : automake-1.13.4-3.el7.noarch                                                                            15/79 
  Verifying  : m4-1.4.16-10.el7.x86_64                                                                                 16/79 
  Verifying  : perl-Test-Harness-3.28-3.el7.noarch                                                                     17/79 
  Verifying  : systemtap-client-4.0-13.el7.x86_64                                                                      18/79 
  Verifying  : rcs-5.9.0-7.el7.x86_64                                                                                  19/79 
  Verifying  : 1:doxygen-1.8.5-4.el7.x86_64                                                                            20/79 
  Verifying  : libquadmath-4.8.5-44.el7.x86_64                                                                         21/79 
  Verifying  : perl-TermReadKey-2.30-20.el7.x86_64                                                                     22/79 
  Verifying  : redhat-rpm-config-9.1.0-88.el7.noarch                                                                   23/79 
  Verifying  : apr-1.4.8-7.el7.x86_64                                                                                  24/79 
  Verifying  : rpm-build-libs-4.11.3-48.el7_9.x86_64                                                                   25/79 
  Verifying  : perl-Thread-Queue-3.02-2.el7.noarch                                                                     26/79 
  Verifying  : gdb-7.6.1-120.el7.x86_64                                                                                27/79 
  Verifying  : git-1.8.3.1-25.el7_9.x86_64                                                                             28/79 
  Verifying  : neon-0.30.0-4.el7.x86_64                                                                                29/79 
  Verifying  : intltool-0.50.2-7.el7.noarch                                                                            30/79 
  Verifying  : boost-date-time-1.53.0-28.el7.x86_64                                                                    31/79 
  Verifying  : perl-srpm-macros-1-8.el7.noarch                                                                         32/79 
  Verifying  : swig-2.0.10-5.el7.x86_64                                                                                33/79 
  Verifying  : 1:perl-Error-0.17020-2.el7.noarch                                                                       34/79 
  Verifying  : libtool-2.4.2-22.el7_3.x86_64                                                                           35/79 
  Verifying  : patch-2.7.1-12.el7_7.x86_64                                                                             36/79 
  Verifying  : boost-system-1.53.0-28.el7.x86_64                                                                       37/79 
  Verifying  : gettext-common-devel-0.19.8.1-3.el7_9.noarch                                                            38/79 
  Verifying  : rpm-build-4.11.3-48.el7_9.x86_64                                                                        39/79 
  Verifying  : systemtap-4.0-13.el7.x86_64                                                                             40/79 
  Verifying  : perl-Data-Dumper-2.145-3.el7.x86_64                                                                     41/79 
  Verifying  : libgfortran-4.8.5-44.el7.x86_64                                                                         42/79 
  Verifying  : indent-2.2.11-13.el7.x86_64                                                                             43/79 
  Verifying  : perl-Git-1.8.3.1-25.el7_9.noarch                                                                        44/79 
  Verifying  : subversion-1.7.14-16.el7.x86_64                                                                         45/79 
  Verifying  : subversion-libs-1.7.14-16.el7.x86_64                                                                    46/79 
  Verifying  : flex-2.5.37-6.el7.x86_64                                                                                47/79 
  Verifying  : systemtap-devel-4.0-13.el7.x86_64                                                                       48/79 
  Verifying  : rpm-libs-4.11.3-48.el7_9.x86_64                                                                         49/79 
  Verifying  : nettle-2.7.1-9.el7_9.x86_64                                                                             50/79 
  Verifying  : libproxy-0.4.11-11.el7.x86_64                                                                           51/79 
  Verifying  : mokutil-15.8-1.el7.x86_64                                                                               52/79 
  Verifying  : gettext-libs-0.19.8.1-3.el7_9.x86_64                                                                    53/79 
  Verifying  : cscope-15.8-10.el7.x86_64                                                                               54/79 
  Verifying  : bison-3.0.4-2.el7.x86_64                                                                                55/79 
  Verifying  : gettext-0.19.8.1-3.el7_9.x86_64                                                                         56/79 
  Verifying  : rpm-python-4.11.3-48.el7_9.x86_64                                                                       57/79 
  Verifying  : autoconf-2.69-11.el7.noarch                                                                             58/79 
  Verifying  : gnutls-3.3.29-9.el7_6.x86_64                                                                            59/79 
  Verifying  : elfutils-0.176-5.el7.x86_64                                                                             60/79 
  Verifying  : zip-3.0-11.el7.x86_64                                                                                   61/79 
  Verifying  : efivar-libs-36-12.el7.x86_64                                                                            62/79 
  Verifying  : gettext-devel-0.19.8.1-3.el7_9.x86_64                                                                   63/79 
  Verifying  : libquadmath-devel-4.8.5-44.el7.x86_64                                                                   64/79 
  Verifying  : dwz-0.11-3.el7.x86_64                                                                                   65/79 
  Verifying  : libstdc++-devel-4.8.5-44.el7.x86_64                                                                     66/79 
  Verifying  : python-srpm-macros-3-34.el7.noarch                                                                      67/79 
  Verifying  : diffstat-1.57-4.el7.x86_64                                                                              68/79 
  Verifying  : pakchois-0.4-10.el7.x86_64                                                                              69/79 
  Verifying  : libmodman-2.0.1-8.el7.x86_64                                                                            70/79 
  Verifying  : rpm-sign-4.11.3-48.el7_9.x86_64                                                                         71/79 
  Verifying  : libdwarf-20130207-4.el7.x86_64                                                                          72/79 
  Verifying  : avahi-libs-0.6.31-20.el7.x86_64                                                                         73/79 
  Verifying  : rpm-4.11.3-45.el7.x86_64                                                                                74/79 
  Verifying  : gettext-libs-0.19.8.1-3.el7.x86_64                                                                      75/79 
  Verifying  : rpm-build-libs-4.11.3-45.el7.x86_64                                                                     76/79 
  Verifying  : rpm-libs-4.11.3-45.el7.x86_64                                                                           77/79 
  Verifying  : rpm-python-4.11.3-45.el7.x86_64                                                                         78/79 
  Verifying  : gettext-0.19.8.1-3.el7.x86_64                                                                           79/79 

Installed:
  autoconf.noarch 0:2.69-11.el7          automake.noarch 0:1.13.4-3.el7               bison.x86_64 0:3.0.4-2.el7             
  byacc.x86_64 0:1.9.20130304-3.el7      cscope.x86_64 0:15.8-10.el7                  ctags.x86_64 0:5.8-13.el7              
  diffstat.x86_64 0:1.57-4.el7           doxygen.x86_64 1:1.8.5-4.el7                 elfutils.x86_64 0:0.176-5.el7          
  flex.x86_64 0:2.5.37-6.el7             gcc-c++.x86_64 0:4.8.5-44.el7                gcc-gfortran.x86_64 0:4.8.5-44.el7     
  git.x86_64 0:1.8.3.1-25.el7_9          indent.x86_64 0:2.2.11-13.el7                intltool.noarch 0:0.50.2-7.el7         
  libtool.x86_64 0:2.4.2-22.el7_3        patch.x86_64 0:2.7.1-12.el7_7                patchutils.x86_64 0:0.3.3-5.el7_9      
  rcs.x86_64 0:5.9.0-7.el7               redhat-rpm-config.noarch 0:9.1.0-88.el7      rpm-build.x86_64 0:4.11.3-48.el7_9     
  rpm-sign.x86_64 0:4.11.3-48.el7_9      subversion.x86_64 0:1.7.14-16.el7            swig.x86_64 0:2.0.10-5.el7             
  systemtap.x86_64 0:4.0-13.el7         

Dependency Installed:
  apr.x86_64 0:1.4.8-7.el7                                         apr-util.x86_64 0:1.5.2-6.el7_9.1                        
  avahi-libs.x86_64 0:0.6.31-20.el7                                boost-date-time.x86_64 0:1.53.0-28.el7                   
  boost-system.x86_64 0:1.53.0-28.el7                              boost-thread.x86_64 0:1.53.0-28.el7                      
  dwz.x86_64 0:0.11-3.el7                                          dyninst.x86_64 0:9.3.1-3.el7                             
  efivar-libs.x86_64 0:36-12.el7                                   gdb.x86_64 0:7.6.1-120.el7                               
  gettext-common-devel.noarch 0:0.19.8.1-3.el7_9                   gettext-devel.x86_64 0:0.19.8.1-3.el7_9                  
  gnutls.x86_64 0:3.3.29-9.el7_6                                   libdwarf.x86_64 0:20130207-4.el7                         
  libgfortran.x86_64 0:4.8.5-44.el7                                libmodman.x86_64 0:2.0.1-8.el7                           
  libproxy.x86_64 0:0.4.11-11.el7                                  libquadmath.x86_64 0:4.8.5-44.el7                        
  libquadmath-devel.x86_64 0:4.8.5-44.el7                          libstdc++-devel.x86_64 0:4.8.5-44.el7                    
  m4.x86_64 0:1.4.16-10.el7                                        mokutil.x86_64 0:15.8-1.el7                              
  neon.x86_64 0:0.30.0-4.el7                                       nettle.x86_64 0:2.7.1-9.el7_9                            
  pakchois.x86_64 0:0.4-10.el7                                     perl-Data-Dumper.x86_64 0:2.145-3.el7                    
  perl-Error.noarch 1:0.17020-2.el7                                perl-Git.noarch 0:1.8.3.1-25.el7_9                       
  perl-TermReadKey.x86_64 0:2.30-20.el7                            perl-Test-Harness.noarch 0:3.28-3.el7                    
  perl-Thread-Queue.noarch 0:3.02-2.el7                            perl-XML-Parser.x86_64 0:2.41-10.el7                     
  perl-srpm-macros.noarch 0:1-8.el7                                python-srpm-macros.noarch 0:3-34.el7                     
  rsync.x86_64 0:3.1.2-12.el7_9                                    subversion-libs.x86_64 0:1.7.14-16.el7                   
  systemtap-client.x86_64 0:4.0-13.el7                             systemtap-devel.x86_64 0:4.0-13.el7                      
  systemtap-runtime.x86_64 0:4.0-13.el7                            trousers.x86_64 0:0.3.14-2.el7                           
  unzip.x86_64 0:6.0-24.el7_9                                      zip.x86_64 0:3.0-11.el7                                  

Dependency Updated:
  gettext.x86_64 0:0.19.8.1-3.el7_9          gettext-libs.x86_64 0:0.19.8.1-3.el7_9    rpm.x86_64 0:4.11.3-48.el7_9          
  rpm-build-libs.x86_64 0:4.11.3-48.el7_9    rpm-libs.x86_64 0:4.11.3-48.el7_9         rpm-python.x86_64 0:4.11.3-48.el7_9   

Complete!

그룹 제거

  • yum groupremove 그룹명
[root@localhost ~]# yum groupremove "Development Tools"
Loaded plugins: product-id, search-disabled-repos, subscription-manager
No environment named Development Tools exists
Resolving Dependencies
--> Running transaction check
---> Package autoconf.noarch 0:2.69-11.el7 will be erased
---> Package automake.noarch 0:1.13.4-3.el7 will be erased
---> Package bison.x86_64 0:3.0.4-2.el7 will be erased
---> Package byacc.x86_64 0:1.9.20130304-3.el7 will be erased
---> Package cscope.x86_64 0:15.8-10.el7 will be erased
---> Package ctags.x86_64 0:5.8-13.el7 will be erased
---> Package diffstat.x86_64 0:1.57-4.el7 will be erased
---> Package doxygen.x86_64 1:1.8.5-4.el7 will be erased
---> Package elfutils.x86_64 0:0.176-5.el7 will be erased
---> Package flex.x86_64 0:2.5.37-6.el7 will be erased
---> Package gcc-c++.x86_64 0:4.8.5-44.el7 will be erased
---> Package gcc-gfortran.x86_64 0:4.8.5-44.el7 will be erased
---> Package git.x86_64 0:1.8.3.1-25.el7_9 will be erased
--> Processing Dependency: git = 1.8.3.1-25.el7_9 for package: perl-Git-1.8.3.1-25.el7_9.noarch
--> Processing Dependency: git for package: gettext-devel-0.19.8.1-3.el7_9.x86_64
---> Package indent.x86_64 0:2.2.11-13.el7 will be erased
---> Package intltool.noarch 0:0.50.2-7.el7 will be erased
---> Package libtool.x86_64 0:2.4.2-22.el7_3 will be erased
---> Package patch.x86_64 0:2.7.1-12.el7_7 will be erased
---> Package patchutils.x86_64 0:0.3.3-5.el7_9 will be erased
---> Package rcs.x86_64 0:5.9.0-7.el7 will be erased
---> Package redhat-rpm-config.noarch 0:9.1.0-88.el7 will be erased
---> Package rpm-build.x86_64 0:4.11.3-48.el7_9 will be erased
---> Package rpm-sign.x86_64 0:4.11.3-48.el7_9 will be erased
---> Package subversion.x86_64 0:1.7.14-16.el7 will be erased
---> Package swig.x86_64 0:2.0.10-5.el7 will be erased
---> Package systemtap.x86_64 0:4.0-13.el7 will be erased
--> Running transaction check
---> Package gettext-devel.x86_64 0:0.19.8.1-3.el7_9 will be erased
---> Package perl-Git.noarch 0:1.8.3.1-25.el7_9 will be erased
--> Finished Dependency Resolution

Dependencies Resolved

=============================================================================================================================
 Package                        Arch                Version                           Repository                        Size
=============================================================================================================================
Removing:
 autoconf                       noarch              2.69-11.el7                       @rhel-7-server-rpms              2.2 M
 automake                       noarch              1.13.4-3.el7                      @rhel-7-server-rpms              1.7 M
 bison                          x86_64              3.0.4-2.el7                       @rhel-7-server-rpms              2.1 M
 byacc                          x86_64              1.9.20130304-3.el7                @rhel-7-server-rpms              132 k
 cscope                         x86_64              15.8-10.el7                       @rhel-7-server-rpms              918 k
 ctags                          x86_64              5.8-13.el7                        @rhel-7-server-rpms              351 k
 diffstat                       x86_64              1.57-4.el7                        @rhel-7-server-rpms               53 k
 doxygen                        x86_64              1:1.8.5-4.el7                     @rhel-7-server-rpms               15 M
 elfutils                       x86_64              0.176-5.el7                       @rhel-7-server-rpms              816 k
 flex                           x86_64              2.5.37-6.el7                      @rhel-7-server-rpms              740 k
 gcc-c++                        x86_64              4.8.5-44.el7                      @rhel-7-server-rpms               16 M
 gcc-gfortran                   x86_64              4.8.5-44.el7                      @rhel-7-server-rpms               16 M
 git                            x86_64              1.8.3.1-25.el7_9                  @rhel-7-server-rpms               22 M
 indent                         x86_64              2.2.11-13.el7                     @rhel-7-server-rpms              351 k
 intltool                       noarch              0.50.2-7.el7                      @rhel-7-server-rpms              166 k
 libtool                        x86_64              2.4.2-22.el7_3                    @rhel-7-server-rpms              2.2 M
 patch                          x86_64              2.7.1-12.el7_7                    @rhel-7-server-rpms              210 k
 patchutils                     x86_64              0.3.3-5.el7_9                     @rhel-7-server-rpms              254 k
 rcs                            x86_64              5.9.0-7.el7                       @rhel-7-server-rpms              610 k
 redhat-rpm-config              noarch              9.1.0-88.el7                      @rhel-7-server-rpms              170 k
 rpm-build                      x86_64              4.11.3-48.el7_9                   @rhel-7-server-rpms              324 k
 rpm-sign                       x86_64              4.11.3-48.el7_9                   @rhel-7-server-rpms               17 k
 subversion                     x86_64              1.7.14-16.el7                     @rhel-7-server-rpms              4.6 M
 swig                           x86_64              2.0.10-5.el7                      @rhel-7-server-rpms              4.7 M
 systemtap                      x86_64              4.0-13.el7                        @rhel-7-server-rpms              0.0  
Removing for dependencies:
 gettext-devel                  x86_64              0.19.8.1-3.el7_9                  @rhel-7-server-rpms              1.4 M
 perl-Git                       noarch              1.8.3.1-25.el7_9                  @rhel-7-server-rpms               57 k

Transaction Summary
=============================================================================================================================
Remove  25 Packages (+2 Dependent packages)

Installed size: 93 M
Is this ok [y/N]:  y
Downloading packages:
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  Erasing    : intltool-0.50.2-7.el7.noarch                                                                             1/27 
  Erasing    : libtool-2.4.2-22.el7_3.x86_64                                                                            2/27 
  Erasing    : rpm-build-4.11.3-48.el7_9.x86_64                                                                         3/27 
  Erasing    : automake-1.13.4-3.el7.noarch                                                                             4/27 
  Erasing    : autoconf-2.69-11.el7.noarch                                                                              5/27 
  Erasing    : redhat-rpm-config-9.1.0-88.el7.noarch                                                                    6/27 
  Erasing    : systemtap-4.0-13.el7.x86_64                                                                              7/27 
  Erasing    : gettext-devel-0.19.8.1-3.el7_9.x86_64                                                                    8/27 
  Erasing    : perl-Git-1.8.3.1-25.el7_9.noarch                                                                         9/27 
  Erasing    : git-1.8.3.1-25.el7_9.x86_64                                                                             10/27 
  Erasing    : elfutils-0.176-5.el7.x86_64                                                                             11/27 
  Erasing    : patch-2.7.1-12.el7_7.x86_64                                                                             12/27 
  Erasing    : rpm-sign-4.11.3-48.el7_9.x86_64                                                                         13/27 
  Erasing    : diffstat-1.57-4.el7.x86_64                                                                              14/27 
  Erasing    : bison-3.0.4-2.el7.x86_64                                                                                15/27 
  Erasing    : cscope-15.8-10.el7.x86_64                                                                               16/27 
  Erasing    : flex-2.5.37-6.el7.x86_64                                                                                17/27 
  Erasing    : subversion-1.7.14-16.el7.x86_64                                                                         18/27 
  Erasing    : indent-2.2.11-13.el7.x86_64                                                                             19/27 
  Erasing    : swig-2.0.10-5.el7.x86_64                                                                                20/27 
  Erasing    : 1:doxygen-1.8.5-4.el7.x86_64                                                                            21/27 
  Erasing    : rcs-5.9.0-7.el7.x86_64                                                                                  22/27 
  Erasing    : byacc-1.9.20130304-3.el7.x86_64                                                                         23/27 
  Erasing    : patchutils-0.3.3-5.el7_9.x86_64                                                                         24/27 
  Erasing    : gcc-gfortran-4.8.5-44.el7.x86_64                                                                        25/27 
  Erasing    : gcc-c++-4.8.5-44.el7.x86_64                                                                             26/27 
  Erasing    : ctags-5.8-13.el7.x86_64                                                                                 27/27 
  Verifying  : ctags-5.8-13.el7.x86_64                                                                                  1/27 
  Verifying  : gcc-c++-4.8.5-44.el7.x86_64                                                                              2/27 
  Verifying  : gcc-gfortran-4.8.5-44.el7.x86_64                                                                         3/27 
  Verifying  : patchutils-0.3.3-5.el7_9.x86_64                                                                          4/27 
  Verifying  : byacc-1.9.20130304-3.el7.x86_64                                                                          5/27 
  Verifying  : automake-1.13.4-3.el7.noarch                                                                             6/27 
  Verifying  : rcs-5.9.0-7.el7.x86_64                                                                                   7/27 
  Verifying  : 1:doxygen-1.8.5-4.el7.x86_64                                                                             8/27 
  Verifying  : redhat-rpm-config-9.1.0-88.el7.noarch                                                                    9/27 
  Verifying  : git-1.8.3.1-25.el7_9.x86_64                                                                             10/27 
  Verifying  : intltool-0.50.2-7.el7.noarch                                                                            11/27 
  Verifying  : swig-2.0.10-5.el7.x86_64                                                                                12/27 
  Verifying  : libtool-2.4.2-22.el7_3.x86_64                                                                           13/27 
  Verifying  : patch-2.7.1-12.el7_7.x86_64                                                                             14/27 
  Verifying  : rpm-build-4.11.3-48.el7_9.x86_64                                                                        15/27 
  Verifying  : systemtap-4.0-13.el7.x86_64                                                                             16/27 
  Verifying  : indent-2.2.11-13.el7.x86_64                                                                             17/27 
  Verifying  : perl-Git-1.8.3.1-25.el7_9.noarch                                                                        18/27 
  Verifying  : subversion-1.7.14-16.el7.x86_64                                                                         19/27 
  Verifying  : flex-2.5.37-6.el7.x86_64                                                                                20/27 
  Verifying  : cscope-15.8-10.el7.x86_64                                                                               21/27 
  Verifying  : bison-3.0.4-2.el7.x86_64                                                                                22/27 
  Verifying  : autoconf-2.69-11.el7.noarch                                                                             23/27 
  Verifying  : elfutils-0.176-5.el7.x86_64                                                                             24/27 
  Verifying  : gettext-devel-0.19.8.1-3.el7_9.x86_64                                                                   25/27 
  Verifying  : diffstat-1.57-4.el7.x86_64                                                                              26/27 
  Verifying  : rpm-sign-4.11.3-48.el7_9.x86_64                                                                         27/27 

Removed:
  autoconf.noarch 0:2.69-11.el7          automake.noarch 0:1.13.4-3.el7               bison.x86_64 0:3.0.4-2.el7             
  byacc.x86_64 0:1.9.20130304-3.el7      cscope.x86_64 0:15.8-10.el7                  ctags.x86_64 0:5.8-13.el7              
  diffstat.x86_64 0:1.57-4.el7           doxygen.x86_64 1:1.8.5-4.el7                 elfutils.x86_64 0:0.176-5.el7          
  flex.x86_64 0:2.5.37-6.el7             gcc-c++.x86_64 0:4.8.5-44.el7                gcc-gfortran.x86_64 0:4.8.5-44.el7     
  git.x86_64 0:1.8.3.1-25.el7_9          indent.x86_64 0:2.2.11-13.el7                intltool.noarch 0:0.50.2-7.el7         
  libtool.x86_64 0:2.4.2-22.el7_3        patch.x86_64 0:2.7.1-12.el7_7                patchutils.x86_64 0:0.3.3-5.el7_9      
  rcs.x86_64 0:5.9.0-7.el7               redhat-rpm-config.noarch 0:9.1.0-88.el7      rpm-build.x86_64 0:4.11.3-48.el7_9     
  rpm-sign.x86_64 0:4.11.3-48.el7_9      subversion.x86_64 0:1.7.14-16.el7            swig.x86_64 0:2.0.10-5.el7             
  systemtap.x86_64 0:4.0-13.el7         

Dependency Removed:
  gettext-devel.x86_64 0:0.19.8.1-3.el7_9                         perl-Git.noarch 0:1.8.3.1-25.el7_9                        

Complete!