Difference between revisions of "PERL Info"

From TheBestLinux.com
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 32: Line 32:
  
 
Once the RPM database and it's cache updated, you can then safely install Perl and all of it's additional tools & extra packages, including all of any optional packages available, by also including the "--with-optional" switch, without the quotes, of course, to the full DNF command, as shown in this example, which installs all Perl packages, except for the extra 46,000 extra Perl modules.
 
Once the RPM database and it's cache updated, you can then safely install Perl and all of it's additional tools & extra packages, including all of any optional packages available, by also including the "--with-optional" switch, without the quotes, of course, to the full DNF command, as shown in this example, which installs all Perl packages, except for the extra 46,000 extra Perl modules.
<pre style="color:blue"
+
<pre style="color:blue">
 
jamie@dell16fc42:~$ sudo dnf group install --with-optional perl
 
jamie@dell16fc42:~$ sudo dnf group install --with-optional perl
 
Updating and loading repositories:
 
Updating and loading repositories:
Line 1,318: Line 1,318:
 
<br /><br />
 
<br /><br />
  
 +
== '''Confirming Perl is Installed along with Determining Which Version of Perl is Installed''' ==
 +
There are two main methods/switches to display the currently installed version of Perl, with the ONLY difference in the switch is it's case, be it UPPER-CASE or lower-case, using the letter "V", without the quotes, as shown here:
 +
<pre style="color:blue">
 +
jamie@dell16fc42:~$ perl -v
 +
 +
This is perl 5, version 40, subversion 2 (v5.40.2) built for x86_64-linux-thread-multi
 +
(with 15 registered patches, see perl -V for more detail)
 +
 +
Copyright 1987-2025, Larry Wall
 +
 +
Perl may be copied only under the terms of either the Artistic License or the
 +
GNU General Public License, which may be found in the Perl 5 source kit.
 +
 +
Complete documentation for Perl, including FAQ lists, should be found on
 +
this system using "man perl" or "perldoc perl".  If you have access to the
 +
Internet, point your browser at https://www.perl.org/, the Perl Home Page.
 +
 +
jamie@dell16fc42:~$
 +
</pre>
 +
<br /><br />
 +
 +
If you change the -v to an UPPER-CASE -V, you get a LOT more information, as shown in this example:
 +
<pre style="color:blue">
 +
jamie@dell16fc42:~$ perl -V
 +
Summary of my perl5 (revision 5 version 40 subversion 2) configuration:
 +
 
 +
  Platform:
 +
    osname=linux
 +
    osvers=6.11.0
 +
    archname=x86_64-linux-thread-multi
 +
    uname='linux localhost 6.11.0 #1 smp preempt_dynamic 6.11.0 x86_64 gnulinux '
 +
    config_args='-des -Doptimize=none -Dccflags=-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Wno-complain-wrong-lang -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -march=x86-64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -mtls-dialect=gnu2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -Dldflags=-Wl,-z,relro -Wl,--as-needed  -Wl,-z,pack-relative-relocs -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -Wl,--build-id=sha1  -Dccdlflags=-Wl,--enable-new-dtags -Wl,-z,relro -Wl,--as-needed  -Wl,-z,pack-relative-relocs -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -Wl,--build-id=sha1  -Dlddlflags=-shared -Wl,-z,relro -Wl,--as-needed  -Wl,-z,pack-relative-relocs -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -Wl,--build-id=sha1  -Dshrpdir=/usr/lib64 -DDEBUGGING=-g -Dversion=5.40.2 -Dmyhostname=localhost -Dperladmin=root@localhost -Dcc=gcc -Dcf_by=Red Hat, Inc. -Dprefix=/usr -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dvendorprefix=/usr -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl5/5.40 -Dsitearch=/usr/local/lib64/perl5/5.40 -Dprivlib=/usr/share/perl5 -Dvendorlib=/usr/share/perl5/vendor_perl -Darchlib=/usr/lib64/perl5 -Dvendorarch=/usr/lib64/perl5/vendor_perl -Darchname=x86_64-linux-thread-multi -Dlibpth=/usr/local/lib64 /lib64 /usr/lib64 -Duseshrplib -Dusethreads -Duseithreads -Dusedtrace=/usr/bin/dtrace -Duselargefiles -Dd_semctl_semun -Di_db -Ui_ndbm -Di_gdbm -Di_shadow -Di_syslog -Dman3ext=3pm -Duseperlio -Dinstallusrbinperl=n -Ubincompat5005 -Uversiononly -Dpager=/usr/bin/less -isr -Dd_gethostent_r_proto -Ud_endhostent_r_proto -Ud_sethostent_r_proto -Ud_endprotoent_r_proto -Ud_setprotoent_r_proto -Ud_endservent_r_proto -Ud_setservent_r_proto -Dscriptdir=/usr/bin -Dusesitecustomize -Duse64bitint'
 +
    hint=recommended
 +
    useposix=true
 +
    d_sigaction=define
 +
    useithreads=define
 +
    usemultiplicity=define
 +
    use64bitint=define
 +
    use64bitall=define
 +
    uselongdouble=undef
 +
    usemymalloc=n
 +
    default_inc_excludes_dot=define
 +
  Compiler:
 +
    cc='gcc'
 +
    ccflags ='-D_REENTRANT -D_GNU_SOURCE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Wno-complain-wrong-lang -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -march=x86-64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -mtls-dialect=gnu2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -fwrapv -fno-strict-aliasing -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
 +
    optimize='  -g'
 +
    cppflags='-D_REENTRANT -D_GNU_SOURCE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Wno-complain-wrong-lang -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -march=x86-64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -mtls-dialect=gnu2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -fwrapv -fno-strict-aliasing -I/usr/local/include'
 +
    ccversion=''
 +
    gccversion='15.0.1 20250329 (Red Hat 15.0.1-0)'
 +
    gccosandvers=''
 +
    intsize=4
 +
    longsize=8
 +
    ptrsize=8
 +
    doublesize=8
 +
    byteorder=12345678
 +
    doublekind=3
 +
    d_longlong=define
 +
    longlongsize=8
 +
    d_longdbl=define
 +
    longdblsize=16
 +
    longdblkind=3
 +
    ivtype='long'
 +
    ivsize=8
 +
    nvtype='double'
 +
    nvsize=8
 +
    Off_t='off_t'
 +
    lseeksize=8
 +
    alignbytes=8
 +
    prototype=define
 +
  Linker and Libraries:
 +
    ld='gcc'
 +
    ldflags ='-Wl,-z,relro -Wl,--as-needed -Wl,-z,pack-relative-relocs -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1  -fstack-protector-strong -L/usr/local/lib'
 +
    libpth=/usr/local/lib64 /lib64 /usr/lib64 /usr/local/lib /usr/lib
 +
    libs=-lpthread -lresolv -lgdbm -ldb -ldl -lm -lcrypt -lutil -lc -lgdbm_compat
 +
    perllibs=-lpthread -lresolv -ldl -lm -lcrypt -lutil -lc
 +
    libc=/lib/../lib64/libc.so.6
 +
    so=so
 +
    useshrplib=true
 +
    libperl=libperl.so
 +
    gnulibc_version='2.41'
 +
  Dynamic Linking:
 +
    dlsrc=dl_dlopen.xs
 +
    dlext=so
 +
    d_dlsymun=undef
 +
    ccdlflags='-Wl,--enable-new-dtags -Wl,-z,relro -Wl,--as-needed -Wl,-z,pack-relative-relocs -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 '
 +
    cccdlflags='-fPIC'
 +
    lddlflags='-lpthread -shared -Wl,-z,relro -Wl,--as-needed -Wl,-z,pack-relative-relocs -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1  -L/usr/local/lib -fstack-protector-strong'
 +
 +
 +
Characteristics of this binary (from libperl):
 +
  Compile-time options:
 +
    HAS_LONG_DOUBLE
 +
    HAS_STRTOLD
 +
    HAS_TIMES
 +
    MULTIPLICITY
 +
    PERLIO_LAYERS
 +
    PERL_COPY_ON_WRITE
 +
    PERL_DONT_CREATE_GVSV
 +
    PERL_HASH_FUNC_SIPHASH13
 +
    PERL_HASH_USE_SBOX32
 +
    PERL_MALLOC_WRAP
 +
    PERL_OP_PARENT
 +
    PERL_PRESERVE_IVUV
 +
    PERL_USE_SAFE_PUTENV
 +
    USE_64_BIT_ALL
 +
    USE_64_BIT_INT
 +
    USE_ITHREADS
 +
    USE_LARGE_FILES
 +
    USE_LOCALE
 +
    USE_LOCALE_COLLATE
 +
    USE_LOCALE_CTYPE
 +
    USE_LOCALE_NUMERIC
 +
    USE_LOCALE_TIME
 +
    USE_PERLIO
 +
    USE_PERL_ATOF
 +
    USE_REENTRANT_API
 +
    USE_SITECUSTOMIZE
 +
    USE_THREAD_SAFE_LOCALE
 +
  Locally applied patches:
 +
    Fedora Patch1: Removes date check, Fedora/RHEL specific
 +
    Fedora Patch2: support for libdir64
 +
    Fedora Patch3: use libresolv instead of libbind
 +
    Fedora Patch4: USE_MM_LD_RUN_PATH
 +
    Fedora Patch5: Provide MM::maybe_command independently (bug #1129443)
 +
    Fedora Patch6: Dont run one io test due to random builder failures
 +
    Fedora Patch8: Define SONAME for libperl.so
 +
    Fedora Patch9: Install libperl.so to -Dshrpdir value
 +
    Fedora Patch10: Make *DBM_File desctructors thread-safe (RT#61912)
 +
    Fedora Patch11: Replace EU::MakeMaker dependency with EU::MM::Utils in IPC::Cmd (bug #1129443)
 +
    Fedora Patch12: Link XS modules to pthread library to fix linking with -z defs
 +
    Fedora Patch13: Pass the correct CFLAGS to dtrace
 +
    Fedora Patch200: Link XS modules to libperl.so with EU::CBuilder on Linux
 +
    Fedora Patch201: Link XS modules to libperl.so with EU::MM on Linux
 +
    Fedora Patch202: Add definition of OPTIMIZE to .ph files
 +
  Built under linux
 +
  Compiled at Apr 14 2025 00:00:00
 +
  @INC:
 +
    /usr/local/lib64/perl5/5.40
 +
    /usr/local/share/perl5/5.40
 +
    /usr/lib64/perl5/vendor_perl
 +
    /usr/share/perl5/vendor_perl
 +
    /usr/lib64/perl5
 +
    /usr/share/perl5
 +
jamie@dell16fc42:~$
 +
</pre>
 +
<br /><br />
  
 
== '''CPAN Install Information''' ==
 
== '''CPAN Install Information''' ==

Latest revision as of 07:43, 2 June 2025

Perl - General Information

Perl is one of my favorite scripting languages and has almost 46,000 available modules with which to assist & expand it's functionality!

Installation of Perl and it's Many Libraries & Additional Support Packages Using RPM-Based DNF Tools

The easiest way to install Perl and most of it's extra packages, not to be confused with the 46,000 "Extra Modules", that you should only install as needed, due to the shear numbers of all available Perl modules, is by using the current RPM package tools known as "DNF". Before installing any packages on any Linux distribution, it's ALWAYS best practice to FIRST update the package database. In the case of the command-line DNF package tool, the full command, to also refresh the entire cache, is "dnf check-update --refresh", as shown in this example:

jamie@dell16fc42:~$ sudo dnf check-update --refresh
Updating and loading repositories:
 Fedora 42 - x86_64 - Updates                       100% |  24.3 KiB/s |  20.4 KiB |  00m01s
 RPM Fusion for Fedora 42 - Nonfree - NVIDIA Driver 100% |   8.1 KiB/s |   6.6 KiB |  00m01s
 teams                                              100% |   3.7 KiB/s |   1.5 KiB |  00m00s
 RPM Fusion for Fedora 42 - Nonfree - Steam         100% |  10.4 KiB/s |   6.4 KiB |  00m01s
 Copr repo for PyCharm owned by phracek             100% |   2.6 KiB/s |   2.1 KiB |  00m01s
 google-chrome                                      100% |   4.3 KiB/s |   1.3 KiB |  00m00s
 google-webdesigner                                 100% |   2.6 KiB/s |   1.3 KiB |  00m01s
 MS-Teams                                           100% |   9.6 KiB/s |   1.5 KiB |  00m00s
 Docker CE Stable - x86_64                          100% |  14.0 KiB/s |   3.5 KiB |  00m00s
 Fedora 42 - x86_64                                 100% |  60.0 KiB/s |  31.2 KiB |  00m01s
 Fedora 42 openh264 (From Cisco) - x86_64           100% |   3.2 KiB/s | 989.0   B |  00m00s
 Visual Studio Code                                 100% |   4.6 KiB/s |   1.5 KiB |  00m00s
Repositories loaded.
NetworkManager-ssh.x86_64                        1.4.1-2.fc42      updates
NetworkManager-ssh-gnome.x86_64                  1.4.1-2.fc42      updates
NetworkManager-ssh-selinux.x86_64                1.4.1-2.fc42      updates
.
.
.
jamie@dell16fc42:~$ 



Once the RPM database and it's cache updated, you can then safely install Perl and all of it's additional tools & extra packages, including all of any optional packages available, by also including the "--with-optional" switch, without the quotes, of course, to the full DNF command, as shown in this example, which installs all Perl packages, except for the extra 46,000 extra Perl modules.

jamie@dell16fc42:~$ sudo dnf group install --with-optional perl
Updating and loading repositories:
Repositories loaded.
Package "perltidy-20250311-1.fc42.noarch" is already installed.

Package                                                     Arch   Version                    Reposito      Size
Upgrading:
 cpp                                                        x86_64 15.1.1-2.fc42              updates   37.9 MiB
   replacing cpp                                            x86_64 15.1.1-1.fc42              updates   37.8 MiB
 gcc                                                        x86_64 15.1.1-2.fc42              updates  111.1 MiB
   replacing gcc                                            x86_64 15.1.1-1.fc42              updates  111.0 MiB
 gcc-plugin-annobin                                         x86_64 15.1.1-2.fc42              updates   57.1 KiB
   replacing gcc-plugin-annobin                             x86_64 15.1.1-1.fc42              updates   57.1 KiB
 libgcc                                                     x86_64 15.1.1-2.fc42              updates  266.6 KiB
   replacing libgcc                                         x86_64 15.1.1-1.fc42              updates  266.6 KiB
 libgomp                                                    x86_64 15.1.1-2.fc42              updates  539.1 KiB
   replacing libgomp                                        x86_64 15.1.1-1.fc42              updates  538.5 KiB
 libstdc++                                                  x86_64 15.1.1-2.fc42              updates    2.8 MiB
   replacing libstdc++                                      x86_64 15.1.1-1.fc42              updates    2.8 MiB
Installing group/module packages:
 cpanspec                                                   noarch 1.78-54.fc42               fedora    70.2 KiB
 git-cpan-patch                                             noarch 2.5.0-9.fc42               fedora    33.9 KiB
 perl                                                       x86_64 4:5.40.2-517.fc42          updates    0.0   B
 perl-App-cpanminus                                         noarch 1.7048-2.fc42              fedora   248.6 KiB
 perl-CPAN-Uploader                                         noarch 0.103018-7.fc42            fedora    47.0 KiB
 perl-Code-TidyAll                                          noarch 0.84-5.fc42                fedora   298.2 KiB
 perl-Data-Printer                                          noarch 1.002001-3.fc42            fedora   335.5 KiB
 perl-Devel-Confess                                         noarch 0.009004-25.fc42           fedora    45.2 KiB
 perl-Devel-NYTProf                                         x86_64 6.14-6.fc42                fedora     1.0 MiB
 perl-Dist-Zilla                                            noarch 6.033-1.fc42               updates  926.1 KiB
 perl-Modern-Perl                                           noarch 1.20241001-2.fc42          fedora    36.3 KiB
 perl-Module-Build-Tiny                                     noarch 0.051-2.fc42               fedora    39.5 KiB
 perl-Perl-Critic                                           noarch 1.156-2.fc42               fedora     1.9 MiB
 perl-Pod-Readme                                            noarch 1.2.3-19.fc42              fedora    90.6 KiB
 perl-Software-License                                      noarch 0.104006-3.fc42            fedora   501.9 KiB
 vim-perl-support                                           noarch 5.4-3.fc42                 fedora   904.1 KiB
Installing dependencies:
 flamegraph                                                 noarch 1.0-21.20241020git41fee1f. fedora    67.2 KiB
 gcc-c++                                                    x86_64 15.1.1-2.fc42              updates   41.3 MiB
 git-email                                                  noarch 2.49.0-1.fc42              fedora   157.4 KiB
 libdb                                                      x86_64 5.3.28-64.fc42             fedora     1.9 MiB
 libstdc++-devel                                            x86_64 15.1.1-2.fc42              updates   16.1 MiB
 nodejs                                                     x86_64 1:22.15.1-1.fc42           updates  156.3 KiB
 nodejs-libs                                                x86_64 1:22.15.1-1.fc42           updates   79.2 MiB
 perl-Algorithm-C3                                          noarch 0.11-15.fc42               fedora    38.1 KiB
 perl-Algorithm-Diff                                        noarch 1.2010-13.fc42             fedora   107.5 KiB
 perl-App-Cache                                             noarch 0.37-43.fc42               fedora    14.9 KiB
 perl-App-Cmd                                               noarch 0.336-5.fc42               fedora   170.6 KiB
 perl-AppConfig                                             noarch 1.71-32.fc42               fedora   188.5 KiB
 perl-Archive-Any                                           noarch 0.0946-18.fc42             fedora    44.3 KiB
 perl-Archive-Extract                                       noarch 1:0.88-13.fc42             fedora    70.1 KiB
 perl-Archive-Extract-Z-Compress-Zlib                       noarch 1:0.88-13.fc42             fedora     0.0   B
 perl-Archive-Extract-bz2-IO-Uncompress-Bunzip2             noarch 1:0.88-13.fc42             fedora     0.0   B
 perl-Archive-Extract-gz-Compress-Zlib                      noarch 1:0.88-13.fc42             fedora     0.0   B
 perl-Archive-Extract-lzma-IO-Uncompress-UnLzma             noarch 1:0.88-13.fc42             fedora     0.0   B
 perl-Archive-Extract-tar-Archive-Tar                       noarch 1:0.88-13.fc42             fedora     0.0   B
 perl-Archive-Extract-tbz-Archive-Tar-IO-Uncompress-Bunzip2 noarch 1:0.88-13.fc42             fedora     0.0   B
 perl-Archive-Extract-tgz-Archive-Tar-Compress-Zlib         noarch 1:0.88-13.fc42             fedora     0.0   B
 perl-Archive-Extract-txz-Archive-Tar-IO-Uncompress-UnXz    noarch 1:0.88-13.fc42             fedora     0.0   B
 perl-Archive-Extract-xz-IO-Uncompress-UnXz                 noarch 1:0.88-13.fc42             fedora     0.0   B
 perl-Archive-Extract-zip-Archive-Zip                       noarch 1:0.88-13.fc42             fedora     0.0   B
 perl-Archive-Peek                                          noarch 0.37-10.fc42               fedora     6.2 KiB
 perl-Archive-Tar                                           noarch 3.04-1.fc42                fedora   154.4 KiB
 perl-Archive-Zip                                           noarch 1.68-16.fc42               fedora   291.1 KiB
 perl-Attribute-Handlers                                    noarch 1.03-517.fc42              updates   39.9 KiB
 perl-Authen-SASL                                           noarch 2.1700-5.fc42              fedora   116.6 KiB
 perl-AutoSplit                                             noarch 5.74-517.fc42              updates   23.1 KiB
 perl-B-Hooks-OP-Check                                      x86_64 0.22-26.fc42               fedora    54.4 KiB
 perl-B-Keywords                                            noarch 1.27-3.fc42                fedora    20.2 KiB
 perl-BackPAN-Index                                         noarch 0.42-34.fc42               fedora    75.9 KiB
 perl-Benchmark                                             noarch 1.25-517.fc42              updates   36.3 KiB
 perl-Bit-Vector                                            x86_64 7.4-37.fc42                fedora   480.7 KiB
 perl-CGI                                                   noarch 4.68-1.fc42                updates  553.9 KiB
 perl-CPAN                                                  noarch 2.38-3.fc42                fedora     1.9 MiB
 perl-CPAN-Changes                                          noarch 0.500004-3.fc42            fedora    82.3 KiB
 perl-CPAN-DistnameInfo                                     noarch 0.12-32.fc42               fedora    10.6 KiB
 perl-CPAN-Meta                                             noarch 2.150010-512.fc42          fedora   592.2 KiB
 perl-CPAN-Meta-Check                                       noarch 0.018-5.fc42               fedora    27.9 KiB
 perl-CPAN-Meta-Requirements                                noarch 2.143-10.fc42              fedora    81.2 KiB
 perl-CPAN-Meta-YAML                                        noarch 0.020-2.fc42               fedora    52.1 KiB
 perl-CPAN-ParseDistribution                                noarch 1.54-25.fc42               fedora    45.9 KiB
 perl-CPAN-Requirements-Dynamic                             noarch 0.001-5.fc42               fedora    32.1 KiB
 perl-CPANPLUS                                              noarch 0.991.400-11.fc42          fedora   791.2 KiB
 perl-Carp-Clan                                             noarch 6.08-20.fc42               fedora    37.3 KiB
 perl-Class-Accessor                                        noarch 0.51-22.fc42               fedora    40.8 KiB
 perl-Class-Accessor-Chained                                noarch 0.01-54.fc42               fedora     6.5 KiB
 perl-Class-Accessor-Grouped                                noarch 0.10014-22.fc42            fedora    53.4 KiB
 perl-Class-C3                                              noarch 0.35-15.fc42               fedora    47.1 KiB
 perl-Class-C3-Componentised                                noarch 1.001002-22.fc42           fedora    26.6 KiB
 perl-Class-Load                                            noarch 0.25-27.fc42               fedora    42.8 KiB
 perl-Class-Load-XS                                         x86_64 0.10-27.fc42               fedora    28.1 KiB
 perl-Class-Tiny                                            noarch 1.008-13.fc42              fedora    52.9 KiB
 perl-Class-Trigger                                         noarch 0.15-15.fc42               fedora    40.6 KiB
 perl-Clone-Choose                                          noarch 0.010-22.fc42              fedora    15.2 KiB
 perl-Compress-Bzip2                                        x86_64 2.28-21.fc42               fedora   142.6 KiB
 perl-Compress-Raw-Lzma                                     x86_64 2.213-5.fc42               fedora   120.9 KiB
 perl-Config-Any                                            noarch 0.33-6.fc42                fedora    72.7 KiB
 perl-Config-Extensions                                     noarch 0.03-517.fc42              updates    2.6 KiB
 perl-Config-General                                        noarch 2.67-2.fc42                fedora   175.2 KiB
 perl-Config-INI                                            noarch 0.029-8.fc42               fedora    73.1 KiB
 perl-Config-MVP                                            noarch 2.200013-8.fc42            fedora   122.7 KiB
 perl-Config-MVP-Reader-INI                                 noarch 2.101465-8.fc42            fedora    24.8 KiB
 perl-Config-Perl-V                                         noarch 0.38-2.fc42                fedora    25.9 KiB
 perl-Config-Tiny                                           noarch 2.30-5.fc42                fedora    50.7 KiB
 perl-Context-Preserve                                      noarch 0.03-23.fc42               fedora    29.6 KiB
 perl-Cpanel-JSON-XS                                        x86_64 4.39-2.fc42                fedora   395.1 KiB
 perl-Crypt-RC4                                             noarch 2.02-41.fc42               fedora     7.6 KiB
 perl-DBD-SQLite                                            x86_64 1.76-2.fc42                fedora   569.4 KiB
 perl-DBI                                                   x86_64 1.647-1.fc42               fedora     2.2 MiB
 perl-DBIx-Class                                            noarch 0.082844-1.fc42            fedora     3.3 MiB
 perl-DBIx-ContextualFetch                                  noarch 1.03-53.fc42               fedora     8.2 KiB
 perl-DBIx-Simple                                           noarch 1.37-24.fc42               fedora    71.8 KiB
 perl-DBIx-XHTML_Table                                      noarch 1.49-26.fc42               fedora    67.9 KiB
 perl-DBM_Filter                                            noarch 0.06-517.fc42              updates   28.5 KiB
 perl-DB_File                                               x86_64 1.859-513.fc42             fedora   188.8 KiB
 perl-Data-Dump                                             noarch 1.25-12.fc42               fedora    50.2 KiB
 perl-Data-Dumper-Concise                                   noarch 2.023-25.fc42              fedora    22.6 KiB
 perl-Data-Perl                                             noarch 0.002011-16.fc42           fedora    89.2 KiB
 perl-Data-Section                                          noarch 0.200008-7.fc42            fedora    42.7 KiB
 perl-Date-Calc                                             noarch 6.4-30.fc42                fedora   683.9 KiB
 perl-Date-Manip                                            noarch 6.97-1.fc42                fedora    10.7 MiB
 perl-DateTime-Format-Strptime                              noarch 1:1.79-12.fc42             fedora    96.3 KiB
 perl-Devel-ArgNames                                        noarch 0.03-34.fc42               fedora     3.7 KiB
 perl-Devel-CheckOS                                         noarch 2.04-3.fc42                fedora   266.6 KiB
 perl-Devel-Declare                                         x86_64 0.006022-22.fc42           fedora   117.5 KiB
 perl-Devel-FastProf                                        x86_64 0.08-49.fc42               fedora    40.2 KiB
 perl-Devel-GlobalDestruction                               noarch 0.14-26.fc42               fedora    16.6 KiB
 perl-Devel-OverloadInfo                                    noarch 0.007-12.fc42              fedora    29.5 KiB
 perl-Devel-PPPort                                          x86_64 3.72-513.fc42              fedora   892.1 KiB
 perl-Devel-PartialDump                                     noarch 0.20-23.fc42               fedora    42.0 KiB
 perl-Devel-Peek                                            x86_64 1.34-517.fc42              updates   43.5 KiB
 perl-Devel-SelfStubber                                     noarch 1.06-517.fc42              updates    6.7 KiB
 perl-Devel-Size                                            x86_64 0.84-4.fc42                fedora    41.7 KiB
 perl-Devel-SmallProf                                       noarch 2.02-50.fc42               fedora    21.1 KiB
 perl-Digest-HMAC                                           noarch 1.05-2.fc42                fedora    29.5 KiB
 perl-Digest-MD4                                            x86_64 1.9-42.fc42                fedora    67.0 KiB
 perl-Digest-Perl-MD5                                       noarch 1.9-33.fc42                fedora    16.6 KiB
 perl-Digest-SHA                                            x86_64 1:6.04-513.fc42            fedora   112.5 KiB
 perl-DirHandle                                             noarch 1.05-517.fc42              updates    3.4 KiB
 perl-Dumpvalue                                             noarch 2.27-517.fc42              updates   19.8 KiB
 perl-Email-Date-Format                                     noarch 1.008-6.fc42               fedora    24.8 KiB
 perl-Email-Valid                                           noarch 1.204-3.fc42               fedora    45.1 KiB
 perl-Encode-devel                                          x86_64 4:3.21-512.fc42            fedora    99.6 KiB
 perl-Env                                                   noarch 1.06-512.fc42              fedora    26.1 KiB
 perl-ExtUtils-CBuilder                                     noarch 1:0.280240-512.fc42        fedora    96.9 KiB
 perl-ExtUtils-Command                                      noarch 2:7.74-1.fc42              updates    9.6 KiB
 perl-ExtUtils-Config                                       noarch 0.010-2.fc42               fedora    30.2 KiB
 perl-ExtUtils-Constant                                     noarch 0.25-517.fc42              updates   85.8 KiB
 perl-ExtUtils-Embed                                        noarch 1.35-517.fc42              updates   15.5 KiB
 perl-ExtUtils-HasCompiler                                  noarch 0.025-3.fc42               fedora    34.4 KiB
 perl-ExtUtils-Helpers                                      noarch 0.028-2.fc42               fedora    30.3 KiB
 perl-ExtUtils-Install                                      noarch 2.22-512.fc42              fedora    85.5 KiB
 perl-ExtUtils-InstallPaths                                 noarch 0.014-2.fc42               fedora    45.0 KiB
 perl-ExtUtils-MM-Utils                                     noarch 2:7.74-1.fc42              updates    2.9 KiB
 perl-ExtUtils-MakeMaker                                    noarch 2:7.74-1.fc42              updates  739.4 KiB
 perl-ExtUtils-Manifest                                     noarch 1:1.75-512.fc42            fedora    84.8 KiB
 perl-ExtUtils-Miniperl                                     noarch 1.14-517.fc42              updates    8.2 KiB
 perl-ExtUtils-ParseXS                                      noarch 1:3.51-512.fc42            fedora   399.6 KiB
 perl-File-Copy-Recursive                                   noarch 0.45-17.fc42               fedora    41.1 KiB
 perl-File-DosGlob                                          x86_64 1.12-517.fc42              updates   20.8 KiB
 perl-File-Fetch                                            noarch 1.04-512.fc42              fedora    59.2 KiB
 perl-File-Find-Rule                                        noarch 0.34-30.fc42               fedora    42.3 KiB
 perl-File-HomeDir                                          noarch 1.006-14.fc42              fedora   119.3 KiB
 perl-File-Listing                                          noarch 6.16-5.fc42                fedora    41.2 KiB
 perl-File-MMagic                                           noarch 1.30-35.fc42               fedora    76.9 KiB
 perl-File-ShareDir-Install                                 noarch 0.14-8.fc42                fedora    37.2 KiB
 perl-File-Which                                            noarch 1.27-13.fc42               fedora    30.4 KiB
 perl-File-chdir                                            noarch 0.1011-27.fc42             fedora    45.7 KiB
 perl-File-chmod                                            noarch 0.42-32.fc42               fedora    19.2 KiB
 perl-File-pushd                                            noarch 1.016-22.fc42              fedora    35.6 KiB
 perl-FileCache                                             noarch 1.10-517.fc42              updates    7.4 KiB
 perl-Filter-Simple                                         noarch 0.96-512.fc42              fedora    50.7 KiB
 perl-GDBM_File                                             x86_64 1:1.24-517.fc42            updates   79.6 KiB
 perl-GSSAPI                                                x86_64 0.28-48.fc42               fedora   120.7 KiB
 perl-Getopt-Long-Descriptive                               noarch 0.116-2.fc42               fedora    83.6 KiB
 perl-Git-CPAN-Patch                                        noarch 2.5.0-9.fc42               fedora   104.7 KiB
 perl-Git-Repository                                        noarch 1.325-14.fc42              fedora   111.0 KiB
 perl-Git-Version-Compare                                   noarch 1.005-7.fc42               fedora    32.6 KiB
 perl-Graph                                                 noarch 0.97.27-5.fc42             fedora   301.6 KiB
 perl-HTTP-Cookies                                          noarch 6.11-5.fc42                fedora    73.4 KiB
 perl-HTTP-Negotiate                                        noarch 6.01-40.fc42               fedora    27.6 KiB
 perl-Hash-Merge                                            noarch 0.302-14.fc42              fedora    33.2 KiB
 perl-Hash-Merge-Simple                                     noarch 0.052-2.fc42               fedora    31.8 KiB
 perl-Hash-Util                                             x86_64 0.32-517.fc42              updates   55.0 KiB
 perl-Heap                                                  noarch 0.80-47.fc42               fedora    63.1 KiB
 perl-I18N-Collate                                          noarch 1.02-517.fc42              updates    7.1 KiB
 perl-IO-Compress-Lzma                                      noarch 2.213-2.fc42               fedora   215.2 KiB
 perl-IO-Interactive                                        noarch 1.027-1.fc42               updates   33.9 KiB
 perl-IO-String                                             noarch 1.08-52.fc42               fedora    16.8 KiB
 perl-IO-TieCombine                                         noarch 1.005-28.fc42              fedora    33.1 KiB
 perl-IO-Zlib                                               noarch 1:1.15-512.fc42            fedora    25.7 KiB
 perl-IO-stringy                                            noarch 2.113-16.fc42              fedora   125.2 KiB
 perl-IPC-Cmd                                               noarch 2:1.04-513.fc42            fedora    84.9 KiB
 perl-IPC-Run3                                              noarch 0.049-3.fc42               fedora    60.3 KiB
 perl-IPC-SysV                                              x86_64 2.09-513.fc42              fedora    73.7 KiB
 perl-IPC-System-Simple                                     noarch 1.30-15.fc42               fedora    71.7 KiB
 perl-Image-Base                                            noarch 1.17-31.fc42               fedora    35.3 KiB
 perl-Image-Info                                            noarch 1.45-2.fc42                fedora   172.2 KiB
 perl-Image-Xbm                                             noarch 1.11-2.fc42                fedora    33.4 KiB
 perl-Image-Xpm                                             noarch 1.13-26.fc42               fedora    27.2 KiB
 perl-Import-Into                                           noarch 1.002005-28.fc42           fedora    20.0 KiB
 perl-JSON-Any                                              noarch 1.40-5.fc42                fedora    37.3 KiB
 perl-JSON-MaybeXS                                          noarch 1.004008-3.fc42            fedora    45.8 KiB
 perl-JSON-PP                                               noarch 1:4.16-513.fc42            fedora   141.8 KiB
 perl-Jcode                                                 noarch 2.07-45.fc42               fedora    58.0 KiB
 perl-LWP-Protocol-https                                    noarch 6.14-3.fc42                fedora    29.7 KiB
 perl-Lingua-EN-Inflect                                     noarch 1.905-13.fc42              fedora   126.2 KiB
 perl-List-Compare                                          noarch 0.55-13.fc42               fedora   221.1 KiB
 perl-List-Pairwise                                         noarch 1.03-31.fc42               fedora    21.4 KiB
 perl-List-SomeUtils                                        noarch 0.59-7.fc42                fedora   107.2 KiB
 perl-Log-Any                                               noarch 1.717-5.fc42               fedora   186.5 KiB
 perl-Log-Dispatch                                          noarch 2.71-6.fc42                fedora   142.9 KiB
 perl-Log-Dispatch-Array                                    noarch 1.005-7.fc42               fedora    24.4 KiB
 perl-Log-Dispatchouli                                      noarch 3.009-2.fc42               fedora   108.6 KiB
 perl-Log-Message                                           noarch 1:0.08-36.fc42             fedora    40.4 KiB
 perl-Log-Message-Simple                                    noarch 0.10-323.fc42              fedora    11.9 KiB
 perl-MIME-Charset                                          noarch 1.013.1-7.fc42             fedora   104.4 KiB
 perl-MIME-Lite                                             noarch 3.033-14.fc42              fedora   245.9 KiB
 perl-MIME-Types                                            noarch 2.27-1.fc42                fedora   184.8 KiB
 perl-Mail-Sender                                           noarch 1:0.903-26.fc42            fedora   160.6 KiB
 perl-Mail-Sendmail                                         noarch 0.80-23.fc42               fedora    65.0 KiB
 perl-MailTools                                             noarch 2.22-2.fc42                fedora   203.5 KiB
 perl-Mason-Tidy                                            noarch 2.57-29.fc42               fedora    48.6 KiB
 perl-Math-Base36                                           noarch 0.14-30.fc42               fedora     5.6 KiB
 perl-Math-BigInt-FastCalc                                  x86_64 0.501.900-1.fc42           fedora    43.9 KiB
 perl-Memoize                                               noarch 1.16-517.fc42              updates   64.5 KiB
 perl-MetaCPAN-API                                          noarch 0.51-23.fc42               fedora    62.9 KiB
 perl-MetaCPAN-Client                                       noarch 2.033000-2.fc42            fedora   177.0 KiB
 perl-Method-Signatures-Simple                              noarch 1.07-29.fc42               fedora    31.1 KiB
 perl-Mixin-Linewise                                        noarch 0.111-7.fc42               fedora    43.9 KiB
 perl-Module-Build                                          noarch 2:0.42.34-8.fc42           fedora   654.2 KiB
 perl-Module-CPANfile                                       noarch 1.1004-22.fc42             fedora    66.4 KiB
 perl-Module-CoreList-tools                                 noarch 1:5.20250421-1.fc42        updates   18.6 KiB
 perl-Module-Find                                           noarch 0.17-1.fc42                fedora    18.9 KiB
 perl-Module-Loaded                                         noarch 1:0.08-517.fc42            updates    5.0 KiB
 perl-Module-Locate                                         noarch 1.80-27.fc42               fedora    31.4 KiB
 perl-Module-Pluggable                                      noarch 2:6.3-2.fc42               fedora    56.1 KiB
 perl-Module-Runtime-Conflicts                              noarch 0.003-26.fc42              fedora    26.4 KiB
 perl-Module-Signature                                      noarch 0.89-2.fc42                fedora   139.4 KiB
 perl-Moo                                                   noarch 2.005005-8.fc42            fedora   168.5 KiB
 perl-MooX-HandlesVia                                       noarch 0.001009-14.fc42           fedora    43.1 KiB
 perl-Moose                                                 x86_64 2.2207-6.fc42              fedora     3.4 MiB
 perl-MooseX-App                                            noarch 1.43-5.fc42                fedora   258.0 KiB
 perl-MooseX-LazyRequire                                    noarch 0.11-30.fc42               fedora    28.4 KiB
 perl-MooseX-OneArgNew                                      noarch 0.007-8.fc42               fedora    26.5 KiB
 perl-MooseX-Role-Parameterized                             noarch 1.11-17.fc42               fedora   130.9 KiB
 perl-MooseX-SemiAffordanceAccessor                         noarch 0.10-31.fc42               fedora    19.4 KiB
 perl-MooseX-SetOnce                                        noarch 0.203000-8.fc42            fedora    25.5 KiB
 perl-MooseX-Types                                          noarch 0.50-24.fc42               fedora   170.5 KiB
 perl-MooseX-Types-JSON                                     noarch 1.01-11.fc42               fedora    23.4 KiB
 perl-MooseX-Types-LoadableClass                            noarch 0.015-24.fc42              fedora    25.3 KiB
 perl-MooseX-Types-Path-Class                               noarch 0.09-26.fc42               fedora    44.2 KiB
 perl-MooseX-Types-Perl                                     noarch 0.101344-8.fc42            fedora    29.0 KiB
 perl-Mouse                                                 x86_64 2.5.11-2.fc42              fedora     1.0 MiB
 perl-Mozilla-CA                                            noarch 20250202-1.fc42            fedora    10.9 KiB
 perl-NEXT                                                  noarch 0.69-517.fc42              updates   23.5 KiB
 perl-NTLM                                                  noarch 1.09-40.fc42               fedora    31.2 KiB
 perl-Net                                                   noarch 1.04-517.fc42              updates   22.3 KiB
 perl-Net-HTTP                                              noarch 6.23-6.fc42                fedora    74.7 KiB
 perl-Net-Ping                                              noarch 2.76-512.fc42              fedora   134.2 KiB
 perl-Net-SMTP-SSL                                          noarch 1.04-26.fc42               fedora     4.2 KiB
 perl-Number-Compare                                        noarch 0.03-40.fc42               fedora     4.5 KiB
 perl-ODBM_File                                             x86_64 1.18-517.fc42              updates   28.3 KiB
 perl-OLE-Storage_Lite                                      noarch 0.22-6.fc42                fedora    85.8 KiB
 perl-Object-Accessor                                       noarch 1:0.48-35.fc42             fedora    31.2 KiB
 perl-Opcode                                                x86_64 1.65-517.fc42              updates   48.5 KiB
 perl-PPI                                                   noarch 1.281-2.fc42               fedora   710.1 KiB
 perl-PPIx-QuoteLike                                        noarch 0.023-8.fc42               fedora   165.8 KiB
 perl-PPIx-Regexp                                           noarch 0.089-1.fc42               updates  661.6 KiB
 perl-PPIx-Utils                                            noarch 0.003-14.fc42              fedora    86.1 KiB
 perl-Package-Constants                                     noarch 1:0.06-32.fc42             fedora     5.7 KiB
 perl-Package-DeprecationManager                            noarch 0.18-6.fc42                fedora    38.7 KiB
 perl-Package-Variant                                       noarch 1.003002-27.fc42           fedora    31.9 KiB
 perl-Parallel-ForkManager                                  noarch 2.03-2.fc42                fedora    50.0 KiB
 perl-Params-Validate                                       x86_64 1.31-10.fc42               fedora   148.9 KiB
 perl-Parse-CPAN-Packages                                   noarch 2.40-29.fc42               fedora    31.3 KiB
 perl-Parse-PMFile                                          noarch 0.47-3.fc42                fedora    38.7 KiB
 perl-Parse-RecDescent                                      noarch 1.967015-24.fc42           fedora   522.0 KiB
 perl-Path-Class                                            noarch 0.37-29.fc42               fedora    94.2 KiB
 perl-Path-Tiny                                             noarch 0.148-1.fc42               fedora   234.5 KiB
 perl-Perl-OSType                                           noarch 1.010-513.fc42             fedora    32.8 KiB
 perl-Perl-Tags                                             noarch 0.32-31.fc42               fedora   152.3 KiB
 perl-Perl-Tidy-Sweetened                                   noarch 1.20-6.fc42                fedora    68.0 KiB
 perl-PerlIO-via-QuotedPrint                                noarch 0.10-512.fc42              fedora    30.2 KiB
 perl-Pod-Checker                                           noarch 4:1.77-512.fc42            fedora    52.2 KiB
 perl-Pod-Elemental                                         noarch 0.103006-7.fc42            fedora   143.9 KiB
 perl-Pod-Eventual                                          noarch 0.094003-7.fc42            fedora    40.2 KiB
 perl-Pod-Functions                                         noarch 1.14-517.fc42              updates   14.2 KiB
 perl-Pod-POM                                               noarch 2.01-30.fc42               fedora   180.1 KiB
 perl-Pod-Parser                                            noarch 1.67-5.fc42                fedora   262.6 KiB
 perl-Pod-Spell                                             noarch 1.27-2.fc42                fedora    69.2 KiB
 perl-Pod-Tidy                                              noarch 0.10-28.fc42               fedora    56.2 KiB
 perl-Pod-Wrap                                              noarch 0.01-27.fc42               fedora    27.9 KiB
 perl-Readonly                                              noarch 2.05-28.fc42               fedora    95.7 KiB
 perl-Role-HasMessage                                       noarch 0.007-8.fc42               fedora    28.1 KiB
 perl-Role-Identifiable                                     noarch 0.009-8.fc42               fedora    29.3 KiB
 perl-SQL-Abstract                                          noarch 2.000001-17.fc42           fedora   331.5 KiB
 perl-SQL-Abstract-Classic                                  noarch 1.91-16.fc42               fedora   126.5 KiB
 perl-SQL-Interp                                            noarch 1.27-14.fc42               fedora    74.4 KiB
 perl-SQL-Translator                                        noarch 1.66-2.fc42                fedora     2.5 MiB
 perl-SVN-Look                                              noarch 0.43-9.fc42                fedora    41.2 KiB
 perl-Safe                                                  noarch 2.46-517.fc42              updates   30.6 KiB
 perl-Safe-Isa                                              noarch 1.000010-21.fc42           fedora    13.4 KiB
 perl-Scope-Guard                                           noarch 0.21-29.fc42               fedora    15.3 KiB
 perl-Search-Dict                                           noarch 1.07-517.fc42              updates    4.7 KiB
 perl-SelfLoader                                            noarch 1.27-517.fc42              updates   22.4 KiB
 perl-Set-Object                                            x86_64 1.42-12.fc42               fedora   103.4 KiB
 perl-Sort-Key                                              x86_64 1.33-33.fc42               fedora    73.8 KiB
 perl-Specio-Library-Path-Tiny                              noarch 0.05-8.fc42                fedora    36.0 KiB
 perl-Spreadsheet-ParseExcel                                x86_64 1:0.66-4.fc42              fedora   549.7 KiB
 perl-Spreadsheet-WriteExcel                                noarch 2.40-33.fc42               fedora     1.9 MiB
 perl-String-Errf                                           noarch 0.009-7.fc42               fedora    44.7 KiB
 perl-String-Flogger                                        noarch 1.101246-7.fc42            fedora    26.0 KiB
 perl-String-Format                                         noarch 1.18-21.fc42               fedora    33.8 KiB
 perl-String-Formatter                                      noarch 1.235-7.fc42               fedora    71.1 KiB
 perl-String-RewritePrefix                                  noarch 0.009-7.fc42               fedora    26.1 KiB
 perl-String-ShellQuote                                     noarch 1.04-45.fc42               fedora    15.2 KiB
 perl-String-Truncate                                       noarch 1.100603-7.fc42            fedora    34.6 KiB
 perl-Sub-Exporter-ForMethods                               noarch 0.100055-7.fc42            fedora    28.2 KiB
 perl-Sub-Exporter-GlobExporter                             noarch 0.006-7.fc42               fedora    28.3 KiB
 perl-Sub-Name                                              x86_64 0.28-2.fc42                fedora    48.9 KiB
 perl-Sub-Quote                                             noarch 2.006008-7.fc42            fedora    65.6 KiB
 perl-Sys-Hostname                                          x86_64 1.25-517.fc42              updates   15.8 KiB
 perl-Sys-Syslog                                            x86_64 0.36-513.fc42              fedora    94.7 KiB
 perl-System-Command                                        noarch 1.122-6.fc42               fedora    66.0 KiB
 perl-Task-Weaken                                           noarch 1.06-21.fc42               fedora    27.5 KiB
 perl-TeX-Hyphen                                            noarch 1.18-25.fc42               fedora    54.5 KiB
 perl-Template-Toolkit                                      x86_64 3.102-2.fc42               fedora     6.1 MiB
 perl-Term-Complete                                         noarch 1.403-517.fc42             updates    5.7 KiB
 perl-Term-Encoding                                         noarch 0.03-19.fc42               fedora    22.4 KiB
 perl-Term-ReadLine                                         noarch 1.17-517.fc42              updates   17.3 KiB
 perl-Term-Size-Perl                                        x86_64 0.031-21.fc42              fedora    25.4 KiB
 perl-Term-Table                                            noarch 0.024-2.fc42               fedora    77.9 KiB
 perl-Term-UI                                               noarch 0.50-13.fc42               fedora    34.9 KiB
 perl-Test                                                  noarch 1.31-517.fc42              updates   37.0 KiB
 perl-Test-Deep                                             noarch 1.205-1.fc42               updates  265.7 KiB
 perl-Test-Harness                                          noarch 1:3.50-2.fc42              fedora   559.6 KiB
 perl-Test-Simple                                           noarch 3:1.302210-1.fc42          fedora     1.7 MiB
 perl-Text-Abbrev                                           noarch 1.02-517.fc42              updates    3.1 KiB
 perl-Text-Aligner                                          noarch 0.16-15.fc42               fedora    21.4 KiB
 perl-Text-Autoformat                                       noarch 1.750000-17.fc42           fedora    87.3 KiB
 perl-Text-Balanced                                         noarch 2.06-512.fc42              fedora   111.4 KiB
 perl-Text-CSV_XS                                           x86_64 1.60-1.fc42                fedora   353.2 KiB
 perl-Text-Diff                                             noarch 1.45-23.fc42               fedora    83.0 KiB
 perl-Text-Glob                                             noarch 0.11-25.fc42               fedora     8.4 KiB
 perl-Text-RecordParser                                     noarch 1.6.5-32.fc42              fedora    64.3 KiB
 perl-Text-Reform                                           noarch 1.20-41.fc42               fedora    83.1 KiB
 perl-Text-Table                                            noarch 1.135-7.fc42               fedora    62.9 KiB
 perl-Text-Template                                         noarch 1.61-7.fc42                fedora   112.4 KiB
 perl-Text-WagnerFischer                                    noarch 0.04-30.fc42               fedora     9.0 KiB
 perl-Thread                                                noarch 3.05-517.fc42              updates   12.1 KiB
 perl-Thread-Queue                                          noarch 3.14-512.fc42              fedora    28.9 KiB
 perl-Thread-Semaphore                                      noarch 2.13-517.fc42              updates   10.0 KiB
 perl-Throwable                                             noarch 1:1.001-7.fc42             fedora    43.9 KiB
 perl-Tie                                                   noarch 4.6-517.fc42               updates   32.0 KiB
 perl-Tie-File                                              noarch 1.09-517.fc42              updates   85.7 KiB
 perl-Tie-IxHash                                            noarch 1.23-40.fc42               fedora    19.6 KiB
 perl-Tie-Memoize                                           noarch 1.1-517.fc42               updates    6.2 KiB
 perl-Tie-RefHash                                           noarch 1.41-2.fc42                fedora    35.9 KiB
 perl-Time                                                  noarch 1.04-517.fc42              updates    9.7 KiB
 perl-Time-Duration-Parse                                   noarch 0.16-12.fc42               fedora    26.5 KiB
 perl-Time-Piece                                            x86_64 1.3401-517.fc42            updates   71.0 KiB
 perl-Type-Tiny                                             noarch 2.008002-1.fc42            updates    1.0 MiB
 perl-Types-Path-Tiny                                       noarch 0.006-22.fc42              fedora    23.9 KiB
 perl-UNIVERSAL-isa                                         noarch 1.20171012-23.fc42         fedora    31.3 KiB
 perl-Unicode-Collate                                       x86_64 1.31-512.fc42              fedora     4.2 MiB
 perl-Unicode-Map                                           x86_64 0.112-66.fc42              fedora   691.4 KiB
 perl-Unicode-Normalize                                     x86_64 1.32-512.fc42              fedora   465.1 KiB
 perl-Unicode-UCD                                           noarch 0.78-517.fc42              updates  204.4 KiB
 perl-Unicode-UTF8                                          x86_64 0.62-27.fc42               fedora    43.8 KiB
 perl-WWW-RobotRules                                        noarch 6.02-41.fc42               fedora    24.3 KiB
 perl-XML-LibXML                                            x86_64 1:2.0210-4.fc42            fedora   912.6 KiB
 perl-XML-NamespaceSupport                                  noarch 1.12-25.fc42               fedora    44.7 KiB
 perl-XML-Parser                                            x86_64 2.47-6.fc42                fedora   649.2 KiB
 perl-XML-SAX                                               noarch 1.02-18.fc42               fedora   120.2 KiB
 perl-XML-SAX-Base                                          noarch 1.09-25.fc42               fedora   172.7 KiB
 perl-XML-Simple                                            noarch 2.25-22.fc42               fedora   177.6 KiB
 perl-XML-Writer                                            noarch 0.900-16.fc42              fedora    65.8 KiB
 perl-YAML                                                  noarch 1.31-5.fc42                fedora   188.7 KiB
 perl-YAML-LibYAML                                          x86_64 1:0.903.0-1.fc42           fedora   100.4 KiB
 perl-YAML-PP                                               noarch 0.39.0-1.fc42              fedora   490.5 KiB
 perl-YAML-Tiny                                             noarch 1.76-2.fc42                fedora    87.3 KiB
 perl-aliased                                               noarch 0.34-30.fc42               fedora    36.9 KiB
 perl-autodie                                               noarch 2.37-513.fc42              fedora   214.9 KiB
 perl-autouse                                               noarch 1.11-517.fc42              updates    5.9 KiB
 perl-bignum                                                noarch 0.67-513.fc42              fedora   133.1 KiB
 perl-blib                                                  noarch 1.07-517.fc42              updates    3.2 KiB
 perl-boolean                                               noarch 0.46-25.fc42               fedora    33.5 KiB
 perl-debugger                                              noarch 1.60-517.fc42              updates  402.2 KiB
 perl-deprecate                                             noarch 0.04-517.fc42              updates    6.5 KiB
 perl-devel                                                 x86_64 4:5.40.2-517.fc42          updates    8.0 MiB
 perl-diagnostics                                           noarch 1.40-517.fc42              updates  465.4 KiB
 perl-doc                                                   noarch 5.40.2-517.fc42            updates   11.0 MiB
 perl-encoding-warnings                                     noarch 0.14-517.fc42              updates   10.1 KiB
 perl-experimental                                          noarch 0.034-2.fc42               fedora    42.4 KiB
 perl-fields                                                noarch 2.27-517.fc42              updates   11.8 KiB
 perl-filetest                                              noarch 1.03-517.fc42              updates    6.4 KiB
 perl-inc-latest                                            noarch 2:0.500-30.fc42            fedora    34.6 KiB
 perl-less                                                  noarch 0.03-517.fc42              updates    4.9 KiB
 perl-libnetcfg                                             noarch 4:5.40.2-517.fc42          updates   16.9 KiB
 perl-libwww-perl                                           noarch 6.77-3.fc42                fedora   521.0 KiB
 perl-local-lib                                             noarch 2.000029-9.fc42            fedora   117.6 KiB
 perl-macros                                                noarch 4:5.40.2-517.fc42          updates    5.5 KiB
 perl-meta-notation                                         noarch 5.40.2-517.fc42            updates    2.0 KiB
 perl-perlfaq                                               noarch 5.20240218-512.fc42        fedora   732.6 KiB
 perl-ph                                                    x86_64 5.40.2-517.fc42            updates  270.8 KiB
 perl-sigtrap                                               noarch 1.10-517.fc42              updates   11.0 KiB
 perl-sort                                                  noarch 2.05-517.fc42              updates    4.8 KiB
 perl-strictures                                            noarch 2.000006-21.fc42           fedora    52.0 KiB
 perl-subs                                                  noarch 1.04-517.fc42              updates    2.1 KiB
 perl-threads                                               x86_64 1:2.40-512.fc42            fedora   115.0 KiB
 perl-threads-shared                                        x86_64 1.69-512.fc42              fedora    83.6 KiB
 perl-utils                                                 noarch 5.40.2-517.fc42            updates   96.8 KiB
 perl-vmsish                                                noarch 1.04-517.fc42              updates    6.5 KiB
 php-cli                                                    x86_64 8.4.7-1.fc42               updates   12.2 MiB
 php-common                                                 x86_64 8.4.7-1.fc42               updates    9.5 MiB
 php-intl                                                   x86_64 8.4.7-1.fc42               updates  583.1 KiB
 php-pear-PHP-CodeSniffer                                   noarch 3.13.0-1.fc42              updates    3.2 MiB
 php-xml                                                    x86_64 8.4.7-1.fc42               updates    3.5 MiB
 rgb                                                        x86_64 1.1.0-2.fc42               fedora    30.0 KiB
 sombok                                                     x86_64 2.4.0-23.fc42              fedora   131.7 KiB
 systemtap-sdt-devel                                        x86_64 5.3-1.fc42                 updates  182.9 KiB
 systemtap-sdt-dtrace                                       x86_64 5.3-1.fc42                 updates  179.6 KiB
Installing weak dependencies:
 nodejs-docs                                                noarch 1:22.15.1-1.fc42           updates   94.8 MiB
 nodejs-full-i18n                                           x86_64 1:22.15.1-1.fc42           updates   30.4 MiB
 nodejs-npm                                                 x86_64 1:10.9.2-1.22.15.1.1.fc42  updates    9.3 MiB
 perl-Term-Size-Any                                         noarch 0.002-44.fc42              fedora     8.0 KiB
 perl-Type-Tiny-XS                                          x86_64 0.025-10.fc42              fedora    87.9 KiB
 perl-Unicode-LineBreak                                     x86_64 2019.001-23.fc42           fedora   260.5 KiB
Installing groups:
 Perl Development                                                                                               

Transaction Summary:
 Installing:       408 packages
 Upgrading:          6 packages
 Replacing:          6 packages

Total size of inbound packages is 152 MiB. Need to download 152 MiB.
After this operation, 404 MiB extra will be used (install 556 MiB, remove 153 MiB).
Is this ok [y/N]: y
[  1/414] git-cpan-patch-0:2.5.0-9.fc42.noarch      100% | 150.0 KiB/s |  21.7 KiB |  00m00s
[  2/414] perl-CPAN-Uploader-0:0.103018-7.fc42.noar 100% | 190.1 KiB/s |  28.1 KiB |  00m00s
[  3/414] perl-App-cpanminus-0:1.7048-2.fc42.noarch 100% | 500.0 KiB/s |  85.5 KiB |  00m00s
[  4/414] perl-Devel-Confess-0:0.009004-25.fc42.noa 100% | 983.6 KiB/s |  26.6 KiB |  00m00s
[  5/414] perl-Module-Build-Tiny-0:0.051-2.fc42.noa 100% |   1.1 MiB/s |  27.0 KiB |  00m00s
[  6/414] perl-Data-Printer-0:1.002001-3.fc42.noarc 100% |   2.1 MiB/s | 147.7 KiB |  00m00s
[  7/414] perl-Pod-Readme-0:1.2.3-19.fc42.noarch    100% |   1.5 MiB/s |  48.0 KiB |  00m00s
[  8/414] perl-Devel-NYTProf-0:6.14-6.fc42.x86_64   100% |   4.6 MiB/s | 393.7 KiB |  00m00s
[  9/414] cpanspec-0:1.78-54.fc42.noarch            100% |   1.2 MiB/s |  33.6 KiB |  00m00s
[ 10/414] perl-Software-License-0:0.104006-3.fc42.n 100% |   2.9 MiB/s | 150.1 KiB |  00m00s
[ 11/414] perl-Code-TidyAll-0:0.84-5.fc42.noarch    100% |   5.5 MiB/s | 161.9 KiB |  00m00s
[ 12/414] perl-Modern-Perl-0:1.20241001-2.fc42.noar 100% |   1.1 MiB/s |  25.3 KiB |  00m00s
[ 13/414] perl-Perl-Critic-0:1.156-2.fc42.noarch    100% |   5.4 MiB/s | 827.7 KiB |  00m00s
[ 14/414] vim-perl-support-0:5.4-3.fc42.noarch      100% |   5.7 MiB/s | 245.7 KiB |  00m00s
[ 15/414] git-email-0:2.49.0-1.fc42.noarch          100% |   1.6 MiB/s |  56.4 KiB |  00m00s
[ 16/414] perl-Git-CPAN-Patch-0:2.5.0-9.fc42.noarch 100% |   3.6 MiB/s |  62.1 KiB |  00m00s
[ 17/414] perl-CPAN-DistnameInfo-0:0.12-32.fc42.noa 100% | 749.8 KiB/s |  14.2 KiB |  00m00s
[ 18/414] perl-CPAN-Meta-0:2.150010-512.fc42.noarch 100% |   6.9 MiB/s | 190.8 KiB |  00m00s
[ 19/414] perl-CPAN-Meta-Check-0:0.018-5.fc42.noarc 100% |   1.2 MiB/s |  20.2 KiB |  00m00s
[ 20/414] perl-CPAN-Meta-Requirements-0:2.143-10.fc 100% |   1.7 MiB/s |  35.2 KiB |  00m00s
[ 21/414] perl-CPAN-Meta-YAML-0:0.020-2.fc42.noarch 100% |   1.4 MiB/s |  26.8 KiB |  00m00s
[ 22/414] perl-Digest-SHA-1:6.04-513.fc42.x86_64    100% |   3.4 MiB/s |  62.2 KiB |  00m00s
[ 23/414] perl-ExtUtils-Manifest-1:1.75-512.fc42.no 100% |   2.2 MiB/s |  34.1 KiB |  00m00s
[ 24/414] perl-File-pushd-0:1.016-22.fc42.noarch    100% |   1.3 MiB/s |  23.3 KiB |  00m00s
[ 25/414] perl-ExtUtils-Install-0:2.22-512.fc42.noa 100% |   1.5 MiB/s |  43.5 KiB |  00m00s
[ 26/414] perl-Parse-PMFile-0:0.47-3.fc42.noarch    100% |   1.4 MiB/s |  22.9 KiB |  00m00s
[ 27/414] perl-Module-CPANfile-0:1.1004-22.fc42.noa 100% |   1.8 MiB/s |  38.9 KiB |  00m00s
[ 28/414] perl-String-ShellQuote-0:1.04-45.fc42.noa 100% |   1.3 MiB/s |  18.5 KiB |  00m00s
[ 29/414] perl-Module-Build-2:0.42.34-8.fc42.noarch 100% |   6.6 MiB/s | 251.5 KiB |  00m00s
[ 30/414] perl-YAML-0:1.31-5.fc42.noarch            100% |   3.8 MiB/s |  86.2 KiB |  00m00s
[ 31/414] perl-Getopt-Long-Descriptive-0:0.116-2.fc 100% |   2.3 MiB/s |  42.2 KiB |  00m00s
[ 32/414] perl-local-lib-0:2.000029-9.fc42.noarch   100% |   2.8 MiB/s |  66.3 KiB |  00m00s
[ 33/414] perl-LWP-Protocol-https-0:6.14-3.fc42.noa 100% | 688.7 KiB/s |  21.3 KiB |  00m00s
[ 34/414] perl-File-HomeDir-0:1.006-14.fc42.noarch  100% |   2.6 MiB/s |  59.3 KiB |  00m00s
[ 35/414] perl-libwww-perl-0:6.77-3.fc42.noarch     100% |   7.5 MiB/s | 207.4 KiB |  00m00s
[ 36/414] flamegraph-0:1.0-21.20241020git41fee1f.fc 100% |   1.5 MiB/s |  30.6 KiB |  00m00s
[ 37/414] perl-File-Which-0:1.27-13.fc42.noarch     100% |   1.1 MiB/s |  21.6 KiB |  00m00s
[ 38/414] perl-CPAN-Requirements-Dynamic-0:0.001-5. 100% | 788.2 KiB/s |  22.1 KiB |  00m00s
[ 39/414] perl-ExtUtils-CBuilder-1:0.280240-512.fc4 100% |   2.9 MiB/s |  50.6 KiB |  00m00s
[ 40/414] perl-ExtUtils-Config-0:0.010-2.fc42.noarc 100% |   1.3 MiB/s |  22.3 KiB |  00m00s
[ 41/414] perl-ExtUtils-InstallPaths-0:0.014-2.fc42 100% |   1.4 MiB/s |  27.1 KiB |  00m00s
[ 42/414] perl-ExtUtils-Helpers-0:0.028-2.fc42.noar 100% | 969.9 KiB/s |  22.3 KiB |  00m00s
[ 43/414] perl-ExtUtils-ParseXS-1:3.51-512.fc42.noa 100% |   7.6 MiB/s | 187.2 KiB |  00m00s
[ 44/414] perl-JSON-PP-1:4.16-513.fc42.noarch       100% |   4.0 MiB/s |  65.5 KiB |  00m00s
[ 45/414] perl-B-Keywords-0:1.27-3.fc42.noarch      100% |   1.0 MiB/s |  19.0 KiB |  00m00s
[ 46/414] perl-Test-Harness-1:3.50-2.fc42.noarch    100% |   8.5 MiB/s | 277.1 KiB |  00m00s
[ 47/414] perl-Config-Tiny-0:2.30-5.fc42.noarch     100% |   1.6 MiB/s |  31.7 KiB |  00m00s
[ 48/414] perl-Module-Pluggable-2:6.3-2.fc42.noarch 100% |   2.2 MiB/s |  31.9 KiB |  00m00s
[ 49/414] perl-List-SomeUtils-0:0.59-7.fc42.noarch  100% |   2.1 MiB/s |  45.1 KiB |  00m00s
[ 50/414] perl-PPI-0:1.281-2.fc42.noarch            100% |  12.0 MiB/s | 367.8 KiB |  00m00s
[ 51/414] perl-PPIx-QuoteLike-0:0.023-8.fc42.noarch 100% |   5.2 MiB/s |  85.2 KiB |  00m00s
[ 52/414] perl-PPIx-Utils-0:0.003-14.fc42.noarch    100% |   1.4 MiB/s |  39.2 KiB |  00m00s
[ 53/414] perl-Pod-Spell-0:1.27-2.fc42.noarch       100% |   2.0 MiB/s |  39.3 KiB |  00m00s
[ 54/414] perl-Pod-Parser-0:1.67-5.fc42.noarch      100% |   4.1 MiB/s | 100.5 KiB |  00m00s
[ 55/414] perl-Readonly-0:2.05-28.fc42.noarch       100% |   2.4 MiB/s |  40.1 KiB |  00m00s
[ 56/414] perl-String-Format-0:1.18-21.fc42.noarch  100% |   1.3 MiB/s |  21.8 KiB |  00m00s
[ 57/414] perl-CPAN-Changes-0:0.500004-3.fc42.noarc 100% |   2.2 MiB/s |  47.8 KiB |  00m00s
[ 58/414] perl-Moo-0:2.005005-8.fc42.noarch         100% |   3.4 MiB/s |  66.0 KiB |  00m00s
[ 59/414] perl-MooX-HandlesVia-0:0.001009-14.fc42.n 100% |   1.5 MiB/s |  32.4 KiB |  00m00s
[ 60/414] perl-Path-Tiny-0:0.148-1.fc42.noarch      100% |   4.4 MiB/s |  72.6 KiB |  00m00s
[ 61/414] perl-Data-Section-0:0.200008-7.fc42.noarc 100% |   1.5 MiB/s |  24.9 KiB |  00m00s
[ 62/414] perl-Archive-Tar-0:3.04-1.fc42.noarch     100% |   3.5 MiB/s |  71.0 KiB |  00m00s
[ 63/414] perl-Text-Template-0:1.61-7.fc42.noarch   100% |   2.3 MiB/s |  59.1 KiB |  00m00s
[ 64/414] perl-Archive-Zip-0:1.68-16.fc42.noarch    100% |   5.2 MiB/s | 111.5 KiB |  00m00s
[ 65/414] perl-Parse-CPAN-Packages-0:2.40-29.fc42.n 100% |   1.5 MiB/s |  22.6 KiB |  00m00s
[ 66/414] perl-Text-Autoformat-0:1.750000-17.fc42.n 100% |   2.2 MiB/s |  44.4 KiB |  00m00s
[ 67/414] perl-Config-INI-0:0.029-8.fc42.noarch     100% |   1.9 MiB/s |  35.2 KiB |  00m00s
[ 68/414] perl-IPC-Run3-0:0.049-3.fc42.noarch       100% |   2.5 MiB/s |  38.2 KiB |  00m00s
[ 69/414] perl-IPC-System-Simple-0:1.30-15.fc42.noa 100% |   1.8 MiB/s |  38.8 KiB |  00m00s
[ 70/414] perl-JSON-MaybeXS-0:1.004008-3.fc42.noarc 100% |   1.2 MiB/s |  27.2 KiB |  00m00s
[ 71/414] perl-List-Compare-0:0.55-13.fc42.noarch   100% |   2.7 MiB/s |  71.5 KiB |  00m00s
[ 72/414] perl-Mason-Tidy-0:2.57-29.fc42.noarch     100% |   1.4 MiB/s |  29.2 KiB |  00m00s
[ 73/414] perl-Log-Any-0:1.717-5.fc42.noarch        100% |   3.9 MiB/s |  99.9 KiB |  00m00s
[ 74/414] perl-Parallel-ForkManager-0:2.03-2.fc42.n 100% |   1.2 MiB/s |  34.0 KiB |  00m00s
[ 75/414] perl-Perl-Tidy-Sweetened-0:1.20-6.fc42.no 100% |   1.9 MiB/s |  39.6 KiB |  00m00s
[ 76/414] perl-Pod-Checker-4:1.77-512.fc42.noarch   100% | 963.0 KiB/s |  31.8 KiB |  00m00s
[ 77/414] perl-Pod-Tidy-0:0.10-28.fc42.noarch       100% |   1.5 MiB/s |  34.5 KiB |  00m00s
[ 78/414] perl-SVN-Look-0:0.43-9.fc42.noarch        100% |   1.2 MiB/s |  25.1 KiB |  00m00s
[ 79/414] perl-Scope-Guard-0:0.21-29.fc42.noarch    100% | 785.1 KiB/s |  14.9 KiB |  00m00s
[ 80/414] perl-Specio-Library-Path-Tiny-0:0.05-8.fc 100% |   1.2 MiB/s |  21.3 KiB |  00m00s
[ 81/414] perl-Time-Duration-Parse-0:0.16-12.fc42.n 100% | 915.4 KiB/s |  20.1 KiB |  00m00s
[ 82/414] perl-Text-Diff-0:1.45-23.fc42.noarch      100% |   1.5 MiB/s |  40.1 KiB |  00m00s
[ 83/414] perl-Test-Simple-3:1.302210-1.fc42.noarch 100% |  13.1 MiB/s | 861.5 KiB |  00m00s
[ 84/414] perl-Devel-FastProf-0:0.08-49.fc42.x86_64 100% |   1.2 MiB/s |  28.4 KiB |  00m00s
[ 85/414] perl-Devel-SmallProf-0:2.02-50.fc42.noarc 100% | 766.0 KiB/s |  19.9 KiB |  00m00s
[ 86/414] perl-Perl-Tags-0:0.32-31.fc42.noarch      100% |   3.6 MiB/s |  66.4 KiB |  00m00s
[ 87/414] perl-Email-Valid-0:1.204-3.fc42.noarch    100% |   1.6 MiB/s |  24.0 KiB |  00m00s
[ 88/414] perl-Authen-SASL-0:2.1700-5.fc42.noarch   100% |   2.2 MiB/s |  62.0 KiB |  00m00s
[ 89/414] perl-MailTools-0:2.22-2.fc42.noarch       100% |   6.2 MiB/s | 107.8 KiB |  00m00s
[ 90/414] perl-Net-SMTP-SSL-0:1.04-26.fc42.noarch   100% | 689.6 KiB/s |  11.7 KiB |  00m00s
[ 91/414] perl-Archive-Any-0:0.0946-18.fc42.noarch  100% |   1.6 MiB/s |  30.3 KiB |  00m00s
[ 92/414] perl-Archive-Extract-1:0.88-13.fc42.noarc 100% |   1.5 MiB/s |  31.8 KiB |  00m00s
[ 93/414] perl-BackPAN-Index-0:0.42-34.fc42.noarch  100% |   2.1 MiB/s |  45.6 KiB |  00m00s
[ 94/414] perl-CPAN-ParseDistribution-0:1.54-25.fc4 100% |   1.9 MiB/s |  29.9 KiB |  00m00s
[ 95/414] perl-File-chdir-0:0.1011-27.fc42.noarch   100% |   1.3 MiB/s |  27.1 KiB |  00m00s
[ 96/414] perl-File-chmod-0:0.42-32.fc42.noarch     100% |   1.0 MiB/s |  17.8 KiB |  00m00s
[ 97/414] perl-CPANPLUS-0:0.991.400-11.fc42.noarch  100% |   8.7 MiB/s | 276.5 KiB |  00m00s
[ 98/414] perl-List-Pairwise-0:1.03-31.fc42.noarch  100% |   1.2 MiB/s |  17.9 KiB |  00m00s
[ 99/414] perl-Git-Repository-0:1.325-14.fc42.noarc 100% |   2.5 MiB/s |  58.8 KiB |  00m00s
[100/414] perl-MetaCPAN-API-0:0.51-23.fc42.noarch   100% |   2.3 MiB/s |  45.5 KiB |  00m00s
[101/414] perl-MetaCPAN-Client-0:2.033000-2.fc42.no 100% |   4.3 MiB/s | 102.3 KiB |  00m00s
[102/414] perl-MooseX-App-0:1.43-5.fc42.noarch      100% |   3.3 MiB/s | 126.7 KiB |  00m00s
[103/414] perl-MooseX-SemiAffordanceAccessor-0:0.10 100% | 612.6 KiB/s |  19.0 KiB |  00m00s
[104/414] perl-Moose-0:2.2207-6.fc42.x86_64         100% |  21.7 MiB/s |   1.3 MiB |  00m00s
[105/414] perl-Path-Class-0:0.37-29.fc42.noarch     100% |   2.4 MiB/s |  50.8 KiB |  00m00s
[106/414] perl-autodie-0:2.37-513.fc42.noarch       100% |   4.7 MiB/s |  96.9 KiB |  00m00s
[107/414] perl-experimental-0:0.034-2.fc42.noarch   100% |   1.6 MiB/s |  27.0 KiB |  00m00s
[108/414] perl-Perl-OSType-0:1.010-513.fc42.noarch  100% |   1.5 MiB/s |  22.8 KiB |  00m00s
[109/414] perl-inc-latest-2:0.500-30.fc42.noarch    100% |   1.1 MiB/s |  23.3 KiB |  00m00s
[110/414] perl-Params-Validate-0:1.31-10.fc42.x86_6 100% |   3.3 MiB/s |  67.8 KiB |  00m00s
[111/414] perl-Mozilla-CA-0:20250202-1.fc42.noarch  100% | 858.6 KiB/s |  14.6 KiB |  00m00s
[112/414] perl-Data-Dump-0:1.25-12.fc42.noarch      100% |   1.6 MiB/s |  32.6 KiB |  00m00s
[113/414] perl-File-Listing-0:6.16-5.fc42.noarch    100% |   1.3 MiB/s |  24.7 KiB |  00m00s
[114/414] perl-Net-HTTP-0:6.23-6.fc42.noarch        100% |   1.5 MiB/s |  39.1 KiB |  00m00s
[115/414] perl-HTTP-Cookies-0:6.11-5.fc42.noarch    100% |   2.0 MiB/s |  37.2 KiB |  00m00s
[116/414] perl-HTTP-Negotiate-0:6.01-40.fc42.noarch 100% | 975.1 KiB/s |  19.5 KiB |  00m00s
[117/414] perl-NTLM-0:1.09-40.fc42.noarch           100% |   1.1 MiB/s |  21.7 KiB |  00m00s
[118/414] perl-WWW-RobotRules-0:6.02-41.fc42.noarch 100% |   1.5 MiB/s |  19.5 KiB |  00m00s
[119/414] perl-ExtUtils-HasCompiler-0:0.025-3.fc42. 100% |   1.4 MiB/s |  22.3 KiB |  00m00s
[120/414] perl-IPC-Cmd-2:1.04-513.fc42.noarch       100% |   1.5 MiB/s |  39.7 KiB |  00m00s
[121/414] perl-Safe-Isa-0:1.000010-21.fc42.noarch   100% | 966.9 KiB/s |  14.5 KiB |  00m00s
[122/414] perl-Task-Weaken-0:1.06-21.fc42.noarch    100% |   1.4 MiB/s |  20.8 KiB |  00m00s
[123/414] perl-Class-Tiny-0:1.008-13.fc42.noarch    100% |   1.7 MiB/s |  28.6 KiB |  00m00s
[124/414] perl-YAML-PP-0:0.39.0-1.fc42.noarch       100% |   7.8 MiB/s | 151.2 KiB |  00m00s
[125/414] perl-Lingua-EN-Inflect-0:1.905-13.fc42.no 100% |   3.1 MiB/s |  57.0 KiB |  00m00s
[126/414] perl-Sub-Quote-0:2.006008-7.fc42.noarch   100% |   2.6 MiB/s |  34.7 KiB |  00m00s
[127/414] perl-Devel-GlobalDestruction-0:0.14-26.fc 100% | 948.9 KiB/s |  17.1 KiB |  00m00s
[128/414] perl-Import-Into-0:1.002005-28.fc42.noarc 100% | 962.3 KiB/s |  17.3 KiB |  00m00s
[129/414] perl-Data-Perl-0:0.002011-16.fc42.noarch  100% |   3.0 MiB/s |  60.9 KiB |  00m00s
[130/414] perl-strictures-0:2.000006-21.fc42.noarch 100% |   2.4 MiB/s |  29.4 KiB |  00m00s
[131/414] perl-Unicode-UTF8-0:0.62-27.fc42.x86_64   100% |   1.9 MiB/s |  26.6 KiB |  00m00s
[132/414] perl-threads-1:2.40-512.fc42.x86_64       100% |   3.8 MiB/s |  58.0 KiB |  00m00s
[133/414] perl-IO-Compress-Lzma-0:2.213-2.fc42.noar 100% |   4.4 MiB/s |  76.7 KiB |  00m00s
[134/414] perl-IO-Zlib-1:1.15-512.fc42.noarch       100% | 729.0 KiB/s |  19.7 KiB |  00m00s
[135/414] perl-Archive-Peek-0:0.37-10.fc42.noarch   100% | 783.6 KiB/s |  12.5 KiB |  00m00s
[136/414] perl-Text-Reform-0:1.20-41.fc42.noarch    100% |   1.4 MiB/s |  42.9 KiB |  00m00s
[137/414] perl-Mixin-Linewise-0:0.111-7.fc42.noarch 100% |   1.5 MiB/s |  26.6 KiB |  00m00s
[138/414] perl-Cpanel-JSON-XS-0:4.39-2.fc42.x86_64  100% |   7.8 MiB/s | 151.2 KiB |  00m00s
[139/414] perl-Method-Signatures-Simple-0:1.07-29.f 100% |   1.4 MiB/s |  22.4 KiB |  00m00s
[140/414] perl-Sys-Syslog-0:0.36-513.fc42.x86_64    100% |   2.3 MiB/s |  46.6 KiB |  00m00s
[141/414] perl-IO-String-0:1.08-52.fc42.noarch      100% | 950.7 KiB/s |  17.1 KiB |  00m00s
[142/414] perl-Pod-Wrap-0:0.01-27.fc42.noarch       100% |   1.8 MiB/s |  22.1 KiB |  00m00s
[143/414] perl-Text-Glob-0:0.11-25.fc42.noarch      100% | 786.1 KiB/s |  13.4 KiB |  00m00s
[144/414] perl-XML-Simple-0:2.25-22.fc42.noarch     100% |   2.9 MiB/s |  79.2 KiB |  00m00s
[145/414] perl-Term-Table-0:0.024-2.fc42.noarch     100% |   2.1 MiB/s |  43.1 KiB |  00m00s
[146/414] perl-Algorithm-Diff-0:1.2010-13.fc42.noar 100% |   2.8 MiB/s |  46.4 KiB |  00m00s
[147/414] perl-Sort-Key-0:1.33-33.fc42.x86_64       100% |   2.5 MiB/s |  45.8 KiB |  00m00s
[148/414] perl-File-Find-Rule-0:0.34-30.fc42.noarch 100% |   1.2 MiB/s |  31.8 KiB |  00m00s
[149/414] perl-Module-Locate-0:1.80-27.fc42.noarch  100% | 906.1 KiB/s |  22.7 KiB |  00m00s
[150/414] perl-Digest-HMAC-0:1.05-2.fc42.noarch     100% | 984.7 KiB/s |  22.6 KiB |  00m00s
[151/414] perl-File-MMagic-0:1.30-35.fc42.noarch    100% |   2.3 MiB/s |  32.3 KiB |  00m00s
[152/414] perl-GSSAPI-0:0.28-48.fc42.x86_64         100% |   3.2 MiB/s |  54.9 KiB |  00m00s
[153/414] perl-MIME-Types-0:2.27-1.fc42.noarch      100% |   3.7 MiB/s |  71.1 KiB |  00m00s
[154/414] perl-Module-Find-0:0.17-1.fc42.noarch     100% |   1.1 MiB/s |  17.6 KiB |  00m00s
[155/414] perl-App-Cache-0:0.37-43.fc42.noarch      100% |   1.1 MiB/s |  15.7 KiB |  00m00s
[156/414] perl-DBD-SQLite-0:1.76-2.fc42.x86_64      100% |   9.3 MiB/s | 199.7 KiB |  00m00s
[157/414] perl-DBIx-Class-0:0.082844-1.fc42.noarch  100% |  19.6 MiB/s |   1.2 MiB |  00m00s
[158/414] perl-Mouse-0:2.5.11-2.fc42.x86_64         100% |   7.1 MiB/s | 364.1 KiB |  00m00s
[159/414] perl-DBI-0:1.647-1.fc42.x86_64            100% |   9.7 MiB/s | 812.9 KiB |  00m00s
[160/414] perl-Devel-CheckOS-0:2.04-3.fc42.noarch   100% |   6.9 MiB/s | 162.1 KiB |  00m00s
[161/414] perl-DBIx-Simple-0:1.37-24.fc42.noarch    100% |   2.5 MiB/s |  41.8 KiB |  00m00s
[162/414] perl-Object-Accessor-1:0.48-35.fc42.noarc 100% |   1.3 MiB/s |  22.5 KiB |  00m00s
[163/414] perl-File-Fetch-0:1.04-512.fc42.noarch    100% |   1.3 MiB/s |  30.5 KiB |  00m00s
[164/414] perl-Log-Message-1:0.08-36.fc42.noarch    100% |   1.2 MiB/s |  29.4 KiB |  00m00s
[165/414] perl-Package-Constants-1:0.06-32.fc42.noa 100% |   1.1 MiB/s |  12.4 KiB |  00m00s
[166/414] perl-Term-UI-0:0.50-13.fc42.noarch        100% |   1.8 MiB/s |  25.4 KiB |  00m00s
[167/414] perl-Git-Version-Compare-0:1.005-7.fc42.n 100% |   1.5 MiB/s |  22.8 KiB |  00m00s
[168/414] perl-System-Command-0:1.122-6.fc42.noarch 100% |   1.3 MiB/s |  36.9 KiB |  00m00s
[169/414] perl-Class-Load-0:0.25-27.fc42.noarch     100% |   1.3 MiB/s |  27.4 KiB |  00m00s
[170/414] perl-Class-Load-XS-0:0.10-27.fc42.x86_64  100% |   1.0 MiB/s |  22.8 KiB |  00m00s
[171/414] perl-Filter-Simple-0:0.96-512.fc42.noarch 100% |   2.0 MiB/s |  27.0 KiB |  00m00s
[172/414] perl-Devel-OverloadInfo-0:0.007-12.fc42.n 100% |   1.1 MiB/s |  20.3 KiB |  00m00s
[173/414] perl-Devel-PartialDump-0:0.20-23.fc42.noa 100% |   1.6 MiB/s |  26.6 KiB |  00m00s
[174/414] perl-Module-Runtime-Conflicts-0:0.003-26. 100% |   1.4 MiB/s |  20.1 KiB |  00m00s
[175/414] perl-Package-DeprecationManager-0:0.18-6. 100% |   1.2 MiB/s |  24.2 KiB |  00m00s
[176/414] perl-Config-Any-0:0.33-6.fc42.noarch      100% |   2.2 MiB/s |  50.5 KiB |  00m00s
[177/414] perl-Pod-Elemental-0:0.103006-7.fc42.noar 100% |   2.7 MiB/s |  89.4 KiB |  00m00s
[178/414] perl-Text-WagnerFischer-0:0.04-30.fc42.no 100% | 641.9 KiB/s |  14.1 KiB |  00m00s
[179/414] perl-Tie-RefHash-0:1.41-2.fc42.noarch     100% | 982.8 KiB/s |  23.6 KiB |  00m00s
[180/414] perl-Compress-Raw-Lzma-0:2.213-5.fc42.x86 100% |   2.8 MiB/s |  52.0 KiB |  00m00s
[181/414] perl-Tie-IxHash-0:1.23-40.fc42.noarch     100% | 742.8 KiB/s |  17.8 KiB |  00m00s
[182/414] perl-boolean-0:0.46-25.fc42.noarch        100% | 918.3 KiB/s |  22.0 KiB |  00m00s
[183/414] perl-Types-Path-Tiny-0:0.006-22.fc42.noar 100% |   1.1 MiB/s |  18.4 KiB |  00m00s
[184/414] perl-Devel-Declare-0:0.006022-22.fc42.x86 100% |   2.8 MiB/s |  54.6 KiB |  00m00s
[185/414] perl-TeX-Hyphen-0:1.18-25.fc42.noarch     100% |   1.7 MiB/s |  35.8 KiB |  00m00s
[186/414] perl-XML-NamespaceSupport-0:1.12-25.fc42. 100% |   1.3 MiB/s |  25.8 KiB |  00m00s
[187/414] perl-XML-Parser-0:2.47-6.fc42.x86_64      100% |  11.0 MiB/s | 236.6 KiB |  00m00s
[188/414] perl-XML-SAX-0:1.02-18.fc42.noarch        100% |   1.9 MiB/s |  62.4 KiB |  00m00s
[189/414] perl-Number-Compare-0:0.03-40.fc42.noarch 100% | 468.8 KiB/s |  11.7 KiB |  00m00s
[190/414] perl-Class-Accessor-Chained-0:0.01-54.fc4 100% | 482.9 KiB/s |  13.5 KiB |  00m00s
[191/414] perl-Class-Accessor-Grouped-0:0.10014-22. 100% |   1.4 MiB/s |  28.1 KiB |  00m00s
[192/414] perl-Class-C3-Componentised-0:1.001002-22 100% |   1.1 MiB/s |  22.4 KiB |  00m00s
[193/414] perl-Class-Trigger-0:0.15-15.fc42.noarch  100% |   1.3 MiB/s |  23.9 KiB |  00m00s
[194/414] perl-Context-Preserve-0:0.03-23.fc42.noar 100% |   1.2 MiB/s |  22.1 KiB |  00m00s
[195/414] perl-DBIx-ContextualFetch-0:1.03-53.fc42. 100% | 612.3 KiB/s |  13.5 KiB |  00m00s
[196/414] perl-Data-Dumper-Concise-0:2.023-25.fc42. 100% |   1.5 MiB/s |  22.3 KiB |  00m00s
[197/414] perl-Hash-Merge-0:0.302-14.fc42.noarch    100% |   1.1 MiB/s |  19.7 KiB |  00m00s
[198/414] perl-DateTime-Format-Strptime-1:1.79-12.f 100% |   1.9 MiB/s |  40.9 KiB |  00m00s
[199/414] perl-JSON-Any-0:1.40-5.fc42.noarch        100% |   1.2 MiB/s |  21.9 KiB |  00m00s
[200/414] perl-Math-Base36-0:0.14-30.fc42.noarch    100% | 659.6 KiB/s |  11.9 KiB |  00m00s
[201/414] perl-MooseX-Types-JSON-0:1.01-11.fc42.noa 100% |   1.0 MiB/s |  18.9 KiB |  00m00s
[202/414] perl-MooseX-Types-0:0.50-24.fc42.noarch   100% |   3.3 MiB/s |  81.6 KiB |  00m00s
[203/414] perl-MooseX-Types-LoadableClass-0:0.015-2 100% |   1.1 MiB/s |  19.8 KiB |  00m00s
[204/414] perl-MooseX-Types-Path-Class-0:0.09-26.fc 100% |   1.4 MiB/s |  25.2 KiB |  00m00s
[205/414] perl-SQL-Abstract-0:2.000001-17.fc42.noar 100% |   4.4 MiB/s | 120.5 KiB |  00m00s
[206/414] perl-SQL-Abstract-Classic-0:1.91-16.fc42. 100% |   3.0 MiB/s |  58.5 KiB |  00m00s
[207/414] perl-SQL-Translator-0:1.66-2.fc42.noarch  100% |  13.6 MiB/s | 404.1 KiB |  00m00s
[208/414] perl-Sub-Name-0:0.28-2.fc42.x86_64        100% |   1.4 MiB/s |  29.3 KiB |  00m00s
[209/414] perl-Text-Balanced-0:2.06-512.fc42.noarch 100% |   1.9 MiB/s |  48.8 KiB |  00m00s
[210/414] perl-DBIx-XHTML_Table-0:1.49-26.fc42.noar 100% |   2.1 MiB/s |  38.0 KiB |  00m00s
[211/414] perl-SQL-Interp-0:1.27-14.fc42.noarch     100% |   2.8 MiB/s |  40.8 KiB |  00m00s
[212/414] perl-Text-Table-0:1.135-7.fc42.noarch     100% |   1.9 MiB/s |  36.2 KiB |  00m00s
[213/414] perl-Log-Message-Simple-0:0.10-323.fc42.n 100% | 966.6 KiB/s |  14.5 KiB |  00m00s
[214/414] perl-Config-General-0:2.67-2.fc42.noarch  100% |   4.0 MiB/s |  73.8 KiB |  00m00s
[215/414] perl-YAML-LibYAML-1:0.903.0-1.fc42.x86_64 100% |   3.0 MiB/s |  53.0 KiB |  00m00s
[216/414] perl-Pod-Eventual-0:0.094003-7.fc42.noarc 100% |   1.6 MiB/s |  25.7 KiB |  00m00s
[217/414] perl-String-Truncate-0:1.100603-7.fc42.no 100% |   1.2 MiB/s |  22.3 KiB |  00m00s
[218/414] perl-String-RewritePrefix-0:0.009-7.fc42. 100% | 885.7 KiB/s |  19.5 KiB |  00m00s
[219/414] perl-Sub-Exporter-ForMethods-0:0.100055-7 100% | 883.3 KiB/s |  20.3 KiB |  00m00s
[220/414] perl-XML-SAX-Base-0:1.09-25.fc42.noarch   100% |   1.6 MiB/s |  29.2 KiB |  00m00s
[221/414] perl-B-Hooks-OP-Check-0:0.22-26.fc42.x86_ 100% |   1.4 MiB/s |  30.6 KiB |  00m00s
[222/414] perl-Class-Accessor-0:0.51-22.fc42.noarch 100% |   1.7 MiB/s |  28.3 KiB |  00m00s
[223/414] perl-Class-C3-0:0.35-15.fc42.noarch       100% |   1.7 MiB/s |  28.0 KiB |  00m00s
[224/414] perl-Devel-ArgNames-0:0.03-34.fc42.noarch 100% | 724.1 KiB/s |  11.6 KiB |  00m00s
[225/414] perl-Clone-Choose-0:0.010-22.fc42.noarch  100% | 789.1 KiB/s |  15.0 KiB |  00m00s
[226/414] perl-Carp-Clan-0:6.08-20.fc42.noarch      100% | 928.6 KiB/s |  24.1 KiB |  00m00s
[227/414] perl-Package-Variant-0:1.003002-27.fc42.n 100% | 825.0 KiB/s |  19.8 KiB |  00m00s
[228/414] perl-Graph-0:0.97.27-5.fc42.noarch        100% |   3.9 MiB/s | 127.6 KiB |  00m00s
[229/414] perl-Spreadsheet-ParseExcel-1:0.66-4.fc42 100% |   4.1 MiB/s | 156.8 KiB |  00m00s
[230/414] perl-Parse-RecDescent-0:1.967015-24.fc42. 100% |   4.4 MiB/s | 208.1 KiB |  00m00s
[231/414] perl-Template-Toolkit-0:3.102-2.fc42.x86_ 100% |  23.3 MiB/s |   1.3 MiB |  00m00s
[232/414] perl-Text-RecordParser-0:1.6.5-32.fc42.no 100% | 965.2 KiB/s |  38.6 KiB |  00m00s
[233/414] perl-XML-Writer-0:0.900-16.fc42.noarch    100% |   1.2 MiB/s |  33.4 KiB |  00m00s
[234/414] perl-XML-LibXML-1:2.0210-4.fc42.x86_64    100% |   7.5 MiB/s | 351.3 KiB |  00m00s
[235/414] perl-Text-Aligner-0:0.16-15.fc42.noarch   100% | 815.8 KiB/s |  19.6 KiB |  00m00s
[236/414] perl-Algorithm-C3-0:0.11-15.fc42.noarch   100% |   1.0 MiB/s |  23.6 KiB |  00m00s
[237/414] perl-Heap-0:0.80-47.fc42.noarch           100% |   2.1 MiB/s |  44.7 KiB |  00m00s
[238/414] perl-Set-Object-0:1.42-12.fc42.x86_64     100% |   2.7 MiB/s |  56.3 KiB |  00m00s
[239/414] perl-Crypt-RC4-0:2.02-41.fc42.noarch      100% | 825.5 KiB/s |  14.0 KiB |  00m00s
[240/414] perl-Digest-Perl-MD5-0:1.9-33.fc42.noarch 100% | 826.5 KiB/s |  17.4 KiB |  00m00s
[241/414] perl-Jcode-0:2.07-45.fc42.noarch          100% |   1.9 MiB/s |  37.4 KiB |  00m00s
[242/414] perl-OLE-Storage_Lite-0:0.22-6.fc42.noarc 100% |   1.7 MiB/s |  29.6 KiB |  00m00s
[243/414] perl-Spreadsheet-WriteExcel-0:2.40-33.fc4 100% |  15.3 MiB/s | 533.1 KiB |  00m00s
[244/414] perl-Text-CSV_XS-0:1.60-1.fc42.x86_64     100% |   3.4 MiB/s | 148.3 KiB |  00m00s
[245/414] perl-Unicode-Map-0:0.112-66.fc42.x86_64   100% |   5.7 MiB/s | 241.1 KiB |  00m00s
[246/414] perl-AppConfig-0:1.71-32.fc42.noarch      100% |   2.9 MiB/s |  79.0 KiB |  00m00s
[247/414] perl-Image-Info-0:1.45-2.fc42.noarch      100% |   2.9 MiB/s |  90.5 KiB |  00m00s
[248/414] perl-Pod-POM-0:2.01-30.fc42.noarch        100% |   3.2 MiB/s |  96.8 KiB |  00m00s
[249/414] perl-IO-stringy-0:2.113-16.fc42.noarch    100% |   2.5 MiB/s |  62.1 KiB |  00m00s
[250/414] perl-Date-Calc-0:6.4-30.fc42.noarch       100% |   5.8 MiB/s | 202.7 KiB |  00m00s
[251/414] perl-Digest-MD4-0:1.9-42.fc42.x86_64      100% |   1.0 MiB/s |  35.3 KiB |  00m00s
[252/414] perl-UNIVERSAL-isa-0:1.20171012-23.fc42.n 100% | 744.0 KiB/s |  23.1 KiB |  00m00s
[253/414] perl-Image-Xbm-0:1.11-2.fc42.noarch       100% | 590.6 KiB/s |  18.9 KiB |  00m00s
[254/414] perl-Date-Manip-0:6.97-1.fc42.noarch      100% |  14.5 MiB/s |   1.1 MiB |  00m00s
[255/414] perl-Image-Xpm-0:1.13-26.fc42.noarch      100% | 835.4 KiB/s |  20.1 KiB |  00m00s
[256/414] rgb-0:1.1.0-2.fc42.x86_64                 100% | 629.9 KiB/s |  18.3 KiB |  00m00s
[257/414] perl-Bit-Vector-0:7.4-37.fc42.x86_64      100% |   7.3 MiB/s | 165.5 KiB |  00m00s
[258/414] perl-Image-Base-0:1.17-31.fc42.noarch     100% |   1.3 MiB/s |  22.9 KiB |  00m00s
[259/414] perl-CPAN-0:2.38-3.fc42.noarch            100% |  15.0 MiB/s | 567.2 KiB |  00m00s
[260/414] perl-Config-Perl-V-0:0.38-2.fc42.noarch   100% |   1.1 MiB/s |  21.8 KiB |  00m00s
[261/414] perl-DB_File-0:1.859-513.fc42.x86_64      100% |   4.9 MiB/s |  81.0 KiB |  00m00s
[262/414] perl-Devel-PPPort-0:3.72-513.fc42.x86_64  100% |  10.8 MiB/s | 220.8 KiB |  00m00s
[263/414] perl-Env-0:1.06-512.fc42.noarch           100% |   1.1 MiB/s |  19.7 KiB |  00m00s
[264/414] perl-IPC-SysV-0:2.09-513.fc42.x86_64      100% |   2.8 MiB/s |  40.8 KiB |  00m00s
[265/414] perl-Math-BigInt-FastCalc-0:0.501.900-1.f 100% |   1.6 MiB/s |  28.1 KiB |  00m00s
[266/414] perl-Net-Ping-0:2.76-512.fc42.noarch      100% |   3.0 MiB/s |  49.6 KiB |  00m00s
[267/414] perl-PerlIO-via-QuotedPrint-0:0.10-512.fc 100% |   1.6 MiB/s |  21.7 KiB |  00m00s
[268/414] perl-Thread-Queue-0:3.14-512.fc42.noarch  100% |   1.4 MiB/s |  21.4 KiB |  00m00s
[269/414] perl-Unicode-Collate-0:1.31-512.fc42.x86_ 100% |  18.5 MiB/s | 645.6 KiB |  00m00s
[270/414] perl-Unicode-Normalize-0:1.32-512.fc42.x8 100% |   4.3 MiB/s |  74.1 KiB |  00m00s
[271/414] perl-bignum-0:0.67-513.fc42.noarch        100% |   3.4 MiB/s |  49.0 KiB |  00m00s
[272/414] perl-perlfaq-0:5.20240218-512.fc42.noarch 100% |  14.8 MiB/s | 378.4 KiB |  00m00s
[273/414] perl-threads-shared-0:1.69-512.fc42.x86_6 100% |   2.2 MiB/s |  44.5 KiB |  00m00s
[274/414] perl-Compress-Bzip2-0:2.28-21.fc42.x86_64 100% |   3.9 MiB/s |  67.1 KiB |  00m00s
[275/414] perl-Devel-Size-0:0.84-4.fc42.x86_64      100% |   1.9 MiB/s |  30.6 KiB |  00m00s
[276/414] perl-Module-Signature-0:0.89-2.fc42.noarc 100% |   4.7 MiB/s |  86.2 KiB |  00m00s
[277/414] libdb-0:5.3.28-64.fc42.x86_64             100% |  18.0 MiB/s | 775.9 KiB |  00m00s
[278/414] perl-4:5.40.2-517.fc42.x86_64             100% |  27.3 KiB/s |  13.9 KiB |  00m01s
[279/414] perl-App-Cmd-0:0.336-5.fc42.noarch        100% |   3.9 MiB/s |  83.2 KiB |  00m00s
[280/414] perl-Config-MVP-0:2.200013-8.fc42.noarch  100% |   3.2 MiB/s |  63.1 KiB |  00m00s
[281/414] perl-Config-MVP-Reader-INI-0:2.101465-8.f 100% |   1.1 MiB/s |  19.9 KiB |  00m00s
[282/414] perl-File-Copy-Recursive-0:0.45-17.fc42.n 100% |   1.3 MiB/s |  25.9 KiB |  00m00s
[283/414] perl-File-ShareDir-Install-0:0.14-8.fc42. 100% |   1.6 MiB/s |  24.2 KiB |  00m00s
[284/414] perl-Hash-Merge-Simple-0:0.052-2.fc42.noa 100% |   1.2 MiB/s |  21.7 KiB |  00m00s
[285/414] perl-Log-Dispatchouli-0:3.009-2.fc42.noar 100% |   2.5 MiB/s |  48.5 KiB |  00m00s
[286/414] perl-MooseX-LazyRequire-0:0.11-30.fc42.no 100% |   1.5 MiB/s |  21.9 KiB |  00m00s
[287/414] perl-MooseX-Role-Parameterized-0:1.11-17. 100% |   5.0 MiB/s |  72.0 KiB |  00m00s
[288/414] perl-MooseX-SetOnce-0:0.203000-8.fc42.noa 100% |   1.5 MiB/s |  19.4 KiB |  00m00s
[289/414] perl-MooseX-Types-Perl-0:0.101344-8.fc42. 100% |   1.3 MiB/s |  20.6 KiB |  00m00s
[290/414] perl-String-Formatter-0:1.235-7.fc42.noar 100% |   2.1 MiB/s |  34.3 KiB |  00m00s
[291/414] perl-Term-Encoding-0:0.03-19.fc42.noarch  100% |   1.5 MiB/s |  17.9 KiB |  00m00s
[292/414] perl-YAML-Tiny-0:1.76-2.fc42.noarch       100% |   2.3 MiB/s |  42.0 KiB |  00m00s
[293/414] perl-IO-TieCombine-0:1.005-28.fc42.noarch 100% |   1.3 MiB/s |  23.3 KiB |  00m00s
[294/414] perl-MooseX-OneArgNew-0:0.007-8.fc42.noar 100% | 848.4 KiB/s |  19.5 KiB |  00m00s
[295/414] perl-Role-HasMessage-0:0.007-8.fc42.noarc 100% |   1.5 MiB/s |  21.3 KiB |  00m00s
[296/414] perl-Role-Identifiable-0:0.009-8.fc42.noa 100% |   1.2 MiB/s |  22.5 KiB |  00m00s
[297/414] perl-Throwable-1:1.001-7.fc42.noarch      100% |   1.7 MiB/s |  27.8 KiB |  00m00s
[298/414] perl-Log-Dispatch-0:2.71-6.fc42.noarch    100% |   4.6 MiB/s |  84.0 KiB |  00m00s
[299/414] perl-Dist-Zilla-0:6.033-1.fc42.noarch     100% | 957.2 KiB/s | 448.0 KiB |  00m00s
[300/414] perl-Log-Dispatch-Array-0:1.005-7.fc42.no 100% | 858.9 KiB/s |  18.9 KiB |  00m00s
[301/414] perl-String-Flogger-0:1.101246-7.fc42.noa 100% |   1.0 MiB/s |  19.5 KiB |  00m00s
[302/414] perl-Sub-Exporter-GlobExporter-0:0.006-7. 100% |   1.0 MiB/s |  20.3 KiB |  00m00s
[303/414] perl-aliased-0:0.34-30.fc42.noarch        100% |   1.9 MiB/s |  25.0 KiB |  00m00s
[304/414] perl-String-Errf-0:0.009-7.fc42.noarch    100% |   1.5 MiB/s |  25.1 KiB |  00m00s
[305/414] perl-MIME-Lite-0:3.033-14.fc42.noarch     100% |   5.1 MiB/s |  93.9 KiB |  00m00s
[306/414] perl-Mail-Sender-1:0.903-26.fc42.noarch   100% |   2.2 MiB/s |  50.6 KiB |  00m00s
[307/414] perl-Mail-Sendmail-0:0.80-23.fc42.noarch  100% |   1.7 MiB/s |  35.9 KiB |  00m00s
[308/414] perl-Email-Date-Format-0:1.008-6.fc42.noa 100% | 940.6 KiB/s |  18.8 KiB |  00m00s
[309/414] perl-devel-4:5.40.2-517.fc42.x86_64       100% | 782.3 KiB/s | 764.3 KiB |  00m01s
[310/414] perl-Tie-0:4.6-517.fc42.noarch            100% | 171.3 KiB/s |  27.9 KiB |  00m00s
[311/414] perl-ExtUtils-MakeMaker-2:7.74-1.fc42.noa 100% |   1.1 MiB/s | 294.3 KiB |  00m00s
[312/414] perl-Benchmark-0:1.25-517.fc42.noarch     100% | 189.0 KiB/s |  27.0 KiB |  00m00s
[313/414] perl-Type-Tiny-0:2.008002-1.fc42.noarch   100% |   1.2 MiB/s | 420.9 KiB |  00m00s
[314/414] perl-Term-ReadLine-0:1.17-517.fc42.noarch 100% | 190.9 KiB/s |  19.3 KiB |  00m00s
[315/414] perl-deprecate-0:0.04-517.fc42.noarch     100% | 139.7 KiB/s |  14.8 KiB |  00m00s
[316/414] perl-Time-Piece-0:1.3401-517.fc42.x86_64  100% | 156.7 KiB/s |  40.4 KiB |  00m00s
[317/414] perl-autouse-0:1.11-517.fc42.noarch       100% |  55.0 KiB/s |  14.0 KiB |  00m00s
[318/414] perl-Hash-Util-0:0.32-517.fc42.x86_64     100% | 172.2 KiB/s |  34.8 KiB |  00m00s
[319/414] perl-CGI-0:4.68-1.fc42.noarch             100% | 506.7 KiB/s | 202.2 KiB |  00m00s
[320/414] perl-Test-Deep-0:1.205-1.fc42.noarch      100% | 451.9 KiB/s | 120.2 KiB |  00m00s
[321/414] perl-Dumpvalue-0:2.27-517.fc42.noarch     100% |  94.2 KiB/s |  18.6 KiB |  00m00s
[322/414] perl-Safe-0:2.46-517.fc42.noarch          100% | 167.6 KiB/s |  25.1 KiB |  00m00s
[323/414] perl-PPIx-Regexp-0:0.089-1.fc42.noarch    100% | 924.6 KiB/s | 297.7 KiB |  00m00s
[324/414] perl-IO-Interactive-0:1.027-1.fc42.noarch 100% | 203.5 KiB/s |  25.0 KiB |  00m00s
[325/414] perl-Sys-Hostname-0:1.25-517.fc42.x86_64  100% | 140.1 KiB/s |  17.4 KiB |  00m00s
[326/414] perl-ExtUtils-MM-Utils-2:7.74-1.fc42.noar 100% | 106.2 KiB/s |  11.5 KiB |  00m00s
[327/414] perl-AutoSplit-0:5.74-517.fc42.noarch     100% | 204.3 KiB/s |  21.9 KiB |  00m00s
[328/414] perl-subs-0:1.04-517.fc42.noarch          100% |  40.1 KiB/s |  12.0 KiB |  00m00s
[329/414] nodejs-1:22.15.1-1.fc42.x86_64            100% | 154.5 KiB/s |  46.0 KiB |  00m00s
[330/414] gcc-c++-0:15.1.1-2.fc42.x86_64            100% |  14.9 MiB/s |  15.2 MiB |  00m01s
[331/414] perl-Module-Loaded-1:0.08-517.fc42.noarch 100% |  66.5 KiB/s |  13.6 KiB |  00m00s
[332/414] php-pear-PHP-CodeSniffer-0:3.13.0-1.fc42. 100% | 442.4 KiB/s | 565.8 KiB |  00m01s
[333/414] perl-DirHandle-0:1.05-517.fc42.noarch     100% |  17.1 KiB/s |  12.7 KiB |  00m01s
[334/414] nodejs-libs-1:22.15.1-1.fc42.x86_64       100% |   9.2 MiB/s |  19.9 MiB |  00m02s
[335/414] php-cli-0:8.4.7-1.fc42.x86_64             100% |   2.5 MiB/s |   2.3 MiB |  00m01s
[336/414] php-common-0:8.4.7-1.fc42.x86_64          100% |   1.1 MiB/s | 757.2 KiB |  00m01s
[337/414] perl-ExtUtils-Constant-0:0.25-517.fc42.no 100% | 392.3 KiB/s |  43.9 KiB |  00m00s
[338/414] php-xml-0:8.4.7-1.fc42.x86_64             100% |   3.3 MiB/s | 890.1 KiB |  00m00s
[339/414] php-intl-0:8.4.7-1.fc42.x86_64            100% | 687.6 KiB/s | 178.8 KiB |  00m00s
[340/414] systemtap-sdt-devel-0:5.3-1.fc42.x86_64   100% | 339.6 KiB/s |  68.6 KiB |  00m00s
[341/414] perl-Opcode-0:1.65-517.fc42.x86_64        100% | 356.4 KiB/s |  36.0 KiB |  00m00s
[342/414] systemtap-sdt-dtrace-0:5.3-1.fc42.x86_64  100% | 361.2 KiB/s |  69.4 KiB |  00m00s
[343/414] perl-ExtUtils-Command-2:7.74-1.fc42.noarc 100% | 146.2 KiB/s |  13.9 KiB |  00m00s
[344/414] perl-Attribute-Handlers-0:1.03-517.fc42.n 100% | 304.2 KiB/s |  28.3 KiB |  00m00s
[345/414] perl-Config-Extensions-0:0.03-517.fc42.no 100% | 140.4 KiB/s |  12.5 KiB |  00m00s
[346/414] perl-DBM_Filter-0:0.06-517.fc42.noarch    100% | 284.2 KiB/s |  27.3 KiB |  00m00s
[347/414] perl-Devel-Peek-0:1.34-517.fc42.x86_64    100% | 338.4 KiB/s |  32.1 KiB |  00m00s
[348/414] perl-Devel-SelfStubber-0:1.06-517.fc42.no 100% | 158.2 KiB/s |  14.6 KiB |  00m00s
[349/414] perl-ExtUtils-Embed-0:1.35-517.fc42.noarc 100% |  63.1 KiB/s |  17.9 KiB |  00m00s
[350/414] perl-ExtUtils-Miniperl-0:1.14-517.fc42.no 100% |  54.9 KiB/s |  15.3 KiB |  00m00s
[351/414] perl-File-DosGlob-0:1.12-517.fc42.x86_64  100% |  75.9 KiB/s |  19.8 KiB |  00m00s
[352/414] perl-FileCache-0:1.10-517.fc42.noarch     100% | 152.5 KiB/s |  14.9 KiB |  00m00s
[353/414] perl-GDBM_File-1:1.24-517.fc42.x86_64     100% | 436.4 KiB/s |  42.8 KiB |  00m00s
[354/414] perl-I18N-Collate-0:1.02-517.fc42.noarch  100% | 148.6 KiB/s |  14.4 KiB |  00m00s
[355/414] perl-Memoize-0:1.16-517.fc42.noarch       100% | 431.3 KiB/s |  46.6 KiB |  00m00s
[356/414] perl-Module-CoreList-tools-1:5.20250421-1 100% | 104.5 KiB/s |  18.8 KiB |  00m00s
[357/414] perl-NEXT-0:0.69-517.fc42.noarch          100% | 115.1 KiB/s |  21.2 KiB |  00m00s
[358/414] perl-Net-0:1.04-517.fc42.noarch           100% | 196.0 KiB/s |  22.7 KiB |  00m00s
[359/414] perl-ODBM_File-0:1.18-517.fc42.x86_64     100% | 216.1 KiB/s |  22.9 KiB |  00m00s
[360/414] perl-Pod-Functions-0:1.14-517.fc42.noarch 100% |  99.2 KiB/s |  14.9 KiB |  00m00s
[361/414] perl-Search-Dict-0:1.07-517.fc42.noarch   100% | 114.3 KiB/s |  13.3 KiB |  00m00s
[362/414] perl-SelfLoader-0:1.27-517.fc42.noarch    100% |  78.7 KiB/s |  21.8 KiB |  00m00s
[363/414] perl-Term-Complete-0:1.403-517.fc42.noarc 100% |  57.3 KiB/s |  13.2 KiB |  00m00s
[364/414] perl-Test-0:1.31-517.fc42.noarch          100% | 124.6 KiB/s |  28.8 KiB |  00m00s
[365/414] perl-Text-Abbrev-0:1.02-517.fc42.noarch   100% |  79.4 KiB/s |  12.4 KiB |  00m00s
[366/414] perl-Thread-0:3.05-517.fc42.noarch        100% | 116.2 KiB/s |  18.2 KiB |  00m00s
[367/414] perl-Thread-Semaphore-0:2.13-517.fc42.noa 100% | 101.8 KiB/s |  15.9 KiB |  00m00s
[368/414] perl-Tie-File-0:1.09-517.fc42.noarch      100% | 468.4 KiB/s |  43.6 KiB |  00m00s
[369/414] perl-Tie-Memoize-0:1.1-517.fc42.noarch    100% | 152.7 KiB/s |  14.3 KiB |  00m00s
[370/414] perl-Time-0:1.04-517.fc42.noarch          100% | 176.8 KiB/s |  17.0 KiB |  00m00s
[371/414] perl-blib-0:1.07-517.fc42.noarch          100% |  49.2 KiB/s |  12.6 KiB |  00m00s
[372/414] perl-Unicode-UCD-0:0.78-517.fc42.noarch   100% | 217.5 KiB/s |  78.5 KiB |  00m00s
[373/414] perl-meta-notation-0:5.40.2-517.fc42.noar 100% | 108.3 KiB/s |  10.9 KiB |  00m00s
[374/414] perl-debugger-0:1.60-517.fc42.noarch      100% | 359.4 KiB/s | 133.3 KiB |  00m00s
[375/414] perl-sigtrap-0:1.10-517.fc42.noarch       100% | 169.0 KiB/s |  15.9 KiB |  00m00s
[376/414] perl-encoding-warnings-0:0.14-517.fc42.no 100% | 186.6 KiB/s |  16.8 KiB |  00m00s
[377/414] perl-diagnostics-0:1.40-517.fc42.noarch   100% |   1.0 MiB/s | 217.8 KiB |  00m00s
[378/414] perl-filetest-0:1.03-517.fc42.noarch      100% |  49.1 KiB/s |  14.8 KiB |  00m00s
[379/414] perl-fields-0:2.27-517.fc42.noarch        100% |  48.6 KiB/s |  16.4 KiB |  00m00s
[380/414] perl-doc-0:5.40.2-517.fc42.noarch         100% |   8.5 MiB/s |   4.9 MiB |  00m01s
[381/414] perl-less-0:0.03-517.fc42.noarch          100% | 118.8 KiB/s |  13.4 KiB |  00m00s
[382/414] perl-libnetcfg-4:5.40.2-517.fc42.noarch   100% |  98.6 KiB/s |  16.6 KiB |  00m00s
[383/414] perl-macros-4:5.40.2-517.fc42.noarch      100% | 120.8 KiB/s |  12.6 KiB |  00m00s
[384/414] perl-ph-0:5.40.2-517.fc42.x86_64          100% | 479.4 KiB/s |  48.9 KiB |  00m00s
[385/414] perl-sort-0:2.05-517.fc42.noarch          100% | 152.7 KiB/s |  13.4 KiB |  00m00s
[386/414] perl-utils-0:5.40.2-517.fc42.noarch       100% | 530.7 KiB/s |  52.5 KiB |  00m00s
[387/414] perl-vmsish-0:1.04-517.fc42.noarch        100% | 160.8 KiB/s |  14.3 KiB |  00m00s
[388/414] perl-Encode-devel-4:3.21-512.fc42.x86_64  100% | 821.5 KiB/s |  41.1 KiB |  00m00s
[389/414] perl-Archive-Extract-bz2-IO-Uncompress-Bu 100% | 457.8 KiB/s |   7.3 KiB |  00m00s
[390/414] perl-Archive-Extract-Z-Compress-Zlib-1:0. 100% | 279.5 KiB/s |   7.3 KiB |  00m00s
[391/414] perl-Archive-Extract-lzma-IO-Uncompress-U 100% | 618.6 KiB/s |   7.4 KiB |  00m00s
[392/414] perl-Archive-Extract-gz-Compress-Zlib-1:0 100% | 404.6 KiB/s |   7.3 KiB |  00m00s
[393/414] perl-Archive-Extract-tbz-Archive-Tar-IO-U 100% | 529.6 KiB/s |   7.4 KiB |  00m00s
[394/414] perl-Archive-Extract-tar-Archive-Tar-1:0. 100% | 427.4 KiB/s |   7.3 KiB |  00m00s
[395/414] perl-Archive-Extract-tgz-Archive-Tar-Comp 100% | 433.9 KiB/s |   7.4 KiB |  00m00s
[396/414] perl-Archive-Extract-txz-Archive-Tar-IO-U 100% | 434.8 KiB/s |   7.4 KiB |  00m00s
[397/414] perl-Archive-Extract-zip-Archive-Zip-1:0. 100% | 519.0 KiB/s |   7.3 KiB |  00m00s
[398/414] perl-Archive-Extract-xz-IO-Uncompress-UnX 100% | 456.4 KiB/s |   7.3 KiB |  00m00s
[399/414] perl-MIME-Charset-0:1.013.1-7.fc42.noarch 100% |   1.2 MiB/s |  47.9 KiB |  00m00s
[400/414] perl-Unicode-LineBreak-0:2019.001-23.fc42 100% |   1.9 MiB/s | 118.9 KiB |  00m00s
[401/414] sombok-0:2.4.0-23.fc42.x86_64             100% |   1.8 MiB/s |  48.3 KiB |  00m00s
[402/414] perl-Term-Size-Any-0:0.002-44.fc42.noarch 100% |   1.0 MiB/s |  13.1 KiB |  00m00s
[403/414] perl-Term-Size-Perl-0:0.031-21.fc42.x86_6 100% |   1.4 MiB/s |  20.8 KiB |  00m00s
[404/414] perl-Type-Tiny-XS-0:0.025-10.fc42.x86_64  100% |   1.9 MiB/s |  43.3 KiB |  00m00s
[405/414] libstdc++-devel-0:15.1.1-2.fc42.x86_64    100% |   6.8 MiB/s |   2.9 MiB |  00m00s
[406/414] nodejs-docs-1:22.15.1-1.fc42.noarch       100% |   6.9 MiB/s |   8.9 MiB |  00m01s
[407/414] nodejs-npm-1:10.9.2-1.22.15.1.1.fc42.x86_ 100% |   1.8 MiB/s |   2.4 MiB |  00m01s
[408/414] nodejs-full-i18n-1:22.15.1-1.fc42.x86_64  100% |   4.8 MiB/s |   8.5 MiB |  00m02s
[409/414] gcc-0:15.1.1-2.fc42.x86_64                100% |   7.1 MiB/s |  39.4 MiB |  00m06s
[410/414] libstdc++-0:15.1.1-2.fc42.x86_64          100% | 164.7 KiB/s | 912.8 KiB |  00m06s
[411/414] libgcc-0:15.1.1-2.fc42.x86_64             100% | 273.1 KiB/s | 127.5 KiB |  00m00s
[412/414] cpp-0:15.1.1-2.fc42.x86_64                100% |   2.4 MiB/s |  12.9 MiB |  00m05s
[413/414] libgomp-0:15.1.1-2.fc42.x86_64            100% | 625.2 KiB/s | 365.1 KiB |  00m01s
[414/414] gcc-plugin-annobin-0:15.1.1-2.fc42.x86_64 100% | 410.5 KiB/s |  51.7 KiB |  00m00s
--------------------------------------------------------------------------------------------
[414/414] Total                                     100% |   8.1 MiB/s | 151.9 MiB |  00m19s
Running transaction
[  1/422] Verify package files                      100% | 553.0   B/s | 414.0   B |  00m01s
[  2/422] Prepare transaction                       100% | 567.0   B/s | 420.0   B |  00m01s
[  3/422] Installing perl-deprecate-0:0.04-517.fc42 100% | 868.7 KiB/s |   6.9 KiB |  00m00s
[  4/422] Installing perl-DBI-0:1.647-1.fc42.x86_64 100% |  28.6 MiB/s |   2.2 MiB |  00m00s
[  5/422] Installing perl-ExtUtils-Manifest-1:1.75- 100% |  28.1 MiB/s |  86.3 KiB |  00m00s
[  6/422] Installing perl-Digest-SHA-1:6.04-513.fc4 100% |   3.6 MiB/s | 115.0 KiB |  00m00s
[  7/422] Installing perl-CPAN-Meta-Requirements-0: 100% |  20.4 MiB/s |  83.4 KiB |  00m00s
[  8/422] Installing perl-Term-ReadLine-0:1.17-517. 100% |   5.8 MiB/s |  17.8 KiB |  00m00s
[  9/422] Installing perl-experimental-0:0.034-2.fc 100% |  10.7 MiB/s |  43.9 KiB |  00m00s
[ 10/422] Installing perl-JSON-PP-1:4.16-513.fc42.n 100% |   4.4 MiB/s | 143.6 KiB |  00m00s
[ 11/422] Installing perl-Module-Pluggable-2:6.3-2. 100% |   9.5 MiB/s |  58.1 KiB |  00m00s
[ 12/422] Installing perl-Type-Tiny-0:2.008002-1.fc 100% |  54.2 MiB/s |   1.0 MiB |  00m00s
[ 13/422] Installing perl-Tie-0:4.6-517.fc42.noarch 100% |  11.0 MiB/s |  33.7 KiB |  00m00s
[ 14/422] Installing perl-Text-Balanced-0:2.06-512. 100% |  55.0 MiB/s | 112.7 KiB |  00m00s
[ 15/422] Installing perl-threads-1:2.40-512.fc42.x 100% |  38.1 MiB/s | 117.1 KiB |  00m00s
[ 16/422] Installing perl-Sub-Quote-0:2.006008-7.fc 100% |  21.9 MiB/s |  67.2 KiB |  00m00s
[ 17/422] Installing perl-Archive-Zip-0:1.68-16.fc4 100% |  11.6 MiB/s | 297.8 KiB |  00m00s
[ 18/422] Installing perl-threads-shared-0:1.69-512 100% |  21.0 MiB/s |  85.9 KiB |  00m00s
[ 19/422] Upgrading libgcc-0:15.1.1-2.fc42.x86_64   100% |  52.4 MiB/s | 268.3 KiB |  00m00s
[ 20/422] Upgrading libstdc++-0:15.1.1-2.fc42.x86_6 100% | 149.3 MiB/s |   2.8 MiB |  00m00s
[ 21/422] Installing perl-Class-Load-0:0.25-27.fc42 100% |  14.5 MiB/s |  44.5 KiB |  00m00s
[ 22/422] Installing perl-Perl-OSType-0:1.010-513.f 100% |  16.7 MiB/s |  34.3 KiB |  00m00s
[ 23/422] Installing perl-Path-Class-0:0.37-29.fc42 100% |  31.4 MiB/s |  96.6 KiB |  00m00s
[ 24/422] Installing perl-ExtUtils-ParseXS-1:3.51-5 100% |  15.2 MiB/s | 405.1 KiB |  00m00s
[ 25/422] Installing perl-YAML-0:1.31-5.fc42.noarch 100% |  31.8 MiB/s | 195.3 KiB |  00m00s
[ 26/422] Installing php-common-0:8.4.7-1.fc42.x86_ 100% | 279.6 MiB/s |   9.5 MiB |  00m00s
[ 27/422] Installing perl-subs-0:1.04-517.fc42.noar 100% |   2.4 MiB/s |   2.5 KiB |  00m00s
[ 28/422] Installing perl-Sys-Hostname-0:1.25-517.f 100% |   4.2 MiB/s |  17.2 KiB |  00m00s
[ 29/422] Installing perl-Carp-Clan-0:6.08-20.fc42. 100% |  18.8 MiB/s |  38.6 KiB |  00m00s
[ 30/422] Installing perl-XML-NamespaceSupport-0:1. 100% |  15.0 MiB/s |  46.1 KiB |  00m00s
[ 31/422] Installing perl-Text-Glob-0:0.11-25.fc42. 100% |   4.5 MiB/s |   9.3 KiB |  00m00s
[ 32/422] Installing perl-Devel-GlobalDestruction-0 100% |   9.3 MiB/s |  19.0 KiB |  00m00s
[ 33/422] Installing perl-File-Which-0:1.27-13.fc42 100% |  10.2 MiB/s |  31.4 KiB |  00m00s
[ 34/422] Installing perl-File-HomeDir-0:1.006-14.f 100% |  20.2 MiB/s | 123.8 KiB |  00m00s
[ 35/422] Installing perl-Filter-Simple-0:0.96-512. 100% |  25.3 MiB/s |  51.7 KiB |  00m00s
[ 36/422] Installing perl-Log-Message-1:0.08-36.fc4 100% |  13.8 MiB/s |  42.5 KiB |  00m00s
[ 37/422] Installing perl-meta-notation-0:5.40.2-51 100% |   2.2 MiB/s |   2.3 KiB |  00m00s
[ 38/422] Installing perl-Dumpvalue-0:2.27-517.fc42 100% |   9.8 MiB/s |  20.2 KiB |  00m00s
[ 39/422] Installing perl-Hash-Util-0:0.32-517.fc42 100% |  18.4 MiB/s |  56.4 KiB |  00m00s
[ 40/422] Installing perl-autouse-0:1.11-517.fc42.n 100% |   6.2 MiB/s |   6.3 KiB |  00m00s
[ 41/422] Installing perl-Unicode-Normalize-0:1.32- 100% |  91.3 MiB/s | 467.4 KiB |  00m00s
[ 42/422] Installing perl-IO-stringy-0:2.113-16.fc4 100% |  31.5 MiB/s | 129.1 KiB |  00m00s
[ 43/422] Installing perl-Sub-Exporter-ForMethods-0 100% |   9.7 MiB/s |  29.8 KiB |  00m00s
[ 44/422] Installing perl-String-RewritePrefix-0:0. 100% |   8.9 MiB/s |  27.5 KiB |  00m00s
[ 45/422] Installing perl-Sub-Name-0:0.28-2.fc42.x8 100% |  12.5 MiB/s |  51.2 KiB |  00m00s
[ 46/422] Installing perl-Sys-Syslog-0:0.36-513.fc4 100% |  18.9 MiB/s |  96.9 KiB |  00m00s
[ 47/422] Installing perl-Cpanel-JSON-XS-0:4.39-2.f 100% |  10.3 MiB/s | 399.1 KiB |  00m00s
[ 48/422] Installing perl-JSON-MaybeXS-0:1.004008-3 100% |  11.5 MiB/s |  47.1 KiB |  00m00s
[ 49/422] Installing perl-Mixin-Linewise-0:0.111-7. 100% |  11.2 MiB/s |  46.1 KiB |  00m00s
[ 50/422] Installing perl-Config-INI-0:0.029-8.fc42 100% |  18.5 MiB/s |  75.7 KiB |  00m00s
[ 51/422] Installing perl-strictures-0:2.000006-21. 100% |  13.1 MiB/s |  53.6 KiB |  00m00s
[ 52/422] Installing perl-Readonly-0:2.05-28.fc42.n 100% |  19.5 MiB/s |  99.7 KiB |  00m00s
[ 53/422] Installing perl-Pod-Parser-0:1.67-5.fc42. 100% |   7.4 MiB/s | 265.7 KiB |  00m00s
[ 54/422] Installing perl-File-pushd-0:1.016-22.fc4 100% |   9.1 MiB/s |  37.2 KiB |  00m00s
[ 55/422] Installing perl-CPAN-Meta-YAML-0:0.020-2. 100% |   5.2 MiB/s |  53.5 KiB |  00m00s
[ 56/422] Installing perl-CPAN-Meta-0:2.150010-512. 100% |  33.3 MiB/s | 613.8 KiB |  00m00s
[ 57/422] Installing perl-CPAN-DistnameInfo-0:0.12- 100% |   3.8 MiB/s |  11.6 KiB |  00m00s
[ 58/422] Installing perl-OLE-Storage_Lite-0:0.22-6 100% |  21.6 MiB/s |  88.3 KiB |  00m00s
[ 59/422] Installing perl-Opcode-0:1.65-517.fc42.x8 100% |  12.2 MiB/s |  49.9 KiB |  00m00s
[ 60/422] Installing perl-Safe-0:2.46-517.fc42.noar 100% |  10.1 MiB/s |  31.0 KiB |  00m00s
[ 61/422] Installing perl-Parse-RecDescent-0:1.9670 100% |  52.3 MiB/s | 535.4 KiB |  00m00s
[ 62/422] Installing perl-IO-Zlib-1:1.15-512.fc42.n 100% |   8.7 MiB/s |  26.7 KiB |  00m00s
[ 63/422] Installing perl-Object-Accessor-1:0.48-35 100% |  15.7 MiB/s |  32.2 KiB |  00m00s
[ 64/422] Installing perl-Digest-HMAC-0:1.05-2.fc42 100% |  10.2 MiB/s |  31.5 KiB |  00m00s
[ 65/422] Installing perl-DBD-SQLite-0:1.76-2.fc42. 100% |  80.1 MiB/s | 574.1 KiB |  00m00s
[ 66/422] Installing perl-SelfLoader-0:1.27-517.fc4 100% |  11.1 MiB/s |  22.8 KiB |  00m00s
[ 67/422] Installing perl-ExtUtils-Command-2:7.74-1 100% |   5.0 MiB/s |  10.2 KiB |  00m00s
[ 68/422] Installing perl-ExtUtils-Constant-0:0.25- 100% |  42.8 MiB/s |  87.6 KiB |  00m00s
[ 69/422] Installing perl-DirHandle-0:1.05-517.fc42 100% |   3.7 MiB/s |   3.8 KiB |  00m00s
[ 70/422] Installing perl-Module-Loaded-1:0.08-517. 100% |   2.7 MiB/s |   5.5 KiB |  00m00s
[ 71/422] Installing perl-AutoSplit-0:5.74-517.fc42 100% |  11.5 MiB/s |  23.5 KiB |  00m00s
[ 72/422] Installing perl-ExtUtils-MM-Utils-2:7.74- 100% |   3.6 MiB/s |   3.7 KiB |  00m00s
[ 73/422] Installing perl-IPC-Cmd-2:1.04-513.fc42.n 100% |  41.9 MiB/s |  85.9 KiB |  00m00s
[ 74/422] Installing perl-File-Fetch-0:1.04-512.fc4 100% |  29.4 MiB/s |  60.2 KiB |  00m00s
[ 75/422] Installing perl-Time-Piece-0:1.3401-517.f 100% |  23.7 MiB/s |  72.7 KiB |  00m00s
[ 76/422] Installing perl-Benchmark-0:1.25-517.fc42 100% |  17.9 MiB/s |  36.7 KiB |  00m00s
[ 77/422] Installing perl-Test-Harness-1:3.50-2.fc4 100% |  17.2 MiB/s | 582.4 KiB |  00m00s
[ 78/422] Installing perl-ExtUtils-MakeMaker-2:7.74 100% |  25.3 MiB/s | 750.1 KiB |  00m00s
[ 79/422] Installing perl-ExtUtils-Install-0:2.22-5 100% |  28.4 MiB/s |  87.2 KiB |  00m00s
[ 80/422] Installing perl-ExtUtils-Config-0:0.010-2 100% |  10.4 MiB/s |  32.0 KiB |  00m00s
[ 81/422] Installing perl-String-Formatter-0:1.235- 100% |  23.8 MiB/s |  73.1 KiB |  00m00s
[ 82/422] Installing perl-Net-Ping-0:2.76-512.fc42. 100% |  44.1 MiB/s | 135.3 KiB |  00m00s
[ 83/422] Installing perl-Devel-PPPort-0:3.72-513.f 100% | 124.8 MiB/s | 894.5 KiB |  00m00s
[ 84/422] Installing perl-Image-Base-0:1.17-31.fc42 100% |  17.7 MiB/s |  36.2 KiB |  00m00s
[ 85/422] Installing perl-Class-Accessor-0:0.51-22. 100% |  14.0 MiB/s |  42.9 KiB |  00m00s
[ 86/422] Installing perl-XML-SAX-Base-0:1.09-25.fc 100% |  56.8 MiB/s | 174.5 KiB |  00m00s
[ 87/422] Installing perl-Tie-IxHash-0:1.23-40.fc42 100% |  10.0 MiB/s |  20.6 KiB |  00m00s
[ 88/422] Installing perl-Tie-RefHash-0:1.41-2.fc42 100% |  18.2 MiB/s |  37.4 KiB |  00m00s
[ 89/422] Installing perl-Module-Find-0:0.17-1.fc42 100% |   9.9 MiB/s |  20.2 KiB |  00m00s
[ 90/422] Installing perl-MIME-Types-0:2.27-1.fc42. 100% |  60.8 MiB/s | 186.7 KiB |  00m00s
[ 91/422] Installing perl-Term-Table-0:0.024-2.fc42 100% |  15.8 MiB/s |  81.1 KiB |  00m00s
[ 92/422] Installing perl-Test-Simple-3:1.302210-1. 100% |  52.0 MiB/s |   1.8 MiB |  00m00s
[ 93/422] Installing perl-Test-Deep-0:1.205-1.fc42. 100% |  30.5 MiB/s | 280.8 KiB |  00m00s
[ 94/422] Installing perl-Import-Into-0:1.002005-28 100% |  10.2 MiB/s |  21.0 KiB |  00m00s
[ 95/422] Installing perl-Moo-0:2.005005-8.fc42.noa 100% |  21.0 MiB/s | 172.1 KiB |  00m00s
[ 96/422] Installing perl-Parallel-ForkManager-0:2. 100% |  17.0 MiB/s |  52.1 KiB |  00m00s
[ 97/422] Installing perl-Class-Tiny-0:1.008-13.fc4 100% |  26.5 MiB/s |  54.3 KiB |  00m00s
[ 98/422] Installing perl-Task-Weaken-0:1.06-21.fc4 100% |   9.4 MiB/s |  29.0 KiB |  00m00s
[ 99/422] Installing perl-Safe-Isa-0:1.000010-21.fc 100% |   7.0 MiB/s |  14.4 KiB |  00m00s
[100/422] Installing perl-HTTP-Cookies-0:6.11-5.fc4 100% |  18.5 MiB/s |  75.7 KiB |  00m00s
[101/422] Installing perl-Net-HTTP-0:6.23-6.fc42.no 100% |  12.6 MiB/s |  77.2 KiB |  00m00s
[102/422] Installing perl-Net-SMTP-SSL-0:1.04-26.fc 100% |   1.3 MiB/s |   5.3 KiB |  00m00s
[103/422] Installing perl-MailTools-0:2.22-2.fc42.n 100% |  29.6 MiB/s | 212.5 KiB |  00m00s
[104/422] Installing perl-Scope-Guard-0:0.21-29.fc4 100% |   5.5 MiB/s |  16.9 KiB |  00m00s
[105/422] Installing perl-Pod-Checker-4:1.77-512.fc 100% |   1.9 MiB/s |  53.5 KiB |  00m00s
[106/422] Installing perl-IPC-System-Simple-0:1.30- 100% |  23.9 MiB/s |  73.5 KiB |  00m00s
[107/422] Installing perl-autodie-0:2.37-513.fc42.n 100% |  42.8 MiB/s | 219.1 KiB |  00m00s
[108/422] Installing perl-Text-Template-0:1.61-7.fc 100% |  37.1 MiB/s | 114.0 KiB |  00m00s
[109/422] Installing perl-Data-Section-0:0.200008-7 100% |  10.8 MiB/s |  44.1 KiB |  00m00s
[110/422] Installing perl-Software-License-0:0.1040 100% |  35.9 MiB/s | 514.4 KiB |  00m00s
[111/422] Installing perl-List-SomeUtils-0:0.59-7.f 100% |  17.7 MiB/s | 109.0 KiB |  00m00s
[112/422] Installing perl-Config-Tiny-0:2.30-5.fc42 100% |  10.2 MiB/s |  52.0 KiB |  00m00s
[113/422] Installing perl-B-Keywords-0:1.27-3.fc42. 100% |   5.2 MiB/s |  21.3 KiB |  00m00s
[114/422] Installing perl-local-lib-0:2.000029-9.fc 100% |  14.7 MiB/s | 120.4 KiB |  00m00s
[115/422] Installing perl-Email-Valid-0:1.204-3.fc4 100% |   9.0 MiB/s |  46.0 KiB |  00m00s
[116/422] Installing perl-MetaCPAN-Client-0:2.03300 100% |  15.5 MiB/s | 190.5 KiB |  00m00s
[117/422] Installing perl-Devel-PartialDump-0:0.20- 100% |  10.6 MiB/s |  43.6 KiB |  00m00s
[118/422] Installing perl-CPAN-Changes-0:0.500004-3 100% |   2.5 MiB/s |  86.4 KiB |  00m00s
[119/422] Installing perl-MetaCPAN-API-0:0.51-23.fc 100% |  13.2 MiB/s |  67.6 KiB |  00m00s
[120/422] Installing perl-Throwable-1:1.001-7.fc42. 100% |   9.0 MiB/s |  46.0 KiB |  00m00s
[121/422] Installing perl-Package-Variant-0:1.00300 100% |   6.4 MiB/s |  33.0 KiB |  00m00s
[122/422] Installing perl-Log-Any-0:1.717-5.fc42.no 100% |  14.6 MiB/s | 194.1 KiB |  00m00s
[123/422] Installing perl-Class-Accessor-Chained-0: 100% |   2.0 MiB/s |   8.1 KiB |  00m00s
[124/422] Installing perl-Text-RecordParser-0:1.6.5 100% |  10.9 MiB/s |  66.8 KiB |  00m00s
[125/422] Installing perl-Image-Xbm-0:1.11-2.fc42.n 100% |   8.4 MiB/s |  34.3 KiB |  00m00s
[126/422] Installing perl-Image-Xpm-0:1.13-26.fc42. 100% |   6.9 MiB/s |  28.1 KiB |  00m00s
[127/422] Installing perl-String-Errf-0:0.009-7.fc4 100% |   9.0 MiB/s |  46.0 KiB |  00m00s
[128/422] Installing perl-ExtUtils-InstallPaths-0:0 100% |   9.1 MiB/s |  46.4 KiB |  00m00s
[129/422] Installing perl-inc-latest-2:0.500-30.fc4 100% |   5.9 MiB/s |  36.3 KiB |  00m00s
[130/422] Installing perl-Module-Build-2:0.42.34-8. 100% |  12.5 MiB/s | 663.2 KiB |  00m00s
[131/422] Installing perl-ExtUtils-HasCompiler-0:0. 100% |   8.7 MiB/s |  35.8 KiB |  00m00s
[132/422] Installing perl-CPAN-Requirements-Dynamic 100% |   6.6 MiB/s |  33.7 KiB |  00m00s
[133/422] Installing perl-libnetcfg-4:5.40.2-517.fc 100% | 692.3 KiB/s |  17.3 KiB |  00m00s
[134/422] Installing perl-Devel-SelfStubber-0:1.06- 100% |   3.6 MiB/s |   7.3 KiB |  00m00s
[135/422] Installing perl-NTLM-0:1.09-40.fc42.noarc 100% |  10.6 MiB/s |  32.7 KiB |  00m00s
[136/422] Installing perl-Parse-PMFile-0:0.47-3.fc4 100% |  19.4 MiB/s |  39.7 KiB |  00m00s
[137/422] Installing perl-CPAN-Meta-Check-0:0.018-5 100% |  14.3 MiB/s |  29.4 KiB |  00m00s
[138/422] Installing perl-Module-CPANfile-0:1.1004- 100% |   2.8 MiB/s |  69.6 KiB |  00m00s
[139/422] Installing perl-Pod-Wrap-0:0.01-27.fc42.n 100% |   1.3 MiB/s |  29.5 KiB |  00m00s
[140/422] Installing perl-Data-Perl-0:0.002011-16.f 100% |  18.7 MiB/s |  95.7 KiB |  00m00s
[141/422] Installing perl-MooX-HandlesVia-0:0.00100 100% |   9.3 MiB/s |  47.4 KiB |  00m00s
[142/422] Installing perl-Pod-Eventual-0:0.094003-7 100% |  20.5 MiB/s |  42.0 KiB |  00m00s
[143/422] Installing perl-String-Flogger-0:1.101246 100% |  13.3 MiB/s |  27.3 KiB |  00m00s
[144/422] Installing perl-Unicode-Collate-0:1.31-51 100% | 167.8 MiB/s |   4.2 MiB |  00m00s
[145/422] Installing perl-Unicode-UCD-0:0.78-517.fc 100% | 100.1 MiB/s | 205.0 KiB |  00m00s
[146/422] Installing perl-fields-0:2.27-517.fc42.no 100% |   6.0 MiB/s |  12.2 KiB |  00m00s
[147/422] Installing perl-debugger-0:1.60-517.fc42. 100% |  98.5 MiB/s | 403.3 KiB |  00m00s
[148/422] Installing perl-sigtrap-0:1.10-517.fc42.n 100% |   5.6 MiB/s |  11.4 KiB |  00m00s
[149/422] Installing perl-Log-Message-Simple-0:0.10 100% |   6.4 MiB/s |  13.1 KiB |  00m00s
[150/422] Installing perl-Term-UI-0:0.50-13.fc42.no 100% |   7.1 MiB/s |  36.3 KiB |  00m00s
[151/422] Installing perl-Mouse-0:2.5.11-2.fc42.x86 100% |  15.3 MiB/s |   1.1 MiB |  00m00s
[152/422] Installing perl-Bit-Vector-0:7.4-37.fc42. 100% |  47.4 MiB/s | 485.8 KiB |  00m00s
[153/422] Installing perl-Date-Calc-0:6.4-30.fc42.n 100% | 112.0 MiB/s | 688.4 KiB |  00m00s
[154/422] Installing perl-Mail-Sendmail-0:0.80-23.f 100% |  13.0 MiB/s |  66.5 KiB |  00m00s
[155/422] Installing perl-Data-Dump-0:1.25-12.fc42. 100% |  17.0 MiB/s |  52.2 KiB |  00m00s
[156/422] Installing php-cli-0:8.4.7-1.fc42.x86_64  100% | 148.9 MiB/s |  12.2 MiB |  00m00s
[157/422] Installing php-xml-0:8.4.7-1.fc42.x86_64  100% | 134.6 MiB/s |   3.5 MiB |  00m00s
[158/422] Installing php-intl-0:8.4.7-1.fc42.x86_64 100% |  47.5 MiB/s | 583.8 KiB |  00m00s
[159/422] Installing php-pear-PHP-CodeSniffer-0:3.1 100% |  25.2 MiB/s |   3.3 MiB |  00m00s
[160/422] Installing perl-Class-Load-XS-0:0.10-27.f 100% |   5.0 MiB/s |  30.8 KiB |  00m00s
[161/422] Installing nodejs-libs-1:22.15.1-1.fc42.x 100% | 264.1 MiB/s |  79.2 MiB |  00m00s
[162/422] Installing nodejs-1:22.15.1-1.fc42.x86_64 100% |   5.7 MiB/s | 158.3 KiB |  00m00s
[163/422] Installing libstdc++-devel-0:15.1.1-2.fc4 100% | 160.6 MiB/s |  16.2 MiB |  00m00s
[164/422] Installing perl-Thread-Queue-0:3.14-512.f 100% |  14.8 MiB/s |  30.4 KiB |  00m00s
[165/422] Installing perl-Thread-0:3.05-517.fc42.no 100% |   6.1 MiB/s |  12.5 KiB |  00m00s
[166/422] Installing perl-Thread-Semaphore-0:2.13-5 100% |   5.2 MiB/s |  10.6 KiB |  00m00s
[167/422] Installing perl-SQL-Abstract-Classic-0:1. 100% |  31.2 MiB/s | 127.9 KiB |  00m00s
[168/422] Installing perl-Env-0:1.06-512.fc42.noarc 100% |   6.6 MiB/s |  27.2 KiB |  00m00s
[169/422] Installing perl-DBIx-ContextualFetch-0:1. 100% |   2.2 MiB/s |   9.0 KiB |  00m00s
[170/422] Installing perl-DBIx-XHTML_Table-0:1.49-2 100% |  13.5 MiB/s |  68.9 KiB |  00m00s
[171/422] Installing perl-SQL-Interp-0:1.27-14.fc42 100% |  14.9 MiB/s |  76.3 KiB |  00m00s
[172/422] Installing perl-Package-Constants-1:0.06- 100% |   2.2 MiB/s |   6.8 KiB |  00m00s
[173/422] Upgrading libgomp-0:15.1.1-2.fc42.x86_64  100% |  58.6 MiB/s | 540.5 KiB |  00m00s
[174/422] Upgrading cpp-0:15.1.1-2.fc42.x86_64      100% | 163.2 MiB/s |  37.9 MiB |  00m00s
[175/422] Upgrading gcc-0:15.1.1-2.fc42.x86_64      100% | 169.4 MiB/s | 111.2 MiB |  00m01s
[176/422] Installing gcc-c++-0:15.1.1-2.fc42.x86_64 100% | 192.1 MiB/s |  41.3 MiB |  00m00s
[177/422] Installing perl-Term-Size-Perl-0:0.031-21 100% |   8.9 MiB/s |  27.4 KiB |  00m00s
[178/422] Installing sombok-0:2.4.0-23.fc42.x86_64  100% |  32.7 MiB/s | 133.8 KiB |  00m00s
[179/422] Installing perl-MIME-Charset-0:1.013.1-7. 100% |  26.2 MiB/s | 107.3 KiB |  00m00s
[180/422] Installing perl-Encode-devel-4:3.21-512.f 100% |   4.7 MiB/s | 101.1 KiB |  00m00s
[181/422] Installing perl-vmsish-0:1.04-517.fc42.no 100% |   3.4 MiB/s |   6.9 KiB |  00m00s
[182/422] Installing perl-utils-0:5.40.2-517.fc42.n 100% |   4.2 MiB/s |  98.5 KiB |  00m00s
[183/422] Installing perl-sort-0:2.05-517.fc42.noar 100% |   2.5 MiB/s |   5.2 KiB |  00m00s
[184/422] Installing perl-ph-0:5.40.2-517.fc42.x86_ 100% |  53.8 MiB/s | 275.4 KiB |  00m00s
[185/422] Installing perl-macros-4:5.40.2-517.fc42. 100% |   2.8 MiB/s |   5.8 KiB |  00m00s
[186/422] Installing perl-less-0:0.03-517.fc42.noar 100% |   2.6 MiB/s |   5.3 KiB |  00m00s
[187/422] Installing perl-filetest-0:1.03-517.fc42. 100% |   3.3 MiB/s |   6.8 KiB |  00m00s
[188/422] Installing perl-encoding-warnings-0:0.14- 100% |   3.5 MiB/s |  10.7 KiB |  00m00s
[189/422] Installing perl-doc-0:5.40.2-517.fc42.noa 100% | 184.7 MiB/s |  11.1 MiB |  00m00s
[190/422] Installing perl-diagnostics-0:1.40-517.fc 100% |  19.8 MiB/s | 466.5 KiB |  00m00s
[191/422] Installing perl-blib-0:1.07-517.fc42.noar 100% |   1.8 MiB/s |   3.6 KiB |  00m00s
[192/422] Installing perl-Time-0:1.04-517.fc42.noar 100% |   3.5 MiB/s |  10.8 KiB |  00m00s
[193/422] Installing perl-Tie-Memoize-0:1.1-517.fc4 100% |   3.3 MiB/s |   6.7 KiB |  00m00s
[194/422] Installing perl-Tie-File-0:1.09-517.fc42. 100% |  42.1 MiB/s |  86.2 KiB |  00m00s
[195/422] Installing perl-Text-Abbrev-0:1.02-517.fc 100% |   1.8 MiB/s |   3.6 KiB |  00m00s
[196/422] Installing perl-Test-0:1.31-517.fc42.noar 100% |  12.2 MiB/s |  37.4 KiB |  00m00s
[197/422] Installing perl-Term-Complete-0:1.403-517 100% |   3.1 MiB/s |   6.3 KiB |  00m00s
[198/422] Installing perl-Search-Dict-0:1.07-517.fc 100% |   2.5 MiB/s |   5.2 KiB |  00m00s
[199/422] Installing perl-Pod-Functions-0:1.14-517. 100% |   7.2 MiB/s |  14.6 KiB |  00m00s
[200/422] Installing perl-ODBM_File-0:1.18-517.fc42 100% |   9.6 MiB/s |  29.4 KiB |  00m00s
[201/422] Installing perl-Net-0:1.04-517.fc42.noarc 100% |   5.8 MiB/s |  23.7 KiB |  00m00s
[202/422] Installing perl-NEXT-0:0.69-517.fc42.noar 100% |   5.8 MiB/s |  23.9 KiB |  00m00s
[203/422] Installing perl-Module-CoreList-tools-1:5 100% | 665.5 KiB/s |  19.3 KiB |  00m00s
[204/422] Installing perl-Memoize-0:1.16-517.fc42.n 100% |  16.2 MiB/s |  66.5 KiB |  00m00s
[205/422] Installing perl-I18N-Collate-0:1.02-517.f 100% |   3.7 MiB/s |   7.6 KiB |  00m00s
[206/422] Installing perl-GDBM_File-1:1.24-517.fc42 100% |  13.1 MiB/s |  80.7 KiB |  00m00s
[207/422] Installing perl-FileCache-0:1.10-517.fc42 100% |   2.6 MiB/s |   7.9 KiB |  00m00s
[208/422] Installing perl-File-DosGlob-0:1.12-517.f 100% |   3.6 MiB/s |  22.2 KiB |  00m00s
[209/422] Installing perl-Devel-Peek-0:1.34-517.fc4 100% |   8.8 MiB/s |  44.9 KiB |  00m00s
[210/422] Installing perl-DBM_Filter-0:0.06-517.fc4 100% |   6.0 MiB/s |  30.5 KiB |  00m00s
[211/422] Installing perl-Config-Extensions-0:0.03- 100% |   1.0 MiB/s |   3.2 KiB |  00m00s
[212/422] Installing perl-Attribute-Handlers-0:1.03 100% |  13.2 MiB/s |  40.5 KiB |  00m00s
[213/422] Installing systemtap-sdt-dtrace-0:5.3-1.f 100% |   5.9 MiB/s | 180.9 KiB |  00m00s
[214/422] Installing systemtap-sdt-devel-0:5.3-1.fc 100% |  25.7 MiB/s | 184.3 KiB |  00m00s
[215/422] Installing perl-devel-4:5.40.2-517.fc42.x 100% | 151.9 MiB/s |   8.1 MiB |  00m00s
[216/422] Installing perl-ExtUtils-CBuilder-1:0.280 100% |  19.9 MiB/s | 101.7 KiB |  00m00s
[217/422] Installing perl-ExtUtils-Embed-0:1.35-517 100% |   7.9 MiB/s |  16.1 KiB |  00m00s
[218/422] Installing perl-ExtUtils-Miniperl-0:1.14- 100% |   2.9 MiB/s |   8.8 KiB |  00m00s
[219/422] Installing perl-IO-Interactive-0:1.027-1. 100% |  11.7 MiB/s |  36.1 KiB |  00m00s
[220/422] Installing perl-CGI-0:4.68-1.fc42.noarch  100% |  68.2 MiB/s | 559.1 KiB |  00m00s
[221/422] Installing perl-Email-Date-Format-0:1.008 100% |   6.3 MiB/s |  26.0 KiB |  00m00s
[222/422] Installing perl-MIME-Lite-0:3.033-14.fc42 100% |  30.4 MiB/s | 248.9 KiB |  00m00s
[223/422] Installing perl-Mail-Sender-1:0.903-26.fc 100% |  31.7 MiB/s | 162.5 KiB |  00m00s
[224/422] Installing perl-Log-Dispatch-0:2.71-6.fc4 100% |  16.3 MiB/s | 150.0 KiB |  00m00s
[225/422] Installing perl-Log-Dispatch-Array-0:1.00 100% |   8.4 MiB/s |  25.9 KiB |  00m00s
[226/422] Installing perl-aliased-0:0.34-30.fc42.no 100% |  12.4 MiB/s |  38.2 KiB |  00m00s
[227/422] Installing perl-Sub-Exporter-GlobExporter 100% |   9.7 MiB/s |  29.8 KiB |  00m00s
[228/422] Installing perl-Log-Dispatchouli-0:3.009- 100% |  21.7 MiB/s | 111.0 KiB |  00m00s
[229/422] Installing perl-IO-TieCombine-0:1.005-28. 100% |  11.5 MiB/s |  35.2 KiB |  00m00s
[230/422] Installing perl-YAML-Tiny-0:1.76-2.fc42.n 100% |  17.3 MiB/s |  88.7 KiB |  00m00s
[231/422] Installing perl-Term-Encoding-0:0.03-19.f 100% |   3.3 MiB/s |  23.7 KiB |  00m00s
[232/422] Installing perl-Hash-Merge-Simple-0:0.052 100% |   6.5 MiB/s |  33.3 KiB |  00m00s
[233/422] Installing perl-File-ShareDir-Install-0:0 100% |   9.5 MiB/s |  39.0 KiB |  00m00s
[234/422] Installing perl-File-Copy-Recursive-0:0.4 100% |  10.3 MiB/s |  42.3 KiB |  00m00s
[235/422] Installing libdb-0:5.3.28-64.fc42.x86_64  100% | 110.0 MiB/s |   1.9 MiB |  00m00s
[236/422] Installing perl-DB_File-0:1.859-513.fc42. 100% |  31.0 MiB/s | 190.6 KiB |  00m00s
[237/422] Installing perl-Devel-Size-0:0.84-4.fc42. 100% |  10.6 MiB/s |  43.5 KiB |  00m00s
[238/422] Installing perl-Compress-Bzip2-0:2.28-21. 100% |  20.3 MiB/s | 145.3 KiB |  00m00s
[239/422] Installing perl-perlfaq-0:5.20240218-512. 100% | 102.8 MiB/s | 736.9 KiB |  00m00s
[240/422] Installing perl-bignum-0:0.67-513.fc42.no 100% |  19.0 MiB/s | 136.5 KiB |  00m00s
[241/422] Installing perl-PerlIO-via-QuotedPrint-0: 100% |  15.7 MiB/s |  32.1 KiB |  00m00s
[242/422] Installing perl-Math-BigInt-FastCalc-0:0. 100% |  11.4 MiB/s |  46.9 KiB |  00m00s
[243/422] Installing perl-IPC-SysV-0:2.09-513.fc42. 100% |  15.0 MiB/s |  76.7 KiB |  00m00s
[244/422] Installing perl-Config-Perl-V-0:0.38-2.fc 100% |   4.5 MiB/s |  27.5 KiB |  00m00s
[245/422] Installing rgb-0:1.1.0-2.fc42.x86_64      100% |   1.0 MiB/s |  30.9 KiB |  00m00s
[246/422] Installing perl-UNIVERSAL-isa-0:1.2017101 100% |  16.0 MiB/s |  32.8 KiB |  00m00s
[247/422] Installing perl-Text-CSV_XS-0:1.60-1.fc42 100% |  69.7 MiB/s | 356.8 KiB |  00m00s
[248/422] Installing perl-Digest-MD4-0:1.9-42.fc42. 100% |  11.2 MiB/s |  69.1 KiB |  00m00s
[249/422] Installing perl-Date-Manip-0:6.97-1.fc42. 100% | 112.8 MiB/s |  10.8 MiB |  00m00s
[250/422] Installing perl-Spreadsheet-WriteExcel-0: 100% |  47.7 MiB/s |   1.9 MiB |  00m00s
[251/422] Installing perl-Pod-POM-0:2.01-30.fc42.no 100% |   5.1 MiB/s | 189.3 KiB |  00m00s
[252/422] Installing perl-AppConfig-0:1.71-32.fc42. 100% |  37.5 MiB/s | 191.8 KiB |  00m00s
[253/422] Installing perl-Jcode-0:2.07-45.fc42.noar 100% |  14.5 MiB/s |  59.4 KiB |  00m00s
[254/422] Installing perl-Digest-Perl-MD5-0:1.9-33. 100% |   3.4 MiB/s |  17.6 KiB |  00m00s
[255/422] Installing perl-Crypt-RC4-0:2.02-41.fc42. 100% |   2.1 MiB/s |   8.4 KiB |  00m00s
[256/422] Installing perl-Set-Object-0:1.42-12.fc42 100% |  17.3 MiB/s | 106.6 KiB |  00m00s
[257/422] Installing perl-Heap-0:0.80-47.fc42.noarc 100% |   9.4 MiB/s |  67.3 KiB |  00m00s
[258/422] Installing perl-Graph-0:0.97.27-5.fc42.no 100% |  27.4 MiB/s | 308.8 KiB |  00m00s
[259/422] Installing perl-Algorithm-C3-0:0.11-15.fc 100% |   6.4 MiB/s |  39.5 KiB |  00m00s
[260/422] Installing perl-Class-C3-0:0.35-15.fc42.n 100% |  11.9 MiB/s |  48.7 KiB |  00m00s
[261/422] Installing perl-Class-C3-Componentised-0: 100% |   3.8 MiB/s |  31.3 KiB |  00m00s
[262/422] Installing perl-Text-Aligner-0:0.16-15.fc 100% |   5.5 MiB/s |  22.7 KiB |  00m00s
[263/422] Installing perl-Text-Table-0:1.135-7.fc42 100% |  20.9 MiB/s |  64.2 KiB |  00m00s
[264/422] Installing perl-XML-Writer-0:0.900-16.fc4 100% |  16.8 MiB/s |  68.6 KiB |  00m00s
[265/422] Installing perl-Clone-Choose-0:0.010-22.f 100% |   5.3 MiB/s |  16.3 KiB |  00m00s
[266/422] Installing perl-Hash-Merge-0:0.302-14.fc4 100% |   8.3 MiB/s |  34.2 KiB |  00m00s
[267/422] Installing perl-SQL-Abstract-0:2.000001-1 100% |  32.8 MiB/s | 335.8 KiB |  00m00s
[268/422] Installing perl-DBIx-Simple-0:1.37-24.fc4 100% |  10.3 MiB/s |  74.2 KiB |  00m00s
[269/422] Installing perl-Devel-ArgNames-0:0.03-34. 100% |   1.0 MiB/s |   4.3 KiB |  00m00s
[270/422] Installing perl-Data-Dumper-Concise-0:2.0 100% |   3.5 MiB/s |  25.2 KiB |  00m00s
[271/422] Installing perl-B-Hooks-OP-Check-0:0.22-2 100% |   7.2 MiB/s |  58.8 KiB |  00m00s
[272/422] Installing perl-Devel-Declare-0:0.006022- 100% |  14.7 MiB/s | 120.6 KiB |  00m00s
[273/422] Installing perl-Method-Signatures-Simple- 100% |  10.6 MiB/s |  32.6 KiB |  00m00s
[274/422] Installing perl-Mason-Tidy-0:2.57-29.fc42 100% |   1.5 MiB/s |  50.6 KiB |  00m00s
[275/422] Installing perl-String-Truncate-0:1.10060 100% |  11.7 MiB/s |  36.0 KiB |  00m00s
[276/422] Installing perl-YAML-LibYAML-1:0.903.0-1. 100% |  14.5 MiB/s | 104.0 KiB |  00m00s
[277/422] Installing perl-Config-General-0:2.67-2.f 100% |  34.6 MiB/s | 177.2 KiB |  00m00s
[278/422] Installing perl-Math-Base36-0:0.14-30.fc4 100% |   2.2 MiB/s |   6.6 KiB |  00m00s
[279/422] Installing perl-JSON-Any-0:1.40-5.fc42.no 100% |  18.7 MiB/s |  38.3 KiB |  00m00s
[280/422] Installing perl-DateTime-Format-Strptime- 100% |  24.1 MiB/s |  98.7 KiB |  00m00s
[281/422] Installing perl-Context-Preserve-0:0.03-2 100% |  10.1 MiB/s |  31.1 KiB |  00m00s
[282/422] Installing perl-Class-Trigger-0:0.15-15.f 100% |  13.7 MiB/s |  42.0 KiB |  00m00s
[283/422] Installing perl-Class-Accessor-Grouped-0: 100% |  17.8 MiB/s |  54.6 KiB |  00m00s
[284/422] Installing perl-Number-Compare-0:0.03-40. 100% |   1.8 MiB/s |   5.4 KiB |  00m00s
[285/422] Installing perl-File-Find-Rule-0:0.34-30. 100% |   1.3 MiB/s |  44.4 KiB |  00m00s
[286/422] Installing perl-Devel-CheckOS-0:2.04-3.fc 100% |   7.7 MiB/s | 306.6 KiB |  00m00s
[287/422] Installing perl-TeX-Hyphen-0:1.18-25.fc42 100% |  18.4 MiB/s |  56.6 KiB |  00m00s
[288/422] Installing perl-Text-Reform-0:1.20-41.fc4 100% |  21.1 MiB/s |  86.6 KiB |  00m00s
[289/422] Installing perl-Text-Autoformat-0:1.75000 100% |  14.6 MiB/s |  89.4 KiB |  00m00s
[290/422] Installing perl-Compress-Raw-Lzma-0:2.213 100% |  17.2 MiB/s | 123.3 KiB |  00m00s
[291/422] Installing perl-IO-Compress-Lzma-0:2.213- 100% |  21.5 MiB/s | 220.4 KiB |  00m00s
[292/422] Installing perl-boolean-0:0.46-25.fc42.no 100% |   8.5 MiB/s |  34.8 KiB |  00m00s
[293/422] Installing perl-YAML-PP-0:0.39.0-1.fc42.n 100% |   9.5 MiB/s | 504.0 KiB |  00m00s
[294/422] Installing perl-PPI-0:1.281-2.fc42.noarch 100% |  29.0 MiB/s | 742.9 KiB |  00m00s
[295/422] Installing perl-PPIx-QuoteLike-0:0.023-8. 100% |  28.0 MiB/s | 172.1 KiB |  00m00s
[296/422] Installing perl-PPIx-Utils-0:0.003-14.fc4 100% |  17.3 MiB/s |  88.7 KiB |  00m00s
[297/422] Installing perl-PPIx-Regexp-0:0.089-1.fc4 100% |  37.3 MiB/s | 687.4 KiB |  00m00s
[298/422] Installing perl-Text-WagnerFischer-0:0.04 100% |   3.3 MiB/s |  10.1 KiB |  00m00s
[299/422] Installing perl-Package-DeprecationManage 100% |   9.9 MiB/s |  40.4 KiB |  00m00s
[300/422] Installing perl-Module-Runtime-Conflicts- 100% |   9.2 MiB/s |  28.1 KiB |  00m00s
[301/422] Installing perl-Devel-OverloadInfo-0:0.00 100% |   3.0 MiB/s |  30.9 KiB |  00m00s
[302/422] Installing perl-Moose-0:2.2207-6.fc42.x86 100% |  28.9 MiB/s |   3.6 MiB |  00m00s
[303/422] Installing perl-MooseX-Types-0:0.50-24.fc 100% |   4.3 MiB/s | 180.2 KiB |  00m00s
[304/422] Installing perl-MooseX-Role-Parameterized 100% |  19.8 MiB/s | 141.9 KiB |  00m00s
[305/422] Installing perl-MooseX-OneArgNew-0:0.007- 100% |   5.4 MiB/s |  27.7 KiB |  00m00s
[306/422] Installing perl-Role-HasMessage-0:0.007-8 100% |   5.8 MiB/s |  29.9 KiB |  00m00s
[307/422] Installing perl-Pod-Elemental-0:0.103006- 100% |   9.4 MiB/s | 154.6 KiB |  00m00s
[308/422] Installing perl-MooseX-Types-JSON-0:1.01- 100% |   4.1 MiB/s |  25.4 KiB |  00m00s
[309/422] Installing perl-MooseX-Types-LoadableClas 100% |   4.4 MiB/s |  26.9 KiB |  00m00s
[310/422] Installing perl-MooseX-Types-Path-Class-0 100% |   9.2 MiB/s |  47.1 KiB |  00m00s
[311/422] Installing perl-MooseX-Types-Perl-0:0.101 100% |   7.4 MiB/s |  30.5 KiB |  00m00s
[312/422] Installing perl-MooseX-SemiAffordanceAcce 100% |   5.3 MiB/s |  21.5 KiB |  00m00s
[313/422] Installing perl-MooseX-LazyRequire-0:0.11 100% |   7.5 MiB/s |  30.9 KiB |  00m00s
[314/422] Installing perl-MooseX-SetOnce-0:0.203000 100% |  13.1 MiB/s |  26.8 KiB |  00m00s
[315/422] Installing perl-Role-Identifiable-0:0.009 100% |   6.1 MiB/s |  31.4 KiB |  00m00s
[316/422] Installing perl-Config-MVP-0:2.200013-8.f 100% |  15.6 MiB/s | 127.9 KiB |  00m00s
[317/422] Installing perl-Config-MVP-Reader-INI-0:2 100% |   8.7 MiB/s |  26.9 KiB |  00m00s
[318/422] Installing perl-System-Command-0:1.122-6. 100% |  13.2 MiB/s |  67.8 KiB |  00m00s
[319/422] Installing perl-Git-Version-Compare-0:1.0 100% |   5.5 MiB/s |  34.1 KiB |  00m00s
[320/422] Installing perl-Git-Repository-0:1.325-14 100% |  18.5 MiB/s | 113.5 KiB |  00m00s
[321/422] Installing perl-File-MMagic-0:1.30-35.fc4 100% |  15.3 MiB/s |  78.4 KiB |  00m00s
[322/422] Installing perl-GSSAPI-0:0.28-48.fc42.x86 100% |  13.5 MiB/s | 124.2 KiB |  00m00s
[323/422] Installing perl-Authen-SASL-0:2.1700-5.fc 100% |  11.9 MiB/s | 121.8 KiB |  00m00s
[324/422] Installing git-email-0:2.49.0-1.fc42.noar 100% |  22.1 MiB/s | 158.1 KiB |  00m00s
[325/422] Installing perl-Module-Locate-0:1.80-27.f 100% |   8.0 MiB/s |  32.7 KiB |  00m00s
[326/422] Installing perl-Sort-Key-0:1.33-33.fc42.x 100% |   9.4 MiB/s |  77.4 KiB |  00m00s
[327/422] Installing perl-Devel-FastProf-0:0.08-49. 100% |   1.1 MiB/s |  42.7 KiB |  00m00s
[328/422] Installing perl-Algorithm-Diff-0:1.2010-1 100% |  35.6 MiB/s | 109.5 KiB |  00m00s
[329/422] Installing perl-Text-Diff-0:1.45-23.fc42. 100% |  27.7 MiB/s |  85.1 KiB |  00m00s
[330/422] Installing perl-Archive-Tar-0:3.04-1.fc42 100% |   4.6 MiB/s | 156.9 KiB |  00m00s
[331/422] Installing perl-Archive-Extract-Z-Compres 100% |  60.5 KiB/s | 124.0   B |  00m00s
[332/422] Installing perl-Archive-Extract-bz2-IO-Un 100% |  60.5 KiB/s | 124.0   B |  00m00s
[333/422] Installing perl-Archive-Extract-gz-Compre 100% |  60.5 KiB/s | 124.0   B |  00m00s
[334/422] Installing perl-Archive-Extract-lzma-IO-U 100% |  60.5 KiB/s | 124.0   B |  00m00s
[335/422] Installing perl-Archive-Extract-tar-Archi 100% |  60.5 KiB/s | 124.0   B |  00m00s
[336/422] Installing perl-Archive-Extract-tbz-Archi 100% |  40.4 KiB/s | 124.0   B |  00m00s
[337/422] Installing perl-Archive-Extract-tgz-Archi 100% |  60.5 KiB/s | 124.0   B |  00m00s
[338/422] Installing perl-Archive-Extract-xz-IO-Unc 100% |  60.5 KiB/s | 124.0   B |  00m00s
[339/422] Installing perl-Archive-Extract-zip-Archi 100% |  60.5 KiB/s | 124.0   B |  00m00s
[340/422] Installing perl-Archive-Extract-1:0.88-13 100% |  11.6 MiB/s |  71.1 KiB |  00m00s
[341/422] Installing perl-Archive-Extract-txz-Archi 100% |  30.3 KiB/s | 124.0   B |  00m00s
[342/422] Installing perl-CPANPLUS-0:0.991.400-11.f 100% |  15.8 MiB/s | 807.7 KiB |  00m00s
[343/422] Installing perl-Archive-Any-0:0.0946-18.f 100% |  11.6 MiB/s |  47.7 KiB |  00m00s
[344/422] Installing perl-CPAN-ParseDistribution-0: 100% |   1.5 MiB/s |  48.4 KiB |  00m00s
[345/422] Installing perl-Module-Signature-0:0.89-2 100% |   5.5 MiB/s | 141.7 KiB |  00m00s
[346/422] Installing perl-4:5.40.2-517.fc42.x86_64  100% |  30.3 KiB/s | 124.0   B |  00m00s
[347/422] Installing perl-CPAN-0:2.38-3.fc42.noarch 100% |  46.2 MiB/s |   1.9 MiB |  00m00s
[348/422] Installing perl-IO-String-0:1.08-52.fc42. 100% |   5.8 MiB/s |  17.8 KiB |  00m00s
[349/422] Installing perl-Pod-Tidy-0:0.10-28.fc42.n 100% |   1.3 MiB/s |  58.5 KiB |  00m00s
[350/422] Installing perl-Unicode-UTF8-0:0.62-27.fc 100% |   7.5 MiB/s |  45.9 KiB |  00m00s
[351/422] Installing perl-Path-Tiny-0:0.148-1.fc42. 100% |  25.6 MiB/s | 236.0 KiB |  00m00s
[352/422] Installing perl-Specio-Library-Path-Tiny- 100% |   6.2 MiB/s |  38.1 KiB |  00m00s
[353/422] Installing perl-Perl-Tags-0:0.32-31.fc42. 100% |   3.2 MiB/s | 157.8 KiB |  00m00s
[354/422] Installing perl-Types-Path-Tiny-0:0.006-2 100% |   8.2 MiB/s |  25.3 KiB |  00m00s
[355/422] Installing perl-Archive-Peek-0:0.37-10.fc 100% |   2.5 MiB/s |   7.7 KiB |  00m00s
[356/422] Installing perl-Parse-CPAN-Packages-0:2.4 100% |  16.3 MiB/s |  33.3 KiB |  00m00s
[357/422] Installing perl-Lingua-EN-Inflect-0:1.905 100% |  41.5 MiB/s | 127.4 KiB |  00m00s
[358/422] Installing perl-Pod-Spell-0:1.27-2.fc42.n 100% |   1.7 MiB/s |  71.5 KiB |  00m00s
[359/422] Installing perl-WWW-RobotRules-0:6.02-41. 100% | 103.8 KiB/s |  25.8 KiB |  00m00s
[360/422] Installing perl-HTTP-Negotiate-0:6.01-40. 100% |  14.0 MiB/s |  28.7 KiB |  00m00s
[361/422] Installing perl-File-Listing-0:6.16-5.fc4 100% |  10.4 MiB/s |  42.5 KiB |  00m00s
[362/422] Installing perl-libwww-perl-0:6.77-3.fc42 100% |  16.2 MiB/s | 530.3 KiB |  00m00s
[363/422] Installing perl-XML-SAX-0:1.02-18.fc42.no 100% | 947.2 KiB/s | 126.0 KiB |  00m00s
[364/422] Installing perl-XML-LibXML-1:2.0210-4.fc4 100% |   6.2 MiB/s | 927.4 KiB |  00m00s
[365/422] Installing perl-App-Cache-0:0.37-43.fc42. 100% |   3.9 MiB/s |  15.9 KiB |  00m00s
[366/422] Installing perl-XML-Parser-0:2.47-6.fc42. 100% |  40.3 MiB/s | 659.6 KiB |  00m00s
[367/422] Installing perl-XML-Simple-0:2.25-22.fc42 100% |  21.9 MiB/s | 179.3 KiB |  00m00s
[368/422] Installing perl-Config-Any-0:0.33-6.fc42. 100% |   9.6 MiB/s |  78.5 KiB |  00m00s
[369/422] Installing perl-MooseX-App-0:1.43-5.fc42. 100% |  22.5 MiB/s | 276.4 KiB |  00m00s
[370/422] Installing perl-SVN-Look-0:0.43-9.fc42.no 100% |  20.7 MiB/s |  42.4 KiB |  00m00s
[371/422] Installing perl-Image-Info-0:1.45-2.fc42. 100% |  19.6 MiB/s | 180.2 KiB |  00m00s
[372/422] Installing perl-Template-Toolkit-0:3.102- 100% |  71.1 MiB/s |   6.3 MiB |  00m00s
[373/422] Installing perl-Unicode-Map-0:0.112-66.fc 100% |  20.5 MiB/s | 712.0 KiB |  00m00s
[374/422] Installing perl-Spreadsheet-ParseExcel-1: 100% |  55.0 MiB/s | 562.9 KiB |  00m00s
[375/422] Installing perl-SQL-Translator-0:1.66-2.f 100% |  52.4 MiB/s |   2.5 MiB |  00m00s
[376/422] Installing perl-Mozilla-CA-0:20250202-1.f 100% |   3.9 MiB/s |  11.9 KiB |  00m00s
[377/422] Installing perl-LWP-Protocol-https-0:6.14 100% |   5.1 MiB/s |  31.1 KiB |  00m00s
[378/422] Installing perl-Params-Validate-0:1.31-10 100% |  12.4 MiB/s | 152.2 KiB |  00m00s
[379/422] Installing perl-Getopt-Long-Descriptive-0 100% |  12.0 MiB/s |  86.3 KiB |  00m00s
[380/422] Installing perl-CPAN-Uploader-0:0.103018- 100% | 868.0 KiB/s |  48.6 KiB |  00m00s
[381/422] Installing perl-DBIx-Class-0:0.082844-1.f 100% |  19.1 MiB/s |   3.5 MiB |  00m00s
[382/422] Installing perl-BackPAN-Index-0:0.42-34.f 100% |   4.6 MiB/s |  80.8 KiB |  00m00s
[383/422] Installing perl-App-Cmd-0:0.336-5.fc42.no 100% |   8.6 MiB/s | 176.7 KiB |  00m00s
[384/422] Installing perl-List-Pairwise-0:1.03-31.f 100% |   2.2 MiB/s |  22.5 KiB |  00m00s
[385/422] Installing perl-File-chmod-0:0.42-32.fc42 100% |   3.3 MiB/s |  20.1 KiB |  00m00s
[386/422] Installing perl-File-chdir-0:0.1011-27.fc 100% |   6.6 MiB/s |  47.1 KiB |  00m00s
[387/422] Installing perl-Git-CPAN-Patch-0:2.5.0-9. 100% |   6.4 MiB/s | 111.3 KiB |  00m00s
[388/422] Installing perl-Devel-SmallProf-0:2.02-50 100% |   4.4 MiB/s |  22.3 KiB |  00m00s
[389/422] Installing perl-Time-Duration-Parse-0:0.1 100% |   4.6 MiB/s |  28.0 KiB |  00m00s
[390/422] Installing perl-Perl-Tidy-Sweetened-0:1.2 100% |   1.7 MiB/s |  72.1 KiB |  00m00s
[391/422] Installing perl-List-Compare-0:0.55-13.fc 100% |  31.2 MiB/s | 223.5 KiB |  00m00s
[392/422] Installing perl-IPC-Run3-0:0.049-3.fc42.n 100% |   7.7 MiB/s |  63.3 KiB |  00m00s
[393/422] Installing perl-String-Format-0:1.18-21.f 100% |   3.8 MiB/s |  35.2 KiB |  00m00s
[394/422] Installing perl-Perl-Critic-0:1.156-2.fc4 100% |  27.5 MiB/s |   2.0 MiB |  00m00s
[395/422] Installing perl-ExtUtils-Helpers-0:0.028- 100% |   5.2 MiB/s |  32.1 KiB |  00m00s
[396/422] Installing flamegraph-0:1.0-21.20241020gi 100% |   2.3 MiB/s |  68.2 KiB |  00m00s
[397/422] Installing perl-Devel-NYTProf-0:6.14-6.fc 100% |  24.0 MiB/s |   1.1 MiB |  00m00s
[398/422] Installing perl-String-ShellQuote-0:1.04- 100% | 662.0 KiB/s |  16.6 KiB |  00m00s
[399/422] Installing perl-App-cpanminus-0:1.7048-2. 100% |   8.8 MiB/s | 251.1 KiB |  00m00s
[400/422] Installing vim-perl-support-0:5.4-3.fc42. 100% |  15.7 MiB/s | 916.0 KiB |  00m00s
[401/422] Installing perl-Module-Build-Tiny-0:0.051 100% |   3.7 MiB/s |  41.2 KiB |  00m00s
[402/422] Installing perl-Code-TidyAll-0:0.84-5.fc4 100% |   6.4 MiB/s | 313.3 KiB |  00m00s
[403/422] Installing git-cpan-patch-0:2.5.0-9.fc42. 100% |   4.9 MiB/s |  35.4 KiB |  00m00s
[404/422] Installing perl-Dist-Zilla-0:6.033-1.fc42 100% |  15.0 MiB/s | 981.1 KiB |  00m00s
[405/422] Installing perl-Pod-Readme-0:1.2.3-19.fc4 100% |   2.6 MiB/s |  94.4 KiB |  00m00s
[406/422] Installing cpanspec-0:1.78-54.fc42.noarch 100% |   1.5 MiB/s |  71.8 KiB |  00m00s
[407/422] Installing perl-Unicode-LineBreak-0:2019. 100% |  11.8 MiB/s | 266.4 KiB |  00m00s
[408/422] Installing perl-Term-Size-Any-0:0.002-44. 100% |   1.1 MiB/s |   9.3 KiB |  00m00s
[409/422] Upgrading gcc-plugin-annobin-0:15.1.1-2.f 100% | 890.3 KiB/s |  58.8 KiB |  00m00s
[410/422] Installing nodejs-npm-1:10.9.2-1.22.15.1. 100% |  30.6 MiB/s |   9.8 MiB |  00m00s
[411/422] Installing nodejs-full-i18n-1:22.15.1-1.f 100% | 209.5 MiB/s |  30.4 MiB |  00m00s
[412/422] Installing perl-Data-Printer-0:1.002001-3 100% |  28.1 MiB/s | 344.7 KiB |  00m00s
[413/422] Installing nodejs-docs-1:22.15.1-1.fc42.n 100% | 308.1 MiB/s |  94.9 MiB |  00m00s
[414/422] Installing perl-Type-Tiny-XS-0:0.025-10.f 100% |  17.8 MiB/s |  91.2 KiB |  00m00s
[415/422] Installing perl-Modern-Perl-0:1.20241001- 100% |  18.6 MiB/s |  38.0 KiB |  00m00s
[416/422] Installing perl-Devel-Confess-0:0.009004- 100% |  15.3 MiB/s |  47.1 KiB |  00m00s
[417/422] Removing gcc-plugin-annobin-0:15.1.1-1.fc 100% | 183.0   B/s |   9.0   B |  00m00s
[418/422] Removing libstdc++-0:15.1.1-1.fc42.x86_64 100% | 968.0   B/s |  31.0   B |  00m00s
[419/422] Removing gcc-0:15.1.1-1.fc42.x86_64       100% |   2.8 KiB/s | 343.0   B |  00m00s
[420/422] Removing cpp-0:15.1.1-1.fc42.x86_64       100% |   1.6 KiB/s |  37.0   B |  00m00s
[421/422] Removing libgcc-0:15.1.1-1.fc42.x86_64    100% |   1.2 KiB/s |  11.0   B |  00m00s
[422/422] Removing libgomp-0:15.1.1-1.fc42.x86_64   100% |   2.0   B/s |   9.0   B |  00m03s
Complete!
jamie@dell16fc42:~$ 



Confirming Perl is Installed along with Determining Which Version of Perl is Installed

There are two main methods/switches to display the currently installed version of Perl, with the ONLY difference in the switch is it's case, be it UPPER-CASE or lower-case, using the letter "V", without the quotes, as shown here:

jamie@dell16fc42:~$ perl -v

This is perl 5, version 40, subversion 2 (v5.40.2) built for x86_64-linux-thread-multi
(with 15 registered patches, see perl -V for more detail)

Copyright 1987-2025, Larry Wall

Perl may be copied only under the terms of either the Artistic License or the
GNU General Public License, which may be found in the Perl 5 source kit.

Complete documentation for Perl, including FAQ lists, should be found on
this system using "man perl" or "perldoc perl".  If you have access to the
Internet, point your browser at https://www.perl.org/, the Perl Home Page.

jamie@dell16fc42:~$



If you change the -v to an UPPER-CASE -V, you get a LOT more information, as shown in this example:

jamie@dell16fc42:~$ perl -V
Summary of my perl5 (revision 5 version 40 subversion 2) configuration:
   
  Platform:
    osname=linux
    osvers=6.11.0
    archname=x86_64-linux-thread-multi
    uname='linux localhost 6.11.0 #1 smp preempt_dynamic 6.11.0 x86_64 gnulinux '
    config_args='-des -Doptimize=none -Dccflags=-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Wno-complain-wrong-lang -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -march=x86-64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -mtls-dialect=gnu2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -Dldflags=-Wl,-z,relro -Wl,--as-needed  -Wl,-z,pack-relative-relocs -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -Wl,--build-id=sha1   -Dccdlflags=-Wl,--enable-new-dtags -Wl,-z,relro -Wl,--as-needed  -Wl,-z,pack-relative-relocs -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -Wl,--build-id=sha1   -Dlddlflags=-shared -Wl,-z,relro -Wl,--as-needed  -Wl,-z,pack-relative-relocs -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -Wl,--build-id=sha1   -Dshrpdir=/usr/lib64 -DDEBUGGING=-g -Dversion=5.40.2 -Dmyhostname=localhost -Dperladmin=root@localhost -Dcc=gcc -Dcf_by=Red Hat, Inc. -Dprefix=/usr -Dman1dir=/usr/share/man/man1 -Dman3dir=/usr/share/man/man3 -Dvendorprefix=/usr -Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl5/5.40 -Dsitearch=/usr/local/lib64/perl5/5.40 -Dprivlib=/usr/share/perl5 -Dvendorlib=/usr/share/perl5/vendor_perl -Darchlib=/usr/lib64/perl5 -Dvendorarch=/usr/lib64/perl5/vendor_perl -Darchname=x86_64-linux-thread-multi -Dlibpth=/usr/local/lib64 /lib64 /usr/lib64 -Duseshrplib -Dusethreads -Duseithreads -Dusedtrace=/usr/bin/dtrace -Duselargefiles -Dd_semctl_semun -Di_db -Ui_ndbm -Di_gdbm -Di_shadow -Di_syslog -Dman3ext=3pm -Duseperlio -Dinstallusrbinperl=n -Ubincompat5005 -Uversiononly -Dpager=/usr/bin/less -isr -Dd_gethostent_r_proto -Ud_endhostent_r_proto -Ud_sethostent_r_proto -Ud_endprotoent_r_proto -Ud_setprotoent_r_proto -Ud_endservent_r_proto -Ud_setservent_r_proto -Dscriptdir=/usr/bin -Dusesitecustomize -Duse64bitint'
    hint=recommended
    useposix=true
    d_sigaction=define
    useithreads=define
    usemultiplicity=define
    use64bitint=define
    use64bitall=define
    uselongdouble=undef
    usemymalloc=n
    default_inc_excludes_dot=define
  Compiler:
    cc='gcc'
    ccflags ='-D_REENTRANT -D_GNU_SOURCE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Wno-complain-wrong-lang -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -march=x86-64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -mtls-dialect=gnu2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -fwrapv -fno-strict-aliasing -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
    optimize='  -g'
    cppflags='-D_REENTRANT -D_GNU_SOURCE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Wno-complain-wrong-lang -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -march=x86-64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -mtls-dialect=gnu2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -fwrapv -fno-strict-aliasing -I/usr/local/include'
    ccversion=''
    gccversion='15.0.1 20250329 (Red Hat 15.0.1-0)'
    gccosandvers=''
    intsize=4
    longsize=8
    ptrsize=8
    doublesize=8
    byteorder=12345678
    doublekind=3
    d_longlong=define
    longlongsize=8
    d_longdbl=define
    longdblsize=16
    longdblkind=3
    ivtype='long'
    ivsize=8
    nvtype='double'
    nvsize=8
    Off_t='off_t'
    lseeksize=8
    alignbytes=8
    prototype=define
  Linker and Libraries:
    ld='gcc'
    ldflags ='-Wl,-z,relro -Wl,--as-needed -Wl,-z,pack-relative-relocs -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1  -fstack-protector-strong -L/usr/local/lib'
    libpth=/usr/local/lib64 /lib64 /usr/lib64 /usr/local/lib /usr/lib
    libs=-lpthread -lresolv -lgdbm -ldb -ldl -lm -lcrypt -lutil -lc -lgdbm_compat
    perllibs=-lpthread -lresolv -ldl -lm -lcrypt -lutil -lc
    libc=/lib/../lib64/libc.so.6
    so=so
    useshrplib=true
    libperl=libperl.so
    gnulibc_version='2.41'
  Dynamic Linking:
    dlsrc=dl_dlopen.xs
    dlext=so
    d_dlsymun=undef
    ccdlflags='-Wl,--enable-new-dtags -Wl,-z,relro -Wl,--as-needed -Wl,-z,pack-relative-relocs -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 '
    cccdlflags='-fPIC'
    lddlflags='-lpthread -shared -Wl,-z,relro -Wl,--as-needed -Wl,-z,pack-relative-relocs -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1  -L/usr/local/lib -fstack-protector-strong'


Characteristics of this binary (from libperl): 
  Compile-time options:
    HAS_LONG_DOUBLE
    HAS_STRTOLD
    HAS_TIMES
    MULTIPLICITY
    PERLIO_LAYERS
    PERL_COPY_ON_WRITE
    PERL_DONT_CREATE_GVSV
    PERL_HASH_FUNC_SIPHASH13
    PERL_HASH_USE_SBOX32
    PERL_MALLOC_WRAP
    PERL_OP_PARENT
    PERL_PRESERVE_IVUV
    PERL_USE_SAFE_PUTENV
    USE_64_BIT_ALL
    USE_64_BIT_INT
    USE_ITHREADS
    USE_LARGE_FILES
    USE_LOCALE
    USE_LOCALE_COLLATE
    USE_LOCALE_CTYPE
    USE_LOCALE_NUMERIC
    USE_LOCALE_TIME
    USE_PERLIO
    USE_PERL_ATOF
    USE_REENTRANT_API
    USE_SITECUSTOMIZE
    USE_THREAD_SAFE_LOCALE
  Locally applied patches:
    Fedora Patch1: Removes date check, Fedora/RHEL specific
    Fedora Patch2: support for libdir64
    Fedora Patch3: use libresolv instead of libbind
    Fedora Patch4: USE_MM_LD_RUN_PATH
    Fedora Patch5: Provide MM::maybe_command independently (bug #1129443)
    Fedora Patch6: Dont run one io test due to random builder failures
    Fedora Patch8: Define SONAME for libperl.so
    Fedora Patch9: Install libperl.so to -Dshrpdir value
    Fedora Patch10: Make *DBM_File desctructors thread-safe (RT#61912)
    Fedora Patch11: Replace EU::MakeMaker dependency with EU::MM::Utils in IPC::Cmd (bug #1129443)
    Fedora Patch12: Link XS modules to pthread library to fix linking with -z defs
    Fedora Patch13: Pass the correct CFLAGS to dtrace
    Fedora Patch200: Link XS modules to libperl.so with EU::CBuilder on Linux
    Fedora Patch201: Link XS modules to libperl.so with EU::MM on Linux
    Fedora Patch202: Add definition of OPTIMIZE to .ph files
  Built under linux
  Compiled at Apr 14 2025 00:00:00
  @INC:
    /usr/local/lib64/perl5/5.40
    /usr/local/share/perl5/5.40
    /usr/lib64/perl5/vendor_perl
    /usr/share/perl5/vendor_perl
    /usr/lib64/perl5
    /usr/share/perl5
jamie@dell16fc42:~$



CPAN Install Information

This is just an example:

perl -MCPAN -e 'install HTML::Template' 


CPAN Module Installation from Source Code

Sometimes, due to the required/desired Perl module is not easily available via the standard command line "MCPAN..." command, or you want to force a specific version or tweak the module's way it works, allowing for total customization, it can be preferable to manually install a Perl module from source code after downloading and compiling. Here are the basic instructions to do it yourself manually from the command line. I will use the same Perl module, HTML::Template, referenced in the previous example above.

The first thing to do is download the actual source code files required to compile, also referred to as "building" the source code into an executable binary most people are accustomed to running. But before downloading the "tarball", which is the Linux/UNIX equivalent to a .Zip archive, it's best practice to first create a directory/folder on the computer's hard drive to store the "tarball" file archive which contains all of the files required to "build", aka "compile", the files into the required binary which is the format the computer needs in order to "run" the application, whatever that app may be.

All of these examples are intended to be run from a command line, from the Linux X-Windows GUI, so be sure to perform all of these steps within a "Terminal", assuming you have booted into and logged into the Linux graphical environment, X-Windows. If you unfortunately have to remotely log into the Linux machine from a M$ Windoze box, you can still easily do so using PuTTY. Please check out my PuTTY & SuperPuTTY wiki page for more info! :P~


These detailed steps assume you are using a standard Red Hat Linux based distribution(Distro) running the default Gnome desktop environment. If you are running some other desktop environment such as KDE, XFCE, etc, please adjust these instructions accordingly.

First, open up a Terminal window. On the Gnome desktop environment, move your mouse to the far upper left corner of the monitor screen, and then "normal left-click" on "Activities" in the far upper left corner of the screen. That will pull up the "Favorites" bar on the far left side of the screen, with a button at the very bottom left to "Show Applications". Click on this button, and then scroll down to the very bottom/last screen of icons and click on the "Utilities" icon, which will open up a sub-menu window, which among others will have the "Terminal"icon. Click on the Terminal icon to start up a new Terminal window. You will then have a command line window, similar to a Windows/DOS Command(cmd) window, but having a little different format for the command prompt, such as seen here on my laptop:

[jamie@dell-1640 ~]$  



Here's a screenshot of the actual terminal window on one of my laptops running Fedora 27:

Terminal Screenshot-001.jpg





Create a new directory to download the "tarball" file archive into:

[jamie@dell-1640 ~]$ mkdir /home/jamie/Development/Perl/CPAN_Module_Sources/MyWiki_HowTo/HTML_Template/SRC
[jamie@dell-1640 ~]$ cd /home/jamie/Development/Perl/CPAN_Module_Sources/MyWiki_HowTo/HTML_Template/SRC
[jamie@dell-1640 SRC]$ wget http://search.cpan.org/CPAN/authors/id/S/SA/SAMTREGAR/HTML-Template-2.97.tar.gz

This should download the tarball into the newly created directory you previously created. Here is the scroll-back from my example:

--2018-02-02 18:26:11--  http://search.cpan.org/CPAN/authors/id/S/SA/SAMTREGAR/HTML-Template-2.97.tar.gz
Resolving search.cpan.org (search.cpan.org)... 207.171.7.49, 207.171.7.49
Connecting to search.cpan.org (search.cpan.org)|207.171.7.49|:80... connected.
HTTP request sent, awaiting response... 302 Found
Location: http://www.cpan.org/authors/id/S/SA/SAMTREGAR/HTML-Template-2.97.tar.gz [following]
--2018-02-02 18:26:12--  http://www.cpan.org/authors/id/S/SA/SAMTREGAR/HTML-Template-2.97.tar.gz
Resolving www.cpan.org (www.cpan.org)... 151.101.54.49, 2a04:4e42:d::561
Connecting to www.cpan.org (www.cpan.org)|151.101.54.49|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 88236 (86K) [application/x-gzip]
Saving to: ‘HTML-Template-2.97.tar.gz’

HTML-Template-2.97. 100%[===================>]  86.17K  --.-KB/s    in 0.09s   

2018-02-02 18:26:12 (913 KB/s) - ‘HTML-Template-2.97.tar.gz’ saved [88236/88236]


List directory contents to confirm tarball file is there. The -l switch tells the list command(ls) to give the listing in "long" format, which shows among other things, the size and creation dates of the files. The -h switch causes the "long" listing format to be in "human" readable format:

[jamie@dell-1640 SRC]$ ls -lh
total 92K
-rw-rw-r--. 1 jamie jamie  87K May 18  2017 HTML-Template-2.97.tar.gz
[jamie@dell-1640 SRC]$

Extract the source code from the tarball:

[jamie@dell-1640 SRC]$ tar -xvzf HTML-Template-2.97.tar.gz
HTML-Template-2.97/
HTML-Template-2.97/t/
HTML-Template-2.97/t/12-utf8.t
HTML-Template-2.97/t/01-coderefs.t
HTML-Template-2.97/t/04-no_taintmode.t
HTML-Template-2.97/t/13-loop-context.t
HTML-Template-2.97/t/13-loop-boolean.t
HTML-Template-2.97/t/02-random.t
HTML-Template-2.97/t/03-associate.t
HTML-Template-2.97/t/05-force_untaint.t
HTML-Template-2.97/t/02-parse.t
HTML-Template-2.97/t/04-escape.t
HTML-Template-2.97/t/11-non-file-templates.t
HTML-Template-2.97/t/testlib/
HTML-Template-2.97/t/testlib/IO/
HTML-Template-2.97/t/testlib/IO/Capture.pm
HTML-Template-2.97/t/testlib/IO/Capture/
HTML-Template-2.97/t/testlib/IO/Capture/ErrorMessages.pm
HTML-Template-2.97/t/testlib/IO/Capture/Tie_STDx.pm
HTML-Template-2.97/t/testlib/IO/Capture/Stderr.pm
HTML-Template-2.97/t/testlib/IO/Capture/Stdout.pm
HTML-Template-2.97/t/testlib/_Auxiliary.pm
HTML-Template-2.97/t/08-cache-debug.t
HTML-Template-2.97/t/16-config.t
HTML-Template-2.97/t/07-double-file-cache.t
HTML-Template-2.97/t/12-query.t
HTML-Template-2.97/t/15-comment.t
HTML-Template-2.97/t/06-file-cache-dir.t
HTML-Template-2.97/t/04-type-source.t
HTML-Template-2.97/t/10-param.t
HTML-Template-2.97/t/03-else_else_bug.t
HTML-Template-2.97/t/01-bad-args.t
HTML-Template-2.97/t/05-nested_global.t
HTML-Template-2.97/t/12-open_mode.t
HTML-Template-2.97/t/05-blind-cache.t
HTML-Template-2.97/t/04-default_with_escape.t
HTML-Template-2.97/t/14-includes.t
HTML-Template-2.97/t/author-pod-syntax.t
HTML-Template-2.97/t/99-old-test-pl.t
HTML-Template-2.97/t/04-default-escape.t
HTML-Template-2.97/t/13-loop-repeated.t
HTML-Template-2.97/t/09-caching-precluded.t
HTML-Template-2.97/Makefile.PL
HTML-Template-2.97/META.yml
HTML-Template-2.97/dist.ini
HTML-Template-2.97/LICENSE
HTML-Template-2.97/lib/
HTML-Template-2.97/lib/HTML/
HTML-Template-2.97/lib/HTML/Template.pm
HTML-Template-2.97/lib/HTML/Template/
HTML-Template-2.97/lib/HTML/Template/FAQ.pm
HTML-Template-2.97/bench/
HTML-Template-2.97/bench/profile_small.pl
HTML-Template-2.97/bench/profile_var.pl
HTML-Template-2.97/bench/vars.pl
HTML-Template-2.97/bench/profile_medium.pl
HTML-Template-2.97/bench/new.pl
HTML-Template-2.97/bench/profile_large.pl
HTML-Template-2.97/README
HTML-Template-2.97/scripts/
HTML-Template-2.97/scripts/clean_shm.pl
HTML-Template-2.97/scripts/time_trial.pl
HTML-Template-2.97/MANIFEST
HTML-Template-2.97/templates/
HTML-Template-2.97/templates/case_loop.tmpl
HTML-Template-2.97/templates/include_path2/
HTML-Template-2.97/templates/include_path2/inner.tmpl
HTML-Template-2.97/templates/ifelse.tmpl
HTML-Template-2.97/templates/searchpath/
HTML-Template-2.97/templates/searchpath/included.tmpl
HTML-Template-2.97/templates/searchpath/three.tmpl
HTML-Template-2.97/templates/searchpath/two.tmpl
HTML-Template-2.97/templates/double_loop.tmpl
HTML-Template-2.97/templates/js.tmpl
HTML-Template-2.97/templates/escapes.tmpl
HTML-Template-2.97/templates/simple-loop-nonames.tmpl
HTML-Template-2.97/templates/simple.tmpl
HTML-Template-2.97/templates/include_path/
HTML-Template-2.97/templates/include_path/a.tmpl
HTML-Template-2.97/templates/include_path/one.tmpl
HTML-Template-2.97/templates/include_path/inner.tmpl
HTML-Template-2.97/templates/include_path/b.tmpl
HTML-Template-2.97/templates/included3.tmpl
HTML-Template-2.97/templates/context.tmpl
HTML-Template-2.97/templates/default_escape.tmpl
HTML-Template-2.97/templates/loop-context.tmpl
HTML-Template-2.97/templates/vanguard2.tmpl
HTML-Template-2.97/templates/included.tmpl
HTML-Template-2.97/templates/html-escape.tmpl
HTML-Template-2.97/templates/default.tmpl
HTML-Template-2.97/templates/loop.tmpl
HTML-Template-2.97/templates/multiline_tags.tmpl
HTML-Template-2.97/templates/utf8-test.tmpl
HTML-Template-2.97/templates/recursive.tmpl
HTML-Template-2.97/templates/var.tmpl
HTML-Template-2.97/templates/loop-if.tmpl
HTML-Template-2.97/templates/included2.tmpl
HTML-Template-2.97/templates/urlescape.tmpl
HTML-Template-2.97/templates/medium.tmpl
HTML-Template-2.97/templates/simple-loop.tmpl
HTML-Template-2.97/templates/if.tmpl
HTML-Template-2.97/templates/counter.tmpl
HTML-Template-2.97/templates/newline_test1.tmpl
HTML-Template-2.97/templates/query-test.tmpl
HTML-Template-2.97/templates/globals.tmpl
HTML-Template-2.97/templates/long_loops.tmpl
HTML-Template-2.97/templates/simplemod.tmpl
HTML-Template-2.97/templates/default_escape_off.tmpl
HTML-Template-2.97/templates/global-loops.tmpl
HTML-Template-2.97/templates/unless.tmpl
HTML-Template-2.97/templates/query-test2.tmpl
HTML-Template-2.97/templates/outer.tmpl
HTML-Template-2.97/templates/newline_test2.tmpl
HTML-Template-2.97/templates/other-loop.tmpl
HTML-Template-2.97/templates/include.tmpl
HTML-Template-2.97/templates/vanguard1.tmpl
HTML-Template-2.97/Changes
[jamie@dell-1640 SRC]$


Do a long human-readable listing to confirm the extraction of the tarball worked successfully:

[jamie@dell-1640 HTML-Template-2.97]$ ls -lh
total 76K
drwxrwxr-x. 2 jamie jamie 4.0K May 18  2017 bench
-rw-r--r--. 1 jamie jamie  16K May 18  2017 Changes
-rw-r--r--. 1 jamie jamie  745 May 18  2017 dist.ini
drwxrwxr-x. 3 jamie jamie 4.0K May 18  2017 lib
-rw-r--r--. 1 jamie jamie  18K May 18  2017 LICENSE
-rw-r--r--. 1 jamie jamie 1.3K May 18  2017 Makefile.PL
-rw-r--r--. 1 jamie jamie 2.4K May 18  2017 MANIFEST
-rw-r--r--. 1 jamie jamie  714 May 18  2017 META.yml
-rw-r--r--. 1 jamie jamie  387 May 18  2017 README
drwxrwxr-x. 2 jamie jamie 4.0K May 18  2017 scripts
drwxrwxr-x. 3 jamie jamie 4.0K May 18  2017 t
drwxrwxr-x. 5 jamie jamie 4.0K May 18  2017 templates
[jamie@dell-1640 HTML-Template-2.97]$

Configure the Makefile.PL file prior to compiling/building:

[jamie@dell-1640 HTML-Template-2.97]$ perl Makefile.PL 
Checking if your kit is complete...
Looks good
Warning: prerequisite Test::Pod 0 not found.
Generating a Unix-style Makefile
Writing Makefile for HTML::Template
Writing MYMETA.yml and MYMETA.json
[jamie@dell-1640 HTML-Template-2.97]$


Install any missing prerequisite(s). In our example above, the configuration of the Makefile.PL file resulted in an error stating that the prerequisite "Test::Pod" wasn't found so not installed. The configuration appeared to complete, but needs to be run again after first satisfying the prerequisite.

Install the "Test::Pod" module before proceeding. Try using the easier and simpler MCPAN command:

[jamie@dell-1640 HTML-Template-2.97]$ perl -MCPAN -e 'install Test::Pod'

CPAN.pm requires configuration, but most of it can be done automatically.
If you answer 'no' below, you will enter an interactive dialog for each
configuration option instead.

Would you like to configure as much as possible automatically? [yes] 

Perl site library directory "/usr/local/share/perl5" does not exist.
Perl site library directory "/usr/local/share/perl5" could not been created: Permission denied.
Perl site library directory "/usr/local/lib64/perl5" does not exist.
Perl site library directory "/usr/local/lib64/perl5" could not been created: Permission denied.
 <install_help>

Warning: You do not have write permission for Perl library directories.

To install modules, you need to configure a local Perl library directory or
escalate your privileges.  CPAN can help you by bootstrapping the local::lib
module or by configuring itself to use 'sudo' (if available).  You may also
resolve this problem manually if you need to customize your setup.

What approach do you want?  (Choose 'local::lib', 'sudo' or 'manual')
 [local::lib] sudo


Autoconfiguration complete.

commit: wrote '/home/jamie/.local/share/.cpan/CPAN/MyConfig.pm'

You can re-run configuration any time with 'o conf init' in the CPAN shell
Fetching with LWP:
http://www.cpan.org/authors/01mailrc.txt.gz
Reading '/home/jamie/.local/share/.cpan/sources/authors/01mailrc.txt.gz'
............................................................................DONE
Fetching with LWP:
http://www.cpan.org/modules/02packages.details.txt.gz
Reading '/home/jamie/.local/share/.cpan/sources/modules/02packages.details.txt.gz'
  Database was generated on Sat, 03 Feb 2018 03:54:43 GMT
............................................................................DONE
Fetching with LWP:
http://www.cpan.org/modules/03modlist.data.gz
Reading '/home/jamie/.local/share/.cpan/sources/modules/03modlist.data.gz'
DONE
Writing /home/jamie/.local/share/.cpan/Metadata
Running install for module 'Test::Pod'
Fetching with LWP:
http://www.cpan.org/authors/id/E/ET/ETHER/Test-Pod-1.51.tar.gz
Fetching with LWP:
http://www.cpan.org/authors/id/E/ET/ETHER/CHECKSUMS
Checksum for /home/jamie/.local/share/.cpan/sources/authors/id/E/ET/ETHER/Test-Pod-1.51.tar.gz ok
'YAML' not installed, will not store persistent state
Configuring E/ET/ETHER/Test-Pod-1.51.tar.gz with Makefile.PL
Checking if your kit is complete...
Looks good
Generating a Unix-style Makefile
Writing Makefile for Test::Pod
Writing MYMETA.yml and MYMETA.json
  ETHER/Test-Pod-1.51.tar.gz
  /usr/bin/perl Makefile.PL -- OK
Running make for E/ET/ETHER/Test-Pod-1.51.tar.gz
cp lib/Test/Pod.pm blib/lib/Test/Pod.pm
Manifying 1 pod document
  ETHER/Test-Pod-1.51.tar.gz
  /usr/bin/make -- OK
Running make test
PERL_DL_NONLAZY=1 "/usr/bin/perl" "-MExtUtils::Command::MM" "-MTest::Harness" "-e" "undef *Test::Harness::Switches; test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
t/00-load.t ............ 1/2 # Testing Test::Pod 1.51, Perl 5.026001, /usr/bin/perl
# Using Pod::Simple 3.35
t/00-load.t ............ ok   
t/all_pod_files.t ...... ok   
t/cut-outside-block.t .. ok   
t/good.t ............... ok   
t/item-ordering.t ...... ok   
t/load.t ............... ok   
t/missing-file.t ....... ok   
t/selftest.t ........... ok   
t/spaced-directives.t .. skipped: Not written yet
t/unknown-directive.t .. ok   
All tests successful.
Files=10, Tests=19,  1 wallclock secs ( 0.05 usr  0.01 sys +  0.98 cusr  0.12 csys =  1.16 CPU)
Result: PASS
  ETHER/Test-Pod-1.51.tar.gz
  /usr/bin/make test -- OK
Running make install
Manifying 1 pod document
Installing /usr/local/share/perl5/Test/Pod.pm
Installing /usr/local/share/man/man3/Test::Pod.3pm
Appending installation info to /usr/lib64/perl5/perllocal.pod
  ETHER/Test-Pod-1.51.tar.gz
  sudo /usr/bin/make install  -- OK
[jamie@dell-1640 HTML-Template-2.97]$


[root@dell-1640 ~]# dnf install perl-YAML
Dependencies resolved.
================================================================================
 Package            Arch            Version               Repository       Size
================================================================================
Installing:
 perl-YAML          noarch          1.23-4.fc27           fedora           91 k

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

Total download size: 91 k
Installed size: 184 k
Is this ok [y/N]: y
Downloading Packages:
perl-YAML-1.23-4.fc27.noarch.rpm                137 kB/s |  91 kB     00:00    
--------------------------------------------------------------------------------
Total                                            99 kB/s |  91 kB     00:00     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : perl-YAML-1.23-4.fc27.noarch                           1/1 
  Running scriptlet: perl-YAML-1.23-4.fc27.noarch                           1/1 
Running as unit: run-r644d8a9c8a2c46fdac64456f20ea700a.service
  Verifying        : perl-YAML-1.23-4.fc27.noarch                           1/1 

Installed:
  perl-YAML.noarch 1.23-4.fc27                                                  

Complete!
[root@dell-1640 ~]#


Run perl Makefile.PL again --> 3rd time now!  Depending on system, and what is already installed, and what still needs to be installed in order to successfully compile and install the HTML::Template Perl module, it could take more or it could take less attempts and configuring the Makefile.PL pre-compilation configuration file!

Here is the output of this command finally completing successfully,the 3rd attempt, on my demonstration system:
<pre style="color:blue">
[jamie@dell-1640 HTML-Template-2.97]$ perl Makefile.PL 
Generating a Unix-style Makefile
Writing Makefile for HTML::Template
Writing MYMETA.yml and MYMETA.json
[jamie@dell-1640 HTML-Template-2.97]$



make
make test
make install