Skip to content

Instantly share code, notes, and snippets.

@jfhbrook
Created December 27, 2021 02:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jfhbrook/9d1c1c085e4bbf4a6848d22b0a2836f0 to your computer and use it in GitHub Desktop.
Save jfhbrook/9d1c1c085e4bbf4a6848d22b0a2836f0 to your computer and use it in GitHub Desktop.

I was trying to build the yq PyPI package on COPR and I got an error. Here's the relevant snippet:

+ /usr/bin/python3 setup.py test
running test
WARNING: Testing via this command is deprecated and will be removed in a future version. Users looking for a generic test entry point independent of test runner are encouraged to use tox.
running egg_info
writing yq.egg-info/PKG-INFO
writing dependency_links to yq.egg-info/dependency_links.txt
writing entry points to yq.egg-info/entry_points.txt
writing requirements to yq.egg-info/requires.txt
writing top-level names to yq.egg-info/top_level.txt
reading manifest file 'yq.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
adding license file 'LICENSE'
writing manifest file 'yq.egg-info/SOURCES.txt'
running build_ext
Traceback (most recent call last):
  File "/builddir/build/BUILD/yq-2.13.0/setup.py", line 5, in <module>
    setup(
  File "/usr/lib/python3.10/site-packages/setuptools/__init__.py", line 153, in setup
    return distutils.core.setup(**attrs)
  File "/usr/lib64/python3.10/distutils/core.py", line 148, in setup
    dist.run_commands()
  File "/usr/lib64/python3.10/distutils/dist.py", line 966, in run_commands
    self.run_command(cmd)
  File "/usr/lib64/python3.10/distutils/dist.py", line 985, in run_command
    cmd_obj.run()
  File "/usr/lib/python3.10/site-packages/setuptools/command/test.py", line 232, in run
    self.run_tests()
  File "/usr/lib/python3.10/site-packages/setuptools/command/test.py", line 250, in run_tests
    test = unittest.main(
  File "/usr/lib64/python3.10/unittest/main.py", line 100, in __init__
    self.parseArgs(argv)
  File "/usr/lib64/python3.10/unittest/main.py", line 147, in parseArgs
    self.createTests()
  File "/usr/lib64/python3.10/unittest/main.py", line 158, in createTests
    self.test = self.testLoader.loadTestsFromNames(self.testNames,
  File "/usr/lib64/python3.10/unittest/loader.py", line 220, in loadTestsFromNames
    suites = [self.loadTestsFromName(name, module) for name in names]
  File "/usr/lib64/python3.10/unittest/loader.py", line 220, in <listcomp>
    suites = [self.loadTestsFromName(name, module) for name in names]
  File "/usr/lib64/python3.10/unittest/loader.py", line 191, in loadTestsFromName
    return self.loadTestsFromModule(obj)
  File "/usr/lib/python3.10/site-packages/setuptools/command/test.py", line 42, in loadTestsFromModule
    for file in resource_listdir(module.__name__, ''):
  File "/usr/lib/python3.10/site-packages/pkg_resources/__init__.py", line 1148, in resource_listdir
    return get_provider(package_or_requirement).resource_listdir(
  File "/usr/lib/python3.10/site-packages/pkg_resources/__init__.py", line 349, in get_provider
    return _find_adapter(_provider_factories, loader)(module)
  File "/usr/lib/python3.10/site-packages/pkg_resources/__init__.py", line 1379, in __init__
    self.module_path = os.path.dirname(getattr(module, '__file__', ''))
  File "/usr/lib64/python3.10/posixpath.py", line 152, in dirname
    p = os.fspath(p)
TypeError: expected str, bytes or os.PathLike object, not NoneType

Here's my understanding of what's happening:

  1. COPR uses a standard template via py2rpm which calls python setup.py test
  2. setuptools calls pkg_resources, looks for a __file__ property on a module that doesn't have one
  3. os.path.dirname chokes on an empty input

I did some googling around and the issue has a few disconnected bug reports with Red Hat on Python 3.10, so it might be connected to the Python version too. I'm also not sure if this should be treated as a bug with pkg_resources and/or setuptools or if the right fix is to get pyp2rpm to change its behavior and avoiding the deprecated (and presumably poorly-tested) method.

What do people think? Who should I file a bug with?

Warning: Permanently added '2620:52:3:1:dead:beef:cafe:c198' (ED25519) to the list of known hosts.
Running: /usr/bin/copr-rpmbuild --verbose --drop-resultdir --build-id 3083156 --chroot fedora-35-x86_64 --detached
Version: 0.55.1
Task:
{'appstream': True,
'background': False,
'build_id': 3083156,
'buildroot_pkgs': [],
'chroot': 'fedora-35-x86_64',
'enable_net': False,
'fedora_review': False,
'git_hash': '92b319d0fbd69310c35b7dd19e42c77f7c4d7cde',
'git_repo': 'https://copr-dist-git.fedorainfracloud.org/git/jfhbrook/joshiverse/python-yq.git',
'isolation': 'default',
'memory_reqs': 2048,
'package_name': 'python-yq',
'package_version': '2.13.0-1.fc34',
'project_dirname': 'joshiverse',
'project_name': 'joshiverse',
'project_owner': 'jfhbrook',
'repos': [{'baseurl': 'https://download.copr.fedorainfracloud.org/results/jfhbrook/joshiverse/fedora-35-x86_64/',
'id': 'copr_base',
'name': 'Copr repository'}],
'sandbox': 'jfhbrook/joshiverse--jfhbrook',
'source_json': {},
'source_type': None,
'submitter': 'jfhbrook',
'task_id': '3083156-fedora-35-x86_64',
'timeout': 18000,
'uses_devel_repo': False,
'with_opts': [],
'without_opts': []}
Running: git clone https://copr-dist-git.fedorainfracloud.org/git/jfhbrook/joshiverse/python-yq.git /var/lib/copr-rpmbuild/workspace/workdir-pqprk9v4/python-yq --depth 500 --no-single-branch
cmd: ['git', 'clone', 'https://copr-dist-git.fedorainfracloud.org/git/jfhbrook/joshiverse/python-yq.git', '/var/lib/copr-rpmbuild/workspace/workdir-pqprk9v4/python-yq', '--depth', '500', '--no-single-branch']
cwd: .
rc: 0
stdout:
stderr: Cloning into '/var/lib/copr-rpmbuild/workspace/workdir-pqprk9v4/python-yq'...
Running: git checkout 92b319d0fbd69310c35b7dd19e42c77f7c4d7cde
cmd: ['git', 'checkout', '92b319d0fbd69310c35b7dd19e42c77f7c4d7cde']
cwd: /var/lib/copr-rpmbuild/workspace/workdir-pqprk9v4/python-yq
rc: 0
stdout:
stderr: Note: switching to '92b319d0fbd69310c35b7dd19e42c77f7c4d7cde'.
You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by switching back to a branch.
If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -c with the switch command. Example:
git switch -c <new-branch-name>
Or undo this operation with:
git switch -
Turn off this advice by setting config variable advice.detachedHead to false
HEAD is now at 92b319d automatic import of python-yq
Running: copr-distgit-client sources
cmd: ['copr-distgit-client', 'sources']
cwd: /var/lib/copr-rpmbuild/workspace/workdir-pqprk9v4/python-yq
rc: 0
stdout:
/usr/bin/tail: /var/lib/copr-rpmbuild/main.log: file truncated
stderr: INFO: Reading stdout from command: git rev-parse --abbrev-ref HEAD
INFO: Reading stdout from command: git rev-parse HEAD
INFO: Reading sources specification file: sources
INFO: Downloading yq-2.13.0.tar.gz
INFO: Calling: curl -H Pragma: -o yq-2.13.0.tar.gz --location --remote-time --show-error --fail https://copr-dist-git.fedorainfracloud.org/repo/pkgs/jfhbrook/joshiverse/python-yq/yq-2.13.0.tar.gz/md5/26ce0f7adbf7890dc6d54836bcc7e9de/yq-2.13.0.tar.gz
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 21695 100 21695 0 0 470k 0 --:--:-- --:--:-- --:--:-- 470k
INFO: Reading stdout from command: md5sum yq-2.13.0.tar.gz
Running (timeout=18000): unbuffer mock --buildsrpm --spec /var/lib/copr-rpmbuild/workspace/workdir-pqprk9v4/python-yq/python-yq.spec --sources /var/lib/copr-rpmbuild/workspace/workdir-pqprk9v4/python-yq --resultdir /var/lib/copr-rpmbuild/results --uniqueext 1640568955.315429 -r /var/lib/copr-rpmbuild/results/configs/child.cfg
INFO: mock.py version 2.15 starting (python version = 3.9.7, NVR = mock-2.15-1.fc34)...
Start(bootstrap): init plugins
INFO: tmpfs initialized
INFO: selinux enabled
INFO: chroot_scan: initialized
INFO: compress_logs: initialized
Finish(bootstrap): init plugins
Start: init plugins
INFO: tmpfs initialized
INFO: selinux enabled
INFO: chroot_scan: initialized
INFO: compress_logs: initialized
Finish: init plugins
INFO: Signal handler active
Start: run
INFO: Start(/var/lib/copr-rpmbuild/workspace/workdir-pqprk9v4/python-yq/python-yq.spec) Config(fedora-35-x86_64)
Start: clean chroot
Finish: clean chroot
Start(bootstrap): chroot init
INFO: mounting tmpfs at /var/lib/mock/fedora-35-x86_64-bootstrap-1640568955.315429/root.
INFO: calling preinit hooks
INFO: enabled root cache
INFO: enabled package manager cache
Start(bootstrap): cleaning package manager metadata
Finish(bootstrap): cleaning package manager metadata
INFO: enabled HW Info plugin
Mock Version: 2.15
INFO: Mock Version: 2.15
Start(bootstrap): dnf install
No matches found for the following disable plugin patterns: local, spacewalk, versionlock
Copr repository 10 kB/s | 1.2 kB 00:00
fedora 3.3 MB/s | 79 MB 00:23
updates 23 MB/s | 17 MB 00:00
Dependencies resolved.
================================================================================
Package Arch Version Repo Size
================================================================================
Installing:
dnf noarch 4.9.0-1.fc35 fedora 448 k
dnf-plugins-core noarch 4.0.24-1.fc35 updates 35 k
Installing dependencies:
alternatives x86_64 1.19-1.fc35 fedora 35 k
audit-libs x86_64 3.0.6-1.fc35 fedora 116 k
basesystem noarch 11-12.fc35 fedora 7.0 k
bash x86_64 5.1.8-2.fc35 fedora 1.7 M
bzip2-libs x86_64 1.0.8-9.fc35 fedora 40 k
ca-certificates noarch 2021.2.52-1.0.fc35 updates 364 k
coreutils x86_64 8.32-31.fc35 fedora 1.1 M
coreutils-common x86_64 8.32-31.fc35 fedora 2.0 M
crypto-policies noarch 20210819-1.gitd0fdcfb.fc35 fedora 58 k
curl x86_64 7.79.1-1.fc35 updates 310 k
cyrus-sasl-lib x86_64 2.1.27-13.fc35 fedora 774 k
dbus-libs x86_64 1:1.12.20-5.fc35 fedora 152 k
dnf-data noarch 4.9.0-1.fc35 fedora 45 k
elfutils-default-yama-scope noarch 0.186-1.fc35 updates 19 k
elfutils-libelf x86_64 0.186-1.fc35 updates 200 k
elfutils-libs x86_64 0.186-1.fc35 updates 256 k
expat x86_64 2.4.1-2.fc35 fedora 110 k
fedora-gpg-keys noarch 35-1 fedora 113 k
fedora-release noarch 35-36 updates 12 k
fedora-release-common noarch 35-36 updates 21 k
fedora-release-identity-basic noarch 35-36 updates 12 k
fedora-repos noarch 35-1 fedora 11 k
file-libs x86_64 5.40-9.fc35 fedora 619 k
filesystem x86_64 3.14-7.fc35 fedora 1.1 M
gawk x86_64 5.1.0-4.fc35 fedora 996 k
gdbm-libs x86_64 1:1.22-1.fc35 updates 58 k
glib2 x86_64 2.70.2-1.fc35 updates 2.6 M
glibc x86_64 2.34-11.fc35 updates 2.0 M
glibc-common x86_64 2.34-11.fc35 updates 398 k
glibc-minimal-langpack x86_64 2.34-11.fc35 updates 127 k
gmp x86_64 1:6.2.0-7.fc35 fedora 314 k
gnupg2 x86_64 2.3.4-1.fc35 updates 2.5 M
gnutls x86_64 3.7.2-2.fc35 fedora 1.0 M
gpgme x86_64 1.15.1-6.fc35 updates 206 k
grep x86_64 3.6-4.fc35 fedora 257 k
ima-evm-utils x86_64 1.3.2-3.fc35 fedora 60 k
json-c x86_64 0.15-2.fc35 fedora 43 k
keyutils-libs x86_64 1.6.1-3.fc35 fedora 31 k
krb5-libs x86_64 1.19.2-2.fc35 fedora 722 k
libacl x86_64 2.3.1-2.fc35 fedora 24 k
libarchive x86_64 3.5.2-2.fc35 fedora 388 k
libassuan x86_64 2.5.5-3.fc35 fedora 67 k
libattr x86_64 2.5.1-3.fc35 fedora 18 k
libblkid x86_64 2.37.2-1.fc35 fedora 107 k
libbrotli x86_64 1.0.9-6.fc35 fedora 313 k
libcap x86_64 2.48-3.fc35 fedora 66 k
libcap-ng x86_64 0.8.2-6.fc35 fedora 32 k
libcom_err x86_64 1.46.3-1.fc35 fedora 26 k
libcomps x86_64 0.1.18-1.fc35 fedora 77 k
libcurl x86_64 7.79.1-1.fc35 updates 291 k
libdnf x86_64 0.64.0-1.fc35 fedora 646 k
libffi x86_64 3.1-29.fc35 fedora 32 k
libfsverity x86_64 1.4-6.fc35 updates 19 k
libgcc x86_64 11.2.1-7.fc35 updates 112 k
libgcrypt x86_64 1.9.4-1.fc35 fedora 507 k
libgomp x86_64 11.2.1-7.fc35 updates 286 k
libgpg-error x86_64 1.43-1.fc35 updates 216 k
libidn2 x86_64 2.3.2-3.fc35 fedora 103 k
libksba x86_64 1.6.0-2.fc35 fedora 156 k
libmodulemd x86_64 2.13.0-3.fc35 fedora 230 k
libmount x86_64 2.37.2-1.fc35 fedora 135 k
libnghttp2 x86_64 1.45.1-1.fc35 fedora 70 k
libnsl2 x86_64 1.3.0-4.fc35 fedora 57 k
libpsl x86_64 0.21.1-4.fc35 fedora 63 k
librepo x86_64 1.14.2-1.fc35 fedora 95 k
libreport-filesystem noarch 2.15.2-6.fc35 fedora 15 k
libselinux x86_64 3.3-1.fc35 updates 81 k
libsemanage x86_64 3.3-1.fc35 updates 116 k
libsepol x86_64 3.3-2.fc35 updates 301 k
libsigsegv x86_64 2.13-3.fc35 fedora 26 k
libsmartcols x86_64 2.37.2-1.fc35 fedora 64 k
libsolv x86_64 0.7.19-3.fc35 fedora 398 k
libssh x86_64 0.9.6-1.fc35 fedora 206 k
libssh-config noarch 0.9.6-1.fc35 fedora 9.2 k
libstdc++ x86_64 11.2.1-7.fc35 updates 747 k
libtasn1 x86_64 4.16.0-6.fc35 fedora 74 k
libtirpc x86_64 1.3.2-1.fc35 fedora 92 k
libunistring x86_64 0.9.10-14.fc35 fedora 495 k
libuuid x86_64 2.37.2-1.fc35 fedora 28 k
libverto x86_64 0.3.2-2.fc35 fedora 21 k
libxcrypt x86_64 4.4.27-1.fc35 updates 117 k
libxml2 x86_64 2.9.12-6.fc35 fedora 741 k
libyaml x86_64 0.2.5-6.fc35 fedora 60 k
libzstd x86_64 1.5.1-1.fc35 updates 329 k
lua-libs x86_64 5.4.3-2.fc35 fedora 215 k
lz4-libs x86_64 1.9.3-3.fc35 fedora 66 k
mpdecimal x86_64 2.5.1-2.fc35 fedora 99 k
mpfr x86_64 4.1.0-8.fc35 fedora 326 k
ncurses-base noarch 6.2-8.20210508.fc35 fedora 61 k
ncurses-libs x86_64 6.2-8.20210508.fc35 fedora 322 k
nettle x86_64 3.7.3-2.fc35 fedora 396 k
npth x86_64 1.6-7.fc35 fedora 24 k
openldap x86_64 2.4.59-3.fc35 fedora 258 k
openssl-libs x86_64 1:1.1.1l-2.fc35 fedora 1.4 M
p11-kit x86_64 0.23.22-4.fc35 fedora 357 k
p11-kit-trust x86_64 0.23.22-4.fc35 fedora 136 k
pcre x86_64 8.45-1.fc35 fedora 197 k
pcre2 x86_64 10.37-4.fc35 fedora 231 k
pcre2-syntax noarch 10.37-4.fc35 fedora 142 k
popt x86_64 1.18-6.fc35 fedora 58 k
publicsuffix-list-dafsa noarch 20210518-2.fc35 fedora 58 k
python-pip-wheel noarch 21.2.3-4.fc35 updates 1.1 M
python-setuptools-wheel noarch 57.4.0-1.fc35 fedora 505 k
python3 x86_64 3.10.1-1.fc35 updates 25 k
python3-dateutil noarch 1:2.8.1-7.fc35 fedora 289 k
python3-dbus x86_64 1.2.18-2.fc35 fedora 132 k
python3-distro noarch 1.6.0-1.fc35 fedora 38 k
python3-dnf noarch 4.9.0-1.fc35 fedora 417 k
python3-dnf-plugins-core noarch 4.0.24-1.fc35 updates 210 k
python3-gpg x86_64 1.15.1-6.fc35 updates 261 k
python3-hawkey x86_64 0.64.0-1.fc35 fedora 112 k
python3-libcomps x86_64 0.1.18-1.fc35 fedora 48 k
python3-libdnf x86_64 0.64.0-1.fc35 fedora 781 k
python3-libs x86_64 3.10.1-1.fc35 updates 7.5 M
python3-rpm x86_64 4.17.0-1.fc35 fedora 92 k
python3-six noarch 1.16.0-4.fc35 fedora 36 k
readline x86_64 8.1-3.fc35 fedora 210 k
rpm x86_64 4.17.0-1.fc35 fedora 538 k
rpm-build-libs x86_64 4.17.0-1.fc35 fedora 93 k
rpm-libs x86_64 4.17.0-1.fc35 fedora 313 k
rpm-sign-libs x86_64 4.17.0-1.fc35 fedora 27 k
sed x86_64 4.8-8.fc35 fedora 296 k
setup noarch 2.13.9.1-2.fc35 fedora 143 k
shadow-utils x86_64 2:4.9-8.fc35 updates 1.1 M
sqlite-libs x86_64 3.36.0-3.fc35 fedora 632 k
systemd-libs x86_64 249.7-2.fc35 updates 616 k
tpm2-tss x86_64 3.1.0-3.fc35 fedora 586 k
tzdata noarch 2021e-1.fc35 updates 431 k
xz-libs x86_64 5.2.5-7.fc35 fedora 92 k
zchunk-libs x86_64 1.1.15-2.fc35 fedora 46 k
zlib x86_64 1.2.11-30.fc35 fedora 90 k
Transaction Summary
================================================================================
Install 133 Packages
Total download size: 50 M
Installed size: 170 M
Downloading Packages:
(1/133): basesystem-11-12.fc35.noarch.rpm 39 kB/s | 7.0 kB 00:00
(2/133): alternatives-1.19-1.fc35.x86_64.rpm 136 kB/s | 35 kB 00:00
(3/133): bzip2-libs-1.0.8-9.fc35.x86_64.rpm 483 kB/s | 40 kB 00:00
(4/133): audit-libs-3.0.6-1.fc35.x86_64.rpm 275 kB/s | 116 kB 00:00
(5/133): coreutils-8.32-31.fc35.x86_64.rpm 3.2 MB/s | 1.1 MB 00:00
(6/133): bash-5.1.8-2.fc35.x86_64.rpm 2.8 MB/s | 1.7 MB 00:00
(7/133): crypto-policies-20210819-1.gitd0fdcfb. 701 kB/s | 58 kB 00:00
(8/133): coreutils-common-8.32-31.fc35.x86_64.r 4.7 MB/s | 2.0 MB 00:00
(9/133): cyrus-sasl-lib-2.1.27-13.fc35.x86_64.r 8.4 MB/s | 774 kB 00:00
(10/133): dbus-libs-1.12.20-5.fc35.x86_64.rpm 1.7 MB/s | 152 kB 00:00
(11/133): dnf-4.9.0-1.fc35.noarch.rpm 5.0 MB/s | 448 kB 00:00
(12/133): dnf-data-4.9.0-1.fc35.noarch.rpm 543 kB/s | 45 kB 00:00
(13/133): expat-2.4.1-2.fc35.x86_64.rpm 1.3 MB/s | 110 kB 00:00
(14/133): fedora-gpg-keys-35-1.noarch.rpm 1.3 MB/s | 113 kB 00:00
(15/133): fedora-repos-35-1.noarch.rpm 131 kB/s | 11 kB 00:00
(16/133): file-libs-5.40-9.fc35.x86_64.rpm 6.8 MB/s | 619 kB 00:00
(17/133): filesystem-3.14-7.fc35.x86_64.rpm 11 MB/s | 1.1 MB 00:00
(18/133): gawk-5.1.0-4.fc35.x86_64.rpm 11 MB/s | 996 kB 00:00
(19/133): gmp-6.2.0-7.fc35.x86_64.rpm 3.5 MB/s | 314 kB 00:00
(20/133): gnutls-3.7.2-2.fc35.x86_64.rpm 11 MB/s | 1.0 MB 00:00
(21/133): grep-3.6-4.fc35.x86_64.rpm 3.0 MB/s | 257 kB 00:00
(22/133): ima-evm-utils-1.3.2-3.fc35.x86_64.rpm 722 kB/s | 60 kB 00:00
(23/133): json-c-0.15-2.fc35.x86_64.rpm 517 kB/s | 43 kB 00:00
(24/133): keyutils-libs-1.6.1-3.fc35.x86_64.rpm 375 kB/s | 31 kB 00:00
(25/133): krb5-libs-1.19.2-2.fc35.x86_64.rpm 7.9 MB/s | 722 kB 00:00
(26/133): libacl-2.3.1-2.fc35.x86_64.rpm 285 kB/s | 24 kB 00:00
(27/133): libarchive-3.5.2-2.fc35.x86_64.rpm 4.4 MB/s | 388 kB 00:00
(28/133): libassuan-2.5.5-3.fc35.x86_64.rpm 811 kB/s | 67 kB 00:00
(29/133): libattr-2.5.1-3.fc35.x86_64.rpm 217 kB/s | 18 kB 00:00
(30/133): libblkid-2.37.2-1.fc35.x86_64.rpm 1.3 MB/s | 107 kB 00:00
(31/133): libbrotli-1.0.9-6.fc35.x86_64.rpm 3.6 MB/s | 313 kB 00:00
(32/133): libcap-2.48-3.fc35.x86_64.rpm 796 kB/s | 66 kB 00:00
(33/133): libcap-ng-0.8.2-6.fc35.x86_64.rpm 391 kB/s | 32 kB 00:00
(34/133): libcom_err-1.46.3-1.fc35.x86_64.rpm 314 kB/s | 26 kB 00:00
(35/133): libcomps-0.1.18-1.fc35.x86_64.rpm 927 kB/s | 77 kB 00:00
(36/133): libdnf-0.64.0-1.fc35.x86_64.rpm 7.1 MB/s | 646 kB 00:00
(37/133): libffi-3.1-29.fc35.x86_64.rpm 382 kB/s | 32 kB 00:00
(38/133): libgcrypt-1.9.4-1.fc35.x86_64.rpm 5.7 MB/s | 507 kB 00:00
(39/133): libidn2-2.3.2-3.fc35.x86_64.rpm 1.2 MB/s | 103 kB 00:00
(40/133): libksba-1.6.0-2.fc35.x86_64.rpm 1.8 MB/s | 156 kB 00:00
(41/133): libmodulemd-2.13.0-3.fc35.x86_64.rpm 2.7 MB/s | 230 kB 00:00
(42/133): libmount-2.37.2-1.fc35.x86_64.rpm 1.6 MB/s | 135 kB 00:00
(43/133): libnghttp2-1.45.1-1.fc35.x86_64.rpm 837 kB/s | 70 kB 00:00
(44/133): libnsl2-1.3.0-4.fc35.x86_64.rpm 690 kB/s | 57 kB 00:00
(45/133): libpsl-0.21.1-4.fc35.x86_64.rpm 762 kB/s | 63 kB 00:00
(46/133): librepo-1.14.2-1.fc35.x86_64.rpm 1.1 MB/s | 95 kB 00:00
(47/133): libreport-filesystem-2.15.2-6.fc35.no 184 kB/s | 15 kB 00:00
(48/133): libsigsegv-2.13-3.fc35.x86_64.rpm 319 kB/s | 26 kB 00:00
(49/133): libsmartcols-2.37.2-1.fc35.x86_64.rpm 770 kB/s | 64 kB 00:00
(50/133): libsolv-0.7.19-3.fc35.x86_64.rpm 4.5 MB/s | 398 kB 00:00
(51/133): libssh-0.9.6-1.fc35.x86_64.rpm 2.4 MB/s | 206 kB 00:00
(52/133): libssh-config-0.9.6-1.fc35.noarch.rpm 110 kB/s | 9.2 kB 00:00
(53/133): libtasn1-4.16.0-6.fc35.x86_64.rpm 889 kB/s | 74 kB 00:00
(54/133): libtirpc-1.3.2-1.fc35.x86_64.rpm 1.1 MB/s | 92 kB 00:00
(55/133): libunistring-0.9.10-14.fc35.x86_64.rp 5.5 MB/s | 495 kB 00:00
(56/133): libuuid-2.37.2-1.fc35.x86_64.rpm 345 kB/s | 28 kB 00:00
(57/133): libverto-0.3.2-2.fc35.x86_64.rpm 251 kB/s | 21 kB 00:00
(58/133): libxml2-2.9.12-6.fc35.x86_64.rpm 8.1 MB/s | 741 kB 00:00
(59/133): libyaml-0.2.5-6.fc35.x86_64.rpm 726 kB/s | 60 kB 00:00
(60/133): lua-libs-5.4.3-2.fc35.x86_64.rpm 2.5 MB/s | 215 kB 00:00
(61/133): lz4-libs-1.9.3-3.fc35.x86_64.rpm 799 kB/s | 66 kB 00:00
(62/133): mpdecimal-2.5.1-2.fc35.x86_64.rpm 1.2 MB/s | 99 kB 00:00
(63/133): mpfr-4.1.0-8.fc35.x86_64.rpm 3.7 MB/s | 326 kB 00:00
(64/133): ncurses-base-6.2-8.20210508.fc35.noar 730 kB/s | 61 kB 00:00
(65/133): ncurses-libs-6.2-8.20210508.fc35.x86_ 3.7 MB/s | 322 kB 00:00
(66/133): nettle-3.7.3-2.fc35.x86_64.rpm 4.5 MB/s | 396 kB 00:00
(67/133): npth-1.6-7.fc35.x86_64.rpm 293 kB/s | 24 kB 00:00
(68/133): openldap-2.4.59-3.fc35.x86_64.rpm 3.0 MB/s | 258 kB 00:00
(69/133): p11-kit-trust-0.23.22-4.fc35.x86_64.r 1.6 MB/s | 136 kB 00:00
(70/133): pcre-8.45-1.fc35.x86_64.rpm 2.3 MB/s | 197 kB 00:00
(71/133): openssl-libs-1.1.1l-2.fc35.x86_64.rpm 5.8 MB/s | 1.4 MB 00:00
(72/133): pcre2-10.37-4.fc35.x86_64.rpm 2.7 MB/s | 231 kB 00:00
(73/133): pcre2-syntax-10.37-4.fc35.noarch.rpm 1.7 MB/s | 142 kB 00:00
(74/133): p11-kit-0.23.22-4.fc35.x86_64.rpm 1.0 MB/s | 357 kB 00:00
(75/133): popt-1.18-6.fc35.x86_64.rpm 702 kB/s | 58 kB 00:00
(76/133): publicsuffix-list-dafsa-20210518-2.fc 694 kB/s | 58 kB 00:00
(77/133): python-setuptools-wheel-57.4.0-1.fc35 5.6 MB/s | 505 kB 00:00
(78/133): python3-dateutil-2.8.1-7.fc35.noarch. 3.3 MB/s | 289 kB 00:00
(79/133): python3-dbus-1.2.18-2.fc35.x86_64.rpm 1.5 MB/s | 132 kB 00:00
(80/133): python3-distro-1.6.0-1.fc35.noarch.rp 453 kB/s | 38 kB 00:00
(81/133): python3-dnf-4.9.0-1.fc35.noarch.rpm 4.7 MB/s | 417 kB 00:00
(82/133): python3-hawkey-0.64.0-1.fc35.x86_64.r 1.3 MB/s | 112 kB 00:00
(83/133): python3-libcomps-0.1.18-1.fc35.x86_64 580 kB/s | 48 kB 00:00
(84/133): python3-libdnf-0.64.0-1.fc35.x86_64.r 8.5 MB/s | 781 kB 00:00
(85/133): python3-rpm-4.17.0-1.fc35.x86_64.rpm 1.1 MB/s | 92 kB 00:00
(86/133): python3-six-1.16.0-4.fc35.noarch.rpm 440 kB/s | 36 kB 00:00
(87/133): readline-8.1-3.fc35.x86_64.rpm 2.4 MB/s | 210 kB 00:00
(88/133): rpm-4.17.0-1.fc35.x86_64.rpm 5.9 MB/s | 538 kB 00:00
(89/133): rpm-build-libs-4.17.0-1.fc35.x86_64.r 1.1 MB/s | 93 kB 00:00
(90/133): rpm-libs-4.17.0-1.fc35.x86_64.rpm 3.6 MB/s | 313 kB 00:00
(91/133): rpm-sign-libs-4.17.0-1.fc35.x86_64.rp 329 kB/s | 27 kB 00:00
(92/133): sed-4.8-8.fc35.x86_64.rpm 3.4 MB/s | 296 kB 00:00
(93/133): setup-2.13.9.1-2.fc35.noarch.rpm 1.7 MB/s | 143 kB 00:00
(94/133): sqlite-libs-3.36.0-3.fc35.x86_64.rpm 7.0 MB/s | 632 kB 00:00
(95/133): tpm2-tss-3.1.0-3.fc35.x86_64.rpm 6.5 MB/s | 586 kB 00:00
(96/133): xz-libs-5.2.5-7.fc35.x86_64.rpm 1.1 MB/s | 92 kB 00:00
(97/133): zchunk-libs-1.1.15-2.fc35.x86_64.rpm 556 kB/s | 46 kB 00:00
(98/133): zlib-1.2.11-30.fc35.x86_64.rpm 1.1 MB/s | 90 kB 00:00
(99/133): dnf-plugins-core-4.0.24-1.fc35.noarch 188 kB/s | 35 kB 00:00
(100/133): elfutils-default-yama-scope-0.186-1. 458 kB/s | 19 kB 00:00
(101/133): curl-7.79.1-1.fc35.x86_64.rpm 783 kB/s | 310 kB 00:00
(102/133): ca-certificates-2021.2.52-1.0.fc35.n 829 kB/s | 364 kB 00:00
(103/133): elfutils-libelf-0.186-1.fc35.x86_64. 891 kB/s | 200 kB 00:00
(104/133): fedora-release-35-36.noarch.rpm 283 kB/s | 12 kB 00:00
(105/133): fedora-release-common-35-36.noarch.r 518 kB/s | 21 kB 00:00
(106/133): fedora-release-identity-basic-35-36. 303 kB/s | 12 kB 00:00
(107/133): elfutils-libs-0.186-1.fc35.x86_64.rp 2.0 MB/s | 256 kB 00:00
(108/133): gdbm-libs-1.22-1.fc35.x86_64.rpm 703 kB/s | 58 kB 00:00
(109/133): glibc-common-2.34-11.fc35.x86_64.rpm 1.9 MB/s | 398 kB 00:00
(110/133): glibc-2.34-11.fc35.x86_64.rpm 7.0 MB/s | 2.0 MB 00:00
(111/133): glibc-minimal-langpack-2.34-11.fc35. 2.8 MB/s | 127 kB 00:00
(112/133): gpgme-1.15.1-6.fc35.x86_64.rpm 2.6 MB/s | 206 kB 00:00
(113/133): glib2-2.70.2-1.fc35.x86_64.rpm 5.9 MB/s | 2.6 MB 00:00
(114/133): gnupg2-2.3.4-1.fc35.x86_64.rpm 15 MB/s | 2.5 MB 00:00
(115/133): libcurl-7.79.1-1.fc35.x86_64.rpm 3.6 MB/s | 291 kB 00:00
(116/133): libfsverity-1.4-6.fc35.x86_64.rpm 464 kB/s | 19 kB 00:00
(117/133): libgpg-error-1.43-1.fc35.x86_64.rpm 4.8 MB/s | 216 kB 00:00
(118/133): libgcc-11.2.1-7.fc35.x86_64.rpm 1.4 MB/s | 112 kB 00:00
(119/133): libgomp-11.2.1-7.fc35.x86_64.rpm 3.6 MB/s | 286 kB 00:00
(120/133): libselinux-3.3-1.fc35.x86_64.rpm 2.0 MB/s | 81 kB 00:00
(121/133): libsemanage-3.3-1.fc35.x86_64.rpm 2.9 MB/s | 116 kB 00:00
(122/133): libsepol-3.3-2.fc35.x86_64.rpm 7.1 MB/s | 301 kB 00:00
(123/133): libstdc++-11.2.1-7.fc35.x86_64.rpm 16 MB/s | 747 kB 00:00
(124/133): libxcrypt-4.4.27-1.fc35.x86_64.rpm 2.7 MB/s | 117 kB 00:00
(125/133): libzstd-1.5.1-1.fc35.x86_64.rpm 7.7 MB/s | 329 kB 00:00
(126/133): python3-3.10.1-1.fc35.x86_64.rpm 531 kB/s | 25 kB 00:00
(127/133): python3-dnf-plugins-core-4.0.24-1.fc 5.0 MB/s | 210 kB 00:00
(128/133): python-pip-wheel-21.2.3-4.fc35.noarc 13 MB/s | 1.1 MB 00:00
(129/133): python3-gpg-1.15.1-6.fc35.x86_64.rpm 6.2 MB/s | 261 kB 00:00
(130/133): systemd-libs-249.7-2.fc35.x86_64.rpm 12 MB/s | 616 kB 00:00
(131/133): shadow-utils-4.9-8.fc35.x86_64.rpm 13 MB/s | 1.1 MB 00:00
(132/133): tzdata-2021e-1.fc35.noarch.rpm 9.8 MB/s | 431 kB 00:00
(133/133): python3-libs-3.10.1-1.fc35.x86_64.rp 19 MB/s | 7.5 MB 00:00
--------------------------------------------------------------------------------
Total 9.7 MB/s | 50 MB 00:05
fedora 1.6 MB/s | 1.6 kB 00:00
Importing GPG key 0x9867C58F:
Userid : "Fedora (35) <fedora-35-primary@fedoraproject.org>"
Fingerprint: 787E A6AE 1147 EEE5 6C40 B30C DB46 3971 9867 C58F
From : /usr/share/distribution-gpg-keys/fedora/RPM-GPG-KEY-fedora-35-primary
Key imported successfully
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Running scriptlet: filesystem-3.14-7.fc35.x86_64 1/1
Preparing : 1/1
Installing : libgcc-11.2.1-7.fc35.x86_64 1/133
Running scriptlet: libgcc-11.2.1-7.fc35.x86_64 1/133
Installing : crypto-policies-20210819-1.gitd0fdcfb.fc35.noarc 2/133
Running scriptlet: crypto-policies-20210819-1.gitd0fdcfb.fc35.noarc 2/133
Installing : tzdata-2021e-1.fc35.noarch 3/133
Installing : fedora-release-identity-basic-35-36.noarch 4/133
Installing : python-setuptools-wheel-57.4.0-1.fc35.noarch 5/133
Installing : publicsuffix-list-dafsa-20210518-2.fc35.noarch 6/133
Installing : pcre2-syntax-10.37-4.fc35.noarch 7/133
Installing : ncurses-base-6.2-8.20210508.fc35.noarch 8/133
Installing : libssh-config-0.9.6-1.fc35.noarch 9/133
Installing : libreport-filesystem-2.15.2-6.fc35.noarch 10/133
Installing : dnf-data-4.9.0-1.fc35.noarch 11/133
warning: /etc/dnf/dnf.conf created as /etc/dnf/dnf.conf.rpmnew
Installing : fedora-gpg-keys-35-1.noarch 12/133
Installing : fedora-release-35-36.noarch 13/133
Installing : fedora-repos-35-1.noarch 14/133
Installing : fedora-release-common-35-36.noarch 15/133
Installing : setup-2.13.9.1-2.fc35.noarch 16/133
Running scriptlet: setup-2.13.9.1-2.fc35.noarch 16/133
Installing : filesystem-3.14-7.fc35.x86_64 17/133
Installing : basesystem-11-12.fc35.noarch 18/133
Installing : bash-5.1.8-2.fc35.x86_64 19/133
Running scriptlet: bash-5.1.8-2.fc35.x86_64 19/133
Installing : ncurses-libs-6.2-8.20210508.fc35.x86_64 20/133
Installing : glibc-common-2.34-11.fc35.x86_64 21/133
Installing : glibc-minimal-langpack-2.34-11.fc35.x86_64 22/133
Running scriptlet: glibc-2.34-11.fc35.x86_64 23/133
Installing : glibc-2.34-11.fc35.x86_64 23/133
Running scriptlet: glibc-2.34-11.fc35.x86_64 23/133
Installing : zlib-1.2.11-30.fc35.x86_64 24/133
Installing : bzip2-libs-1.0.8-9.fc35.x86_64 25/133
Installing : xz-libs-5.2.5-7.fc35.x86_64 26/133
Installing : libzstd-1.5.1-1.fc35.x86_64 27/133
Installing : sqlite-libs-3.36.0-3.fc35.x86_64 28/133
Installing : libcap-2.48-3.fc35.x86_64 29/133
Installing : gmp-1:6.2.0-7.fc35.x86_64 30/133
Installing : popt-1.18-6.fc35.x86_64 31/133
Installing : libgpg-error-1.43-1.fc35.x86_64 32/133
Installing : libxml2-2.9.12-6.fc35.x86_64 33/133
Installing : libcom_err-1.46.3-1.fc35.x86_64 34/133
Installing : lua-libs-5.4.3-2.fc35.x86_64 35/133
Installing : libstdc++-11.2.1-7.fc35.x86_64 36/133
Installing : file-libs-5.40-9.fc35.x86_64 37/133
Installing : elfutils-libelf-0.186-1.fc35.x86_64 38/133
Installing : libattr-2.5.1-3.fc35.x86_64 39/133
Installing : libacl-2.3.1-2.fc35.x86_64 40/133
Installing : libffi-3.1-29.fc35.x86_64 41/133
Installing : p11-kit-0.23.22-4.fc35.x86_64 42/133
Installing : libunistring-0.9.10-14.fc35.x86_64 43/133
Installing : libidn2-2.3.2-3.fc35.x86_64 44/133
Installing : libuuid-2.37.2-1.fc35.x86_64 45/133
Installing : readline-8.1-3.fc35.x86_64 46/133
Installing : libxcrypt-4.4.27-1.fc35.x86_64 47/133
Installing : libassuan-2.5.5-3.fc35.x86_64 48/133
Installing : libgcrypt-1.9.4-1.fc35.x86_64 49/133
Installing : expat-2.4.1-2.fc35.x86_64 50/133
Installing : json-c-0.15-2.fc35.x86_64 51/133
Installing : keyutils-libs-1.6.1-3.fc35.x86_64 52/133
Installing : libsigsegv-2.13-3.fc35.x86_64 53/133
Installing : libsmartcols-2.37.2-1.fc35.x86_64 54/133
Installing : libtasn1-4.16.0-6.fc35.x86_64 55/133
Installing : lz4-libs-1.9.3-3.fc35.x86_64 56/133
Installing : pcre-8.45-1.fc35.x86_64 57/133
Installing : grep-3.6-4.fc35.x86_64 58/133
Installing : gdbm-libs-1:1.22-1.fc35.x86_64 59/133
Installing : libsepol-3.3-2.fc35.x86_64 60/133
Installing : libcomps-0.1.18-1.fc35.x86_64 61/133
Installing : libpsl-0.21.1-4.fc35.x86_64 62/133
Installing : mpdecimal-2.5.1-2.fc35.x86_64 63/133
Installing : libksba-1.6.0-2.fc35.x86_64 64/133
Installing : mpfr-4.1.0-8.fc35.x86_64 65/133
Installing : gawk-5.1.0-4.fc35.x86_64 66/133
Installing : nettle-3.7.3-2.fc35.x86_64 67/133
Installing : alternatives-1.19-1.fc35.x86_64 68/133
Installing : p11-kit-trust-0.23.22-4.fc35.x86_64 69/133
Running scriptlet: p11-kit-trust-0.23.22-4.fc35.x86_64 69/133
Installing : gnutls-3.7.2-2.fc35.x86_64 70/133
Installing : libbrotli-1.0.9-6.fc35.x86_64 71/133
Installing : libcap-ng-0.8.2-6.fc35.x86_64 72/133
Installing : audit-libs-3.0.6-1.fc35.x86_64 73/133
Installing : libnghttp2-1.45.1-1.fc35.x86_64 74/133
Installing : libverto-0.3.2-2.fc35.x86_64 75/133
Installing : libyaml-0.2.5-6.fc35.x86_64 76/133
Installing : npth-1.6-7.fc35.x86_64 77/133
Installing : pcre2-10.37-4.fc35.x86_64 78/133
Installing : libselinux-3.3-1.fc35.x86_64 79/133
Installing : sed-4.8-8.fc35.x86_64 80/133
Installing : libsemanage-3.3-1.fc35.x86_64 81/133
Installing : shadow-utils-2:4.9-8.fc35.x86_64 82/133
Installing : libgomp-11.2.1-7.fc35.x86_64 83/133
Installing : elfutils-default-yama-scope-0.186-1.fc35.noarch 84/133
Running scriptlet: elfutils-default-yama-scope-0.186-1.fc35.noarch 84/133
Installing : elfutils-libs-0.186-1.fc35.x86_64 85/133
Installing : coreutils-common-8.32-31.fc35.x86_64 86/133
Installing : openssl-libs-1:1.1.1l-2.fc35.x86_64 87/133
Installing : coreutils-8.32-31.fc35.x86_64 88/133
Running scriptlet: ca-certificates-2021.2.52-1.0.fc35.noarch 89/133
Installing : ca-certificates-2021.2.52-1.0.fc35.noarch 89/133
Running scriptlet: ca-certificates-2021.2.52-1.0.fc35.noarch 89/133
Installing : krb5-libs-1.19.2-2.fc35.x86_64 90/133
Installing : libtirpc-1.3.2-1.fc35.x86_64 91/133
Installing : zchunk-libs-1.1.15-2.fc35.x86_64 92/133
Installing : libfsverity-1.4-6.fc35.x86_64 93/133
Installing : libnsl2-1.3.0-4.fc35.x86_64 94/133
Installing : cyrus-sasl-lib-2.1.27-13.fc35.x86_64 95/133
Installing : openldap-2.4.59-3.fc35.x86_64 96/133
Installing : gnupg2-2.3.4-1.fc35.x86_64 97/133
Installing : gpgme-1.15.1-6.fc35.x86_64 98/133
Installing : libssh-0.9.6-1.fc35.x86_64 99/133
Installing : libcurl-7.79.1-1.fc35.x86_64 100/133
Running scriptlet: tpm2-tss-3.1.0-3.fc35.x86_64 101/133
useradd warning: tss's uid 59 outside of the SYS_UID_MIN 201 and SYS_UID_MAX 999 range.
Installing : tpm2-tss-3.1.0-3.fc35.x86_64 101/133
Installing : ima-evm-utils-1.3.2-3.fc35.x86_64 102/133
Installing : curl-7.79.1-1.fc35.x86_64 103/133
Installing : python-pip-wheel-21.2.3-4.fc35.noarch 104/133
Installing : python3-3.10.1-1.fc35.x86_64 105/133
Installing : python3-libs-3.10.1-1.fc35.x86_64 106/133
Installing : python3-libcomps-0.1.18-1.fc35.x86_64 107/133
Installing : python3-distro-1.6.0-1.fc35.noarch 108/133
Installing : python3-six-1.16.0-4.fc35.noarch 109/133
Installing : python3-dateutil-1:2.8.1-7.fc35.noarch 110/133
Installing : python3-gpg-1.15.1-6.fc35.x86_64 111/133
Installing : libblkid-2.37.2-1.fc35.x86_64 112/133
Running scriptlet: libblkid-2.37.2-1.fc35.x86_64 112/133
Installing : libmount-2.37.2-1.fc35.x86_64 113/133
Installing : glib2-2.70.2-1.fc35.x86_64 114/133
Installing : librepo-1.14.2-1.fc35.x86_64 115/133
Installing : systemd-libs-249.7-2.fc35.x86_64 116/133
Running scriptlet: systemd-libs-249.7-2.fc35.x86_64 116/133
Installing : dbus-libs-1:1.12.20-5.fc35.x86_64 117/133
Installing : python3-dbus-1.2.18-2.fc35.x86_64 118/133
Installing : libarchive-3.5.2-2.fc35.x86_64 119/133
Installing : rpm-libs-4.17.0-1.fc35.x86_64 120/133
Installing : rpm-4.17.0-1.fc35.x86_64 121/133
Installing : libmodulemd-2.13.0-3.fc35.x86_64 122/133
Installing : libsolv-0.7.19-3.fc35.x86_64 123/133
Installing : libdnf-0.64.0-1.fc35.x86_64 124/133
Installing : python3-libdnf-0.64.0-1.fc35.x86_64 125/133
Installing : python3-hawkey-0.64.0-1.fc35.x86_64 126/133
Installing : rpm-build-libs-4.17.0-1.fc35.x86_64 127/133
Installing : rpm-sign-libs-4.17.0-1.fc35.x86_64 128/133
Installing : python3-rpm-4.17.0-1.fc35.x86_64 129/133
Installing : python3-dnf-4.9.0-1.fc35.noarch 130/133
Installing : python3-dnf-plugins-core-4.0.24-1.fc35.noarch 131/133
Installing : dnf-plugins-core-4.0.24-1.fc35.noarch 132/133
Installing : dnf-4.9.0-1.fc35.noarch 133/133
Running scriptlet: dnf-4.9.0-1.fc35.noarch 133/133
Running scriptlet: filesystem-3.14-7.fc35.x86_64 133/133
Running scriptlet: ca-certificates-2021.2.52-1.0.fc35.noarch 133/133
Running scriptlet: rpm-4.17.0-1.fc35.x86_64 133/133
Running scriptlet: dnf-4.9.0-1.fc35.noarch 133/133
Verifying : alternatives-1.19-1.fc35.x86_64 1/133
Verifying : audit-libs-3.0.6-1.fc35.x86_64 2/133
Verifying : basesystem-11-12.fc35.noarch 3/133
Verifying : bash-5.1.8-2.fc35.x86_64 4/133
Verifying : bzip2-libs-1.0.8-9.fc35.x86_64 5/133
Verifying : coreutils-8.32-31.fc35.x86_64 6/133
Verifying : coreutils-common-8.32-31.fc35.x86_64 7/133
Verifying : crypto-policies-20210819-1.gitd0fdcfb.fc35.noarc 8/133
Verifying : cyrus-sasl-lib-2.1.27-13.fc35.x86_64 9/133
Verifying : dbus-libs-1:1.12.20-5.fc35.x86_64 10/133
Verifying : dnf-4.9.0-1.fc35.noarch 11/133
Verifying : dnf-data-4.9.0-1.fc35.noarch 12/133
Verifying : expat-2.4.1-2.fc35.x86_64 13/133
Verifying : fedora-gpg-keys-35-1.noarch 14/133
Verifying : fedora-repos-35-1.noarch 15/133
Verifying : file-libs-5.40-9.fc35.x86_64 16/133
Verifying : filesystem-3.14-7.fc35.x86_64 17/133
Verifying : gawk-5.1.0-4.fc35.x86_64 18/133
Verifying : gmp-1:6.2.0-7.fc35.x86_64 19/133
Verifying : gnutls-3.7.2-2.fc35.x86_64 20/133
Verifying : grep-3.6-4.fc35.x86_64 21/133
Verifying : ima-evm-utils-1.3.2-3.fc35.x86_64 22/133
Verifying : json-c-0.15-2.fc35.x86_64 23/133
Verifying : keyutils-libs-1.6.1-3.fc35.x86_64 24/133
Verifying : krb5-libs-1.19.2-2.fc35.x86_64 25/133
Verifying : libacl-2.3.1-2.fc35.x86_64 26/133
Verifying : libarchive-3.5.2-2.fc35.x86_64 27/133
Verifying : libassuan-2.5.5-3.fc35.x86_64 28/133
Verifying : libattr-2.5.1-3.fc35.x86_64 29/133
Verifying : libblkid-2.37.2-1.fc35.x86_64 30/133
Verifying : libbrotli-1.0.9-6.fc35.x86_64 31/133
Verifying : libcap-2.48-3.fc35.x86_64 32/133
Verifying : libcap-ng-0.8.2-6.fc35.x86_64 33/133
Verifying : libcom_err-1.46.3-1.fc35.x86_64 34/133
Verifying : libcomps-0.1.18-1.fc35.x86_64 35/133
Verifying : libdnf-0.64.0-1.fc35.x86_64 36/133
Verifying : libffi-3.1-29.fc35.x86_64 37/133
Verifying : libgcrypt-1.9.4-1.fc35.x86_64 38/133
Verifying : libidn2-2.3.2-3.fc35.x86_64 39/133
Verifying : libksba-1.6.0-2.fc35.x86_64 40/133
Verifying : libmodulemd-2.13.0-3.fc35.x86_64 41/133
Verifying : libmount-2.37.2-1.fc35.x86_64 42/133
Verifying : libnghttp2-1.45.1-1.fc35.x86_64 43/133
Verifying : libnsl2-1.3.0-4.fc35.x86_64 44/133
Verifying : libpsl-0.21.1-4.fc35.x86_64 45/133
Verifying : librepo-1.14.2-1.fc35.x86_64 46/133
Verifying : libreport-filesystem-2.15.2-6.fc35.noarch 47/133
Verifying : libsigsegv-2.13-3.fc35.x86_64 48/133
Verifying : libsmartcols-2.37.2-1.fc35.x86_64 49/133
Verifying : libsolv-0.7.19-3.fc35.x86_64 50/133
Verifying : libssh-0.9.6-1.fc35.x86_64 51/133
Verifying : libssh-config-0.9.6-1.fc35.noarch 52/133
Verifying : libtasn1-4.16.0-6.fc35.x86_64 53/133
Verifying : libtirpc-1.3.2-1.fc35.x86_64 54/133
Verifying : libunistring-0.9.10-14.fc35.x86_64 55/133
Verifying : libuuid-2.37.2-1.fc35.x86_64 56/133
Verifying : libverto-0.3.2-2.fc35.x86_64 57/133
Verifying : libxml2-2.9.12-6.fc35.x86_64 58/133
Verifying : libyaml-0.2.5-6.fc35.x86_64 59/133
Verifying : lua-libs-5.4.3-2.fc35.x86_64 60/133
Verifying : lz4-libs-1.9.3-3.fc35.x86_64 61/133
Verifying : mpdecimal-2.5.1-2.fc35.x86_64 62/133
Verifying : mpfr-4.1.0-8.fc35.x86_64 63/133
Verifying : ncurses-base-6.2-8.20210508.fc35.noarch 64/133
Verifying : ncurses-libs-6.2-8.20210508.fc35.x86_64 65/133
Verifying : nettle-3.7.3-2.fc35.x86_64 66/133
Verifying : npth-1.6-7.fc35.x86_64 67/133
Verifying : openldap-2.4.59-3.fc35.x86_64 68/133
Verifying : openssl-libs-1:1.1.1l-2.fc35.x86_64 69/133
Verifying : p11-kit-0.23.22-4.fc35.x86_64 70/133
Verifying : p11-kit-trust-0.23.22-4.fc35.x86_64 71/133
Verifying : pcre-8.45-1.fc35.x86_64 72/133
Verifying : pcre2-10.37-4.fc35.x86_64 73/133
Verifying : pcre2-syntax-10.37-4.fc35.noarch 74/133
Verifying : popt-1.18-6.fc35.x86_64 75/133
Verifying : publicsuffix-list-dafsa-20210518-2.fc35.noarch 76/133
Verifying : python-setuptools-wheel-57.4.0-1.fc35.noarch 77/133
Verifying : python3-dateutil-1:2.8.1-7.fc35.noarch 78/133
Verifying : python3-dbus-1.2.18-2.fc35.x86_64 79/133
Verifying : python3-distro-1.6.0-1.fc35.noarch 80/133
Verifying : python3-dnf-4.9.0-1.fc35.noarch 81/133
Verifying : python3-hawkey-0.64.0-1.fc35.x86_64 82/133
Verifying : python3-libcomps-0.1.18-1.fc35.x86_64 83/133
Verifying : python3-libdnf-0.64.0-1.fc35.x86_64 84/133
Verifying : python3-rpm-4.17.0-1.fc35.x86_64 85/133
Verifying : python3-six-1.16.0-4.fc35.noarch 86/133
Verifying : readline-8.1-3.fc35.x86_64 87/133
Verifying : rpm-4.17.0-1.fc35.x86_64 88/133
Verifying : rpm-build-libs-4.17.0-1.fc35.x86_64 89/133
Verifying : rpm-libs-4.17.0-1.fc35.x86_64 90/133
Verifying : rpm-sign-libs-4.17.0-1.fc35.x86_64 91/133
Verifying : sed-4.8-8.fc35.x86_64 92/133
Verifying : setup-2.13.9.1-2.fc35.noarch 93/133
Verifying : sqlite-libs-3.36.0-3.fc35.x86_64 94/133
Verifying : tpm2-tss-3.1.0-3.fc35.x86_64 95/133
Verifying : xz-libs-5.2.5-7.fc35.x86_64 96/133
Verifying : zchunk-libs-1.1.15-2.fc35.x86_64 97/133
Verifying : zlib-1.2.11-30.fc35.x86_64 98/133
Verifying : ca-certificates-2021.2.52-1.0.fc35.noarch 99/133
Verifying : curl-7.79.1-1.fc35.x86_64 100/133
Verifying : dnf-plugins-core-4.0.24-1.fc35.noarch 101/133
Verifying : elfutils-default-yama-scope-0.186-1.fc35.noarch 102/133
Verifying : elfutils-libelf-0.186-1.fc35.x86_64 103/133
Verifying : elfutils-libs-0.186-1.fc35.x86_64 104/133
Verifying : fedora-release-35-36.noarch 105/133
Verifying : fedora-release-common-35-36.noarch 106/133
Verifying : fedora-release-identity-basic-35-36.noarch 107/133
Verifying : gdbm-libs-1:1.22-1.fc35.x86_64 108/133
Verifying : glib2-2.70.2-1.fc35.x86_64 109/133
Verifying : glibc-2.34-11.fc35.x86_64 110/133
Verifying : glibc-common-2.34-11.fc35.x86_64 111/133
Verifying : glibc-minimal-langpack-2.34-11.fc35.x86_64 112/133
Verifying : gnupg2-2.3.4-1.fc35.x86_64 113/133
Verifying : gpgme-1.15.1-6.fc35.x86_64 114/133
Verifying : libcurl-7.79.1-1.fc35.x86_64 115/133
Verifying : libfsverity-1.4-6.fc35.x86_64 116/133
Verifying : libgcc-11.2.1-7.fc35.x86_64 117/133
Verifying : libgomp-11.2.1-7.fc35.x86_64 118/133
Verifying : libgpg-error-1.43-1.fc35.x86_64 119/133
Verifying : libselinux-3.3-1.fc35.x86_64 120/133
Verifying : libsemanage-3.3-1.fc35.x86_64 121/133
Verifying : libsepol-3.3-2.fc35.x86_64 122/133
Verifying : libstdc++-11.2.1-7.fc35.x86_64 123/133
Verifying : libxcrypt-4.4.27-1.fc35.x86_64 124/133
Verifying : libzstd-1.5.1-1.fc35.x86_64 125/133
Verifying : python-pip-wheel-21.2.3-4.fc35.noarch 126/133
Verifying : python3-3.10.1-1.fc35.x86_64 127/133
Verifying : python3-dnf-plugins-core-4.0.24-1.fc35.noarch 128/133
Verifying : python3-gpg-1.15.1-6.fc35.x86_64 129/133
Verifying : python3-libs-3.10.1-1.fc35.x86_64 130/133
Verifying : shadow-utils-2:4.9-8.fc35.x86_64 131/133
Verifying : systemd-libs-249.7-2.fc35.x86_64 132/133
Verifying : tzdata-2021e-1.fc35.noarch 133/133
Installed:
alternatives-1.19-1.fc35.x86_64
audit-libs-3.0.6-1.fc35.x86_64
basesystem-11-12.fc35.noarch
bash-5.1.8-2.fc35.x86_64
bzip2-libs-1.0.8-9.fc35.x86_64
ca-certificates-2021.2.52-1.0.fc35.noarch
coreutils-8.32-31.fc35.x86_64
coreutils-common-8.32-31.fc35.x86_64
crypto-policies-20210819-1.gitd0fdcfb.fc35.noarch
curl-7.79.1-1.fc35.x86_64
cyrus-sasl-lib-2.1.27-13.fc35.x86_64
dbus-libs-1:1.12.20-5.fc35.x86_64
dnf-4.9.0-1.fc35.noarch
dnf-data-4.9.0-1.fc35.noarch
dnf-plugins-core-4.0.24-1.fc35.noarch
elfutils-default-yama-scope-0.186-1.fc35.noarch
elfutils-libelf-0.186-1.fc35.x86_64
elfutils-libs-0.186-1.fc35.x86_64
expat-2.4.1-2.fc35.x86_64
fedora-gpg-keys-35-1.noarch
fedora-release-35-36.noarch
fedora-release-common-35-36.noarch
fedora-release-identity-basic-35-36.noarch
fedora-repos-35-1.noarch
file-libs-5.40-9.fc35.x86_64
filesystem-3.14-7.fc35.x86_64
gawk-5.1.0-4.fc35.x86_64
gdbm-libs-1:1.22-1.fc35.x86_64
glib2-2.70.2-1.fc35.x86_64
glibc-2.34-11.fc35.x86_64
glibc-common-2.34-11.fc35.x86_64
glibc-minimal-langpack-2.34-11.fc35.x86_64
gmp-1:6.2.0-7.fc35.x86_64
gnupg2-2.3.4-1.fc35.x86_64
gnutls-3.7.2-2.fc35.x86_64
gpgme-1.15.1-6.fc35.x86_64
grep-3.6-4.fc35.x86_64
ima-evm-utils-1.3.2-3.fc35.x86_64
json-c-0.15-2.fc35.x86_64
keyutils-libs-1.6.1-3.fc35.x86_64
krb5-libs-1.19.2-2.fc35.x86_64
libacl-2.3.1-2.fc35.x86_64
libarchive-3.5.2-2.fc35.x86_64
libassuan-2.5.5-3.fc35.x86_64
libattr-2.5.1-3.fc35.x86_64
libblkid-2.37.2-1.fc35.x86_64
libbrotli-1.0.9-6.fc35.x86_64
libcap-2.48-3.fc35.x86_64
libcap-ng-0.8.2-6.fc35.x86_64
libcom_err-1.46.3-1.fc35.x86_64
libcomps-0.1.18-1.fc35.x86_64
libcurl-7.79.1-1.fc35.x86_64
libdnf-0.64.0-1.fc35.x86_64
libffi-3.1-29.fc35.x86_64
libfsverity-1.4-6.fc35.x86_64
libgcc-11.2.1-7.fc35.x86_64
libgcrypt-1.9.4-1.fc35.x86_64
libgomp-11.2.1-7.fc35.x86_64
libgpg-error-1.43-1.fc35.x86_64
libidn2-2.3.2-3.fc35.x86_64
libksba-1.6.0-2.fc35.x86_64
libmodulemd-2.13.0-3.fc35.x86_64
libmount-2.37.2-1.fc35.x86_64
libnghttp2-1.45.1-1.fc35.x86_64
libnsl2-1.3.0-4.fc35.x86_64
libpsl-0.21.1-4.fc35.x86_64
librepo-1.14.2-1.fc35.x86_64
libreport-filesystem-2.15.2-6.fc35.noarch
libselinux-3.3-1.fc35.x86_64
libsemanage-3.3-1.fc35.x86_64
libsepol-3.3-2.fc35.x86_64
libsigsegv-2.13-3.fc35.x86_64
libsmartcols-2.37.2-1.fc35.x86_64
libsolv-0.7.19-3.fc35.x86_64
libssh-0.9.6-1.fc35.x86_64
libssh-config-0.9.6-1.fc35.noarch
libstdc++-11.2.1-7.fc35.x86_64
libtasn1-4.16.0-6.fc35.x86_64
libtirpc-1.3.2-1.fc35.x86_64
libunistring-0.9.10-14.fc35.x86_64
libuuid-2.37.2-1.fc35.x86_64
libverto-0.3.2-2.fc35.x86_64
libxcrypt-4.4.27-1.fc35.x86_64
libxml2-2.9.12-6.fc35.x86_64
libyaml-0.2.5-6.fc35.x86_64
libzstd-1.5.1-1.fc35.x86_64
lua-libs-5.4.3-2.fc35.x86_64
lz4-libs-1.9.3-3.fc35.x86_64
mpdecimal-2.5.1-2.fc35.x86_64
mpfr-4.1.0-8.fc35.x86_64
ncurses-base-6.2-8.20210508.fc35.noarch
ncurses-libs-6.2-8.20210508.fc35.x86_64
nettle-3.7.3-2.fc35.x86_64
npth-1.6-7.fc35.x86_64
openldap-2.4.59-3.fc35.x86_64
openssl-libs-1:1.1.1l-2.fc35.x86_64
p11-kit-0.23.22-4.fc35.x86_64
p11-kit-trust-0.23.22-4.fc35.x86_64
pcre-8.45-1.fc35.x86_64
pcre2-10.37-4.fc35.x86_64
pcre2-syntax-10.37-4.fc35.noarch
popt-1.18-6.fc35.x86_64
publicsuffix-list-dafsa-20210518-2.fc35.noarch
python-pip-wheel-21.2.3-4.fc35.noarch
python-setuptools-wheel-57.4.0-1.fc35.noarch
python3-3.10.1-1.fc35.x86_64
python3-dateutil-1:2.8.1-7.fc35.noarch
python3-dbus-1.2.18-2.fc35.x86_64
python3-distro-1.6.0-1.fc35.noarch
python3-dnf-4.9.0-1.fc35.noarch
python3-dnf-plugins-core-4.0.24-1.fc35.noarch
python3-gpg-1.15.1-6.fc35.x86_64
python3-hawkey-0.64.0-1.fc35.x86_64
python3-libcomps-0.1.18-1.fc35.x86_64
python3-libdnf-0.64.0-1.fc35.x86_64
python3-libs-3.10.1-1.fc35.x86_64
python3-rpm-4.17.0-1.fc35.x86_64
python3-six-1.16.0-4.fc35.noarch
readline-8.1-3.fc35.x86_64
rpm-4.17.0-1.fc35.x86_64
rpm-build-libs-4.17.0-1.fc35.x86_64
rpm-libs-4.17.0-1.fc35.x86_64
rpm-sign-libs-4.17.0-1.fc35.x86_64
sed-4.8-8.fc35.x86_64
setup-2.13.9.1-2.fc35.noarch
shadow-utils-2:4.9-8.fc35.x86_64
sqlite-libs-3.36.0-3.fc35.x86_64
systemd-libs-249.7-2.fc35.x86_64
tpm2-tss-3.1.0-3.fc35.x86_64
tzdata-2021e-1.fc35.noarch
xz-libs-5.2.5-7.fc35.x86_64
zchunk-libs-1.1.15-2.fc35.x86_64
zlib-1.2.11-30.fc35.x86_64
Complete!
Finish(bootstrap): dnf install
Start(bootstrap): creating root cache
Finish(bootstrap): creating root cache
Finish(bootstrap): chroot init
Start: chroot init
INFO: mounting tmpfs at /var/lib/mock/fedora-35-x86_64-1640568955.315429/root.
INFO: calling preinit hooks
INFO: enabled root cache
INFO: enabled package manager cache
Start: cleaning package manager metadata
Finish: cleaning package manager metadata
INFO: enabled HW Info plugin
Mock Version: 2.15
INFO: Mock Version: 2.15
Start: dnf install
No matches found for the following disable plugin patterns: local, spacewalk, versionlock
Copr repository 11 kB/s | 1.2 kB 00:00
fedora 3.2 MB/s | 79 MB 00:24
updates 21 MB/s | 17 MB 00:00
Dependencies resolved.
================================================================================
Package Arch Version Repo Size
================================================================================
Installing group/module packages:
bash x86_64 5.1.8-2.fc35 fedora 1.7 M
bzip2 x86_64 1.0.8-9.fc35 fedora 52 k
coreutils x86_64 8.32-31.fc35 fedora 1.1 M
cpio x86_64 2.13-11.fc35 fedora 270 k
diffutils x86_64 3.8-1.fc35 fedora 400 k
fedora-release-common noarch 35-36 updates 21 k
findutils x86_64 1:4.8.0-4.fc35 fedora 538 k
gawk x86_64 5.1.0-4.fc35 fedora 996 k
glibc-minimal-langpack x86_64 2.34-11.fc35 updates 127 k
grep x86_64 3.6-4.fc35 fedora 257 k
gzip x86_64 1.10-5.fc35 fedora 150 k
info x86_64 6.8-2.fc35 fedora 222 k
patch x86_64 2.7.6-15.fc35 fedora 127 k
redhat-rpm-config noarch 199-1.fc35 updates 65 k
rpm-build x86_64 4.17.0-1.fc35 fedora 61 k
sed x86_64 4.8-8.fc35 fedora 296 k
shadow-utils x86_64 2:4.9-8.fc35 updates 1.1 M
tar x86_64 2:1.34-2.fc35 fedora 880 k
unzip x86_64 6.0-53.fc35 fedora 179 k
util-linux x86_64 2.37.2-1.fc35 fedora 2.2 M
which x86_64 2.21-27.fc35 fedora 41 k
xz x86_64 5.2.5-7.fc35 fedora 214 k
Installing dependencies:
alternatives x86_64 1.19-1.fc35 fedora 35 k
audit-libs x86_64 3.0.6-1.fc35 fedora 116 k
basesystem noarch 11-12.fc35 fedora 7.0 k
binutils x86_64 2.37-10.fc35 fedora 6.0 M
binutils-gold x86_64 2.37-10.fc35 fedora 728 k
bzip2-libs x86_64 1.0.8-9.fc35 fedora 40 k
ca-certificates noarch 2021.2.52-1.0.fc35 updates 364 k
coreutils-common x86_64 8.32-31.fc35 fedora 2.0 M
cracklib x86_64 2.9.6-27.fc35 fedora 81 k
crypto-policies noarch 20210819-1.gitd0fdcfb.fc35 fedora 58 k
curl x86_64 7.79.1-1.fc35 updates 310 k
cyrus-sasl-lib x86_64 2.1.27-13.fc35 fedora 774 k
debugedit x86_64 5.0-2.fc35 fedora 76 k
dwz x86_64 0.14-2.fc35 fedora 127 k
ed x86_64 1.14.2-11.fc35 fedora 73 k
efi-srpm-macros noarch 5-4.fc35 fedora 22 k
elfutils x86_64 0.186-1.fc35 updates 520 k
elfutils-debuginfod-client x86_64 0.186-1.fc35 updates 40 k
elfutils-default-yama-scope noarch 0.186-1.fc35 updates 19 k
elfutils-libelf x86_64 0.186-1.fc35 updates 200 k
elfutils-libs x86_64 0.186-1.fc35 updates 256 k
fedora-gpg-keys noarch 35-1 fedora 113 k
fedora-release noarch 35-36 updates 12 k
fedora-release-identity-basic noarch 35-36 updates 12 k
fedora-repos noarch 35-1 fedora 11 k
file x86_64 5.40-9.fc35 fedora 51 k
file-libs x86_64 5.40-9.fc35 fedora 619 k
filesystem x86_64 3.14-7.fc35 fedora 1.1 M
fonts-srpm-macros noarch 1:2.0.5-6.fc35 fedora 27 k
fpc-srpm-macros noarch 1.3-4.fc35 fedora 7.6 k
gdb-minimal x86_64 11.1-5.fc35 updates 3.8 M
gdbm-libs x86_64 1:1.22-1.fc35 updates 58 k
ghc-srpm-macros noarch 1.5.0-5.fc35 fedora 7.8 k
glibc x86_64 2.34-11.fc35 updates 2.0 M
glibc-common x86_64 2.34-11.fc35 updates 398 k
glibc-gconv-extra x86_64 2.34-11.fc35 updates 1.6 M
gmp x86_64 1:6.2.0-7.fc35 fedora 314 k
gnat-srpm-macros noarch 4-14.fc35 fedora 8.2 k
go-srpm-macros noarch 3.0.11-2.fc35 fedora 25 k
kernel-srpm-macros noarch 1.0-6.fc35 fedora 8.0 k
keyutils-libs x86_64 1.6.1-3.fc35 fedora 31 k
krb5-libs x86_64 1.19.2-2.fc35 fedora 722 k
libacl x86_64 2.3.1-2.fc35 fedora 24 k
libarchive x86_64 3.5.2-2.fc35 fedora 388 k
libattr x86_64 2.5.1-3.fc35 fedora 18 k
libblkid x86_64 2.37.2-1.fc35 fedora 107 k
libbrotli x86_64 1.0.9-6.fc35 fedora 313 k
libcap x86_64 2.48-3.fc35 fedora 66 k
libcap-ng x86_64 0.8.2-6.fc35 fedora 32 k
libcom_err x86_64 1.46.3-1.fc35 fedora 26 k
libcurl x86_64 7.79.1-1.fc35 updates 291 k
libdb x86_64 5.3.28-50.fc35 fedora 746 k
libeconf x86_64 0.4.0-2.fc35 fedora 27 k
libfdisk x86_64 2.37.2-1.fc35 fedora 155 k
libffi x86_64 3.1-29.fc35 fedora 32 k
libgcc x86_64 11.2.1-7.fc35 updates 112 k
libgcrypt x86_64 1.9.4-1.fc35 fedora 507 k
libgomp x86_64 11.2.1-7.fc35 updates 286 k
libgpg-error x86_64 1.43-1.fc35 updates 216 k
libidn2 x86_64 2.3.2-3.fc35 fedora 103 k
libmount x86_64 2.37.2-1.fc35 fedora 135 k
libnghttp2 x86_64 1.45.1-1.fc35 fedora 70 k
libnsl2 x86_64 1.3.0-4.fc35 fedora 57 k
libpkgconf x86_64 1.8.0-1.fc35 fedora 36 k
libpsl x86_64 0.21.1-4.fc35 fedora 63 k
libpwquality x86_64 1.4.4-6.fc35 fedora 104 k
libselinux x86_64 3.3-1.fc35 updates 81 k
libsemanage x86_64 3.3-1.fc35 updates 116 k
libsepol x86_64 3.3-2.fc35 updates 301 k
libsigsegv x86_64 2.13-3.fc35 fedora 26 k
libsmartcols x86_64 2.37.2-1.fc35 fedora 64 k
libssh x86_64 0.9.6-1.fc35 fedora 206 k
libssh-config noarch 0.9.6-1.fc35 fedora 9.2 k
libstdc++ x86_64 11.2.1-7.fc35 updates 747 k
libtasn1 x86_64 4.16.0-6.fc35 fedora 74 k
libtirpc x86_64 1.3.2-1.fc35 fedora 92 k
libunistring x86_64 0.9.10-14.fc35 fedora 495 k
libutempter x86_64 1.2.1-5.fc35 fedora 26 k
libuuid x86_64 2.37.2-1.fc35 fedora 28 k
libverto x86_64 0.3.2-2.fc35 fedora 21 k
libxcrypt x86_64 4.4.27-1.fc35 updates 117 k
libxml2 x86_64 2.9.12-6.fc35 fedora 741 k
libzstd x86_64 1.5.1-1.fc35 updates 329 k
lua-libs x86_64 5.4.3-2.fc35 fedora 215 k
lua-srpm-macros noarch 1-5.fc35 fedora 8.4 k
lz4-libs x86_64 1.9.3-3.fc35 fedora 66 k
mpfr x86_64 4.1.0-8.fc35 fedora 326 k
ncurses-base noarch 6.2-8.20210508.fc35 fedora 61 k
ncurses-libs x86_64 6.2-8.20210508.fc35 fedora 322 k
nim-srpm-macros noarch 3-5.fc35 fedora 8.4 k
ocaml-srpm-macros noarch 6-5.fc35 fedora 7.8 k
openblas-srpm-macros noarch 2-10.fc35 fedora 7.4 k
openldap x86_64 2.4.59-3.fc35 fedora 258 k
openssl-libs x86_64 1:1.1.1l-2.fc35 fedora 1.4 M
p11-kit x86_64 0.23.22-4.fc35 fedora 357 k
p11-kit-trust x86_64 0.23.22-4.fc35 fedora 136 k
pam x86_64 1.5.2-5.fc35 fedora 547 k
pcre x86_64 8.45-1.fc35 fedora 197 k
pcre2 x86_64 10.37-4.fc35 fedora 231 k
pcre2-syntax noarch 10.37-4.fc35 fedora 142 k
perl-srpm-macros noarch 1-42.fc35 fedora 8.3 k
pkgconf x86_64 1.8.0-1.fc35 fedora 41 k
pkgconf-m4 noarch 1.8.0-1.fc35 fedora 14 k
pkgconf-pkg-config x86_64 1.8.0-1.fc35 fedora 10 k
popt x86_64 1.18-6.fc35 fedora 58 k
publicsuffix-list-dafsa noarch 20210518-2.fc35 fedora 58 k
python-srpm-macros noarch 3.10-10.fc35 updates 25 k
qt5-srpm-macros noarch 5.15.2-3.fc35 fedora 8.2 k
readline x86_64 8.1-3.fc35 fedora 210 k
rpm x86_64 4.17.0-1.fc35 fedora 538 k
rpm-build-libs x86_64 4.17.0-1.fc35 fedora 93 k
rpm-libs x86_64 4.17.0-1.fc35 fedora 313 k
rpmautospec-rpm-macros noarch 0.2.5-1.fc35 fedora 9.9 k
rust-srpm-macros noarch 20-1.fc35 updates 9.4 k
setup noarch 2.13.9.1-2.fc35 fedora 143 k
sqlite-libs x86_64 3.36.0-3.fc35 fedora 632 k
systemd-libs x86_64 249.7-2.fc35 updates 616 k
tzdata noarch 2021e-1.fc35 updates 431 k
util-linux-core x86_64 2.37.2-1.fc35 fedora 434 k
xxhash-libs x86_64 0.8.1-1.fc35 updates 40 k
xz-libs x86_64 5.2.5-7.fc35 fedora 92 k
zip x86_64 3.0-31.fc35 fedora 257 k
zlib x86_64 1.2.11-30.fc35 fedora 90 k
zstd x86_64 1.5.1-1.fc35 updates 539 k
Installing Groups:
Buildsystem building group
Transaction Summary
================================================================================
Install 146 Packages
Total download size: 49 M
Installed size: 178 M
Downloading Packages:
(1/146): basesystem-11-12.fc35.noarch.rpm 55 kB/s | 7.0 kB 00:00
(2/146): alternatives-1.19-1.fc35.x86_64.rpm 260 kB/s | 35 kB 00:00
(3/146): audit-libs-3.0.6-1.fc35.x86_64.rpm 671 kB/s | 116 kB 00:00
(4/146): binutils-gold-2.37-10.fc35.x86_64.rpm 8.0 MB/s | 728 kB 00:00
(5/146): bash-5.1.8-2.fc35.x86_64.rpm 9.8 MB/s | 1.7 MB 00:00
(6/146): bzip2-1.0.8-9.fc35.x86_64.rpm 1.3 MB/s | 52 kB 00:00
(7/146): bzip2-libs-1.0.8-9.fc35.x86_64.rpm 1.6 MB/s | 40 kB 00:00
(8/146): binutils-2.37-10.fc35.x86_64.rpm 27 MB/s | 6.0 MB 00:00
(9/146): coreutils-8.32-31.fc35.x86_64.rpm 20 MB/s | 1.1 MB 00:00
(10/146): coreutils-common-8.32-31.fc35.x86_64. 36 MB/s | 2.0 MB 00:00
(11/146): cpio-2.13-11.fc35.x86_64.rpm 9.1 MB/s | 270 kB 00:00
(12/146): cracklib-2.9.6-27.fc35.x86_64.rpm 3.2 MB/s | 81 kB 00:00
(13/146): crypto-policies-20210819-1.gitd0fdcfb 1.8 MB/s | 58 kB 00:00
(14/146): debugedit-5.0-2.fc35.x86_64.rpm 2.9 MB/s | 76 kB 00:00
(15/146): cyrus-sasl-lib-2.1.27-13.fc35.x86_64. 24 MB/s | 774 kB 00:00
(16/146): diffutils-3.8-1.fc35.x86_64.rpm 15 MB/s | 400 kB 00:00
(17/146): ed-1.14.2-11.fc35.x86_64.rpm 1.6 MB/s | 73 kB 00:00
(18/146): efi-srpm-macros-5-4.fc35.noarch.rpm 797 kB/s | 22 kB 00:00
(19/146): dwz-0.14-2.fc35.x86_64.rpm 2.4 MB/s | 127 kB 00:00
(20/146): fedora-repos-35-1.noarch.rpm 505 kB/s | 11 kB 00:00
(21/146): fedora-gpg-keys-35-1.noarch.rpm 4.7 MB/s | 113 kB 00:00
(22/146): file-5.40-9.fc35.x86_64.rpm 2.2 MB/s | 51 kB 00:00
(23/146): file-libs-5.40-9.fc35.x86_64.rpm 20 MB/s | 619 kB 00:00
(24/146): fonts-srpm-macros-2.0.5-6.fc35.noarch 1.2 MB/s | 27 kB 00:00
(25/146): fpc-srpm-macros-1.3-4.fc35.noarch.rpm 358 kB/s | 7.6 kB 00:00
(26/146): findutils-4.8.0-4.fc35.x86_64.rpm 6.6 MB/s | 538 kB 00:00
(27/146): gawk-5.1.0-4.fc35.x86_64.rpm 30 MB/s | 996 kB 00:00
(28/146): ghc-srpm-macros-1.5.0-5.fc35.noarch.r 294 kB/s | 7.8 kB 00:00
(29/146): filesystem-3.14-7.fc35.x86_64.rpm 9.7 MB/s | 1.1 MB 00:00
(30/146): gnat-srpm-macros-4-14.fc35.noarch.rpm 356 kB/s | 8.2 kB 00:00
(31/146): go-srpm-macros-3.0.11-2.fc35.noarch.r 1.1 MB/s | 25 kB 00:00
(32/146): gmp-6.2.0-7.fc35.x86_64.rpm 12 MB/s | 314 kB 00:00
(33/146): gzip-1.10-5.fc35.x86_64.rpm 5.8 MB/s | 150 kB 00:00
(34/146): grep-3.6-4.fc35.x86_64.rpm 9.2 MB/s | 257 kB 00:00
(35/146): info-6.8-2.fc35.x86_64.rpm 8.2 MB/s | 222 kB 00:00
(36/146): kernel-srpm-macros-1.0-6.fc35.noarch. 378 kB/s | 8.0 kB 00:00
(37/146): keyutils-libs-1.6.1-3.fc35.x86_64.rpm 1.4 MB/s | 31 kB 00:00
(38/146): krb5-libs-1.19.2-2.fc35.x86_64.rpm 25 MB/s | 722 kB 00:00
(39/146): libacl-2.3.1-2.fc35.x86_64.rpm 1.0 MB/s | 24 kB 00:00
(40/146): libarchive-3.5.2-2.fc35.x86_64.rpm 8.0 MB/s | 388 kB 00:00
(41/146): libattr-2.5.1-3.fc35.x86_64.rpm 358 kB/s | 18 kB 00:00
(42/146): libblkid-2.37.2-1.fc35.x86_64.rpm 1.0 MB/s | 107 kB 00:00
(43/146): libcap-2.48-3.fc35.x86_64.rpm 385 kB/s | 66 kB 00:00
(44/146): libbrotli-1.0.9-6.fc35.x86_64.rpm 1.6 MB/s | 313 kB 00:00
(45/146): libcap-ng-0.8.2-6.fc35.x86_64.rpm 273 kB/s | 32 kB 00:00
(46/146): libcom_err-1.46.3-1.fc35.x86_64.rpm 560 kB/s | 26 kB 00:00
(47/146): libeconf-0.4.0-2.fc35.x86_64.rpm 355 kB/s | 27 kB 00:00
(48/146): libfdisk-2.37.2-1.fc35.x86_64.rpm 3.0 MB/s | 155 kB 00:00
(49/146): libdb-5.3.28-50.fc35.x86_64.rpm 8.0 MB/s | 746 kB 00:00
(50/146): libffi-3.1-29.fc35.x86_64.rpm 221 kB/s | 32 kB 00:00
(51/146): libidn2-2.3.2-3.fc35.x86_64.rpm 370 kB/s | 103 kB 00:00
(52/146): libgcrypt-1.9.4-1.fc35.x86_64.rpm 1.6 MB/s | 507 kB 00:00
(53/146): libmount-2.37.2-1.fc35.x86_64.rpm 730 kB/s | 135 kB 00:00
(54/146): libnghttp2-1.45.1-1.fc35.x86_64.rpm 955 kB/s | 70 kB 00:00
(55/146): libnsl2-1.3.0-4.fc35.x86_64.rpm 977 kB/s | 57 kB 00:00
(56/146): libpkgconf-1.8.0-1.fc35.x86_64.rpm 774 kB/s | 36 kB 00:00
(57/146): libpsl-0.21.1-4.fc35.x86_64.rpm 1.7 MB/s | 63 kB 00:00
(58/146): libpwquality-1.4.4-6.fc35.x86_64.rpm 369 kB/s | 104 kB 00:00
(59/146): libsigsegv-2.13-3.fc35.x86_64.rpm 76 kB/s | 26 kB 00:00
(60/146): libsmartcols-2.37.2-1.fc35.x86_64.rpm 183 kB/s | 64 kB 00:00
(61/146): libssh-0.9.6-1.fc35.x86_64.rpm 1.3 MB/s | 206 kB 00:00
(62/146): libssh-config-0.9.6-1.fc35.noarch.rpm 103 kB/s | 9.2 kB 00:00
(63/146): libtasn1-4.16.0-6.fc35.x86_64.rpm 586 kB/s | 74 kB 00:00
(64/146): libtirpc-1.3.2-1.fc35.x86_64.rpm 1.1 MB/s | 92 kB 00:00
(65/146): libutempter-1.2.1-5.fc35.x86_64.rpm 438 kB/s | 26 kB 00:00
(66/146): libunistring-0.9.10-14.fc35.x86_64.rp 4.0 MB/s | 495 kB 00:00
(67/146): libuuid-2.37.2-1.fc35.x86_64.rpm 451 kB/s | 28 kB 00:00
(68/146): libverto-0.3.2-2.fc35.x86_64.rpm 556 kB/s | 21 kB 00:00
(69/146): lua-srpm-macros-1-5.fc35.noarch.rpm 78 kB/s | 8.4 kB 00:00
(70/146): lua-libs-5.4.3-2.fc35.x86_64.rpm 1.4 MB/s | 215 kB 00:00
(71/146): libxml2-2.9.12-6.fc35.x86_64.rpm 4.0 MB/s | 741 kB 00:00
(72/146): lz4-libs-1.9.3-3.fc35.x86_64.rpm 1.0 MB/s | 66 kB 00:00
(73/146): mpfr-4.1.0-8.fc35.x86_64.rpm 4.9 MB/s | 326 kB 00:00
(74/146): ncurses-base-6.2-8.20210508.fc35.noar 813 kB/s | 61 kB 00:00
(75/146): ncurses-libs-6.2-8.20210508.fc35.x86_ 3.7 MB/s | 322 kB 00:00
(76/146): nim-srpm-macros-3-5.fc35.noarch.rpm 163 kB/s | 8.4 kB 00:00
(77/146): ocaml-srpm-macros-6-5.fc35.noarch.rpm 218 kB/s | 7.8 kB 00:00
(78/146): openblas-srpm-macros-2-10.fc35.noarch 347 kB/s | 7.4 kB 00:00
(79/146): openldap-2.4.59-3.fc35.x86_64.rpm 3.1 MB/s | 258 kB 00:00
(80/146): p11-kit-0.23.22-4.fc35.x86_64.rpm 2.8 MB/s | 357 kB 00:00
(81/146): p11-kit-trust-0.23.22-4.fc35.x86_64.r 1.3 MB/s | 136 kB 00:00
(82/146): pam-1.5.2-5.fc35.x86_64.rpm 7.8 MB/s | 547 kB 00:00
(83/146): patch-2.7.6-15.fc35.x86_64.rpm 4.0 MB/s | 127 kB 00:00
(84/146): pcre-8.45-1.fc35.x86_64.rpm 6.2 MB/s | 197 kB 00:00
(85/146): pcre2-10.37-4.fc35.x86_64.rpm 4.6 MB/s | 231 kB 00:00
(86/146): pcre2-syntax-10.37-4.fc35.noarch.rpm 2.2 MB/s | 142 kB 00:00
(87/146): perl-srpm-macros-1-42.fc35.noarch.rpm 199 kB/s | 8.3 kB 00:00
(88/146): pkgconf-1.8.0-1.fc35.x86_64.rpm 1.8 MB/s | 41 kB 00:00
(89/146): pkgconf-m4-1.8.0-1.fc35.noarch.rpm 634 kB/s | 14 kB 00:00
(90/146): pkgconf-pkg-config-1.8.0-1.fc35.x86_6 475 kB/s | 10 kB 00:00
(91/146): popt-1.18-6.fc35.x86_64.rpm 1.7 MB/s | 58 kB 00:00
(92/146): publicsuffix-list-dafsa-20210518-2.fc 2.1 MB/s | 58 kB 00:00
(93/146): qt5-srpm-macros-5.15.2-3.fc35.noarch. 333 kB/s | 8.2 kB 00:00
(94/146): openssl-libs-1.1.1l-2.fc35.x86_64.rpm 3.5 MB/s | 1.4 MB 00:00
(95/146): readline-8.1-3.fc35.x86_64.rpm 2.7 MB/s | 210 kB 00:00
(96/146): rpm-build-libs-4.17.0-1.fc35.x86_64.r 1.9 MB/s | 93 kB 00:00
(97/146): rpm-4.17.0-1.fc35.x86_64.rpm 4.6 MB/s | 538 kB 00:00
(98/146): rpm-libs-4.17.0-1.fc35.x86_64.rpm 2.5 MB/s | 313 kB 00:00
(99/146): rpmautospec-rpm-macros-0.2.5-1.fc35.n 81 kB/s | 9.9 kB 00:00
(100/146): rpm-build-4.17.0-1.fc35.x86_64.rpm 218 kB/s | 61 kB 00:00
(101/146): sed-4.8-8.fc35.x86_64.rpm 2.9 MB/s | 296 kB 00:00
(102/146): setup-2.13.9.1-2.fc35.noarch.rpm 950 kB/s | 143 kB 00:00
(103/146): unzip-6.0-53.fc35.x86_64.rpm 1.2 MB/s | 179 kB 00:00
(104/146): tar-1.34-2.fc35.x86_64.rpm 4.3 MB/s | 880 kB 00:00
(105/146): util-linux-core-2.37.2-1.fc35.x86_64 15 MB/s | 434 kB 00:00
(106/146): util-linux-2.37.2-1.fc35.x86_64.rpm 43 MB/s | 2.2 MB 00:00
(107/146): which-2.21-27.fc35.x86_64.rpm 1.1 MB/s | 41 kB 00:00
(108/146): xz-5.2.5-7.fc35.x86_64.rpm 8.9 MB/s | 214 kB 00:00
(109/146): xz-libs-5.2.5-7.fc35.x86_64.rpm 4.1 MB/s | 92 kB 00:00
(110/146): zip-3.0-31.fc35.x86_64.rpm 10 MB/s | 257 kB 00:00
(111/146): zlib-1.2.11-30.fc35.x86_64.rpm 4.0 MB/s | 90 kB 00:00
(112/146): sqlite-libs-3.36.0-3.fc35.x86_64.rpm 957 kB/s | 632 kB 00:00
(113/146): ca-certificates-2021.2.52-1.0.fc35.n 745 kB/s | 364 kB 00:00
(114/146): curl-7.79.1-1.fc35.x86_64.rpm 615 kB/s | 310 kB 00:00
(115/146): elfutils-debuginfod-client-0.186-1.f 155 kB/s | 40 kB 00:00
(116/146): elfutils-default-yama-scope-0.186-1. 78 kB/s | 19 kB 00:00
(117/146): elfutils-0.186-1.fc35.x86_64.rpm 670 kB/s | 520 kB 00:00
(118/146): elfutils-libelf-0.186-1.fc35.x86_64. 507 kB/s | 200 kB 00:00
(119/146): elfutils-libs-0.186-1.fc35.x86_64.rp 540 kB/s | 256 kB 00:00
(120/146): fedora-release-35-36.noarch.rpm 73 kB/s | 12 kB 00:00
(121/146): fedora-release-common-35-36.noarch.r 91 kB/s | 21 kB 00:00
(122/146): fedora-release-identity-basic-35-36. 75 kB/s | 12 kB 00:00
(123/146): gdbm-libs-1.22-1.fc35.x86_64.rpm 187 kB/s | 58 kB 00:00
(124/146): glibc-common-2.34-11.fc35.x86_64.rpm 834 kB/s | 398 kB 00:00
(125/146): glibc-2.34-11.fc35.x86_64.rpm 1.2 MB/s | 2.0 MB 00:01
(126/146): glibc-minimal-langpack-2.34-11.fc35. 324 kB/s | 127 kB 00:00
(127/146): glibc-gconv-extra-2.34-11.fc35.x86_6 1.1 MB/s | 1.6 MB 00:01
(128/146): gdb-minimal-11.1-5.fc35.x86_64.rpm 1.4 MB/s | 3.8 MB 00:02
(129/146): libcurl-7.79.1-1.fc35.x86_64.rpm 563 kB/s | 291 kB 00:00
(130/146): libgcc-11.2.1-7.fc35.x86_64.rpm 290 kB/s | 112 kB 00:00
(131/146): libgomp-11.2.1-7.fc35.x86_64.rpm 580 kB/s | 286 kB 00:00
(132/146): libselinux-3.3-1.fc35.x86_64.rpm 249 kB/s | 81 kB 00:00
(133/146): libgpg-error-1.43-1.fc35.x86_64.rpm 470 kB/s | 216 kB 00:00
(134/146): libsemanage-3.3-1.fc35.x86_64.rpm 294 kB/s | 116 kB 00:00
(135/146): libsepol-3.3-2.fc35.x86_64.rpm 563 kB/s | 301 kB 00:00
(136/146): libstdc++-11.2.1-7.fc35.x86_64.rpm 1.2 MB/s | 747 kB 00:00
(137/146): libxcrypt-4.4.27-1.fc35.x86_64.rpm 305 kB/s | 117 kB 00:00
(138/146): python-srpm-macros-3.10-10.fc35.noar 107 kB/s | 25 kB 00:00
(139/146): libzstd-1.5.1-1.fc35.x86_64.rpm 692 kB/s | 329 kB 00:00
(140/146): rust-srpm-macros-20-1.fc35.noarch.rp 58 kB/s | 9.4 kB 00:00
(141/146): redhat-rpm-config-199-1.fc35.noarch. 211 kB/s | 65 kB 00:00
(142/146): systemd-libs-249.7-2.fc35.x86_64.rpm 1.1 MB/s | 616 kB 00:00
(143/146): shadow-utils-4.9-8.fc35.x86_64.rpm 1.7 MB/s | 1.1 MB 00:00
(144/146): tzdata-2021e-1.fc35.noarch.rpm 689 kB/s | 431 kB 00:00
(145/146): xxhash-libs-0.8.1-1.fc35.x86_64.rpm 171 kB/s | 40 kB 00:00
(146/146): zstd-1.5.1-1.fc35.x86_64.rpm 691 kB/s | 539 kB 00:00
--------------------------------------------------------------------------------
Total 4.9 MB/s | 49 MB 00:10
fedora 1.6 MB/s | 1.6 kB 00:00
Importing GPG key 0x9867C58F:
Userid : "Fedora (35) <fedora-35-primary@fedoraproject.org>"
Fingerprint: 787E A6AE 1147 EEE5 6C40 B30C DB46 3971 9867 C58F
From : /usr/share/distribution-gpg-keys/fedora/RPM-GPG-KEY-fedora-35-primary
Key imported successfully
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Running scriptlet: filesystem-3.14-7.fc35.x86_64 1/1
Preparing : 1/1
Installing : libgcc-11.2.1-7.fc35.x86_64 1/146
Running scriptlet: libgcc-11.2.1-7.fc35.x86_64 1/146
Installing : crypto-policies-20210819-1.gitd0fdcfb.fc35.noarc 2/146
Running scriptlet: crypto-policies-20210819-1.gitd0fdcfb.fc35.noarc 2/146
Installing : fedora-release-identity-basic-35-36.noarch 3/146
Installing : tzdata-2021e-1.fc35.noarch 4/146
Installing : rust-srpm-macros-20-1.fc35.noarch 5/146
Installing : qt5-srpm-macros-5.15.2-3.fc35.noarch 6/146
Installing : publicsuffix-list-dafsa-20210518-2.fc35.noarch 7/146
Installing : pkgconf-m4-1.8.0-1.fc35.noarch 8/146
Installing : perl-srpm-macros-1-42.fc35.noarch 9/146
Installing : pcre2-syntax-10.37-4.fc35.noarch 10/146
Installing : openblas-srpm-macros-2-10.fc35.noarch 11/146
Installing : ocaml-srpm-macros-6-5.fc35.noarch 12/146
Installing : nim-srpm-macros-3-5.fc35.noarch 13/146
Installing : ncurses-base-6.2-8.20210508.fc35.noarch 14/146
Installing : libssh-config-0.9.6-1.fc35.noarch 15/146
Installing : kernel-srpm-macros-1.0-6.fc35.noarch 16/146
Installing : gnat-srpm-macros-4-14.fc35.noarch 17/146
Installing : ghc-srpm-macros-1.5.0-5.fc35.noarch 18/146
Installing : fpc-srpm-macros-1.3-4.fc35.noarch 19/146
Installing : fedora-gpg-keys-35-1.noarch 20/146
Installing : fedora-release-35-36.noarch 21/146
Installing : fedora-repos-35-1.noarch 22/146
Installing : fedora-release-common-35-36.noarch 23/146
Installing : setup-2.13.9.1-2.fc35.noarch 24/146
warning: /etc/hosts created as /etc/hosts.rpmnew
Running scriptlet: setup-2.13.9.1-2.fc35.noarch 24/146
Installing : filesystem-3.14-7.fc35.x86_64 25/146
Installing : basesystem-11-12.fc35.noarch 26/146
Installing : bash-5.1.8-2.fc35.x86_64 27/146
Running scriptlet: bash-5.1.8-2.fc35.x86_64 27/146
Installing : ncurses-libs-6.2-8.20210508.fc35.x86_64 28/146
Installing : glibc-common-2.34-11.fc35.x86_64 29/146
Installing : glibc-gconv-extra-2.34-11.fc35.x86_64 30/146
Running scriptlet: glibc-gconv-extra-2.34-11.fc35.x86_64 30/146
Installing : glibc-minimal-langpack-2.34-11.fc35.x86_64 31/146
Running scriptlet: glibc-2.34-11.fc35.x86_64 32/146
Installing : glibc-2.34-11.fc35.x86_64 32/146
Running scriptlet: glibc-2.34-11.fc35.x86_64 32/146
Installing : zlib-1.2.11-30.fc35.x86_64 33/146
Installing : bzip2-libs-1.0.8-9.fc35.x86_64 34/146
Installing : xz-libs-5.2.5-7.fc35.x86_64 35/146
Installing : elfutils-libelf-0.186-1.fc35.x86_64 36/146
Installing : libuuid-2.37.2-1.fc35.x86_64 37/146
Installing : libstdc++-11.2.1-7.fc35.x86_64 38/146
Installing : libzstd-1.5.1-1.fc35.x86_64 39/146
Installing : gmp-1:6.2.0-7.fc35.x86_64 40/146
Installing : libattr-2.5.1-3.fc35.x86_64 41/146
Installing : libacl-2.3.1-2.fc35.x86_64 42/146
Installing : libcap-2.48-3.fc35.x86_64 43/146
Installing : libcom_err-1.46.3-1.fc35.x86_64 44/146
Installing : popt-1.18-6.fc35.x86_64 45/146
Installing : libxcrypt-4.4.27-1.fc35.x86_64 46/146
Installing : readline-8.1-3.fc35.x86_64 47/146
Installing : mpfr-4.1.0-8.fc35.x86_64 48/146
Installing : dwz-0.14-2.fc35.x86_64 49/146
Installing : unzip-6.0-53.fc35.x86_64 50/146
Installing : file-libs-5.40-9.fc35.x86_64 51/146
Installing : file-5.40-9.fc35.x86_64 52/146
Installing : sqlite-libs-3.36.0-3.fc35.x86_64 53/146
Installing : alternatives-1.19-1.fc35.x86_64 54/146
Installing : libcap-ng-0.8.2-6.fc35.x86_64 55/146
Installing : audit-libs-3.0.6-1.fc35.x86_64 56/146
Installing : libsigsegv-2.13-3.fc35.x86_64 57/146
Installing : gawk-5.1.0-4.fc35.x86_64 58/146
Installing : libsmartcols-2.37.2-1.fc35.x86_64 59/146
Installing : libunistring-0.9.10-14.fc35.x86_64 60/146
Installing : libidn2-2.3.2-3.fc35.x86_64 61/146
Installing : lua-libs-5.4.3-2.fc35.x86_64 62/146
Installing : lz4-libs-1.9.3-3.fc35.x86_64 63/146
Installing : libsepol-3.3-2.fc35.x86_64 64/146
Installing : libpsl-0.21.1-4.fc35.x86_64 65/146
Installing : zip-3.0-31.fc35.x86_64 66/146
Installing : zstd-1.5.1-1.fc35.x86_64 67/146
Installing : libxml2-2.9.12-6.fc35.x86_64 68/146
Installing : bzip2-1.0.8-9.fc35.x86_64 69/146
Installing : cpio-2.13-11.fc35.x86_64 70/146
Installing : diffutils-3.8-1.fc35.x86_64 71/146
Installing : info-6.8-2.fc35.x86_64 72/146
Installing : ed-1.14.2-11.fc35.x86_64 73/146
Installing : keyutils-libs-1.6.1-3.fc35.x86_64 74/146
Installing : libbrotli-1.0.9-6.fc35.x86_64 75/146
Installing : libdb-5.3.28-50.fc35.x86_64 76/146
Installing : libeconf-0.4.0-2.fc35.x86_64 77/146
Installing : libffi-3.1-29.fc35.x86_64 78/146
Installing : p11-kit-0.23.22-4.fc35.x86_64 79/146
Installing : libnghttp2-1.45.1-1.fc35.x86_64 80/146
Installing : libpkgconf-1.8.0-1.fc35.x86_64 81/146
Installing : pkgconf-1.8.0-1.fc35.x86_64 82/146
Installing : pkgconf-pkg-config-1.8.0-1.fc35.x86_64 83/146
Installing : libtasn1-4.16.0-6.fc35.x86_64 84/146
Installing : p11-kit-trust-0.23.22-4.fc35.x86_64 85/146
Running scriptlet: p11-kit-trust-0.23.22-4.fc35.x86_64 85/146
Installing : libverto-0.3.2-2.fc35.x86_64 86/146
Installing : pcre-8.45-1.fc35.x86_64 87/146
Installing : grep-3.6-4.fc35.x86_64 88/146
Installing : xz-5.2.5-7.fc35.x86_64 89/146
Installing : pcre2-10.37-4.fc35.x86_64 90/146
Installing : libselinux-3.3-1.fc35.x86_64 91/146
Installing : sed-4.8-8.fc35.x86_64 92/146
Installing : findutils-1:4.8.0-4.fc35.x86_64 93/146
Installing : patch-2.7.6-15.fc35.x86_64 94/146
Installing : tar-2:1.34-2.fc35.x86_64 95/146
Installing : libsemanage-3.3-1.fc35.x86_64 96/146
Installing : shadow-utils-2:4.9-8.fc35.x86_64 97/146
Running scriptlet: libutempter-1.2.1-5.fc35.x86_64 98/146
Installing : libutempter-1.2.1-5.fc35.x86_64 98/146
Installing : gdbm-libs-1:1.22-1.fc35.x86_64 99/146
Installing : libgomp-11.2.1-7.fc35.x86_64 100/146
Installing : libgpg-error-1.43-1.fc35.x86_64 101/146
Installing : libgcrypt-1.9.4-1.fc35.x86_64 102/146
Installing : xxhash-libs-0.8.1-1.fc35.x86_64 103/146
Installing : elfutils-default-yama-scope-0.186-1.fc35.noarch 104/146
Running scriptlet: elfutils-default-yama-scope-0.186-1.fc35.noarch 104/146
Installing : coreutils-common-8.32-31.fc35.x86_64 105/146
Installing : openssl-libs-1:1.1.1l-2.fc35.x86_64 106/146
Installing : coreutils-8.32-31.fc35.x86_64 107/146
Running scriptlet: ca-certificates-2021.2.52-1.0.fc35.noarch 108/146
Installing : ca-certificates-2021.2.52-1.0.fc35.noarch 108/146
Running scriptlet: ca-certificates-2021.2.52-1.0.fc35.noarch 108/146
Installing : krb5-libs-1.19.2-2.fc35.x86_64 109/146
Installing : libblkid-2.37.2-1.fc35.x86_64 110/146
Running scriptlet: libblkid-2.37.2-1.fc35.x86_64 110/146
Installing : libmount-2.37.2-1.fc35.x86_64 111/146
Installing : libtirpc-1.3.2-1.fc35.x86_64 112/146
Installing : gzip-1.10-5.fc35.x86_64 113/146
Installing : systemd-libs-249.7-2.fc35.x86_64 114/146
Running scriptlet: systemd-libs-249.7-2.fc35.x86_64 114/146
Installing : util-linux-core-2.37.2-1.fc35.x86_64 115/146
Running scriptlet: util-linux-core-2.37.2-1.fc35.x86_64 115/146
Installing : cracklib-2.9.6-27.fc35.x86_64 116/146
Installing : libnsl2-1.3.0-4.fc35.x86_64 117/146
Installing : libpwquality-1.4.4-6.fc35.x86_64 118/146
Installing : pam-1.5.2-5.fc35.x86_64 119/146
Installing : libfdisk-2.37.2-1.fc35.x86_64 120/146
Installing : cyrus-sasl-lib-2.1.27-13.fc35.x86_64 121/146
Installing : openldap-2.4.59-3.fc35.x86_64 122/146
Installing : libssh-0.9.6-1.fc35.x86_64 123/146
Installing : libcurl-7.79.1-1.fc35.x86_64 124/146
Installing : elfutils-libs-0.186-1.fc35.x86_64 125/146
Installing : elfutils-debuginfod-client-0.186-1.fc35.x86_64 126/146
Installing : binutils-gold-2.37-10.fc35.x86_64 127/146
Installing : binutils-2.37-10.fc35.x86_64 128/146
Running scriptlet: binutils-2.37-10.fc35.x86_64 128/146
Installing : elfutils-0.186-1.fc35.x86_64 129/146
Installing : gdb-minimal-11.1-5.fc35.x86_64 130/146
Installing : debugedit-5.0-2.fc35.x86_64 131/146
Installing : curl-7.79.1-1.fc35.x86_64 132/146
Installing : libarchive-3.5.2-2.fc35.x86_64 133/146
Installing : rpm-libs-4.17.0-1.fc35.x86_64 134/146
Installing : rpm-4.17.0-1.fc35.x86_64 135/146
Installing : efi-srpm-macros-5-4.fc35.noarch 136/146
Installing : lua-srpm-macros-1-5.fc35.noarch 137/146
Installing : rpmautospec-rpm-macros-0.2.5-1.fc35.noarch 138/146
Installing : fonts-srpm-macros-1:2.0.5-6.fc35.noarch 139/146
Installing : go-srpm-macros-3.0.11-2.fc35.noarch 140/146
Installing : python-srpm-macros-3.10-10.fc35.noarch 141/146
Installing : redhat-rpm-config-199-1.fc35.noarch 142/146
Installing : rpm-build-libs-4.17.0-1.fc35.x86_64 143/146
Installing : rpm-build-4.17.0-1.fc35.x86_64 144/146
Installing : util-linux-2.37.2-1.fc35.x86_64 145/146
Running scriptlet: util-linux-2.37.2-1.fc35.x86_64 145/146
Installing : which-2.21-27.fc35.x86_64 146/146
Running scriptlet: filesystem-3.14-7.fc35.x86_64 146/146
Running scriptlet: ca-certificates-2021.2.52-1.0.fc35.noarch 146/146
Running scriptlet: pam-1.5.2-5.fc35.x86_64 146/146
Running scriptlet: rpm-4.17.0-1.fc35.x86_64 146/146
Running scriptlet: which-2.21-27.fc35.x86_64 146/146
Verifying : alternatives-1.19-1.fc35.x86_64 1/146
Verifying : audit-libs-3.0.6-1.fc35.x86_64 2/146
Verifying : basesystem-11-12.fc35.noarch 3/146
Verifying : bash-5.1.8-2.fc35.x86_64 4/146
Verifying : binutils-2.37-10.fc35.x86_64 5/146
Verifying : binutils-gold-2.37-10.fc35.x86_64 6/146
Verifying : bzip2-1.0.8-9.fc35.x86_64 7/146
Verifying : bzip2-libs-1.0.8-9.fc35.x86_64 8/146
Verifying : coreutils-8.32-31.fc35.x86_64 9/146
Verifying : coreutils-common-8.32-31.fc35.x86_64 10/146
Verifying : cpio-2.13-11.fc35.x86_64 11/146
Verifying : cracklib-2.9.6-27.fc35.x86_64 12/146
Verifying : crypto-policies-20210819-1.gitd0fdcfb.fc35.noarc 13/146
Verifying : cyrus-sasl-lib-2.1.27-13.fc35.x86_64 14/146
Verifying : debugedit-5.0-2.fc35.x86_64 15/146
Verifying : diffutils-3.8-1.fc35.x86_64 16/146
Verifying : dwz-0.14-2.fc35.x86_64 17/146
Verifying : ed-1.14.2-11.fc35.x86_64 18/146
Verifying : efi-srpm-macros-5-4.fc35.noarch 19/146
Verifying : fedora-gpg-keys-35-1.noarch 20/146
Verifying : fedora-repos-35-1.noarch 21/146
Verifying : file-5.40-9.fc35.x86_64 22/146
Verifying : file-libs-5.40-9.fc35.x86_64 23/146
Verifying : filesystem-3.14-7.fc35.x86_64 24/146
Verifying : findutils-1:4.8.0-4.fc35.x86_64 25/146
Verifying : fonts-srpm-macros-1:2.0.5-6.fc35.noarch 26/146
Verifying : fpc-srpm-macros-1.3-4.fc35.noarch 27/146
Verifying : gawk-5.1.0-4.fc35.x86_64 28/146
Verifying : ghc-srpm-macros-1.5.0-5.fc35.noarch 29/146
Verifying : gmp-1:6.2.0-7.fc35.x86_64 30/146
Verifying : gnat-srpm-macros-4-14.fc35.noarch 31/146
Verifying : go-srpm-macros-3.0.11-2.fc35.noarch 32/146
Verifying : grep-3.6-4.fc35.x86_64 33/146
Verifying : gzip-1.10-5.fc35.x86_64 34/146
Verifying : info-6.8-2.fc35.x86_64 35/146
Verifying : kernel-srpm-macros-1.0-6.fc35.noarch 36/146
Verifying : keyutils-libs-1.6.1-3.fc35.x86_64 37/146
Verifying : krb5-libs-1.19.2-2.fc35.x86_64 38/146
Verifying : libacl-2.3.1-2.fc35.x86_64 39/146
Verifying : libarchive-3.5.2-2.fc35.x86_64 40/146
Verifying : libattr-2.5.1-3.fc35.x86_64 41/146
Verifying : libblkid-2.37.2-1.fc35.x86_64 42/146
Verifying : libbrotli-1.0.9-6.fc35.x86_64 43/146
Verifying : libcap-2.48-3.fc35.x86_64 44/146
Verifying : libcap-ng-0.8.2-6.fc35.x86_64 45/146
Verifying : libcom_err-1.46.3-1.fc35.x86_64 46/146
Verifying : libdb-5.3.28-50.fc35.x86_64 47/146
Verifying : libeconf-0.4.0-2.fc35.x86_64 48/146
Verifying : libfdisk-2.37.2-1.fc35.x86_64 49/146
Verifying : libffi-3.1-29.fc35.x86_64 50/146
Verifying : libgcrypt-1.9.4-1.fc35.x86_64 51/146
Verifying : libidn2-2.3.2-3.fc35.x86_64 52/146
Verifying : libmount-2.37.2-1.fc35.x86_64 53/146
Verifying : libnghttp2-1.45.1-1.fc35.x86_64 54/146
Verifying : libnsl2-1.3.0-4.fc35.x86_64 55/146
Verifying : libpkgconf-1.8.0-1.fc35.x86_64 56/146
Verifying : libpsl-0.21.1-4.fc35.x86_64 57/146
Verifying : libpwquality-1.4.4-6.fc35.x86_64 58/146
Verifying : libsigsegv-2.13-3.fc35.x86_64 59/146
Verifying : libsmartcols-2.37.2-1.fc35.x86_64 60/146
Verifying : libssh-0.9.6-1.fc35.x86_64 61/146
Verifying : libssh-config-0.9.6-1.fc35.noarch 62/146
Verifying : libtasn1-4.16.0-6.fc35.x86_64 63/146
Verifying : libtirpc-1.3.2-1.fc35.x86_64 64/146
Verifying : libunistring-0.9.10-14.fc35.x86_64 65/146
Verifying : libutempter-1.2.1-5.fc35.x86_64 66/146
Verifying : libuuid-2.37.2-1.fc35.x86_64 67/146
Verifying : libverto-0.3.2-2.fc35.x86_64 68/146
Verifying : libxml2-2.9.12-6.fc35.x86_64 69/146
Verifying : lua-libs-5.4.3-2.fc35.x86_64 70/146
Verifying : lua-srpm-macros-1-5.fc35.noarch 71/146
Verifying : lz4-libs-1.9.3-3.fc35.x86_64 72/146
Verifying : mpfr-4.1.0-8.fc35.x86_64 73/146
Verifying : ncurses-base-6.2-8.20210508.fc35.noarch 74/146
Verifying : ncurses-libs-6.2-8.20210508.fc35.x86_64 75/146
Verifying : nim-srpm-macros-3-5.fc35.noarch 76/146
Verifying : ocaml-srpm-macros-6-5.fc35.noarch 77/146
Verifying : openblas-srpm-macros-2-10.fc35.noarch 78/146
Verifying : openldap-2.4.59-3.fc35.x86_64 79/146
Verifying : openssl-libs-1:1.1.1l-2.fc35.x86_64 80/146
Verifying : p11-kit-0.23.22-4.fc35.x86_64 81/146
Verifying : p11-kit-trust-0.23.22-4.fc35.x86_64 82/146
Verifying : pam-1.5.2-5.fc35.x86_64 83/146
Verifying : patch-2.7.6-15.fc35.x86_64 84/146
Verifying : pcre-8.45-1.fc35.x86_64 85/146
Verifying : pcre2-10.37-4.fc35.x86_64 86/146
Verifying : pcre2-syntax-10.37-4.fc35.noarch 87/146
Verifying : perl-srpm-macros-1-42.fc35.noarch 88/146
Verifying : pkgconf-1.8.0-1.fc35.x86_64 89/146
Verifying : pkgconf-m4-1.8.0-1.fc35.noarch 90/146
Verifying : pkgconf-pkg-config-1.8.0-1.fc35.x86_64 91/146
Verifying : popt-1.18-6.fc35.x86_64 92/146
Verifying : publicsuffix-list-dafsa-20210518-2.fc35.noarch 93/146
Verifying : qt5-srpm-macros-5.15.2-3.fc35.noarch 94/146
Verifying : readline-8.1-3.fc35.x86_64 95/146
Verifying : rpm-4.17.0-1.fc35.x86_64 96/146
Verifying : rpm-build-4.17.0-1.fc35.x86_64 97/146
Verifying : rpm-build-libs-4.17.0-1.fc35.x86_64 98/146
Verifying : rpm-libs-4.17.0-1.fc35.x86_64 99/146
Verifying : rpmautospec-rpm-macros-0.2.5-1.fc35.noarch 100/146
Verifying : sed-4.8-8.fc35.x86_64 101/146
Verifying : setup-2.13.9.1-2.fc35.noarch 102/146
Verifying : sqlite-libs-3.36.0-3.fc35.x86_64 103/146
Verifying : tar-2:1.34-2.fc35.x86_64 104/146
Verifying : unzip-6.0-53.fc35.x86_64 105/146
Verifying : util-linux-2.37.2-1.fc35.x86_64 106/146
Verifying : util-linux-core-2.37.2-1.fc35.x86_64 107/146
Verifying : which-2.21-27.fc35.x86_64 108/146
Verifying : xz-5.2.5-7.fc35.x86_64 109/146
Verifying : xz-libs-5.2.5-7.fc35.x86_64 110/146
Verifying : zip-3.0-31.fc35.x86_64 111/146
Verifying : zlib-1.2.11-30.fc35.x86_64 112/146
Verifying : ca-certificates-2021.2.52-1.0.fc35.noarch 113/146
Verifying : curl-7.79.1-1.fc35.x86_64 114/146
Verifying : elfutils-0.186-1.fc35.x86_64 115/146
Verifying : elfutils-debuginfod-client-0.186-1.fc35.x86_64 116/146
Verifying : elfutils-default-yama-scope-0.186-1.fc35.noarch 117/146
Verifying : elfutils-libelf-0.186-1.fc35.x86_64 118/146
Verifying : elfutils-libs-0.186-1.fc35.x86_64 119/146
Verifying : fedora-release-35-36.noarch 120/146
Verifying : fedora-release-common-35-36.noarch 121/146
Verifying : fedora-release-identity-basic-35-36.noarch 122/146
Verifying : gdb-minimal-11.1-5.fc35.x86_64 123/146
Verifying : gdbm-libs-1:1.22-1.fc35.x86_64 124/146
Verifying : glibc-2.34-11.fc35.x86_64 125/146
Verifying : glibc-common-2.34-11.fc35.x86_64 126/146
Verifying : glibc-gconv-extra-2.34-11.fc35.x86_64 127/146
Verifying : glibc-minimal-langpack-2.34-11.fc35.x86_64 128/146
Verifying : libcurl-7.79.1-1.fc35.x86_64 129/146
Verifying : libgcc-11.2.1-7.fc35.x86_64 130/146
Verifying : libgomp-11.2.1-7.fc35.x86_64 131/146
Verifying : libgpg-error-1.43-1.fc35.x86_64 132/146
Verifying : libselinux-3.3-1.fc35.x86_64 133/146
Verifying : libsemanage-3.3-1.fc35.x86_64 134/146
Verifying : libsepol-3.3-2.fc35.x86_64 135/146
Verifying : libstdc++-11.2.1-7.fc35.x86_64 136/146
Verifying : libxcrypt-4.4.27-1.fc35.x86_64 137/146
Verifying : libzstd-1.5.1-1.fc35.x86_64 138/146
Verifying : python-srpm-macros-3.10-10.fc35.noarch 139/146
Verifying : redhat-rpm-config-199-1.fc35.noarch 140/146
Verifying : rust-srpm-macros-20-1.fc35.noarch 141/146
Verifying : shadow-utils-2:4.9-8.fc35.x86_64 142/146
Verifying : systemd-libs-249.7-2.fc35.x86_64 143/146
Verifying : tzdata-2021e-1.fc35.noarch 144/146
Verifying : xxhash-libs-0.8.1-1.fc35.x86_64 145/146
Verifying : zstd-1.5.1-1.fc35.x86_64 146/146
Installed:
alternatives-1.19-1.fc35.x86_64
audit-libs-3.0.6-1.fc35.x86_64
basesystem-11-12.fc35.noarch
bash-5.1.8-2.fc35.x86_64
binutils-2.37-10.fc35.x86_64
binutils-gold-2.37-10.fc35.x86_64
bzip2-1.0.8-9.fc35.x86_64
bzip2-libs-1.0.8-9.fc35.x86_64
ca-certificates-2021.2.52-1.0.fc35.noarch
coreutils-8.32-31.fc35.x86_64
coreutils-common-8.32-31.fc35.x86_64
cpio-2.13-11.fc35.x86_64
cracklib-2.9.6-27.fc35.x86_64
crypto-policies-20210819-1.gitd0fdcfb.fc35.noarch
curl-7.79.1-1.fc35.x86_64
cyrus-sasl-lib-2.1.27-13.fc35.x86_64
debugedit-5.0-2.fc35.x86_64
diffutils-3.8-1.fc35.x86_64
dwz-0.14-2.fc35.x86_64
ed-1.14.2-11.fc35.x86_64
efi-srpm-macros-5-4.fc35.noarch
elfutils-0.186-1.fc35.x86_64
elfutils-debuginfod-client-0.186-1.fc35.x86_64
elfutils-default-yama-scope-0.186-1.fc35.noarch
elfutils-libelf-0.186-1.fc35.x86_64
elfutils-libs-0.186-1.fc35.x86_64
fedora-gpg-keys-35-1.noarch
fedora-release-35-36.noarch
fedora-release-common-35-36.noarch
fedora-release-identity-basic-35-36.noarch
fedora-repos-35-1.noarch
file-5.40-9.fc35.x86_64
file-libs-5.40-9.fc35.x86_64
filesystem-3.14-7.fc35.x86_64
findutils-1:4.8.0-4.fc35.x86_64
fonts-srpm-macros-1:2.0.5-6.fc35.noarch
fpc-srpm-macros-1.3-4.fc35.noarch
gawk-5.1.0-4.fc35.x86_64
gdb-minimal-11.1-5.fc35.x86_64
gdbm-libs-1:1.22-1.fc35.x86_64
ghc-srpm-macros-1.5.0-5.fc35.noarch
glibc-2.34-11.fc35.x86_64
glibc-common-2.34-11.fc35.x86_64
glibc-gconv-extra-2.34-11.fc35.x86_64
glibc-minimal-langpack-2.34-11.fc35.x86_64
gmp-1:6.2.0-7.fc35.x86_64
gnat-srpm-macros-4-14.fc35.noarch
go-srpm-macros-3.0.11-2.fc35.noarch
grep-3.6-4.fc35.x86_64
gzip-1.10-5.fc35.x86_64
info-6.8-2.fc35.x86_64
kernel-srpm-macros-1.0-6.fc35.noarch
keyutils-libs-1.6.1-3.fc35.x86_64
krb5-libs-1.19.2-2.fc35.x86_64
libacl-2.3.1-2.fc35.x86_64
libarchive-3.5.2-2.fc35.x86_64
libattr-2.5.1-3.fc35.x86_64
libblkid-2.37.2-1.fc35.x86_64
libbrotli-1.0.9-6.fc35.x86_64
libcap-2.48-3.fc35.x86_64
libcap-ng-0.8.2-6.fc35.x86_64
libcom_err-1.46.3-1.fc35.x86_64
libcurl-7.79.1-1.fc35.x86_64
libdb-5.3.28-50.fc35.x86_64
libeconf-0.4.0-2.fc35.x86_64
libfdisk-2.37.2-1.fc35.x86_64
libffi-3.1-29.fc35.x86_64
libgcc-11.2.1-7.fc35.x86_64
libgcrypt-1.9.4-1.fc35.x86_64
libgomp-11.2.1-7.fc35.x86_64
libgpg-error-1.43-1.fc35.x86_64
libidn2-2.3.2-3.fc35.x86_64
libmount-2.37.2-1.fc35.x86_64
libnghttp2-1.45.1-1.fc35.x86_64
libnsl2-1.3.0-4.fc35.x86_64
libpkgconf-1.8.0-1.fc35.x86_64
libpsl-0.21.1-4.fc35.x86_64
libpwquality-1.4.4-6.fc35.x86_64
libselinux-3.3-1.fc35.x86_64
libsemanage-3.3-1.fc35.x86_64
libsepol-3.3-2.fc35.x86_64
libsigsegv-2.13-3.fc35.x86_64
libsmartcols-2.37.2-1.fc35.x86_64
libssh-0.9.6-1.fc35.x86_64
libssh-config-0.9.6-1.fc35.noarch
libstdc++-11.2.1-7.fc35.x86_64
libtasn1-4.16.0-6.fc35.x86_64
libtirpc-1.3.2-1.fc35.x86_64
libunistring-0.9.10-14.fc35.x86_64
libutempter-1.2.1-5.fc35.x86_64
libuuid-2.37.2-1.fc35.x86_64
libverto-0.3.2-2.fc35.x86_64
libxcrypt-4.4.27-1.fc35.x86_64
libxml2-2.9.12-6.fc35.x86_64
libzstd-1.5.1-1.fc35.x86_64
lua-libs-5.4.3-2.fc35.x86_64
lua-srpm-macros-1-5.fc35.noarch
lz4-libs-1.9.3-3.fc35.x86_64
mpfr-4.1.0-8.fc35.x86_64
ncurses-base-6.2-8.20210508.fc35.noarch
ncurses-libs-6.2-8.20210508.fc35.x86_64
nim-srpm-macros-3-5.fc35.noarch
ocaml-srpm-macros-6-5.fc35.noarch
openblas-srpm-macros-2-10.fc35.noarch
openldap-2.4.59-3.fc35.x86_64
openssl-libs-1:1.1.1l-2.fc35.x86_64
p11-kit-0.23.22-4.fc35.x86_64
p11-kit-trust-0.23.22-4.fc35.x86_64
pam-1.5.2-5.fc35.x86_64
patch-2.7.6-15.fc35.x86_64
pcre-8.45-1.fc35.x86_64
pcre2-10.37-4.fc35.x86_64
pcre2-syntax-10.37-4.fc35.noarch
perl-srpm-macros-1-42.fc35.noarch
pkgconf-1.8.0-1.fc35.x86_64
pkgconf-m4-1.8.0-1.fc35.noarch
pkgconf-pkg-config-1.8.0-1.fc35.x86_64
popt-1.18-6.fc35.x86_64
publicsuffix-list-dafsa-20210518-2.fc35.noarch
python-srpm-macros-3.10-10.fc35.noarch
qt5-srpm-macros-5.15.2-3.fc35.noarch
readline-8.1-3.fc35.x86_64
redhat-rpm-config-199-1.fc35.noarch
rpm-4.17.0-1.fc35.x86_64
rpm-build-4.17.0-1.fc35.x86_64
rpm-build-libs-4.17.0-1.fc35.x86_64
rpm-libs-4.17.0-1.fc35.x86_64
rpmautospec-rpm-macros-0.2.5-1.fc35.noarch
rust-srpm-macros-20-1.fc35.noarch
sed-4.8-8.fc35.x86_64
setup-2.13.9.1-2.fc35.noarch
shadow-utils-2:4.9-8.fc35.x86_64
sqlite-libs-3.36.0-3.fc35.x86_64
systemd-libs-249.7-2.fc35.x86_64
tar-2:1.34-2.fc35.x86_64
tzdata-2021e-1.fc35.noarch
unzip-6.0-53.fc35.x86_64
util-linux-2.37.2-1.fc35.x86_64
util-linux-core-2.37.2-1.fc35.x86_64
which-2.21-27.fc35.x86_64
xxhash-libs-0.8.1-1.fc35.x86_64
xz-5.2.5-7.fc35.x86_64
xz-libs-5.2.5-7.fc35.x86_64
zip-3.0-31.fc35.x86_64
zlib-1.2.11-30.fc35.x86_64
zstd-1.5.1-1.fc35.x86_64
Complete!
Finish: dnf install
Start: creating root cache
Finish: creating root cache
Finish: chroot init
INFO: Installed packages:
INFO: libacl-2.3.1-2.fc35.x86_64
coreutils-8.32-31.fc35.x86_64
libxcrypt-4.4.27-1.fc35.x86_64
libcap-2.48-3.fc35.x86_64
tar-1.34-2.fc35.x86_64
coreutils-common-8.32-31.fc35.x86_64
gpg-pubkey-9867c58f-601c49ca
bzip2-1.0.8-9.fc35.x86_64
p11-kit-0.23.22-4.fc35.x86_64
libidn2-2.3.2-3.fc35.x86_64
rpm-libs-4.17.0-1.fc35.x86_64
pkgconf-1.8.0-1.fc35.x86_64
ncurses-libs-6.2-8.20210508.fc35.x86_64
libpwquality-1.4.4-6.fc35.x86_64
findutils-4.8.0-4.fc35.x86_64
libnsl2-1.3.0-4.fc35.x86_64
alternatives-1.19-1.fc35.x86_64
curl-7.79.1-1.fc35.x86_64
libpsl-0.21.1-4.fc35.x86_64
tzdata-2021e-1.fc35.noarch
fedora-release-identity-basic-35-36.noarch
gawk-5.1.0-4.fc35.x86_64
publicsuffix-list-dafsa-20210518-2.fc35.noarch
libuuid-2.37.2-1.fc35.x86_64
ncurses-base-6.2-8.20210508.fc35.noarch
lua-libs-5.4.3-2.fc35.x86_64
fedora-gpg-keys-35-1.noarch
go-srpm-macros-3.0.11-2.fc35.noarch
cyrus-sasl-lib-2.1.27-13.fc35.x86_64
redhat-rpm-config-199-1.fc35.noarch
libunistring-0.9.10-14.fc35.x86_64
zip-3.0-31.fc35.x86_64
libssh-config-0.9.6-1.fc35.noarch
file-5.40-9.fc35.x86_64
fedora-release-common-35-36.noarch
gdb-minimal-11.1-5.fc35.x86_64
glibc-gconv-extra-2.34-11.fc35.x86_64
audit-libs-3.0.6-1.fc35.x86_64
rpmautospec-rpm-macros-0.2.5-1.fc35.noarch
libzstd-1.5.1-1.fc35.x86_64
xz-libs-5.2.5-7.fc35.x86_64
libpkgconf-1.8.0-1.fc35.x86_64
pcre-8.45-1.fc35.x86_64
rust-srpm-macros-20-1.fc35.noarch
ocaml-srpm-macros-6-5.fc35.noarch
libxml2-2.9.12-6.fc35.x86_64
popt-1.18-6.fc35.x86_64
gdbm-libs-1.22-1.fc35.x86_64
gnat-srpm-macros-4-14.fc35.noarch
fpc-srpm-macros-1.3-4.fc35.noarch
sqlite-libs-3.36.0-3.fc35.x86_64
setup-2.13.9.1-2.fc35.noarch
lua-srpm-macros-1-5.fc35.noarch
fedora-repos-35-1.noarch
binutils-2.37-10.fc35.x86_64
libtirpc-1.3.2-1.fc35.x86_64
bash-5.1.8-2.fc35.x86_64
cpio-2.13-11.fc35.x86_64
libbrotli-1.0.9-6.fc35.x86_64
efi-srpm-macros-5-4.fc35.noarch
lz4-libs-1.9.3-3.fc35.x86_64
zlib-1.2.11-30.fc35.x86_64
elfutils-libs-0.186-1.fc35.x86_64
libcom_err-1.46.3-1.fc35.x86_64
libsemanage-3.3-1.fc35.x86_64
libstdc++-11.2.1-7.fc35.x86_64
libcap-ng-0.8.2-6.fc35.x86_64
libssh-0.9.6-1.fc35.x86_64
diffutils-3.8-1.fc35.x86_64
libutempter-1.2.1-5.fc35.x86_64
rpm-build-libs-4.17.0-1.fc35.x86_64
gzip-1.10-5.fc35.x86_64
util-linux-core-2.37.2-1.fc35.x86_64
libblkid-2.37.2-1.fc35.x86_64
libdb-5.3.28-50.fc35.x86_64
elfutils-0.186-1.fc35.x86_64
debugedit-5.0-2.fc35.x86_64
glibc-common-2.34-11.fc35.x86_64
glibc-2.34-11.fc35.x86_64
filesystem-3.14-7.fc35.x86_64
keyutils-libs-1.6.1-3.fc35.x86_64
libgcc-11.2.1-7.fc35.x86_64
libgpg-error-1.43-1.fc35.x86_64
openssl-libs-1.1.1l-2.fc35.x86_64
elfutils-libelf-0.186-1.fc35.x86_64
krb5-libs-1.19.2-2.fc35.x86_64
binutils-gold-2.37-10.fc35.x86_64
ca-certificates-2021.2.52-1.0.fc35.noarch
fonts-srpm-macros-2.0.5-6.fc35.noarch
libffi-3.1-29.fc35.x86_64
libfdisk-2.37.2-1.fc35.x86_64
qt5-srpm-macros-5.15.2-3.fc35.noarch
glibc-minimal-langpack-2.34-11.fc35.x86_64
libarchive-3.5.2-2.fc35.x86_64
libsepol-3.3-2.fc35.x86_64
openblas-srpm-macros-2-10.fc35.noarch
libcurl-7.79.1-1.fc35.x86_64
elfutils-debuginfod-client-0.186-1.fc35.x86_64
libtasn1-4.16.0-6.fc35.x86_64
libgomp-11.2.1-7.fc35.x86_64
patch-2.7.6-15.fc35.x86_64
mpfr-4.1.0-8.fc35.x86_64
sed-4.8-8.fc35.x86_64
info-6.8-2.fc35.x86_64
pcre2-10.37-4.fc35.x86_64
gmp-6.2.0-7.fc35.x86_64
readline-8.1-3.fc35.x86_64
pam-1.5.2-5.fc35.x86_64
shadow-utils-4.9-8.fc35.x86_64
libgcrypt-1.9.4-1.fc35.x86_64
libselinux-3.3-1.fc35.x86_64
libverto-0.3.2-2.fc35.x86_64
nim-srpm-macros-3-5.fc35.noarch
util-linux-2.37.2-1.fc35.x86_64
pkgconf-m4-1.8.0-1.fc35.noarch
file-libs-5.40-9.fc35.x86_64
libmount-2.37.2-1.fc35.x86_64
p11-kit-trust-0.23.22-4.fc35.x86_64
bzip2-libs-1.0.8-9.fc35.x86_64
unzip-6.0-53.fc35.x86_64
pkgconf-pkg-config-1.8.0-1.fc35.x86_64
fedora-release-35-36.noarch
dwz-0.14-2.fc35.x86_64
grep-3.6-4.fc35.x86_64
kernel-srpm-macros-1.0-6.fc35.noarch
basesystem-11-12.fc35.noarch
rpm-4.17.0-1.fc35.x86_64
libeconf-0.4.0-2.fc35.x86_64
python-srpm-macros-3.10-10.fc35.noarch
ghc-srpm-macros-1.5.0-5.fc35.noarch
pcre2-syntax-10.37-4.fc35.noarch
rpm-build-4.17.0-1.fc35.x86_64
libsmartcols-2.37.2-1.fc35.x86_64
openldap-2.4.59-3.fc35.x86_64
perl-srpm-macros-1-42.fc35.noarch
systemd-libs-249.7-2.fc35.x86_64
crypto-policies-20210819-1.gitd0fdcfb.fc35.noarch
ed-1.14.2-11.fc35.x86_64
elfutils-default-yama-scope-0.186-1.fc35.noarch
which-2.21-27.fc35.x86_64
xxhash-libs-0.8.1-1.fc35.x86_64
zstd-1.5.1-1.fc35.x86_64
libnghttp2-1.45.1-1.fc35.x86_64
libattr-2.5.1-3.fc35.x86_64
xz-5.2.5-7.fc35.x86_64
libsigsegv-2.13-3.fc35.x86_64
cracklib-2.9.6-27.fc35.x86_64
Start: buildsrpm
Start: rpmbuild -bs
Building target platforms: x86_64
Building for target x86_64
setting SOURCE_DATE_EPOCH=1640563200
Wrote: /builddir/build/SRPMS/python-yq-2.13.0-1.fc35.src.rpm
Finish: rpmbuild -bs
INFO: chroot_scan: 3 files copied to /var/lib/copr-rpmbuild/results/chroot_scan
INFO: /var/lib/mock/fedora-35-x86_64-1640568955.315429/root/var/log/dnf.rpm.log
/var/lib/mock/fedora-35-x86_64-1640568955.315429/root/var/log/dnf.librepo.log
/var/lib/mock/fedora-35-x86_64-1640568955.315429/root/var/log/dnf.log
Finish: buildsrpm
INFO: Done(/var/lib/copr-rpmbuild/workspace/workdir-pqprk9v4/python-yq/python-yq.spec) Config(child) 2 minutes 11 seconds
INFO: Results and/or logs in: /var/lib/copr-rpmbuild/results
INFO: Cleaning up build root ('cleanup_on_success=True')
Start: clean chroot
INFO: unmounting tmpfs.
Finish: clean chroot
Finish: run
Running (timeout=18000): unbuffer mock --rebuild /var/lib/copr-rpmbuild/results/python-yq-2.13.0-1.fc35.src.rpm --resultdir /var/lib/copr-rpmbuild/results --uniqueext 1640568955.315429 -r /var/lib/copr-rpmbuild/results/configs/child.cfg
INFO: mock.py version 2.15 starting (python version = 3.9.7, NVR = mock-2.15-1.fc34)...
Start(bootstrap): init plugins
INFO: tmpfs initialized
INFO: selinux enabled
INFO: chroot_scan: initialized
INFO: compress_logs: initialized
Finish(bootstrap): init plugins
Start: init plugins
INFO: tmpfs initialized
INFO: selinux enabled
INFO: chroot_scan: initialized
INFO: compress_logs: initialized
Finish: init plugins
INFO: Signal handler active
Start: run
INFO: Start(/var/lib/copr-rpmbuild/results/python-yq-2.13.0-1.fc35.src.rpm) Config(fedora-35-x86_64)
Start: clean chroot
Finish: clean chroot
Start(bootstrap): chroot init
INFO: mounting tmpfs at /var/lib/mock/fedora-35-x86_64-bootstrap-1640568955.315429/root.
INFO: reusing tmpfs at /var/lib/mock/fedora-35-x86_64-bootstrap-1640568955.315429/root.
INFO: calling preinit hooks
INFO: enabled root cache
INFO: enabled package manager cache
Start(bootstrap): cleaning package manager metadata
Finish(bootstrap): cleaning package manager metadata
INFO: enabled HW Info plugin
Mock Version: 2.15
INFO: Mock Version: 2.15
Finish(bootstrap): chroot init
Start: chroot init
INFO: mounting tmpfs at /var/lib/mock/fedora-35-x86_64-1640568955.315429/root.
INFO: calling preinit hooks
INFO: enabled root cache
Start: unpacking root cache
Finish: unpacking root cache
INFO: enabled package manager cache
Start: cleaning package manager metadata
Finish: cleaning package manager metadata
INFO: enabled HW Info plugin
Mock Version: 2.15
INFO: Mock Version: 2.15
Start: dnf update
No matches found for the following disable plugin patterns: local, spacewalk, versionlock
Copr repository 64 kB/s | 3.3 kB 00:00
fedora 388 kB/s | 11 kB 00:00
updates 554 kB/s | 11 kB 00:00
updates 1.2 MB/s | 436 kB 00:00
Dependencies resolved.
Nothing to do.
Complete!
Finish: dnf update
Finish: chroot init
Start: build phase for python-yq-2.13.0-1.fc35.src.rpm
Start: build setup for python-yq-2.13.0-1.fc35.src.rpm
Building target platforms: x86_64
Building for target x86_64
setting SOURCE_DATE_EPOCH=1640563200
Wrote: /builddir/build/SRPMS/python-yq-2.13.0-1.fc35.src.rpm
No matches found for the following disable plugin patterns: local, spacewalk, versionlock
Copr repository 8.0 kB/s | 3.3 kB 00:00
fedora 616 kB/s | 11 kB 00:00
updates 543 kB/s | 11 kB 00:00
updates 664 kB/s | 436 kB 00:00
Dependencies resolved.
================================================================================
Package Arch Version Repository Size
================================================================================
Installing:
python3-argcomplete noarch 1.12.3-3.fc35 fedora 60 k
python3-coverage x86_64 5.6-0.4b1.fc35 updates 284 k
python3-devel x86_64 3.10.1-1.fc35 updates 206 k
python3-flake8 noarch 3.9.2-1.fc35 fedora 123 k
python3-pyyaml x86_64 5.4.1-4.fc35 fedora 191 k
python3-setuptools noarch 57.4.0-1.fc35 fedora 928 k
python3-toml noarch 0.10.2-5.fc35 fedora 39 k
python3-wheel noarch 1:0.36.2-5.fc35 fedora 71 k
python3-xmltodict noarch 0.12.0-13.fc35 fedora 22 k
Installing dependencies:
expat x86_64 2.4.1-2.fc35 fedora 110 k
libyaml x86_64 0.2.5-6.fc35 fedora 60 k
mpdecimal x86_64 2.5.1-2.fc35 fedora 99 k
pyproject-rpm-macros noarch 0-51.fc35 updates 37 k
python-pip-wheel noarch 21.2.3-4.fc35 updates 1.1 M
python-rpm-macros noarch 3.10-10.fc35 updates 18 k
python-setuptools-wheel noarch 57.4.0-1.fc35 fedora 505 k
python3 x86_64 3.10.1-1.fc35 updates 25 k
python3-libs x86_64 3.10.1-1.fc35 updates 7.5 M
python3-mccabe noarch 0.6.1-20.fc35 fedora 20 k
python3-packaging noarch 21.0-2.fc35 fedora 72 k
python3-pycodestyle noarch 2.7.0-2.fc35 fedora 88 k
python3-pyflakes noarch 2.3.1-2.fc35 fedora 73 k
python3-pyparsing noarch 2.4.7-9.fc35 fedora 151 k
python3-rpm-generators noarch 12-8.fc35 fedora 31 k
python3-rpm-macros noarch 3.10-10.fc35 updates 15 k
Transaction Summary
================================================================================
Install 25 Packages
Total download size: 12 M
Installed size: 44 M
Downloading Packages:
(1/25): libyaml-0.2.5-6.fc35.x86_64.rpm 984 kB/s | 60 kB 00:00
(2/25): mpdecimal-2.5.1-2.fc35.x86_64.rpm 1.3 MB/s | 99 kB 00:00
(3/25): expat-2.4.1-2.fc35.x86_64.rpm 1.5 MB/s | 110 kB 00:00
(4/25): python3-argcomplete-1.12.3-3.fc35.noarc 3.1 MB/s | 60 kB 00:00
(5/25): python3-mccabe-0.6.1-20.fc35.noarch.rpm 1.2 MB/s | 20 kB 00:00
(6/25): python-setuptools-wheel-57.4.0-1.fc35.n 8.1 MB/s | 505 kB 00:00
(7/25): python3-packaging-21.0-2.fc35.noarch.rp 3.5 MB/s | 72 kB 00:00
(8/25): python3-pycodestyle-2.7.0-2.fc35.noarch 5.5 MB/s | 88 kB 00:00
(9/25): python3-pyflakes-2.3.1-2.fc35.noarch.rp 3.5 MB/s | 73 kB 00:00
(10/25): python3-pyparsing-2.4.7-9.fc35.noarch. 9.0 MB/s | 151 kB 00:00
(11/25): python3-rpm-generators-12-8.fc35.noarc 2.0 MB/s | 31 kB 00:00
(12/25): python3-pyyaml-5.4.1-4.fc35.x86_64.rpm 5.5 MB/s | 191 kB 00:00
(13/25): python3-toml-0.10.2-5.fc35.noarch.rpm 2.5 MB/s | 39 kB 00:00
(14/25): python3-wheel-0.36.2-5.fc35.noarch.rpm 4.5 MB/s | 71 kB 00:00
(15/25): python3-setuptools-57.4.0-1.fc35.noarc 20 MB/s | 928 kB 00:00
(16/25): python3-xmltodict-0.12.0-13.fc35.noarc 200 kB/s | 22 kB 00:00
(17/25): python3-flake8-3.9.2-1.fc35.noarch.rpm 454 kB/s | 123 kB 00:00
(18/25): pyproject-rpm-macros-0-51.fc35.noarch. 168 kB/s | 37 kB 00:00
(19/25): python3-3.10.1-1.fc35.x86_64.rpm 367 kB/s | 25 kB 00:00
(20/25): python-rpm-macros-3.10-10.fc35.noarch. 85 kB/s | 18 kB 00:00
(21/25): python3-coverage-5.6-0.4b1.fc35.x86_64 1.3 MB/s | 284 kB 00:00
(22/25): python3-devel-3.10.1-1.fc35.x86_64.rpm 993 kB/s | 206 kB 00:00
(23/25): python3-rpm-macros-3.10-10.fc35.noarch 207 kB/s | 15 kB 00:00
(24/25): python-pip-wheel-21.2.3-4.fc35.noarch. 2.0 MB/s | 1.1 MB 00:00
(25/25): python3-libs-3.10.1-1.fc35.x86_64.rpm 20 MB/s | 7.5 MB 00:00
--------------------------------------------------------------------------------
Total 10 MB/s | 12 MB 00:01
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Installing : python-rpm-macros-3.10-10.fc35.noarch 1/25
Installing : python3-rpm-macros-3.10-10.fc35.noarch 2/25
Installing : pyproject-rpm-macros-0-51.fc35.noarch 3/25
Installing : python-pip-wheel-21.2.3-4.fc35.noarch 4/25
Installing : python-setuptools-wheel-57.4.0-1.fc35.noarch 5/25
Installing : mpdecimal-2.5.1-2.fc35.x86_64 6/25
Installing : libyaml-0.2.5-6.fc35.x86_64 7/25
Installing : expat-2.4.1-2.fc35.x86_64 8/25
Installing : python3-3.10.1-1.fc35.x86_64 9/25
Installing : python3-libs-3.10.1-1.fc35.x86_64 10/25
Installing : python3-mccabe-0.6.1-20.fc35.noarch 11/25
Installing : python3-pycodestyle-2.7.0-2.fc35.noarch 12/25
Installing : python3-pyflakes-2.3.1-2.fc35.noarch 13/25
Installing : python3-pyparsing-2.4.7-9.fc35.noarch 14/25
Installing : python3-packaging-21.0-2.fc35.noarch 15/25
Installing : python3-rpm-generators-12-8.fc35.noarch 16/25
Installing : python3-setuptools-57.4.0-1.fc35.noarch 17/25
Installing : python3-coverage-5.6-0.4b1.fc35.x86_64 18/25
Installing : python3-devel-3.10.1-1.fc35.x86_64 19/25
Installing : python3-flake8-3.9.2-1.fc35.noarch 20/25
Installing : python3-argcomplete-1.12.3-3.fc35.noarch 21/25
Installing : python3-pyyaml-5.4.1-4.fc35.x86_64 22/25
Installing : python3-toml-0.10.2-5.fc35.noarch 23/25
Installing : python3-wheel-1:0.36.2-5.fc35.noarch 24/25
Installing : python3-xmltodict-0.12.0-13.fc35.noarch 25/25
Running scriptlet: python3-xmltodict-0.12.0-13.fc35.noarch 25/25
Verifying : expat-2.4.1-2.fc35.x86_64 1/25
Verifying : libyaml-0.2.5-6.fc35.x86_64 2/25
Verifying : mpdecimal-2.5.1-2.fc35.x86_64 3/25
Verifying : python-setuptools-wheel-57.4.0-1.fc35.noarch 4/25
Verifying : python3-argcomplete-1.12.3-3.fc35.noarch 5/25
Verifying : python3-flake8-3.9.2-1.fc35.noarch 6/25
Verifying : python3-mccabe-0.6.1-20.fc35.noarch 7/25
Verifying : python3-packaging-21.0-2.fc35.noarch 8/25
Verifying : python3-pycodestyle-2.7.0-2.fc35.noarch 9/25
Verifying : python3-pyflakes-2.3.1-2.fc35.noarch 10/25
Verifying : python3-pyparsing-2.4.7-9.fc35.noarch 11/25
Verifying : python3-pyyaml-5.4.1-4.fc35.x86_64 12/25
Verifying : python3-rpm-generators-12-8.fc35.noarch 13/25
Verifying : python3-setuptools-57.4.0-1.fc35.noarch 14/25
Verifying : python3-toml-0.10.2-5.fc35.noarch 15/25
Verifying : python3-wheel-1:0.36.2-5.fc35.noarch 16/25
Verifying : python3-xmltodict-0.12.0-13.fc35.noarch 17/25
Verifying : pyproject-rpm-macros-0-51.fc35.noarch 18/25
Verifying : python-pip-wheel-21.2.3-4.fc35.noarch 19/25
Verifying : python-rpm-macros-3.10-10.fc35.noarch 20/25
Verifying : python3-3.10.1-1.fc35.x86_64 21/25
Verifying : python3-coverage-5.6-0.4b1.fc35.x86_64 22/25
Verifying : python3-devel-3.10.1-1.fc35.x86_64 23/25
Verifying : python3-libs-3.10.1-1.fc35.x86_64 24/25
Verifying : python3-rpm-macros-3.10-10.fc35.noarch 25/25
Installed:
expat-2.4.1-2.fc35.x86_64
libyaml-0.2.5-6.fc35.x86_64
mpdecimal-2.5.1-2.fc35.x86_64
pyproject-rpm-macros-0-51.fc35.noarch
python-pip-wheel-21.2.3-4.fc35.noarch
python-rpm-macros-3.10-10.fc35.noarch
python-setuptools-wheel-57.4.0-1.fc35.noarch
python3-3.10.1-1.fc35.x86_64
python3-argcomplete-1.12.3-3.fc35.noarch
python3-coverage-5.6-0.4b1.fc35.x86_64
python3-devel-3.10.1-1.fc35.x86_64
python3-flake8-3.9.2-1.fc35.noarch
python3-libs-3.10.1-1.fc35.x86_64
python3-mccabe-0.6.1-20.fc35.noarch
python3-packaging-21.0-2.fc35.noarch
python3-pycodestyle-2.7.0-2.fc35.noarch
python3-pyflakes-2.3.1-2.fc35.noarch
python3-pyparsing-2.4.7-9.fc35.noarch
python3-pyyaml-5.4.1-4.fc35.x86_64
python3-rpm-generators-12-8.fc35.noarch
python3-rpm-macros-3.10-10.fc35.noarch
python3-setuptools-57.4.0-1.fc35.noarch
python3-toml-0.10.2-5.fc35.noarch
python3-wheel-1:0.36.2-5.fc35.noarch
python3-xmltodict-0.12.0-13.fc35.noarch
Complete!
Finish: build setup for python-yq-2.13.0-1.fc35.src.rpm
Start: rpmbuild python-yq-2.13.0-1.fc35.src.rpm
Building target platforms: x86_64
Building for target x86_64
setting SOURCE_DATE_EPOCH=1640563200
Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.CqAIWL
+ umask 022
+ cd /builddir/build/BUILD
+ cd /builddir/build/BUILD
+ rm -rf yq-2.13.0
+ /usr/bin/gzip -dc /builddir/build/SOURCES/yq-2.13.0.tar.gz
+ /usr/bin/tar -xof -
+ STATUS=0
+ '[' 0 -ne 0 ']'
+ cd yq-2.13.0
+ /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w .
+ rm -rf yq.egg-info
+ RPM_EC=0
++ jobs -p
+ exit 0
Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.p6R4BS
+ umask 022
+ cd /builddir/build/BUILD
+ cd yq-2.13.0
+ CFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection'
+ LDFLAGS='-Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 '
+ /usr/bin/python3 setup.py build '--executable=/usr/bin/python3 -s'
running build
running build_py
creating build
creating build/lib
creating build/lib/yq
copying yq/version.py -> build/lib/yq
copying yq/parser.py -> build/lib/yq
copying yq/loader.py -> build/lib/yq
copying yq/dumper.py -> build/lib/yq
copying yq/__main__.py -> build/lib/yq
copying yq/__init__.py -> build/lib/yq
running egg_info
creating yq.egg-info
writing yq.egg-info/PKG-INFO
writing dependency_links to yq.egg-info/dependency_links.txt
writing entry points to yq.egg-info/entry_points.txt
writing requirements to yq.egg-info/requires.txt
writing top-level names to yq.egg-info/top_level.txt
writing manifest file 'yq.egg-info/SOURCES.txt'
reading manifest file 'yq.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
adding license file 'LICENSE'
writing manifest file 'yq.egg-info/SOURCES.txt'
+ RPM_EC=0
++ jobs -p
+ exit 0
Executing(%install): /bin/sh -e /var/tmp/rpm-tmp.bctB6T
+ umask 022
+ cd /builddir/build/BUILD
+ '[' /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64 '!=' / ']'
+ rm -rf /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64
++ dirname /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64
+ mkdir -p /builddir/build/BUILDROOT
+ mkdir /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64
+ cd yq-2.13.0
+ CFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection'
+ LDFLAGS='-Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 '
+ /usr/bin/python3 setup.py install -O1 --skip-build --root /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64
running install
running install_lib
creating /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64/usr
creating /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64/usr/lib
creating /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64/usr/lib/python3.10
creating /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64/usr/lib/python3.10/site-packages
creating /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64/usr/lib/python3.10/site-packages/yq
copying build/lib/yq/__init__.py -> /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64/usr/lib/python3.10/site-packages/yq
copying build/lib/yq/__main__.py -> /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64/usr/lib/python3.10/site-packages/yq
copying build/lib/yq/dumper.py -> /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64/usr/lib/python3.10/site-packages/yq
copying build/lib/yq/loader.py -> /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64/usr/lib/python3.10/site-packages/yq
copying build/lib/yq/parser.py -> /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64/usr/lib/python3.10/site-packages/yq
copying build/lib/yq/version.py -> /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64/usr/lib/python3.10/site-packages/yq
byte-compiling /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64/usr/lib/python3.10/site-packages/yq/__init__.py to __init__.cpython-310.pyc
byte-compiling /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64/usr/lib/python3.10/site-packages/yq/__main__.py to __main__.cpython-310.pyc
byte-compiling /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64/usr/lib/python3.10/site-packages/yq/dumper.py to dumper.cpython-310.pyc
byte-compiling /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64/usr/lib/python3.10/site-packages/yq/loader.py to loader.cpython-310.pyc
byte-compiling /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64/usr/lib/python3.10/site-packages/yq/parser.py to parser.cpython-310.pyc
byte-compiling /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64/usr/lib/python3.10/site-packages/yq/version.py to version.cpython-310.pyc
writing byte-compilation script '/tmp/tmpbttdkqyx.py'
/usr/bin/python3 -Wignore:The distutils package is deprecated and slated for removal in Python 3.12. Use setuptools or check PEP 632 for potential alternatives:DeprecationWarning /tmp/tmpbttdkqyx.py
removing /tmp/tmpbttdkqyx.py
running install_egg_info
running egg_info
writing yq.egg-info/PKG-INFO
writing dependency_links to yq.egg-info/dependency_links.txt
writing entry points to yq.egg-info/entry_points.txt
writing requirements to yq.egg-info/requires.txt
writing top-level names to yq.egg-info/top_level.txt
reading manifest file 'yq.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
adding license file 'LICENSE'
writing manifest file 'yq.egg-info/SOURCES.txt'
Copying yq.egg-info to /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64/usr/lib/python3.10/site-packages/yq-2.13.0-py3.10.egg-info
running install_scripts
Installing tomlq script to /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64/usr/bin
Installing xq script to /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64/usr/bin
Installing yq script to /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64/usr/bin
+ rm -rfv /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64/usr/bin/__pycache__
+ /usr/bin/find-debuginfo -j2 --strict-build-id -m -i --build-id-seed 2.13.0-1.fc35 --unique-debug-suffix -2.13.0-1.fc35.x86_64 --unique-debug-src-base python-yq-2.13.0-1.fc35.x86_64 --run-dwz --dwz-low-mem-die-limit 10000000 --dwz-max-die-limit 110000000 -S debugsourcefiles.list /builddir/build/BUILD/yq-2.13.0
find: 'debug': No such file or directory
+ /usr/lib/rpm/check-buildroot
+ /usr/lib/rpm/redhat/brp-ldconfig
+ /usr/lib/rpm/brp-compress
+ /usr/lib/rpm/redhat/brp-strip-lto /usr/bin/strip
+ /usr/lib/rpm/brp-strip-static-archive /usr/bin/strip
+ /usr/lib/rpm/check-rpaths
+ /usr/lib/rpm/redhat/brp-mangle-shebangs
+ /usr/lib/rpm/redhat/brp-python-bytecompile '' 1 0
Bytecompiling .py files below /builddir/build/BUILDROOT/python-yq-2.13.0-1.fc35.x86_64/usr/lib/python3.10 using python3.10
+ /usr/lib/rpm/redhat/brp-python-hardlink
Executing(%check): /bin/sh -e /var/tmp/rpm-tmp.JY7s0n
+ umask 022
+ cd /builddir/build/BUILD
+ cd yq-2.13.0
+ /usr/bin/python3 setup.py test
running test
WARNING: Testing via this command is deprecated and will be removed in a future version. Users looking for a generic test entry point independent of test runner are encouraged to use tox.
running egg_info
writing yq.egg-info/PKG-INFO
writing dependency_links to yq.egg-info/dependency_links.txt
writing entry points to yq.egg-info/entry_points.txt
writing requirements to yq.egg-info/requires.txt
writing top-level names to yq.egg-info/top_level.txt
reading manifest file 'yq.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
adding license file 'LICENSE'
writing manifest file 'yq.egg-info/SOURCES.txt'
running build_ext
Traceback (most recent call last):
File "/builddir/build/BUILD/yq-2.13.0/setup.py", line 5, in <module>
setup(
File "/usr/lib/python3.10/site-packages/setuptools/__init__.py", line 153, in setup
return distutils.core.setup(**attrs)
File "/usr/lib64/python3.10/distutils/core.py", line 148, in setup
dist.run_commands()
File "/usr/lib64/python3.10/distutils/dist.py", line 966, in run_commands
self.run_command(cmd)
File "/usr/lib64/python3.10/distutils/dist.py", line 985, in run_command
cmd_obj.run()
File "/usr/lib/python3.10/site-packages/setuptools/command/test.py", line 232, in run
self.run_tests()
File "/usr/lib/python3.10/site-packages/setuptools/command/test.py", line 250, in run_tests
test = unittest.main(
File "/usr/lib64/python3.10/unittest/main.py", line 100, in __init__
self.parseArgs(argv)
File "/usr/lib64/python3.10/unittest/main.py", line 147, in parseArgs
self.createTests()
File "/usr/lib64/python3.10/unittest/main.py", line 158, in createTests
self.test = self.testLoader.loadTestsFromNames(self.testNames,
File "/usr/lib64/python3.10/unittest/loader.py", line 220, in loadTestsFromNames
suites = [self.loadTestsFromName(name, module) for name in names]
File "/usr/lib64/python3.10/unittest/loader.py", line 220, in <listcomp>
suites = [self.loadTestsFromName(name, module) for name in names]
File "/usr/lib64/python3.10/unittest/loader.py", line 191, in loadTestsFromName
return self.loadTestsFromModule(obj)
File "/usr/lib/python3.10/site-packages/setuptools/command/test.py", line 42, in loadTestsFromModule
for file in resource_listdir(module.__name__, ''):
File "/usr/lib/python3.10/site-packages/pkg_resources/__init__.py", line 1148, in resource_listdir
return get_provider(package_or_requirement).resource_listdir(
File "/usr/lib/python3.10/site-packages/pkg_resources/__init__.py", line 349, in get_provider
return _find_adapter(_provider_factories, loader)(module)
File "/usr/lib/python3.10/site-packages/pkg_resources/__init__.py", line 1379, in __init__
self.module_path = os.path.dirname(getattr(module, '__file__', ''))
File "/usr/lib64/python3.10/posixpath.py", line 152, in dirname
p = os.fspath(p)
TypeError: expected str, bytes or os.PathLike object, not NoneType
RPM build errors:
error: Bad exit status from /var/tmp/rpm-tmp.JY7s0n (%check)
Bad exit status from /var/tmp/rpm-tmp.JY7s0n (%check)
Finish: rpmbuild python-yq-2.13.0-1.fc35.src.rpm
Finish: build phase for python-yq-2.13.0-1.fc35.src.rpm
INFO: chroot_scan: 3 files copied to /var/lib/copr-rpmbuild/results/chroot_scan
INFO: /var/lib/mock/fedora-35-x86_64-1640568955.315429/root/var/log/dnf.rpm.log
/var/lib/mock/fedora-35-x86_64-1640568955.315429/root/var/log/dnf.librepo.log
/var/lib/mock/fedora-35-x86_64-1640568955.315429/root/var/log/dnf.log
ERROR: Exception(/var/lib/copr-rpmbuild/results/python-yq-2.13.0-1.fc35.src.rpm) Config(fedora-35-x86_64) 0 minutes 10 seconds
INFO: Results and/or logs in: /var/lib/copr-rpmbuild/results
INFO: Cleaning up build root ('cleanup_on_failure=True')
Start: clean chroot
INFO: unmounting tmpfs.
Finish: clean chroot
ERROR: Command failed:
# /usr/bin/systemd-nspawn -q -M 1b234cf5625046139c112f7d639f3f32 -D /var/lib/mock/fedora-35-x86_64-1640568955.315429/root -a -u mockbuild --capability=cap_ipc_lock --rlimit=RLIMIT_NOFILE=10240 --capability=cap_ipc_lock --bind=/tmp/mock-resolv.5jzxxbyp:/etc/resolv.conf --bind=/dev/btrfs-control --bind=/dev/loop-control --bind=/dev/loop0 --bind=/dev/loop1 --bind=/dev/loop2 --bind=/dev/loop3 --bind=/dev/loop4 --bind=/dev/loop5 --bind=/dev/loop6 --bind=/dev/loop7 --bind=/dev/loop8 --bind=/dev/loop9 --bind=/dev/loop10 --bind=/dev/loop11 --console=pipe --setenv=TERM=vt100 --setenv=SHELL=/bin/bash --setenv=HOME=/builddir --setenv=HOSTNAME=mock --setenv=PATH=/usr/bin:/bin:/usr/sbin:/sbin --setenv=PROMPT_COMMAND=printf "\033]0;<mock-chroot>\007" --setenv=PS1=<mock-chroot> \s-\v\$ --setenv=LANG=C.UTF-8 --resolv-conf=off bash --login -c /usr/bin/rpmbuild -bb --target x86_64 --nodeps /builddir/build/SPECS/python-yq.spec
Copr build error: Build failed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment