From 0c754964fa6e6ff5d7d245f6ee233c2cb76b98b2 Mon Sep 17 00:00:00 2001 From: Vanessa Christopher Date: Nov 08 2021 17:00:43 +0000 Subject: [PATCH 1/5] - Updated version to 0.0.25 --- diff --git a/python-pymatreader.spec b/python-pymatreader.spec index dcc90f4..25ec749 100644 --- a/python-pymatreader.spec +++ b/python-pymatreader.spec @@ -1,7 +1,3 @@ -# The extracted tar has the commit in it -%global commit 00041deb731dffdfbbf457b9c05ae680d21a7234 -%global shortcommit %(c=%{commit}; echo ${c:0:7}) - %bcond_without tests %global srcname pymatreader @@ -14,13 +10,13 @@ both kinds of files. Documentation can be found here: http://pymatreader.readthedocs.io/en/latest/} Name: python-%{srcname} -Version: 0.0.24 -Release: 5%{?dist} +Version: 0.0.25 +Release: 1%{?dist} Summary: Convenient reader for Matlab mat files License: BSD URL: https://pypi.python.org/pypi/%{srcname} -Source0: https://gitlab.com/obob/%{srcname}/-/archive/%{commit}/%{srcname}-%{shortcommit}.tar.gz +Source0: https://gitlab.com/obob/%{srcname}/-/archive/v%{version}/%{name}-%{version}.tar.gz # Remove pytest, fix some tests Patch0: 0001-feat-replace-nose-with-pytest.patch Patch1: 0002-feat-do-not-use-deprecated-np.complex.patch @@ -60,7 +56,7 @@ Summary: %{summary} Documentation for %{name}. %prep -%autosetup -n %{srcname}-%{commit} -S git +%autosetup -n %{srcname}-%{version} -S git rm -rf %{srcname}.egg-info %build @@ -98,6 +94,9 @@ popd %doc doc/build/html %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 0.0.25-1 +- Updated version to 0.0.25 + * Fri Jul 23 2021 Fedora Release Engineering - 0.0.24-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 15d0a2f0f999cb536418c389cddd34ab661e9f0f Mon Sep 17 00:00:00 2001 From: Vanessa Christopher Date: Nov 09 2021 21:11:42 +0000 Subject: [PATCH 2/5] - Updated source URL - Removed patches from SpecFile and repo --- diff --git a/0001-feat-replace-nose-with-pytest.patch b/0001-feat-replace-nose-with-pytest.patch deleted file mode 100644 index 2658a1d..0000000 --- a/0001-feat-replace-nose-with-pytest.patch +++ /dev/null @@ -1,173 +0,0 @@ -From 2eae1cd98ae518a7eb6d72bdf95e56baa36e1d05 Mon Sep 17 00:00:00 2001 -From: "Ankur Sinha (Ankur Sinha Gmail)" -Date: Tue, 6 Jul 2021 13:45:03 +0100 -Subject: [PATCH 1/3] feat: replace nose with pytest - -Nose is deprecated. The nose website says: - -https://nose.readthedocs.io/en/latest/ - -"Nose has been in maintenance mode for the past several years and will -likely cease without a new person/team to take over maintainership. New -projects should consider using Nose2, py.test, or just plain -unittest/unittest2." - -Deprecation of nose in Fedora: -https://fedoraproject.org/wiki/Changes/DeprecateNose ---- - gitlab-ci-test.sh | 4 ++-- - meta.yaml | 4 ++-- - requirements.txt | 5 +++-- - tests/helper_functions/__init__.py | 9 ++++----- - tests/test_pymatreader.py | 6 +++--- - tox.ini | 5 +++-- - tox_ci.ini | 5 +++-- - 7 files changed, 20 insertions(+), 18 deletions(-) - -diff --git a/gitlab-ci-test.sh b/gitlab-ci-test.sh -index 094761e..68cc759 100644 ---- a/gitlab-ci-test.sh -+++ b/gitlab-ci-test.sh -@@ -3,6 +3,6 @@ cd $CI_PROJECT_DIR - apt-get update - apt-get install -y libhdf5-dev - pip install -U -r requirements.txt --nosetests --with-coverage --cover-package=pymatreader && \ -+pytest --cov=pymatreader && \ - tox -c tox_ci.ini && \ --codecov -\ No newline at end of file -+codecov -diff --git a/meta.yaml b/meta.yaml -index b887810..f009533 100644 ---- a/meta.yaml -+++ b/meta.yaml -@@ -33,9 +33,9 @@ test: - source_files: - - tests - requires: -- - nose -+ - pytest pytest-cov - commands: -- - nosetests tests -+ - pytest - - about: - home: {{ data.url }} -diff --git a/requirements.txt b/requirements.txt -index cf965a5..33370b9 100644 ---- a/requirements.txt -+++ b/requirements.txt -@@ -1,7 +1,8 @@ - h5py - scipy - numpy --nose -+pytest -+pytest-cov - xmltodict - sphinx - sphinx-autobuild -@@ -12,4 +13,4 @@ twine - wheel - coverage - flake8 --codecov -\ No newline at end of file -+codecov -diff --git a/tests/helper_functions/__init__.py b/tests/helper_functions/__init__.py -index 3a50ea4..9ef10a7 100644 ---- a/tests/helper_functions/__init__.py -+++ b/tests/helper_functions/__init__.py -@@ -29,7 +29,6 @@ import string - - import numpy - import xmltodict --from nose.tools import assert_almost_equal, assert_equal - import types - - -@@ -57,24 +56,24 @@ def assertDeepAlmostEqual(expected, actual, *args, **kwargs): - - try: - if isinstance(expected, (int, float, complex)): -- assert_almost_equal(expected, actual, *args, **kwargs) -+ numpy.testing.assert_almost_equal(expected, actual, *args, **kwargs) - elif isinstance(expected, (list, tuple, numpy.ndarray, types.GeneratorType)): - if isinstance(expected, types.GeneratorType): - expected = list(expected) - actual = list(actual) - -- assert_equal(len(expected), len(actual)) -+ assert len(expected) == len(actual) - for index in range(len(expected)): - v1, v2 = expected[index], actual[index] - assertDeepAlmostEqual(v1, v2, - __trace=repr(index), *args, **kwargs) - elif isinstance(expected, dict): -- assert_equal(set(expected), set(actual)) -+ assert set(expected) == set(actual) - for key in expected: - assertDeepAlmostEqual(expected[key], actual[key], - __trace=repr(key), *args, **kwargs) - else: -- assert_equal(expected, actual) -+ assert expected == actual - except AssertionError as exc: - exc.__dict__.setdefault('traces', []).append(trace) - if is_root: -diff --git a/tests/test_pymatreader.py b/tests/test_pymatreader.py -index 91b4318..c92414a 100644 ---- a/tests/test_pymatreader.py -+++ b/tests/test_pymatreader.py -@@ -28,7 +28,7 @@ - import os.path - from unittest import TestCase - --from nose.tools import raises -+import pytest - - from pymatreader import read_mat - from .helper_functions import assertDeepAlmostEqual, sanitize_dict, \ -@@ -201,9 +201,9 @@ def test_raw_old_eeglab_event_type(): - first_event.latency - - --@raises(IOError) - def test_file_does_not_exist(): -- read_mat(os.path.join(test_data_folder, invalid_fname)) -+ with pytest.raises(IOError): -+ read_mat(os.path.join(test_data_folder, invalid_fname)) - - - def test_files_with_unsupported_classesv7(): -diff --git a/tox.ini b/tox.ini -index 25cb508..71680b0 100644 ---- a/tox.ini -+++ b/tox.ini -@@ -7,6 +7,7 @@ - envlist = py37, py38, py39 - - [testenv] --commands = nosetests -+commands = pytest - deps = -- nose -+ pytest -+ pytest-cov -diff --git a/tox_ci.ini b/tox_ci.ini -index 3ddd816..6fdcfd2 100644 ---- a/tox_ci.ini -+++ b/tox_ci.ini -@@ -1,4 +1,5 @@ - [testenv] --commands = nosetests -+commands = pytest - deps = -- nose -\ No newline at end of file -+ pytest -+ pytest-cov --- -2.31.1 - diff --git a/0002-feat-do-not-use-deprecated-np.complex.patch b/0002-feat-do-not-use-deprecated-np.complex.patch deleted file mode 100644 index 951b029..0000000 --- a/0002-feat-do-not-use-deprecated-np.complex.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 61c5a608a6511eb9683ec2d28461cd0151277053 Mon Sep 17 00:00:00 2001 -From: "Ankur Sinha (Ankur Sinha Gmail)" -Date: Tue, 6 Jul 2021 14:31:42 +0100 -Subject: [PATCH 2/3] feat: do not use deprecated np.complex - ---- - pymatreader/utils.py | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/pymatreader/utils.py b/pymatreader/utils.py -index d6c5b64..ecfa842 100644 ---- a/pymatreader/utils.py -+++ b/pymatreader/utils.py -@@ -167,7 +167,7 @@ def _handle_ndarray(values): - values = numpy.squeeze(values).T - if (isinstance(values, numpy.ndarray) and - values.dtype.names == ('real', 'imag')): -- values = numpy.array(values.view(numpy.complex)) -+ values = numpy.array(values.view(complex)) - - if isinstance(values, numpy.ndarray) and \ - values.size == 1: --- -2.31.1 - diff --git a/0003-fix-handle-cases-where-either-actual-or-expected-are.patch b/0003-fix-handle-cases-where-either-actual-or-expected-are.patch deleted file mode 100644 index 5e7bca5..0000000 --- a/0003-fix-handle-cases-where-either-actual-or-expected-are.patch +++ /dev/null @@ -1,36 +0,0 @@ -From e808fae1e0306f457273f325b9f92f20b5396b05 Mon Sep 17 00:00:00 2001 -From: "Ankur Sinha (Ankur Sinha Gmail)" -Date: Tue, 6 Jul 2021 14:32:01 +0100 -Subject: [PATCH 3/3] fix: handle cases where either actual or expected are - None - -In this case, the len() function throws a TypeError. ---- - tests/helper_functions/__init__.py | 10 +++++++++- - 1 file changed, 9 insertions(+), 1 deletion(-) - -diff --git a/tests/helper_functions/__init__.py b/tests/helper_functions/__init__.py -index 9ef10a7..29815b3 100644 ---- a/tests/helper_functions/__init__.py -+++ b/tests/helper_functions/__init__.py -@@ -61,8 +61,16 @@ def assertDeepAlmostEqual(expected, actual, *args, **kwargs): - if isinstance(expected, types.GeneratorType): - expected = list(expected) - actual = list(actual) -+ # if any of them are None, len(None) throws a TypeError -+ try: -+ assert len(expected) == len(actual) -+ except TypeError: -+ # if both are None, they are equal -+ if not expected and not actual: -+ pass -+ else: -+ raise AssertionError - -- assert len(expected) == len(actual) - for index in range(len(expected)): - v1, v2 = expected[index], actual[index] - assertDeepAlmostEqual(v1, v2, --- -2.31.1 - diff --git a/python-pymatreader-0.0.25-1.fc36.src.rpm b/python-pymatreader-0.0.25-1.fc36.src.rpm new file mode 100644 index 0000000..51128c0 Binary files /dev/null and b/python-pymatreader-0.0.25-1.fc36.src.rpm differ diff --git a/python-pymatreader.spec b/python-pymatreader.spec deleted file mode 100644 index 25ec749..0000000 --- a/python-pymatreader.spec +++ /dev/null @@ -1,149 +0,0 @@ -%bcond_without tests - -%global srcname pymatreader - -%global desc %{expand: \ -A Python module to read Matlab files. This module works with both the old (< -7.3) and the new (>= 7.3) HDF5 based format. The output should be the same for -both kinds of files. - -Documentation can be found here: http://pymatreader.readthedocs.io/en/latest/} - -Name: python-%{srcname} -Version: 0.0.25 -Release: 1%{?dist} -Summary: Convenient reader for Matlab mat files - -License: BSD -URL: https://pypi.python.org/pypi/%{srcname} -Source0: https://gitlab.com/obob/%{srcname}/-/archive/v%{version}/%{name}-%{version}.tar.gz -# Remove pytest, fix some tests -Patch0: 0001-feat-replace-nose-with-pytest.patch -Patch1: 0002-feat-do-not-use-deprecated-np.complex.patch -Patch2: 0003-fix-handle-cases-where-either-actual-or-expected-are.patch - -BuildArch: noarch - -%{?python_enable_dependency_generator} - -%description -%{desc} - -%package -n python3-%{srcname} -Summary: %{summary} -BuildRequires: git-core -BuildRequires: make -BuildRequires: python3-devel -BuildRequires: %{py3_dist future} -BuildRequires: %{py3_dist h5py} -BuildRequires: %{py3_dist numpy} -BuildRequires: %{py3_dist pytest} -BuildRequires: %{py3_dist scipy} -BuildRequires: %{py3_dist sphinx} -BuildRequires: %{py3_dist sphinx_rtd_theme} -BuildRequires: %{py3_dist setuptools} -BuildRequires: %{py3_dist twine} -BuildRequires: %{py3_dist wheel} -BuildRequires: %{py3_dist xmltodict} - -%description -n python3-%{srcname} -%{desc} - -%package doc -Summary: %{summary} - -%description doc -Documentation for %{name}. - -%prep -%autosetup -n %{srcname}-%{version} -S git -rm -rf %{srcname}.egg-info - -%build -%py3_build - -pushd doc - make SPHINXBUILD=sphinx-build-3 html - rm -rf build/html/.doctrees - rm -rf build/html/.buildinfo - # conver to utf8 - pushd build/html - iconv --from=ISO-8859-1 --to=UTF-8 objects.inv > objects.inv.new && \ - touch -r objects.inv objects.inv.new && \ - mv objects.inv.new objects.inv - popd -popd - -%install -%py3_install - -%check -%if %{with tests} -# Reported upstream: https://gitlab.com/obob/pymatreader/-/issues/9 -%{pytest} -k "not test_files_with_unsupported_classesv7" -%endif - -%files -n python3-%{srcname} -%license LICENSE -%doc README.md -%{python3_sitelib}/%{srcname}-%{version}-py%{python3_version}.egg-info -%{python3_sitelib}/%{srcname} - -%files doc -%license LICENSE -%doc doc/build/html - -%changelog -* Fri Jul 23 2021 Fedora Release Engineering - 0.0.25-1 -- Updated version to 0.0.25 - -* Fri Jul 23 2021 Fedora Release Engineering - 0.0.24-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Tue Jul 06 2021 Ankur Sinha - 0.0.24-4 -- Fix build - -* Fri Jun 04 2021 Python Maint - 0.0.24-3 -- Rebuilt for Python 3.10 - -* Wed Jan 27 2021 Fedora Release Engineering - 0.0.24-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Sat Nov 28 2020 Ankur Sinha - 0.0.24-1 -- Update to latest release - -* Wed Jul 29 2020 Fedora Release Engineering - 0.0.23-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Thu Jun 25 2020 Ankur Sinha - 0.0.23-2 -- Explicitly BR setuptools - -* Sun Jun 21 2020 Ankur Sinha - 0.0.23-1 -- Update to 0.0.23 - -* Tue May 26 2020 Miro Hrončok - 0.0.21-2 -- Rebuilt for Python 3.9 - -* Sat Feb 01 2020 Ankur Sinha - 0.0.21-1 -- Update to latest release - -* Thu Jan 30 2020 Fedora Release Engineering - 0.0.19-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Thu Oct 03 2019 Miro Hrončok - 0.0.19-4 -- Rebuilt for Python 3.8.0rc1 (#1748018) - -* Mon Aug 19 2019 Miro Hrončok - 0.0.19-3 -- Rebuilt for Python 3.8 - -* Fri Jul 26 2019 Fedora Release Engineering - 0.0.19-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Mon Apr 08 2019 Ankur Sinha - 0.0.19-1 -- Update to latest upstream release 0.0.19 - -* Sat Feb 02 2019 Fedora Release Engineering - 0.0.17-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Tue Nov 20 2018 Ankur Sinha - 0.0.17-1 -- Initial build diff --git a/sources b/sources deleted file mode 100644 index 09c1672..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (pymatreader-00041de.tar.gz) = 5c10d7748994b5674e880461b724acbae65da18b3a6c28b57b39a9009cc9f419d6cf31d35230cd0ab464b44b58bb4b96a11384e5a75052335319ae3cf9bb68bb From 618e091af60de31df7d1ec6c328819d4a658a787 Mon Sep 17 00:00:00 2001 From: Vanessa Christopher Date: Nov 10 2021 06:58:53 +0000 Subject: [PATCH 3/5] done mockbuild --- diff --git a/python-pymatreader-0.0.25-1.fc36.src.rpm b/python-pymatreader-0.0.25-1.fc36.src.rpm index 51128c0..7dd4720 100644 Binary files a/python-pymatreader-0.0.25-1.fc36.src.rpm and b/python-pymatreader-0.0.25-1.fc36.src.rpm differ diff --git a/python-pymatreader-0.0.25.tar.gz b/python-pymatreader-0.0.25.tar.gz new file mode 100644 index 0000000..4e46144 Binary files /dev/null and b/python-pymatreader-0.0.25.tar.gz differ diff --git a/python-pymatreader.spec b/python-pymatreader.spec new file mode 100644 index 0000000..d3d3577 --- /dev/null +++ b/python-pymatreader.spec @@ -0,0 +1,149 @@ +# The extracted tar has the commit in it +%global commit 1e536dbf50ee385e90273c7a31fcd85d402154d1 +%global shortcommit %(c=%{commit}; echo ${c:0:7}) + +%bcond_without tests + +%global srcname pymatreader + +%global desc %{expand: \ +A Python module to read Matlab files. This module works with both the old (< +7.3) and the new (>= 7.3) HDF5 based format. The output should be the same for +both kinds of files. + +Documentation can be found here: http://pymatreader.readthedocs.io/en/latest/} + +Name: python-%{srcname} +Version: 0.0.25 +Release: 1%{?dist} +Summary: Convenient reader for Matlab mat files + +License: BSD +URL: https://pypi.python.org/pypi/%{srcname} +Source0: https://gitlab.com/obob/%{srcname}/-/archive/v%{version}/%{name}-%{version}.tar.gz + +BuildArch: noarch + +%{?python_enable_dependency_generator} + +%description +%{desc} + +%package -n python3-%{srcname} +Summary: %{summary} +BuildRequires: git-core +BuildRequires: make +BuildRequires: python3-devel +BuildRequires: %{py3_dist future} +BuildRequires: %{py3_dist h5py} +BuildRequires: %{py3_dist numpy} +BuildRequires: %{py3_dist pytest} +BuildRequires: %{py3_dist scipy} +BuildRequires: %{py3_dist sphinx} +BuildRequires: %{py3_dist sphinx_rtd_theme} +BuildRequires: %{py3_dist setuptools} +BuildRequires: %{py3_dist twine} +BuildRequires: %{py3_dist wheel} +BuildRequires: %{py3_dist xmltodict} + +%description -n python3-%{srcname} +%{desc} + +%package doc +Summary: %{summary} + +%description doc +Documentation for %{name}. + +%prep +%autosetup -n %{srcname}-v%{version}-%{commit} +rm -rf %{srcname}.egg-info + +%build +%py3_build + +pushd doc + make SPHINXBUILD=sphinx-build-3 html + rm -rf build/html/.doctrees + rm -rf build/html/.buildinfo + # conver to utf8 + pushd build/html + iconv --from=ISO-8859-1 --to=UTF-8 objects.inv > objects.inv.new && \ + touch -r objects.inv objects.inv.new && \ + mv objects.inv.new objects.inv + popd +popd + +%install +%py3_install + +%check +%if %{with tests} +# Reported upstream: https://gitlab.com/obob/pymatreader/-/issues/9 +%{pytest} -k "not test_files_with_unsupported_classesv7" +%endif + +%files -n python3-%{srcname} +%license LICENSE +%doc README.md +%{python3_sitelib}/%{srcname}-%{version}-py%{python3_version}.egg-info +%{python3_sitelib}/%{srcname} + +%files doc +%license LICENSE +%doc doc/build/html + +%changelog +* Fri Jul 23 2021 Fedora Release Engineering - 0.0.25-1 +- Updated version to 0.0.25 + +* Fri Jul 23 2021 Fedora Release Engineering - 0.0.24-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Tue Jul 06 2021 Ankur Sinha - 0.0.24-4 +- Fix build + +* Fri Jun 04 2021 Python Maint - 0.0.24-3 +- Rebuilt for Python 3.10 + +* Wed Jan 27 2021 Fedora Release Engineering - 0.0.24-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Sat Nov 28 2020 Ankur Sinha - 0.0.24-1 +- Update to latest release + +* Wed Jul 29 2020 Fedora Release Engineering - 0.0.23-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Thu Jun 25 2020 Ankur Sinha - 0.0.23-2 +- Explicitly BR setuptools + +* Sun Jun 21 2020 Ankur Sinha - 0.0.23-1 +- Update to 0.0.23 + +* Tue May 26 2020 Miro Hrončok - 0.0.21-2 +- Rebuilt for Python 3.9 + +* Sat Feb 01 2020 Ankur Sinha - 0.0.21-1 +- Update to latest release + +* Thu Jan 30 2020 Fedora Release Engineering - 0.0.19-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Oct 03 2019 Miro Hrončok - 0.0.19-4 +- Rebuilt for Python 3.8.0rc1 (#1748018) + +* Mon Aug 19 2019 Miro Hrončok - 0.0.19-3 +- Rebuilt for Python 3.8 + +* Fri Jul 26 2019 Fedora Release Engineering - 0.0.19-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Mon Apr 08 2019 Ankur Sinha - 0.0.19-1 +- Update to latest upstream release 0.0.19 + +* Sat Feb 02 2019 Fedora Release Engineering - 0.0.17-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Tue Nov 20 2018 Ankur Sinha - 0.0.17-1 +- Initial build diff --git a/results_python-pymatreader/0.0.25/1.fc36/build.log b/results_python-pymatreader/0.0.25/1.fc36/build.log new file mode 100644 index 0000000..cd1c1b9 --- /dev/null +++ b/results_python-pymatreader/0.0.25/1.fc36/build.log @@ -0,0 +1,242 @@ +Mock Version: 2.12 +ENTER ['do_with_status'](['bash', '--login', '-c', '/usr/bin/rpmbuild -bs --target x86_64 --nodeps /builddir/build/SPECS/python-pymatreader.spec'], chrootPath='/var/lib/mock/fedora-rawhide-x86_64/root'env={'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8'}shell=Falselogger=timeout=0uid=1000gid=135user='mockbuild'nspawn_args=['--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.e0q2oq0n:/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']unshare_net=TrueprintOutput=True) +Using nspawn with args ['--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.e0q2oq0n:/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'] +Executing command: ['/usr/bin/systemd-nspawn', '-q', '-M', '0701ce5d165f48d483000aa85f03dcd3', '-D', '/var/lib/mock/fedora-rawhide-x86_64/root', '-a', '-u', 'mockbuild', '--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.e0q2oq0n:/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;\\007"', '--setenv=PS1= \\s-\\v\\$ ', '--setenv=LANG=C.UTF-8', '--resolv-conf=off', 'bash', '--login', '-c', '/usr/bin/rpmbuild -bs --target x86_64 --nodeps /builddir/build/SPECS/python-pymatreader.spec'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8', 'SYSTEMD_NSPAWN_TMPFS_TMP': '0'} and shell False +Building target platforms: x86_64 +Building for target x86_64 +setting SOURCE_DATE_EPOCH=1626998400 +Wrote: /builddir/build/SRPMS/python-pymatreader-0.0.25-1.fc36.src.rpm +Child return code was: 0 +ENTER ['do_with_status'](['bash', '--login', '-c', '/usr/bin/rpmbuild -bb --target x86_64 --nodeps /builddir/build/SPECS/python-pymatreader.spec'], chrootPath='/var/lib/mock/fedora-rawhide-x86_64/root'env={'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8'}shell=Falselogger=timeout=0uid=1000gid=135user='mockbuild'nspawn_args=['--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.e0q2oq0n:/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']unshare_net=TrueprintOutput=True) +Using nspawn with args ['--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.e0q2oq0n:/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'] +Executing command: ['/usr/bin/systemd-nspawn', '-q', '-M', '34c04fe09c9c4f98aee7b9a627de104f', '-D', '/var/lib/mock/fedora-rawhide-x86_64/root', '-a', '-u', 'mockbuild', '--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.e0q2oq0n:/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;\\007"', '--setenv=PS1= \\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-pymatreader.spec'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8', 'SYSTEMD_NSPAWN_TMPFS_TMP': '0'} and shell False +Building target platforms: x86_64 +Building for target x86_64 +setting SOURCE_DATE_EPOCH=1626998400 +Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.WOk1ym ++ umask 022 ++ cd /builddir/build/BUILD ++ cd /builddir/build/BUILD ++ rm -rf pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 ++ /usr/bin/tar -xof - ++ /usr/bin/gzip -dc /builddir/build/SOURCES/python-pymatreader-0.0.25.tar.gz ++ STATUS=0 ++ '[' 0 -ne 0 ']' ++ cd pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 ++ /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w . +Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.iaAGDM ++ rm -rf pymatreader.egg-info ++ RPM_EC=0 +++ jobs -p ++ exit 0 ++ umask 022 ++ cd /builddir/build/BUILD ++ cd pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 ++ 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' +/usr/lib/python3.10/site-packages/setuptools/dist.py:487: UserWarning: Normalizing '0.0.25 +' to '0.0.25' + warnings.warn(tmpl.format(**locals())) +running build +running build_py +creating build +creating build/lib +creating build/lib/pymatreader +copying pymatreader/__init__.py -> build/lib/pymatreader +copying pymatreader/pymatreader.py -> build/lib/pymatreader +copying pymatreader/utils.py -> build/lib/pymatreader +~/build/BUILD/pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1/doc ~/build/BUILD/pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 ++ pushd doc ++ make SPHINXBUILD=sphinx-build-3 html +Running Sphinx v4.2.0 +making output directory... done +WARNING: html_static_path entry '_static' does not exist +building [mo]: targets for 0 po files that are out of date +building [html]: targets for 1 source files that are out of date +updating environment: [new config] 1 added, 0 changed, 0 removed +reading sources... [100%] index +looking for now-outdated files... none found +pickling environment... done +checking consistency... done +preparing documents... done +writing output... [100%] index +generating indices... genindex py-modindex done +highlighting module code... [100%] pymatreader.pymatreader +writing additional pages... search done +copying static files... done +copying extra files... done +dumping search index in English (code: en)... done +dumping object inventory... done +build succeeded, 1 warning. +The HTML pages are in build/html. +~/build/BUILD/pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1/doc/build/html ~/build/BUILD/pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1/doc ~/build/BUILD/pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 ++ rm -rf build/html/.doctrees ++ rm -rf build/html/.buildinfo ++ pushd build/html ++ iconv --from=ISO-8859-1 --to=UTF-8 objects.inv ++ touch -r objects.inv objects.inv.new ++ mv objects.inv.new objects.inv +~/build/BUILD/pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1/doc ~/build/BUILD/pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 +~/build/BUILD/pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 ++ popd ++ popd ++ RPM_EC=0 +++ jobs -p ++ exit 0 +Executing(%install): /bin/sh -e /var/tmp/rpm-tmp.iCqTYX ++ umask 022 ++ cd /builddir/build/BUILD ++ '[' /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64 '!=' / ']' ++ rm -rf /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64 +++ dirname /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64 ++ mkdir -p /builddir/build/BUILDROOT ++ mkdir /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64 ++ cd pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 ++ 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-pymatreader-0.0.25-1.fc36.x86_64 +/usr/lib/python3.10/site-packages/setuptools/dist.py:487: UserWarning: Normalizing '0.0.25 +' to '0.0.25' + warnings.warn(tmpl.format(**locals())) +running install +running install_lib +creating /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr +creating /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/lib +creating /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/lib/python3.10 +creating /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/lib/python3.10/site-packages +creating /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/lib/python3.10/site-packages/pymatreader +copying build/lib/pymatreader/__init__.py -> /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/lib/python3.10/site-packages/pymatreader +copying build/lib/pymatreader/pymatreader.py -> /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/lib/python3.10/site-packages/pymatreader +copying build/lib/pymatreader/utils.py -> /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/lib/python3.10/site-packages/pymatreader +byte-compiling /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/lib/python3.10/site-packages/pymatreader/__init__.py to __init__.cpython-310.pyc +byte-compiling /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/lib/python3.10/site-packages/pymatreader/pymatreader.py to pymatreader.cpython-310.pyc +byte-compiling /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/lib/python3.10/site-packages/pymatreader/utils.py to utils.cpython-310.pyc +writing byte-compilation script '/tmp/tmpqzaehqrp.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/tmpqzaehqrp.py +removing /tmp/tmpqzaehqrp.py +running install_egg_info +running egg_info +creating pymatreader.egg-info +writing pymatreader.egg-info/PKG-INFO +writing dependency_links to pymatreader.egg-info/dependency_links.txt +writing requirements to pymatreader.egg-info/requires.txt +writing top-level names to pymatreader.egg-info/top_level.txt +writing manifest file 'pymatreader.egg-info/SOURCES.txt' +reading manifest file 'pymatreader.egg-info/SOURCES.txt' +reading manifest template 'MANIFEST.in' +adding license file 'LICENSE' +writing manifest file 'pymatreader.egg-info/SOURCES.txt' +Copying pymatreader.egg-info to /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/lib/python3.10/site-packages/pymatreader-0.0.25-py3.10.egg-info +running install_scripts ++ rm -rfv /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/bin/__pycache__ ++ /usr/bin/find-debuginfo -j1 --strict-build-id -m -i --build-id-seed 0.0.25-1.fc36 --unique-debug-suffix -0.0.25-1.fc36.x86_64 --unique-debug-src-base python-pymatreader-0.0.25-1.fc36.x86_64 --run-dwz --dwz-low-mem-die-limit 10000000 --dwz-max-die-limit 110000000 -S debugsourcefiles.list /builddir/build/BUILD/pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 +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-pymatreader-0.0.25-1.fc36.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.j0uqKL ++ umask 022 ++ cd /builddir/build/BUILD ++ cd pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 ++ 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 ' ++ PATH=/builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/bin:/builddir/.local/bin:/builddir/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin ++ PYTHONPATH=/builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/lib64/python3.10/site-packages:/builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/lib/python3.10/site-packages ++ PYTHONDONTWRITEBYTECODE=1 ++ /usr/bin/pytest -k 'not test_files_with_unsupported_classesv7' +============================= test session starts ============================== +platform linux -- Python 3.10.0, pytest-6.2.5, py-1.10.0, pluggy-1.0.0 +rootdir: /builddir/build/BUILD/pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 +collected 18 items / 2 deselected / 16 selected +tests/test_pymatreader.py ................ [100%] +=============================== warnings summary =============================== +tests/test_pymatreader.py: 628 warnings + /usr/lib64/python3.10/site-packages/numpy/matrixlib/defmatrix.py:69: PendingDeprecationWarning: the matrix subclass is not the recommended way to represent matrices or deal with linear algebra (see https://docs.scipy.org/doc/numpy/user/numpy-for-matlab-users.html). Please adjust your code to use regular ndarray. + return matrix(data, dtype=dtype, copy=False) +tests/test_pymatreader.py::test_eeglab_epochs + /builddir/build/BUILD/pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1/pymatreader/utils.py:118: UserWarning: Complex objects (like classes) are not supported. They are imported on a best effort base but your mileage will vary. + warn('Complex objects (like classes) are not supported. ' +-- Docs: https://docs.pytest.org/en/stable/warnings.html +========== 16 passed, 2 deselected, 629 warnings in 302.89s (0:05:02) ========== ++ RPM_EC=0 +++ jobs -p ++ exit 0 +Processing files: python3-pymatreader-0.0.25-1.fc36.noarch +Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.3V5X17 +Executing(%license): /bin/sh -e /var/tmp/rpm-tmp.OPaP6H ++ umask 022 ++ cd /builddir/build/BUILD ++ cd pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 ++ DOCDIR=/builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/share/doc/python3-pymatreader ++ export LC_ALL=C ++ LC_ALL=C ++ export DOCDIR ++ /usr/bin/mkdir -p /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/share/doc/python3-pymatreader ++ cp -pr README.md /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/share/doc/python3-pymatreader ++ RPM_EC=0 +++ jobs -p ++ exit 0 ++ umask 022 ++ cd /builddir/build/BUILD ++ cd pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 ++ LICENSEDIR=/builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/share/licenses/python3-pymatreader ++ export LC_ALL=C ++ LC_ALL=C ++ export LICENSEDIR ++ /usr/bin/mkdir -p /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/share/licenses/python3-pymatreader ++ cp -pr LICENSE /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/share/licenses/python3-pymatreader ++ RPM_EC=0 +++ jobs -p ++ exit 0 +Provides: python-pymatreader = 0.0.25-1.fc36 python3-pymatreader = 0.0.25-1.fc36 python3.10-pymatreader = 0.0.25-1.fc36 python3.10dist(pymatreader) = 0.0.25 python3dist(pymatreader) = 0.0.25 +Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PartialHardlinkSets) <= 4.0.4-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 +Requires: (python3.10dist(scipy) < 1.7 or python3.10dist(scipy) > 1.7) python(abi) = 3.10 python3.10dist(future) python3.10dist(h5py) python3.10dist(numpy) python3.10dist(xmltodict) +Processing files: python-pymatreader-doc-0.0.25-1.fc36.noarch +Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.ZOzVH5 ++ umask 022 ++ cd /builddir/build/BUILD ++ cd pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 ++ DOCDIR=/builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/share/doc/python-pymatreader-doc ++ export LC_ALL=C ++ LC_ALL=C ++ export DOCDIR ++ /usr/bin/mkdir -p /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/share/doc/python-pymatreader-doc ++ cp -pr doc/build/html /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/share/doc/python-pymatreader-doc ++ RPM_EC=0 +++ jobs -p ++ exit 0 +Executing(%license): /bin/sh -e /var/tmp/rpm-tmp.FD5pRM ++ umask 022 ++ cd /builddir/build/BUILD ++ cd pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 ++ LICENSEDIR=/builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/share/licenses/python-pymatreader-doc ++ export LC_ALL=C ++ LC_ALL=C ++ export LICENSEDIR ++ /usr/bin/mkdir -p /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/share/licenses/python-pymatreader-doc ++ cp -pr LICENSE /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/share/licenses/python-pymatreader-doc ++ RPM_EC=0 +++ jobs -p ++ exit 0 +Provides: python-pymatreader-doc = 0.0.25-1.fc36 +Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 +Checking for unpackaged file(s): /usr/lib/rpm/check-files /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64 +Wrote: /builddir/build/RPMS/python-pymatreader-doc-0.0.25-1.fc36.noarch.rpm +Wrote: /builddir/build/RPMS/python3-pymatreader-0.0.25-1.fc36.noarch.rpm +Executing(%clean): /bin/sh -e /var/tmp/rpm-tmp.HZzAEo ++ umask 022 ++ cd /builddir/build/BUILD ++ cd pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 ++ /usr/bin/rm -rf /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64 ++ RPM_EC=0 +++ jobs -p ++ exit 0 +Child return code was: 0 diff --git a/results_python-pymatreader/0.0.25/1.fc36/hw_info.log b/results_python-pymatreader/0.0.25/1.fc36/hw_info.log new file mode 100644 index 0000000..37573b6 --- /dev/null +++ b/results_python-pymatreader/0.0.25/1.fc36/hw_info.log @@ -0,0 +1,46 @@ +CPU info: +Architecture: x86_64 +CPU op-mode(s): 32-bit, 64-bit +Byte Order: Little Endian +Address sizes: 36 bits physical, 48 bits virtual +CPU(s): 1 +On-line CPU(s) list: 0 +Thread(s) per core: 1 +Core(s) per socket: 1 +Socket(s): 1 +NUMA node(s): 1 +Vendor ID: GenuineIntel +CPU family: 6 +Model: 42 +Model name: Intel(R) Core(TM) i5-2540M CPU @ 2.60GHz +Stepping: 7 +CPU MHz: 2636.348 +BogoMIPS: 5272.69 +Hypervisor vendor: KVM +Virtualization type: full +L1d cache: 32 KiB +L1i cache: 32 KiB +L2 cache: 256 KiB +L3 cache: 3 MiB +NUMA node0 CPU(s): 0 +Vulnerability Itlb multihit: KVM: Mitigation: VMX unsupported +Vulnerability L1tf: Mitigation; PTE Inversion +Vulnerability Mds: Mitigation; Clear CPU buffers; SMT Host state unknown +Vulnerability Meltdown: Mitigation; PTI +Vulnerability Spec store bypass: Vulnerable +Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization +Vulnerability Spectre v2: Mitigation; Full generic retpoline, STIBP disabled, RSB filling +Vulnerability Srbds: Not affected +Vulnerability Tsx async abort: Not affected +Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 x2apic popcnt aes xsave avx hypervisor lahf_lm pti md_clear flush_l1d + + +Memory: + total used free shared buff/cache available +Mem: 4019804 2827276 107936 54788 1084592 901164 +Swap: 4019196 1688752 2330444 + + +Storage: +Filesystem Size Used Avail Use% Mounted on +/dev/sda2 11G 9.2G 692M 93% / diff --git a/results_python-pymatreader/0.0.25/1.fc36/installed_pkgs.log b/results_python-pymatreader/0.0.25/1.fc36/installed_pkgs.log new file mode 100644 index 0000000..0eb5a0b --- /dev/null +++ b/results_python-pymatreader/0.0.25/1.fc36/installed_pkgs.log @@ -0,0 +1,245 @@ +gpg-pubkey-38ab71f4-60242b08 1612983048 0 (none) installed +gpg-pubkey-9867c58f-601c49ca 1612466634 0 (none) installed +libgcc-11.2.1-6.fc36.x86_64 1634659195 198596 948bcb6d189fc7ee2bcf08df3e0ded0d installed +crypto-policies-20210917-1.gitc9d86d1.fc36.noarch 1631901128 86073 f48797f7cee7bb76459a72ae397c2bbe installed +fedora-release-identity-basic-36-0.7.noarch 1629727368 748 67e266a3ec721a2c5127bef2ed8c372b installed +tzdata-2021a-2.fc35.noarch 1627084482 1817652 7912221f6ce6fe8b2a809fbf187f5199 installed +rust-srpm-macros-18-2.fc35.noarch 1627067759 2447 f3c831d1f80f4c06a6cd1f7967318c75 installed +qt5-srpm-macros-5.15.2-3.fc35.noarch 1627037606 492 be3fc262a57f16a89528f058f00a9dc3 installed +publicsuffix-list-dafsa-20210518-2.fc35.noarch 1627015083 68815 66e8314a663c969e724c10861c660788 installed +pkgconf-m4-1.8.0-1.fc35.noarch 1627221480 14187 d3b120a3b4d78e4a7e45396f30d9c709 installed +perl-srpm-macros-1-42.fc35.noarch 1627009629 862 31fd62af1588ade5c32d0b0fcefa45d8 installed +openblas-srpm-macros-2-10.fc35.noarch 1626993369 104 6ef8804b6de37b9a73f2b8502530fc68 installed +ocaml-srpm-macros-6-5.fc35.noarch 1626992091 745 519a978bddefede5d9252679a1726863 installed +nim-srpm-macros-3-5.fc35.noarch 1626987977 1098 50f3b27dca3c2554c3334b6908fa8da4 installed +ncurses-base-6.2-8.20210508.fc35.noarch 1626991807 307293 6fc56839d735263a9cfc0886c8d62377 installed +libssh-config-0.9.6-1.fc36.noarch 1632238630 277 1f87ba3b630a8afeebedabfad4aeee99 installed +kernel-srpm-macros-1.0-6.fc35.noarch 1626954864 621 f34169675490393047c9f76bb0dd5167 installed +gnat-srpm-macros-4-14.fc35.noarch 1626923297 725 acfa6b9efd8326ee09e42947528d2fad installed +ghc-srpm-macros-1.5.0-5.fc35.noarch 1626920787 535 83b17a3ad07bb6dce09a1113c2fbfc49 installed +fpc-srpm-macros-1.3-4.fc35.noarch 1626912175 144 46535e4ca0d7762b018d90f26785ebe9 installed +fedora-gpg-keys-36-0.3.noarch 1629216661 118311 1d520683e0e7cc4221ade46bec750891 installed +fedora-release-36-0.7.noarch 1629727368 0 e093deb4e2f58f692e9b126dffe62afa installed +fedora-release-common-36-0.7.noarch 1629727368 17568 ada8b78d5dd5dc784b1aa329da05df76 installed +fedora-repos-rawhide-36-0.3.noarch 1629216661 2203 d83e34aeb6aa0cfd354175876d3b63b1 installed +fedora-repos-36-0.3.noarch 1629216661 4597 8205ec5fae44ad89b015238f2f0b462b installed +setup-2.13.9.1-2.fc35.noarch 1627075056 736053 64f8b1c53f47bf22f25324c6e700cc72 installed +filesystem-3.16-1.fc36.x86_64 1632304495 106 696c3c32224ced91b048af23913ccaef installed +basesystem-11-12.fc35.noarch 1626892315 0 af618e2cf6a1583a176bb5e45b0a5068 installed +ncurses-libs-6.2-8.20210508.fc35.x86_64 1626985943 996375 2f994f573415c7206570f1717dcf626b installed +zlib-1.2.11-30.fc35.x86_64 1627555046 203449 fc88ceb52649360b8d871331220b0f6c installed +xz-libs-5.2.5-7.fc35.x86_64 1627092507 181437 a020e7464332c7f3873c34907eacff50 installed +elfutils-libelf-0.185-5.fc35.x86_64 1628259076 992174 34da460b225bcbd122e42ed8c6ca2415 installed +libstdc++-11.2.1-6.fc36.x86_64 1634659195 2479101 89257d9a10d316dc32c8e304e071efbe installed +libuuid-2.37.2-1.fc36.x86_64 1629194240 34397 2edb70a01bb7932f8358c5992c0dc474 installed +libzstd-1.5.0-2.fc35.x86_64 1627093306 1028163 c56a81660a167665720337b2d0c97070 installed +libattr-2.5.1-3.fc35.x86_64 1626891756 29341 a17b4483f4a01b5eb6d01f41842da285 installed +libacl-2.3.1-2.fc35.x86_64 1626889009 41090 7f91f200578996693fbd6ba53b745348 installed +libcap-2.48-3.fc35.x86_64 1626961088 180511 fa377911e225ceb086daf490d0c94ab7 installed +libcom_err-1.46.4-1.fc36.x86_64 1629807360 68945 a7c2723b8bbf1bf73dbbfd124a54cf3c installed +libxcrypt-4.4.26-4.fc36.x86_64 1632260314 275090 950aebba01d9009bb03a60a10a078640 installed +popt-1.18-6.fc36.x86_64 1631658902 130248 1d7d1c136af2df09061406932ba0c8c2 installed +readline-8.1-3.fc35.x86_64 1627041494 492684 aaf61524862c6beeb77380c15d658a93 installed +mpfr-4.1.0-8.fc35.x86_64 1626983884 802431 de62fb0bd1ab4954a5a3e601e4f95b58 installed +dwz-0.14-2.fc35.x86_64 1626907299 280646 8ae97d97b2c29bfe9e0ee73643bedfdd installed +unzip-6.0-53.fc35.x86_64 1627085048 394499 60a40024a1a2cc4e6734159ed1108959 installed +file-libs-5.41-1.fc36.x86_64 1634677368 8807844 3f6a37d6c5bbd22a9376ce12608906e9 installed +file-5.41-1.fc36.x86_64 1634677368 98373 72b8f28bac0368bc72027dff2bbaa97b installed +openssl1.1-1:1.1.1l-1.fc36.x86_64 1632138772 3876243 29868be49deeb8c77436b599365172d1 installed +sqlite-libs-3.36.0-4.fc36.x86_64 1629274141 1338849 1e9a9fef41195dcb15fa5d655a3d168d installed +alternatives-1.19-1.fc35.x86_64 1627054363 63264 5cd393a56ec2efe3a8dd3f9abe55f043 installed +libcap-ng-0.8.2-7.fc36.x86_64 1632337115 75012 57098680eb7832ece9c9089fe53a280e installed +audit-libs-3.0.6-1.fc36.x86_64 1633107302 307281 f50f5dee1a1c6705169fa17042f6257a installed +libsmartcols-2.37.2-1.fc36.x86_64 1629194240 135371 87c55bfc59efd942ef74441cc73528b6 installed +libunistring-0.9.10-14.fc35.x86_64 1626970676 1642923 fb4cd52955e96d4fe989ece3153119fa installed +libidn2-2.3.2-3.fc36.x86_64 1630430183 291720 8bec67ffc0040305e3efb64d378cf49a installed +lua-libs-5.4.3-2.fc35.x86_64 1626974759 555606 708062639b1ec59c853e3949ecb655b4 installed +lz4-libs-1.9.3-3.fc35.x86_64 1626976924 145387 35f02696af287b52c0a8ccd356299a79 installed +libpsl-0.21.1-4.fc35.x86_64 1626969221 78520 418fc994aecd296a0e9f3a900a46f7c5 installed +zip-3.0-31.fc35.x86_64 1627093104 712847 8bc0595d10f2bc85179113ad1484aba4 installed +zstd-1.5.0-2.fc35.x86_64 1627093306 1960479 13397e9d0ff36b3adf5abe7703fd0c04 installed +libxml2-2.9.12-6.fc35.x86_64 1626972022 1923894 58e6c4b8f0daf9cb8cf8355e9855a6ce installed +libarchive-3.5.2-2.fc36.x86_64 1630307534 907245 2cf74a4f9a53cf7b134f11d53d18f855 installed +elfutils-default-yama-scope-0.185-5.fc35.noarch 1628259164 1810 1a4ed61c32688e5f2f93ce33501c4a16 installed +info-6.8-2.fc35.x86_64 1627082242 503786 d1e469daef55e19b18e1753de365ed7b installed +ed-1.14.2-11.fc35.x86_64 1626907257 129811 094cf9934b01744c0c414314070af36f installed +cpio-2.13-11.fc36.x86_64 1630325808 1083898 cc85cc47d3f25270b54345d0e0ae768a installed +diffutils-3.8-1.fc35.x86_64 1627895573 1563061 b288fa5059e9d347c23ecf7459de1392 installed +gdbm-libs-1:1.22-1.fc36.x86_64 1634724719 128586 372620214f5cb6cdd6fde1753825fb46 installed +keyutils-libs-1.6.1-3.fc35.x86_64 1626955294 55801 535a1f1ca9e121cd9574c95b07820bb7 installed +libbrotli-1.0.9-6.fc35.x86_64 1626893913 784274 d45caad095b8be733739ddc36bbf1a3b installed +libdb-5.3.28-50.fc36.x86_64 1631794375 1922790 9165d206f0ee0ccb1da2c1528586359a installed +libeconf-0.4.0-2.fc35.x86_64 1626962507 46171 1d425d5dc6879bacad175542465b0706 installed +libffi-3.1-28.fc34.x86_64 1611731196 56840 077bc570623183e5b0eb94e8ef14e874 installed +p11-kit-0.23.22-4.fc35.x86_64 1626999243 1659536 2e7cda635f37cded07d6b2c83065ba9a installed +libgomp-11.2.1-6.fc36.x86_64 1634659195 412772 732c7e4d782e9dd4f71784cf913cadb6 installed +libgcrypt-1.9.4-1.fc36.x86_64 1629720680 1392852 59e2cc2fed649bc002fb75e05e789b1d installed +libnghttp2-1.46.0-1.fc36.x86_64 1634648839 162532 f366923935df459db89aea672fbf3eb8 installed +libpkgconf-1.8.0-1.fc35.x86_64 1627221416 75953 4a3b0d15ab4d7e8482d98d677ad5b928 installed +pkgconf-1.8.0-1.fc35.x86_64 1627221416 81451 f6bab719cb8f1b8c5862882bc45d2b45 installed +pkgconf-pkg-config-1.8.0-1.fc35.x86_64 1627221416 989 a02a23bcacf44a3bdfc74247bc5d893c installed +libsigsegv-2.13-3.fc35.x86_64 1626969727 50250 f9aa2f7104c70b331c044360a70664f4 installed +p11-kit-trust-0.23.22-4.fc35.x86_64 1626999243 451087 70a611a55f6a52dbf5e6966daff44ae9 installed +libverto-0.3.2-2.fc35.x86_64 1626970819 30277 cbb25f656c2c22c557ee83ad0d80dfb1 installed +pcre-8.45-1.fc36.x86_64 1629279764 539220 6a5448ab58ca42fa50de789ab3a15848 installed +grep-3.7-1.fc36.x86_64 1629144799 949303 418a97f7521220f4733ccdad7c84451f installed +xz-5.2.5-7.fc35.x86_64 1627092507 685425 dd341adc7fbb8844cb9965b1eb893ec4 installed +sed-4.8-8.fc35.x86_64 1627074776 813479 18a95fcfe58463e71717b520d2412a8a installed +findutils-1:4.8.0-4.fc35.x86_64 1626911297 1758182 f636dbf756669a4ed38bc1dff6c63018 installed +libutempter-1.2.1-5.fc35.x86_64 1626970643 58697 1c069b7288b0240929a10f6ac1cc1514 installed +patch-2.7.6-15.fc35.x86_64 1627000523 265410 1e6cd06c190ae494f76619ff9487c79b installed +tar-2:1.34-2.fc35.x86_64 1627081075 3156278 052b560465e9eebf3c4f7986aa10ee0b installed +xxhash-libs-0.8.0-4.fc35.x86_64 1627092400 105030 300fca06d5c6d5eaa03afd87981cbdd2 installed +coreutils-common-9.0-2.fc36.x86_64 1633350515 11033739 13dc7ddd21a60338fa3b873707724bed installed +openssl-libs-1:3.0.0-1.fc36.x86_64 1631206141 6910251 eecd9be83d355e37db387ec828737d70 installed +coreutils-9.0-2.fc36.x86_64 1633350515 5711386 418571a189b3343b279a0ff40fde28af installed +ca-certificates-2021.2.50-3.fc35.noarch 1626894832 939948 aff01f0137ea9195efe407be332a9c66 installed +krb5-libs-1.19.2-3.fc36.x86_64 1629825434 2198405 86be5f59ddccdf777917f48e6d2f57cf installed +libblkid-2.37.2-1.fc36.x86_64 1629194240 230761 bcf6f579f2b0dd97f8bd07fd7c1ba638 installed +libmount-2.37.2-1.fc36.x86_64 1629194240 311117 0947343ed48d8d733d44ab4c62b40f85 installed +libtirpc-1.3.2-1.rc1.fc36.x86_64 1631022089 208178 913ab7f77980f2baa1545e35fdbaf84b installed +util-linux-core-2.37.2-1.fc36.x86_64 1629194240 1279584 d296b4db24ad10daca513e302e92ceac installed +cracklib-2.9.6-27.fc36.x86_64 1630357018 251474 942e9fca4ce39033b500229201baeb56 installed +libnsl2-1.3.0-4.fc35.x86_64 1626968101 130270 ec90470cea464c30c21887ef0b6b5f78 installed +libpwquality-1.4.4-6.fc36.x86_64 1628688648 415452 f743797d80fbc29a7c38d3fda554ca5b installed +pam-1.5.2-6.fc36.x86_64 1633617824 1954020 ddd3c23fae599e2290c4c4d32ba5ade9 installed +libfdisk-2.37.2-1.fc36.x86_64 1629194240 368883 94b88429c34d3017d1a8cc4436e6f32f installed +cyrus-sasl-lib-2.1.27-16.fc36.x86_64 1634043547 2409888 e427e9a94b2dd7fd03de97dae3b456e8 installed +openldap-2.4.59-4.fc36.x86_64 1633097029 718693 f7df4289afa6e71199687f3a9e8ebb08 installed +libssh-0.9.6-1.fc36.x86_64 1632238467 513065 b5b56898289f134595e72319cd4acaaf installed +elfutils-libs-0.185-5.fc35.x86_64 1628259076 709117 2c1ab9675c840b1b828052157ed4cc9f installed +elfutils-debuginfod-client-0.185-5.fc35.x86_64 1628259076 52049 0303741a9495931d73ae739631434d14 installed +elfutils-0.185-5.fc35.x86_64 1628259076 2817145 f9356ecaba6fa95c491d3c17b313d91d installed +debugedit-5.0-2.fc35.x86_64 1627943772 194459 5239705164dbdb4cc743115c72824aaa installed +rpm-4.17.0-1.fc36.1.x86_64 1631644675 2948922 a420c79ff2a9cffb2ef50aad8ddacab4 installed +rpm-libs-4.17.0-1.fc36.1.x86_64 1631644675 775140 25b1fbc8993fe8028856f1bc219d9e3e installed +rpm-build-libs-4.17.0-1.fc36.1.x86_64 1631644675 199518 7056d76c06bed3b527421ac5b8e6a828 installed +efi-srpm-macros-5-4.fc36.noarch 1630608889 41111 9ac42e695d91164878696a83a337da1f installed +lua-srpm-macros-1-5.fc35.noarch 1626974425 1314 1d371eb16120fb40dbf7c0f03c3e8291 installed +rpmautospec-rpm-macros-0.2.5-1.fc35.noarch 1628264740 698 8d7c0d5e1ebd255a29531ed50f7eac01 installed +fonts-srpm-macros-1:2.0.5-6.fc35.noarch 1626911835 56503 e028a54cd411cf0f8ad51dcc2fde13e2 installed +go-srpm-macros-3.0.11-2.fc35.noarch 1626930626 60319 a69641b37d6aeebdd34a6f34ebf4a394 installed +rpm-build-4.17.0-1.fc36.1.x86_64 1631644675 145180 716dd2c7165dcb7459337bf33d1fc737 installed +util-linux-2.37.2-1.fc36.x86_64 1629194240 11216740 26af3a095042c6a0c6540785313ea546 installed +libsepol-3.3-1.fc36.x86_64 1634898517 755963 4ddeff0eab7624bdcd30f3cc2e13147d installed +libselinux-3.3-1.fc36.x86_64 1634903551 169437 2d15b3d1a0de42de5fbbcc2a6508ca61 installed +libsemanage-3.3-1.fc36.x86_64 1634905114 303896 8ed4e5384f70b0f9d587277fd6c770b9 installed +gzip-1.11-1.fc36.x86_64 1634828906 370548 794ed9a20c54f84518e4136dd1e54b06 installed +which-2.21-30.fc36.x86_64 1635264489 82340 be89267cc17b7ab206472f551fe0664a installed +libcurl-7.79.1-3.fc36.x86_64 1635339368 681126 479c1b6d8a742c8bc8a6b5edc40b0e1a installed +curl-7.79.1-3.fc36.x86_64 1635339368 723156 c98909900219adb47cacbe1a5427b1cc installed +binutils-gold-2.37-17.fc36.x86_64 1635337381 1976795 9f56451960fe82ae10853d43f441bb2b installed +binutils-2.37-17.fc36.x86_64 1635337381 34147850 0c2bb5fd702e85d0f28ef60b18895d43 installed +glibc-gconv-extra-2.34.9000-17.fc36.x86_64 1635968897 8225724 3eef23931d1f8d1aef47f1127f219094 installed +glibc-2.34.9000-17.fc36.x86_64 1635968897 6286667 e2e5cb78040a788ed8f39be5489cab07 installed +bash-5.1.8-3.fc36.x86_64 1636111791 7739722 3c238f6212cb3e61fdf240e713fbee46 installed +glibc-common-2.34.9000-17.fc36.x86_64 1635968897 1097530 a2854d609d655e576e8d9765f76bfab3 installed +glibc-minimal-langpack-2.34.9000-17.fc36.x86_64 1635968897 0 4d0c92c6f53d38106326689bbedff034 installed +gmp-1:6.2.1-1.fc36.x86_64 1635864434 818487 b8672b965eb91df7f27cb3eb8aa854e8 installed +python-srpm-macros-3.10-13.fc36.noarch 1635937773 42068 0cc788d3faa896f6e367b8193d190aa7 installed +bzip2-libs-1.0.8-10.fc36.x86_64 1635847593 78692 5e06fb139bdb55a6e35d7db6a9fd1f5d installed +pcre2-syntax-10.39-1.fc36.noarch 1636034078 229322 07c65426a24baf43c87a36401347c023 installed +pcre2-10.39-1.fc36.x86_64 1636034008 633258 e35b8e2e0f275380920669c31926bb0c installed +bzip2-1.0.8-10.fc36.x86_64 1635847593 94045 7ba905cef7f33c69731be413a734f4f3 installed +gawk-5.1.1-1.fc36.x86_64 1635772564 1708362 17f402fe974cae460327fda5caf594d9 installed +gdb-minimal-11.1-3.fc36.x86_64 1636053239 12679252 40aa6ab9f1d6a3a9155a35c08439cc17 installed +systemd-libs-249.6-2.fc36.x86_64 1636036536 1730520 4e084199b2e63215239fcc4e540ecb20 installed +libgpg-error-1.43-1.fc36.x86_64 1635950575 851221 7afd824890acf0cdd873ae3f47867ae2 installed +libtasn1-4.17.0-1.fc36.x86_64 1635979884 183476 efa04349b3218e4060e43f13152663a0 installed +shadow-utils-2:4.9-6.fc36.x86_64 1636026905 3837730 2de4aa577cce23624bfa49b5bfd2757b installed +python-setuptools-wheel-58.2.0-1.fc36.noarch 1634822197 594370 944df2c039d85f4bf6c8e09d035f1fd8 installed +python-pip-wheel-21.3.1-1.fc36.noarch 1635195808 1232567 48c923eccdb4bfa66aa035df74d783b2 installed +mpdecimal-2.5.1-2.fc35.x86_64 1626983795 246955 5a959017ea843dc9cd834137e17dcbc5 installed +expat-2.4.1-2.fc35.x86_64 1626909776 295041 1daae32a6bd9b6d68dce05f6cc47415a installed +python3-3.10.0-2.fc36.x86_64 1633437650 33130 8897a7af80ba3f03bda5903e505f397f installed +python3-libs-3.10.0-2.fc36.x86_64 1633437650 33057311 ac68de88ad7240a2db739101232cece6 installed +redhat-rpm-config-202-1.fc36.noarch 1636390968 176787 88a1c404363292de49a616ed4110827e installed +python3-six-1.16.0-4.fc35.noarch 1627032980 106857 2bd146213fd8694f7cc4659dbf43aa7d installed +python3-setuptools-58.2.0-1.fc36.noarch 1634822197 4769694 9279acabca6ba57cdbf7a90b0c7d4751 installed +python3-docutils-0.17.1-1.fc36.noarch 1632308035 4124041 e50eb22f8524ded673acc8dfca349cbd installed +python-rpm-macros-3.10-13.fc36.noarch 1635937773 13789 d4d1a05a2b2e10f2514c581ebd3a766b installed +fonts-filesystem-1:2.0.5-6.fc35.noarch 1626911835 0 450077d5fbbe5891c63e0fb894c30c5d installed +python3-rpm-macros-3.10-13.fc36.noarch 1635937773 5634 039bce2c403d1264ac880691d6666f59 installed +python3-webencodings-0.5.1-16.fc35.noarch 1627035533 74981 a1ed29ba1c6a8a2d195d01750b436a36 installed +python3-pygments-2.10.0-1.fc36.noarch 1629460960 8709593 08904c59f23da16a383bb6d7b5081701 installed +python3-jeepney-0.7.1-1.fc35.noarch 1627989571 1908243 44a825bafb749be33a3f3d88d4f969c1 installed +python3-idna-3.3-1.fc36.noarch 1634217913 498563 bed578d8447a294bbac66cda554d4464 installed +libquadmath-11.2.1-6.fc36.x86_64 1634659195 337788 b16d7d2dbe39799287388700698b4fbd installed +libgfortran-11.2.1-6.fc36.x86_64 1634659195 2822582 48bd242a7f8c846731d4f5a4216f3f84 installed +flexiblas-3.0.4-6.fc35.x86_64 1626911983 69843 544a73bb54cbc59cb2b74867c82d908b installed +python3-html5lib-1:1.1-6.fc35.noarch 1627023225 1220265 3dd0345a0d1c031ffcf06c518b1c54c8 installed +pyproject-rpm-macros-0-49.fc36.noarch 1635499017 73310 ed69833e99f4e98ea118059d170d0192 installed +fontawesome-fonts-1:4.7.0-12.fc35.noarch 1626911687 303691 9fac2c57b45b24143f285840160e3b5f installed +google-roboto-slab-fonts-1.100263-0.16.20150923git.fc35.noarch 1626943841 716009 9bb6333ef6d7bb70a28195f60a90c385 installed +lato-fonts-2.015-12.fc35.noarch 1626959688 11875329 e4a2197833f6742fa394327539b0cb07 installed +python3-pkginfo-1.7.1-2.fc35.noarch 1627028451 68941 47fc6079c23c44289d3c46ca3a913509 installed +python3-py-1.10.0-5.fc35.noarch 1627028982 2842768 b1bc52c052ea0713a59883c178a187e4 installed +python3-zipp-3.6.0-1.fc36.noarch 1633439632 24036 bf3e449ccb0620fff02ed2c770786ab3 installed +python3-importlib-metadata-4.8.1-1.fc36.noarch 1630316947 104653 cf397a1949bcf8a6fc45ff929f6de56d installed +python3-tqdm-4.62.3-1.fc36.noarch 1632259452 481990 7a736814cdc8e28e38f745615b6a4fc7 installed +python3-toml-0.10.2-5.fc35.noarch 1627374446 102372 f05c433c1cb7600141b8948ea4c93882 installed +python3-sphinxcontrib-serializinghtml-1.1.5-2.fc35.noarch 1627033637 60201 af591165961093ac97d71950a8288764 installed +python3-sphinxcontrib-qthelp-1.0.3-6.fc35.noarch 1627033622 57290 a085a3ee514d517a9122b5bfbf9bac91 installed +python3-sphinxcontrib-jsmath-1.0.1-13.fc35.noarch 1627033575 12192 e089f85b5c3d87b675f4252393b51f21 installed +python3-sphinxcontrib-htmlhelp-2.0.0-2.fc35.noarch 1627033475 74689 76b53cbe840f9b2d4c8cc611b65374a3 installed +python3-sphinxcontrib-devhelp-1.0.2-6.fc35.noarch 1627033494 46576 1cdb5947807f172033e0a71aa1883230 installed +python3-sphinxcontrib-applehelp-1.0.2-6.fc35.noarch 1627033500 62761 dfd9d1ac95a6f0ecb495723488e9653a installed +python3-sphinx-theme-alabaster-0.7.12-13.fc35.noarch 1627033319 38942 667a66c8bd17d0e04d06f6584a247233 installed +python3-snowballstemmer-1.9.0-10.fc35.noarch 1627033077 1171723 fbf5fc61cd01274922eb5374ac7c00e7 installed +python3-rfc3986-1.4.0-7.fc35.noarch 1627031969 176474 f8dae2434692450ac9a3089f20a43c3b installed +python3-pytz-2021.3-1.fc36.noarch 1633368815 175046 2c38cd542ebb569491be95e0d7a1bb56 installed +python3-babel-2.9.1-4.fc35.noarch 1626892098 28258522 fe9419e24684a89ddb6f0db706f6d513 installed +python3-pysocks-1.7.1-11.fc35.noarch 1627030415 87789 959306d8debf19cdb69e554bd372c886 installed +python3-urllib3-1.26.7-1.fc36.noarch 1632687280 728395 a7ffa0025616692bbb247744a9773b90 installed +python3-pyparsing-2.4.7-9.fc35.noarch 1627016952 647492 a028d078073a688bb8a587dd290ef018 installed +python3-packaging-21.2-1.fc36.noarch 1635851006 248300 3e2dd47b82de2817a05981d9070ab6db installed +python3-bleach-4.0.0-1.fc35.noarch 1628526364 152758 efd457181fc9818f3f774ce31143a106 installed +python3-readme-renderer-29.0-3.fc35.noarch 1627031635 47222 6c23181f37059b4fffa6823481a7f20a installed +python3-rpm-generators-12-10.fc36.noarch 1635755623 79386 366c8d38d30a7d57385cad3f62c4902a installed +python3-devel-3.10.0-2.fc36.x86_64 1633437650 797665 107cac81d907fb21201fdd1e42de532c installed +python3-ply-3.11-13.fc35.noarch 1627028727 439469 36a3fdde3894d090348ab1e5529f83e5 installed +python3-pycparser-2.20-5.fc35.noarch 1627374357 754238 6f0685b74b8dd9139a2667fdf61af52c installed +python3-cffi-1.15.0~rc2-1.fc36.x86_64 1633686925 1070248 821139963912d6788a44c7187258f325 installed +python3-cryptography-35.0.0-2.fc36.x86_64 1632988768 4326944 05ef5a5f3e757bbfc94a3d1433e07273 installed +python3-secretstorage-3.3.1-3.fc35.noarch 1627017261 92755 dfe4a07893cd494f98a9c526ddac0f64 installed +python3-keyring-21.8.0-4.fc35.noarch 1627024568 211535 505f569f67826af7aaa642d64d6b6e41 installed +python3-pluggy-1.0.0-1.fc36.noarch 1630053293 100225 6cab2dde649d4aed673c961c42027592 installed +python3-markupsafe-2.0.0-2.fc35.x86_64 1627025453 49376 ce47aee0c30c249e90daaa1cce364427 installed +python3-jinja2-3.0.1-2.fc35.noarch 1627023896 3077242 fb09f683c4bcea6cd0cea1cde2cd0687 installed +python3-iniconfig-1.1.1-5.fc35.noarch 1627023431 17825 90da9af37bea0b1c3dab8214a31ffeac installed +python3-imagesize-1.2.0-6.fc35.noarch 1627023355 22800 f4583c71f96be181eb6623d246d4991d installed +python3-colorama-0.4.4-4.fc35.noarch 1627019687 79049 33db62bc60bb0d857caca855976071dc installed +python3-charset-normalizer-2.0.7-1.fc36.noarch 1634217749 239094 cba6adf526b6834cea43ae9053f90a05 installed +python3-requests-2.26.0-1.fc35.noarch 1627551985 406713 a593e08c2e0363a6351cdeffa6160c8e installed +python3-requests-toolbelt-0.9.1-15.fc35.noarch 1627031830 284749 56adb0cefa3dc94bdeee173bcb123ae7 installed +python3-sphinx-1:4.2.0-1.fc36.noarch 1632309078 9233273 34ea53865724e873b39bc24956001c50 installed +python3-cached_property-1.5.2-4.fc35.noarch 1627018966 36772 cbbfe5a4131163ebd2060d8905d6c67d installed +python3-attrs-21.2.0-4.fc35.noarch 1627018429 307243 13de25805f5258ca0fba15e4ed698f1e installed +openssh-8.7p1-3.fc36.x86_64 1632915852 1958790 cf9e662acc8a646134bc2adef5ba8041 installed +openblas-0.3.18-1.fc36.x86_64 1633958143 76037 ef08497d7e41c63bf16348a2f3e4dc97 installed +openblas-openmp-0.3.18-1.fc36.x86_64 1633958143 40969364 3a209339070e582190b42a3cfe28b4ef installed +flexiblas-openblas-openmp-3.0.4-6.fc35.x86_64 1626911983 42797 f23d4a853391dae49792d6b2b43a7b69 installed +flexiblas-netlib-3.0.4-6.fc35.x86_64 1626911983 11543586 f6ffe8b87e11ff2c5026ea1e2f833025 installed +python3-numpy-1:1.21.1-1.fc35.x86_64 1628181641 27618483 1a4d5524ddc3406cf8541fd9840ff752 installed +python3-numpy-f2py-1:1.21.1-1.fc35.x86_64 1628181641 1029394 9b1ca332c5224e6cdbe2f76a70952c97 installed +libtool-ltdl-2.4.6-44.fc36.x86_64 1633336710 72560 5cc7d431d59cc056230828cc83eafdcb installed +liblzf-3.6-22.fc35.x86_64 1626966496 55270 82e7aee45fcc30bb32a0f09be01d3939 installed +libedit-3.1-40.20210910cvs.fc36.x86_64 1631547159 252781 3c3ef3549035c5397cc2ba00dad58405 installed +libcbor-0.7.0-4.fc35.x86_64 1626961119 99678 4382f5fc01f0042454afdb718f21f757 installed +libfido2-1.9.0-1.fc36.x86_64 1635429877 235912 ab7834fcee83e71f18ffacfd8ee30a0e installed +openssh-clients-8.7p1-3.fc36.x86_64 1632915852 2112707 c3369c9e3ee7dd1ccbc712f1c3a729dc installed +libaec-1.0.6-1.fc36.x86_64 1631895569 121595 9aaad52dd8ce7dc329d591427d3c0d5c installed +hdf5-1.10.7-2.fc36.x86_64 1630295129 7885428 ae4c269d4ab272f7a097c006bb8076ca installed +less-590-2.fc36.x86_64 1635160233 367032 f978822006efbc62e77df4adc688e1a9 installed +gc-8.0.6-1.fc36.x86_64 1635346211 238176 8b3202653b8fb3454de3c17abdbe811a installed +guile22-2.2.7-3.fc35.x86_64 1626946667 45858329 0eb36e9b52b76b73a2bc418a5c35c7e8 installed +make-1:4.3-6.fc35.x86_64 1626977336 1729022 43414cbe6954dc263444fa9f7daaf717 installed +git-core-2.33.1-1.fc36.x86_64 1634096128 17798113 ae9df038b39627dd0ec3340b44fa7c67 installed +python3-h5py-3.4.0-2.fc36.x86_64 1633269001 3614432 69416c9c765cd9d662262879edab2421 installed +python3-scipy-1.7.0-2.fc35.x86_64 1626682181 67687106 cacdb1e32b7d47be282664ec9a7a262c installed +python3-pytest-6.2.5-1.fc36.noarch 1631899835 12419548 c55f6d38626ea22d0653e8f1c093df50 installed +python3-sphinx_rtd_theme-1.0.0-1.fc36.noarch 1631634647 303745 a18b9976a2bba9a50d2fd5a7c70c6b02 installed +twine-3.4.2-1.fc35.noarch 1628075467 172917 363495ed7ea7d8d3458e950308c0dc22 installed +python3-xmltodict-0.12.0-13.fc35.noarch 1627035980 43429 e74ab4c6f96cd97008454038cd942b71 installed +python3-wheel-1:0.37.0-1.fc36.noarch 1629291722 214620 26ef322cbcab0043647fd947706925ff installed +python3-future-0.18.2-11.fc35.noarch 1626913443 3428204 b468efb2ab865b78fb103c99f31d598a installed diff --git a/results_python-pymatreader/0.0.25/1.fc36/python-pymatreader-0.0.25-1.fc36.src.rpm b/results_python-pymatreader/0.0.25/1.fc36/python-pymatreader-0.0.25-1.fc36.src.rpm new file mode 100644 index 0000000..c336b52 Binary files /dev/null and b/results_python-pymatreader/0.0.25/1.fc36/python-pymatreader-0.0.25-1.fc36.src.rpm differ diff --git a/results_python-pymatreader/0.0.25/1.fc36/python-pymatreader-doc-0.0.25-1.fc36.noarch.rpm b/results_python-pymatreader/0.0.25/1.fc36/python-pymatreader-doc-0.0.25-1.fc36.noarch.rpm new file mode 100644 index 0000000..e3bcecf Binary files /dev/null and b/results_python-pymatreader/0.0.25/1.fc36/python-pymatreader-doc-0.0.25-1.fc36.noarch.rpm differ diff --git a/results_python-pymatreader/0.0.25/1.fc36/python3-pymatreader-0.0.25-1.fc36.noarch.rpm b/results_python-pymatreader/0.0.25/1.fc36/python3-pymatreader-0.0.25-1.fc36.noarch.rpm new file mode 100644 index 0000000..0b33576 Binary files /dev/null and b/results_python-pymatreader/0.0.25/1.fc36/python3-pymatreader-0.0.25-1.fc36.noarch.rpm differ diff --git a/results_python-pymatreader/0.0.25/1.fc36/root.log b/results_python-pymatreader/0.0.25/1.fc36/root.log new file mode 100644 index 0000000..5af9ec3 --- /dev/null +++ b/results_python-pymatreader/0.0.25/1.fc36/root.log @@ -0,0 +1,1362 @@ +INFO buildroot.py:491: Mock Version: 2.12 +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/dev/pts +DEBUG file_util.py:20: creating dir: /var/lib/mock/fedora-rawhide-x86_64/root/dev/pts +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/dev/shm +DEBUG file_util.py:20: creating dir: /var/lib/mock/fedora-rawhide-x86_64/root/dev/shm +DEBUG buildroot.py:675: kernel version == 5.11.12-300.fc34.x86_64 +DEBUG file_util.py:30: touching file: /var/lib/mock/fedora-rawhide-x86_64/root/etc/fstab +DEBUG file_util.py:30: touching file: /var/lib/mock/fedora-rawhide-x86_64/root/etc/yum/yum.conf +DEBUG file_util.py:30: touching file: /var/lib/mock/fedora-rawhide-x86_64/root/etc/dnf/dnf.conf +DEBUG file_util.py:30: touching file: /var/lib/mock/fedora-rawhide-x86_64/root/var/log/yum.log +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/var/cache/yum +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-o', 'bind', '/var/cache/mock/fedora-rawhide-x86_64/yum_cache', '/var/lib/mock/fedora-rawhide-x86_64/root/var/cache/yum'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/var/cache/dnf +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-o', 'bind', '/var/cache/mock/fedora-rawhide-x86_64/dnf_cache', '/var/lib/mock/fedora-rawhide-x86_64/root/var/cache/dnf'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/proc +DEBUG file_util.py:30: touching file: /var/lib/mock/fedora-rawhide-x86_64/root/proc/filesystems +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-o', 'bind', '/tmp/mock-selinux-plugin.d8dagtbi', '/var/lib/mock/fedora-rawhide-x86_64/root/proc/filesystems'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64-bootstrap/root/var/lib/mock/fedora-rawhide-x86_64/root +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-t', 'tmpfs', '-o', 'private', 'tmpfs', '/var/lib/mock/fedora-rawhide-x86_64-bootstrap/root/var/lib/mock/fedora-rawhide-x86_64/root'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64-bootstrap/root/var/lib/mock/fedora-rawhide-x86_64/root +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-o', 'rbind', '/var/lib/mock/fedora-rawhide-x86_64/root', '/var/lib/mock/fedora-rawhide-x86_64-bootstrap/root/var/lib/mock/fedora-rawhide-x86_64/root'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-o', 'remount,private,rbind', '/var/lib/mock/fedora-rawhide-x86_64/root', '/var/lib/mock/fedora-rawhide-x86_64-bootstrap/root/var/lib/mock/fedora-rawhide-x86_64/root'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG buildroot.py:195: rootdir = /var/lib/mock/fedora-rawhide-x86_64/root +DEBUG buildroot.py:196: resultdir = /home/vanessa/Desktop/contributions/python-pymatreader/results_python-pymatreader/0.0.25/1.fc36 +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/etc/pki/mock +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/etc/dnf +DEBUG package_manager.py:570: configure DNF vars +DEBUG util.py:624: child environment: None +DEBUG util.py:536: Using nspawn with args None +DEBUG util.py:542: Executing command: ['/usr/bin/systemd-nspawn', '-q', '-M', 'b6968a24a8194d3aa8bb427dadac752d', '-D', '/var/lib/mock/fedora-rawhide-x86_64/root', '-a', '--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;\\007"', '--setenv=PS1= \\s-\\v\\$ ', '--setenv=LANG=C.UTF-8', '--resolv-conf=off', '/usr/sbin/userdel', '-r', '-f', 'mockbuild'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8', 'SYSTEMD_NSPAWN_TMPFS_TMP': '0'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:536: Using nspawn with args None +DEBUG util.py:542: Executing command: ['/usr/bin/systemd-nspawn', '-q', '-M', '1070da07c059428eae72a566f44b2863', '-D', '/var/lib/mock/fedora-rawhide-x86_64/root', '-a', '--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;\\007"', '--setenv=PS1= \\s-\\v\\$ ', '--setenv=LANG=C.UTF-8', '--resolv-conf=off', '/usr/sbin/groupdel', 'mock'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8', 'SYSTEMD_NSPAWN_TMPFS_TMP': '0'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:536: Using nspawn with args None +DEBUG util.py:542: Executing command: ['/usr/bin/systemd-nspawn', '-q', '-M', '68fd922c335e40eaa08d06aff10f064c', '-D', '/var/lib/mock/fedora-rawhide-x86_64/root', '-a', '--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;\\007"', '--setenv=PS1= \\s-\\v\\$ ', '--setenv=LANG=C.UTF-8', '--resolv-conf=off', '/usr/sbin/groupadd', '-g', '135', 'mock'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8', 'SYSTEMD_NSPAWN_TMPFS_TMP': '0'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:536: Using nspawn with args None +DEBUG util.py:542: Executing command: ['/usr/bin/systemd-nspawn', '-q', '-M', '4d1a97b2b69347e6b206c6e44f969207', '-D', '/var/lib/mock/fedora-rawhide-x86_64/root', '-a', '--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;\\007"', '--setenv=PS1= \\s-\\v\\$ ', '--setenv=LANG=C.UTF-8', '--resolv-conf=off', '/usr/sbin/useradd', '-o', '-m', '-u', '1000', '-g', '135', '-d', '/builddir', '-n', 'mockbuild'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8', 'SYSTEMD_NSPAWN_TMPFS_TMP': '0'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build +DEBUG file_util.py:20: creating dir: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/RPMS +DEBUG file_util.py:20: creating dir: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/RPMS +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/SPECS +DEBUG file_util.py:20: creating dir: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/SPECS +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/SRPMS +DEBUG file_util.py:20: creating dir: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/SRPMS +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/SOURCES +DEBUG file_util.py:20: creating dir: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/SOURCES +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/BUILD +DEBUG file_util.py:20: creating dir: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/BUILD +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/BUILDROOT +DEBUG file_util.py:20: creating dir: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/BUILDROOT +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/originals +DEBUG file_util.py:20: creating dir: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/originals +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/builddir +DEBUG util.py:624: child environment: None +DEBUG util.py:536: Using nspawn with args None +DEBUG util.py:542: Executing command: ['/usr/bin/systemd-nspawn', '-q', '-M', 'a67404001527476b82dcc2343429d6aa', '-D', '/var/lib/mock/fedora-rawhide-x86_64-bootstrap/root', '-a', '--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;\\007"', '--setenv=PS1= \\s-\\v\\$ ', '--setenv=LANG=C.UTF-8', '--resolv-conf=off', '/bin/rpm', '-qa', '--root', '/var/lib/mock/fedora-rawhide-x86_64/root'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8', 'SYSTEMD_NSPAWN_TMPFS_TMP': '0'} and shell False +DEBUG util.py:446: gpg-pubkey-38ab71f4-60242b08 +DEBUG util.py:446: gpg-pubkey-9867c58f-601c49ca +DEBUG util.py:446: libgcc-11.2.1-6.fc36.x86_64 +DEBUG util.py:446: crypto-policies-20210917-1.gitc9d86d1.fc36.noarch +DEBUG util.py:446: fedora-release-identity-basic-36-0.7.noarch +DEBUG util.py:446: tzdata-2021a-2.fc35.noarch +DEBUG util.py:446: rust-srpm-macros-18-2.fc35.noarch +DEBUG util.py:446: qt5-srpm-macros-5.15.2-3.fc35.noarch +DEBUG util.py:446: publicsuffix-list-dafsa-20210518-2.fc35.noarch +DEBUG util.py:446: pkgconf-m4-1.8.0-1.fc35.noarch +DEBUG util.py:446: perl-srpm-macros-1-42.fc35.noarch +DEBUG util.py:446: openblas-srpm-macros-2-10.fc35.noarch +DEBUG util.py:446: ocaml-srpm-macros-6-5.fc35.noarch +DEBUG util.py:446: nim-srpm-macros-3-5.fc35.noarch +DEBUG util.py:446: ncurses-base-6.2-8.20210508.fc35.noarch +DEBUG util.py:446: libssh-config-0.9.6-1.fc36.noarch +DEBUG util.py:446: kernel-srpm-macros-1.0-6.fc35.noarch +DEBUG util.py:446: gnat-srpm-macros-4-14.fc35.noarch +DEBUG util.py:446: ghc-srpm-macros-1.5.0-5.fc35.noarch +DEBUG util.py:446: fpc-srpm-macros-1.3-4.fc35.noarch +DEBUG util.py:446: fedora-gpg-keys-36-0.3.noarch +DEBUG util.py:446: fedora-release-36-0.7.noarch +DEBUG util.py:446: fedora-release-common-36-0.7.noarch +DEBUG util.py:446: fedora-repos-rawhide-36-0.3.noarch +DEBUG util.py:446: fedora-repos-36-0.3.noarch +DEBUG util.py:446: setup-2.13.9.1-2.fc35.noarch +DEBUG util.py:446: filesystem-3.16-1.fc36.x86_64 +DEBUG util.py:446: basesystem-11-12.fc35.noarch +DEBUG util.py:446: ncurses-libs-6.2-8.20210508.fc35.x86_64 +DEBUG util.py:446: zlib-1.2.11-30.fc35.x86_64 +DEBUG util.py:446: xz-libs-5.2.5-7.fc35.x86_64 +DEBUG util.py:446: elfutils-libelf-0.185-5.fc35.x86_64 +DEBUG util.py:446: libstdc++-11.2.1-6.fc36.x86_64 +DEBUG util.py:446: libuuid-2.37.2-1.fc36.x86_64 +DEBUG util.py:446: libzstd-1.5.0-2.fc35.x86_64 +DEBUG util.py:446: libattr-2.5.1-3.fc35.x86_64 +DEBUG util.py:446: libacl-2.3.1-2.fc35.x86_64 +DEBUG util.py:446: libcap-2.48-3.fc35.x86_64 +DEBUG util.py:446: libcom_err-1.46.4-1.fc36.x86_64 +DEBUG util.py:446: libxcrypt-4.4.26-4.fc36.x86_64 +DEBUG util.py:446: popt-1.18-6.fc36.x86_64 +DEBUG util.py:446: readline-8.1-3.fc35.x86_64 +DEBUG util.py:446: mpfr-4.1.0-8.fc35.x86_64 +DEBUG util.py:446: dwz-0.14-2.fc35.x86_64 +DEBUG util.py:446: unzip-6.0-53.fc35.x86_64 +DEBUG util.py:446: file-libs-5.41-1.fc36.x86_64 +DEBUG util.py:446: file-5.41-1.fc36.x86_64 +DEBUG util.py:446: openssl1.1-1.1.1l-1.fc36.x86_64 +DEBUG util.py:446: sqlite-libs-3.36.0-4.fc36.x86_64 +DEBUG util.py:446: alternatives-1.19-1.fc35.x86_64 +DEBUG util.py:446: libcap-ng-0.8.2-7.fc36.x86_64 +DEBUG util.py:446: audit-libs-3.0.6-1.fc36.x86_64 +DEBUG util.py:446: libsmartcols-2.37.2-1.fc36.x86_64 +DEBUG util.py:446: libunistring-0.9.10-14.fc35.x86_64 +DEBUG util.py:446: libidn2-2.3.2-3.fc36.x86_64 +DEBUG util.py:446: lua-libs-5.4.3-2.fc35.x86_64 +DEBUG util.py:446: lz4-libs-1.9.3-3.fc35.x86_64 +DEBUG util.py:446: libpsl-0.21.1-4.fc35.x86_64 +DEBUG util.py:446: zip-3.0-31.fc35.x86_64 +DEBUG util.py:446: zstd-1.5.0-2.fc35.x86_64 +DEBUG util.py:446: libxml2-2.9.12-6.fc35.x86_64 +DEBUG util.py:446: libarchive-3.5.2-2.fc36.x86_64 +DEBUG util.py:446: elfutils-default-yama-scope-0.185-5.fc35.noarch +DEBUG util.py:446: info-6.8-2.fc35.x86_64 +DEBUG util.py:446: ed-1.14.2-11.fc35.x86_64 +DEBUG util.py:446: cpio-2.13-11.fc36.x86_64 +DEBUG util.py:446: diffutils-3.8-1.fc35.x86_64 +DEBUG util.py:446: gdbm-libs-1.22-1.fc36.x86_64 +DEBUG util.py:446: keyutils-libs-1.6.1-3.fc35.x86_64 +DEBUG util.py:446: libbrotli-1.0.9-6.fc35.x86_64 +DEBUG util.py:446: libdb-5.3.28-50.fc36.x86_64 +DEBUG util.py:446: libeconf-0.4.0-2.fc35.x86_64 +DEBUG util.py:446: libffi-3.1-28.fc34.x86_64 +DEBUG util.py:446: p11-kit-0.23.22-4.fc35.x86_64 +DEBUG util.py:446: libgomp-11.2.1-6.fc36.x86_64 +DEBUG util.py:446: libgcrypt-1.9.4-1.fc36.x86_64 +DEBUG util.py:446: libnghttp2-1.46.0-1.fc36.x86_64 +DEBUG util.py:446: libpkgconf-1.8.0-1.fc35.x86_64 +DEBUG util.py:446: pkgconf-1.8.0-1.fc35.x86_64 +DEBUG util.py:446: pkgconf-pkg-config-1.8.0-1.fc35.x86_64 +DEBUG util.py:446: libsigsegv-2.13-3.fc35.x86_64 +DEBUG util.py:446: p11-kit-trust-0.23.22-4.fc35.x86_64 +DEBUG util.py:446: libverto-0.3.2-2.fc35.x86_64 +DEBUG util.py:446: pcre-8.45-1.fc36.x86_64 +DEBUG util.py:446: grep-3.7-1.fc36.x86_64 +DEBUG util.py:446: xz-5.2.5-7.fc35.x86_64 +DEBUG util.py:446: sed-4.8-8.fc35.x86_64 +DEBUG util.py:446: findutils-4.8.0-4.fc35.x86_64 +DEBUG util.py:446: libutempter-1.2.1-5.fc35.x86_64 +DEBUG util.py:446: patch-2.7.6-15.fc35.x86_64 +DEBUG util.py:446: tar-1.34-2.fc35.x86_64 +DEBUG util.py:446: xxhash-libs-0.8.0-4.fc35.x86_64 +DEBUG util.py:446: coreutils-common-9.0-2.fc36.x86_64 +DEBUG util.py:446: openssl-libs-3.0.0-1.fc36.x86_64 +DEBUG util.py:446: coreutils-9.0-2.fc36.x86_64 +DEBUG util.py:446: ca-certificates-2021.2.50-3.fc35.noarch +DEBUG util.py:446: krb5-libs-1.19.2-3.fc36.x86_64 +DEBUG util.py:446: libblkid-2.37.2-1.fc36.x86_64 +DEBUG util.py:446: libmount-2.37.2-1.fc36.x86_64 +DEBUG util.py:446: libtirpc-1.3.2-1.rc1.fc36.x86_64 +DEBUG util.py:446: util-linux-core-2.37.2-1.fc36.x86_64 +DEBUG util.py:446: cracklib-2.9.6-27.fc36.x86_64 +DEBUG util.py:446: libnsl2-1.3.0-4.fc35.x86_64 +DEBUG util.py:446: libpwquality-1.4.4-6.fc36.x86_64 +DEBUG util.py:446: pam-1.5.2-6.fc36.x86_64 +DEBUG util.py:446: libfdisk-2.37.2-1.fc36.x86_64 +DEBUG util.py:446: cyrus-sasl-lib-2.1.27-16.fc36.x86_64 +DEBUG util.py:446: openldap-2.4.59-4.fc36.x86_64 +DEBUG util.py:446: libssh-0.9.6-1.fc36.x86_64 +DEBUG util.py:446: elfutils-libs-0.185-5.fc35.x86_64 +DEBUG util.py:446: elfutils-debuginfod-client-0.185-5.fc35.x86_64 +DEBUG util.py:446: elfutils-0.185-5.fc35.x86_64 +DEBUG util.py:446: debugedit-5.0-2.fc35.x86_64 +DEBUG util.py:446: rpm-4.17.0-1.fc36.1.x86_64 +DEBUG util.py:446: rpm-libs-4.17.0-1.fc36.1.x86_64 +DEBUG util.py:446: rpm-build-libs-4.17.0-1.fc36.1.x86_64 +DEBUG util.py:446: efi-srpm-macros-5-4.fc36.noarch +DEBUG util.py:446: lua-srpm-macros-1-5.fc35.noarch +DEBUG util.py:446: rpmautospec-rpm-macros-0.2.5-1.fc35.noarch +DEBUG util.py:446: fonts-srpm-macros-2.0.5-6.fc35.noarch +DEBUG util.py:446: go-srpm-macros-3.0.11-2.fc35.noarch +DEBUG util.py:446: rpm-build-4.17.0-1.fc36.1.x86_64 +DEBUG util.py:446: util-linux-2.37.2-1.fc36.x86_64 +DEBUG util.py:446: libsepol-3.3-1.fc36.x86_64 +DEBUG util.py:446: libselinux-3.3-1.fc36.x86_64 +DEBUG util.py:446: libsemanage-3.3-1.fc36.x86_64 +DEBUG util.py:446: gzip-1.11-1.fc36.x86_64 +DEBUG util.py:446: which-2.21-30.fc36.x86_64 +DEBUG util.py:446: libcurl-7.79.1-3.fc36.x86_64 +DEBUG util.py:446: curl-7.79.1-3.fc36.x86_64 +DEBUG util.py:446: binutils-gold-2.37-17.fc36.x86_64 +DEBUG util.py:446: binutils-2.37-17.fc36.x86_64 +DEBUG util.py:446: glibc-gconv-extra-2.34.9000-17.fc36.x86_64 +DEBUG util.py:446: glibc-2.34.9000-17.fc36.x86_64 +DEBUG util.py:446: bash-5.1.8-3.fc36.x86_64 +DEBUG util.py:446: glibc-common-2.34.9000-17.fc36.x86_64 +DEBUG util.py:446: glibc-minimal-langpack-2.34.9000-17.fc36.x86_64 +DEBUG util.py:446: gmp-6.2.1-1.fc36.x86_64 +DEBUG util.py:446: python-srpm-macros-3.10-13.fc36.noarch +DEBUG util.py:446: redhat-rpm-config-201-1.fc36.noarch +DEBUG util.py:446: bzip2-libs-1.0.8-10.fc36.x86_64 +DEBUG util.py:446: pcre2-syntax-10.39-1.fc36.noarch +DEBUG util.py:446: pcre2-10.39-1.fc36.x86_64 +DEBUG util.py:446: bzip2-1.0.8-10.fc36.x86_64 +DEBUG util.py:446: gawk-5.1.1-1.fc36.x86_64 +DEBUG util.py:446: gdb-minimal-11.1-3.fc36.x86_64 +DEBUG util.py:446: systemd-libs-249.6-2.fc36.x86_64 +DEBUG util.py:446: libgpg-error-1.43-1.fc36.x86_64 +DEBUG util.py:446: libtasn1-4.17.0-1.fc36.x86_64 +DEBUG util.py:446: shadow-utils-4.9-6.fc36.x86_64 +DEBUG util.py:598: Child return code was: 0 +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/proc +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-t', 'tmpfs', '-o', 'rprivate', 'tmpfs', '/var/lib/mock/fedora-rawhide-x86_64/root/proc'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/proc +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-o', 'rbind', '/proc', '/var/lib/mock/fedora-rawhide-x86_64/root/proc'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-o', 'remount,nodev,noexec,nosuid,readonly,rprivate,rbind', '/proc', '/var/lib/mock/fedora-rawhide-x86_64/root/proc'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/sys +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-t', 'tmpfs', '-o', 'rprivate', 'tmpfs', '/var/lib/mock/fedora-rawhide-x86_64/root/sys'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/sys +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-o', 'rbind', '/sys', '/var/lib/mock/fedora-rawhide-x86_64/root/sys'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-o', 'remount,nodev,noexec,nosuid,readonly,rprivate,rbind', '/sys', '/var/lib/mock/fedora-rawhide-x86_64/root/sys'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/dev/shm +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-t', 'tmpfs', 'tmpfs', '/var/lib/mock/fedora-rawhide-x86_64/root/dev/shm'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/dev/pts +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-t', 'devpts', '-o', 'gid=5,mode=0620,ptmxmode=0666,newinstance', 'devpts', '/var/lib/mock/fedora-rawhide-x86_64/root/dev/pts'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/sys/fs/selinux +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-t', 'tmpfs', 'tmpfs', '/var/lib/mock/fedora-rawhide-x86_64/root/sys/fs/selinux'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/installation-homedir +DEBUG package_manager.py:197: ['/usr/bin/dnf', '--installroot', '/var/lib/mock/fedora-rawhide-x86_64/root/', '-y', '--releasever', '36', '--setopt=deltarpm=False', '--allowerasing', '--disableplugin=local', '--disableplugin=spacewalk', '--disableplugin=versionlock', 'update'] +DEBUG util.py:624: child environment: None +DEBUG util.py:536: Using nspawn with args ['--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.nt08myua:/etc/resolv.conf'] +DEBUG util.py:542: Executing command: ['/usr/bin/systemd-nspawn', '-q', '-M', 'd6501f81a2f244a39809967cedc16ab1', '-D', '/var/lib/mock/fedora-rawhide-x86_64-bootstrap/root', '-a', '--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.nt08myua:/etc/resolv.conf', '--console=pipe', '--setenv=TERM=vt100', '--setenv=SHELL=/bin/bash', '--setenv=HOME=/var/lib/mock/fedora-rawhide-x86_64/root/installation-homedir', '--setenv=HOSTNAME=mock', '--setenv=PATH=/usr/bin:/bin:/usr/sbin:/sbin', '--setenv=PROMPT_COMMAND=printf "\\033]0;\\007"', '--setenv=PS1= \\s-\\v\\$ ', '--setenv=LANG=C.UTF-8', '--setenv=LC_MESSAGES=C.UTF-8', '--resolv-conf=off', '/usr/bin/dnf', '--installroot', '/var/lib/mock/fedora-rawhide-x86_64/root/', '-y', '--releasever', '36', '--setopt=deltarpm=False', '--allowerasing', '--disableplugin=local', '--disableplugin=spacewalk', '--disableplugin=versionlock', 'update', '--setopt=tsflags=nocontexts'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/var/lib/mock/fedora-rawhide-x86_64/root/installation-homedir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8', 'LC_MESSAGES': 'C.UTF-8', 'SYSTEMD_NSPAWN_TMPFS_TMP': '0'} and shell False +DEBUG util.py:444: No matches found for the following disable plugin patterns: local, spacewalk, versionlock +DEBUG util.py:446: fedora 14 kB/s | 26 kB 00:01 +DEBUG util.py:446: fedora 364 kB/s | 3.5 MB 00:09 +DEBUG util.py:446: Last metadata expiration check: 0:00:50 ago on Wed Nov 10 07:47:29 2021. +DEBUG util.py:446: Dependencies resolved. +DEBUG util.py:446: =================================================================================== +DEBUG util.py:446: Package Architecture Version Repository Size +DEBUG util.py:446: =================================================================================== +DEBUG util.py:446: Upgrading: +DEBUG util.py:446: redhat-rpm-config noarch 202-1.fc36 fedora 66 k +DEBUG util.py:446: Installing dependencies: +DEBUG util.py:446: expat x86_64 2.4.1-2.fc35 fedora 110 k +DEBUG util.py:446: mpdecimal x86_64 2.5.1-2.fc35 fedora 99 k +DEBUG util.py:446: python-pip-wheel noarch 21.3.1-1.fc36 fedora 1.1 M +DEBUG util.py:446: python-setuptools-wheel noarch 58.2.0-1.fc36 fedora 502 k +DEBUG util.py:446: python3 x86_64 3.10.0-2.fc36 fedora 26 k +DEBUG util.py:446: python3-libs x86_64 3.10.0-2.fc36 fedora 7.5 M +DEBUG util.py:446: Transaction Summary +DEBUG util.py:446: =================================================================================== +DEBUG util.py:446: Install 6 Packages +DEBUG util.py:446: Upgrade 1 Package +DEBUG util.py:446: Total size: 9.4 M +DEBUG util.py:446: Total download size: 66 k +DEBUG util.py:446: Downloading Packages: +DEBUG util.py:446: [SKIPPED] expat-2.4.1-2.fc35.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] mpdecimal-2.5.1-2.fc35.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python-pip-wheel-21.3.1-1.fc36.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python-setuptools-wheel-58.2.0-1.fc36.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-3.10.0-2.fc36.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-libs-3.10.0-2.fc36.x86_64.rpm: Already downloaded +DEBUG util.py:446: (7/7): redhat-rpm-config-202-1.fc36.noarch.rpm 35 kB/s | 66 kB 00:01 +DEBUG util.py:446: ----------------------------------------------------------------------------------- +DEBUG util.py:446: Total 19 kB/s | 66 kB 00:03 +DEBUG util.py:446: Running transaction check +DEBUG util.py:446: Transaction check succeeded. +DEBUG util.py:446: Running transaction test +DEBUG util.py:446: Transaction test succeeded. +DEBUG util.py:446: Running transaction +DEBUG util.py:446: Preparing : 1/1 +DEBUG util.py:446: Installing : python-setuptools-wheel-58.2.0-1.fc36.noarch 1/8 +DEBUG util.py:446: Installing : python-pip-wheel-21.3.1-1.fc36.noarch 2/8 +DEBUG util.py:446: Installing : mpdecimal-2.5.1-2.fc35.x86_64 3/8 +DEBUG util.py:446: Installing : expat-2.4.1-2.fc35.x86_64 4/8 +DEBUG util.py:446: Installing : python3-3.10.0-2.fc36.x86_64 5/8 +DEBUG util.py:446: Installing : python3-libs-3.10.0-2.fc36.x86_64 6/8 +DEBUG util.py:446: Upgrading : redhat-rpm-config-202-1.fc36.noarch 7/8 +DEBUG util.py:446: Cleanup : redhat-rpm-config-201-1.fc36.noarch 8/8 +DEBUG util.py:446: Running scriptlet: redhat-rpm-config-201-1.fc36.noarch 8/8 +DEBUG util.py:446: Verifying : expat-2.4.1-2.fc35.x86_64 1/8 +DEBUG util.py:446: Verifying : mpdecimal-2.5.1-2.fc35.x86_64 2/8 +DEBUG util.py:446: Verifying : python-pip-wheel-21.3.1-1.fc36.noarch 3/8 +DEBUG util.py:446: Verifying : python-setuptools-wheel-58.2.0-1.fc36.noarch 4/8 +DEBUG util.py:446: Verifying : python3-3.10.0-2.fc36.x86_64 5/8 +DEBUG util.py:446: Verifying : python3-libs-3.10.0-2.fc36.x86_64 6/8 +DEBUG util.py:446: Verifying : redhat-rpm-config-202-1.fc36.noarch 7/8 +DEBUG util.py:446: Verifying : redhat-rpm-config-201-1.fc36.noarch 8/8 +DEBUG util.py:446: Upgraded: +DEBUG util.py:446: redhat-rpm-config-202-1.fc36.noarch +DEBUG util.py:446: Installed: +DEBUG util.py:446: expat-2.4.1-2.fc35.x86_64 +DEBUG util.py:446: mpdecimal-2.5.1-2.fc35.x86_64 +DEBUG util.py:446: python-pip-wheel-21.3.1-1.fc36.noarch +DEBUG util.py:446: python-setuptools-wheel-58.2.0-1.fc36.noarch +DEBUG util.py:446: python3-3.10.0-2.fc36.x86_64 +DEBUG util.py:446: python3-libs-3.10.0-2.fc36.x86_64 +DEBUG util.py:446: Complete! +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/sys/fs/selinux'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/dev/pts'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/dev/shm'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/sys'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/sys'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/proc'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/proc'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:169: kill orphans +DEBUG util.py:624: child environment: None +DEBUG util.py:536: Using nspawn with args None +DEBUG util.py:542: Executing command: ['/usr/bin/systemd-nspawn', '-q', '-M', '2157b9506d694f0eafd9a879bba7c7ba', '-D', '/var/lib/mock/fedora-rawhide-x86_64-bootstrap/root', '-a', '--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;\\007"', '--setenv=PS1= \\s-\\v\\$ ', '--setenv=LANG=C.UTF-8', '--resolv-conf=off', '/bin/rpm', '-qa', '--root', '/var/lib/mock/fedora-rawhide-x86_64/root'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8', 'SYSTEMD_NSPAWN_TMPFS_TMP': '0'} and shell False +DEBUG util.py:446: gpg-pubkey-38ab71f4-60242b08 +DEBUG util.py:446: gpg-pubkey-9867c58f-601c49ca +DEBUG util.py:446: libgcc-11.2.1-6.fc36.x86_64 +DEBUG util.py:446: crypto-policies-20210917-1.gitc9d86d1.fc36.noarch +DEBUG util.py:446: fedora-release-identity-basic-36-0.7.noarch +DEBUG util.py:446: tzdata-2021a-2.fc35.noarch +DEBUG util.py:446: rust-srpm-macros-18-2.fc35.noarch +DEBUG util.py:446: qt5-srpm-macros-5.15.2-3.fc35.noarch +DEBUG util.py:446: publicsuffix-list-dafsa-20210518-2.fc35.noarch +DEBUG util.py:446: pkgconf-m4-1.8.0-1.fc35.noarch +DEBUG util.py:446: perl-srpm-macros-1-42.fc35.noarch +DEBUG util.py:446: openblas-srpm-macros-2-10.fc35.noarch +DEBUG util.py:446: ocaml-srpm-macros-6-5.fc35.noarch +DEBUG util.py:446: nim-srpm-macros-3-5.fc35.noarch +DEBUG util.py:446: ncurses-base-6.2-8.20210508.fc35.noarch +DEBUG util.py:446: libssh-config-0.9.6-1.fc36.noarch +DEBUG util.py:446: kernel-srpm-macros-1.0-6.fc35.noarch +DEBUG util.py:446: gnat-srpm-macros-4-14.fc35.noarch +DEBUG util.py:446: ghc-srpm-macros-1.5.0-5.fc35.noarch +DEBUG util.py:446: fpc-srpm-macros-1.3-4.fc35.noarch +DEBUG util.py:446: fedora-gpg-keys-36-0.3.noarch +DEBUG util.py:446: fedora-release-36-0.7.noarch +DEBUG util.py:446: fedora-release-common-36-0.7.noarch +DEBUG util.py:446: fedora-repos-rawhide-36-0.3.noarch +DEBUG util.py:446: fedora-repos-36-0.3.noarch +DEBUG util.py:446: setup-2.13.9.1-2.fc35.noarch +DEBUG util.py:446: filesystem-3.16-1.fc36.x86_64 +DEBUG util.py:446: basesystem-11-12.fc35.noarch +DEBUG util.py:446: ncurses-libs-6.2-8.20210508.fc35.x86_64 +DEBUG util.py:446: zlib-1.2.11-30.fc35.x86_64 +DEBUG util.py:446: xz-libs-5.2.5-7.fc35.x86_64 +DEBUG util.py:446: elfutils-libelf-0.185-5.fc35.x86_64 +DEBUG util.py:446: libstdc++-11.2.1-6.fc36.x86_64 +DEBUG util.py:446: libuuid-2.37.2-1.fc36.x86_64 +DEBUG util.py:446: libzstd-1.5.0-2.fc35.x86_64 +DEBUG util.py:446: libattr-2.5.1-3.fc35.x86_64 +DEBUG util.py:446: libacl-2.3.1-2.fc35.x86_64 +DEBUG util.py:446: libcap-2.48-3.fc35.x86_64 +DEBUG util.py:446: libcom_err-1.46.4-1.fc36.x86_64 +DEBUG util.py:446: libxcrypt-4.4.26-4.fc36.x86_64 +DEBUG util.py:446: popt-1.18-6.fc36.x86_64 +DEBUG util.py:446: readline-8.1-3.fc35.x86_64 +DEBUG util.py:446: mpfr-4.1.0-8.fc35.x86_64 +DEBUG util.py:446: dwz-0.14-2.fc35.x86_64 +DEBUG util.py:446: unzip-6.0-53.fc35.x86_64 +DEBUG util.py:446: file-libs-5.41-1.fc36.x86_64 +DEBUG util.py:446: file-5.41-1.fc36.x86_64 +DEBUG util.py:446: openssl1.1-1.1.1l-1.fc36.x86_64 +DEBUG util.py:446: sqlite-libs-3.36.0-4.fc36.x86_64 +DEBUG util.py:446: alternatives-1.19-1.fc35.x86_64 +DEBUG util.py:446: libcap-ng-0.8.2-7.fc36.x86_64 +DEBUG util.py:446: audit-libs-3.0.6-1.fc36.x86_64 +DEBUG util.py:446: libsmartcols-2.37.2-1.fc36.x86_64 +DEBUG util.py:446: libunistring-0.9.10-14.fc35.x86_64 +DEBUG util.py:446: libidn2-2.3.2-3.fc36.x86_64 +DEBUG util.py:446: lua-libs-5.4.3-2.fc35.x86_64 +DEBUG util.py:446: lz4-libs-1.9.3-3.fc35.x86_64 +DEBUG util.py:446: libpsl-0.21.1-4.fc35.x86_64 +DEBUG util.py:446: zip-3.0-31.fc35.x86_64 +DEBUG util.py:446: zstd-1.5.0-2.fc35.x86_64 +DEBUG util.py:446: libxml2-2.9.12-6.fc35.x86_64 +DEBUG util.py:446: libarchive-3.5.2-2.fc36.x86_64 +DEBUG util.py:446: elfutils-default-yama-scope-0.185-5.fc35.noarch +DEBUG util.py:446: info-6.8-2.fc35.x86_64 +DEBUG util.py:446: ed-1.14.2-11.fc35.x86_64 +DEBUG util.py:446: cpio-2.13-11.fc36.x86_64 +DEBUG util.py:446: diffutils-3.8-1.fc35.x86_64 +DEBUG util.py:446: gdbm-libs-1.22-1.fc36.x86_64 +DEBUG util.py:446: keyutils-libs-1.6.1-3.fc35.x86_64 +DEBUG util.py:446: libbrotli-1.0.9-6.fc35.x86_64 +DEBUG util.py:446: libdb-5.3.28-50.fc36.x86_64 +DEBUG util.py:446: libeconf-0.4.0-2.fc35.x86_64 +DEBUG util.py:446: libffi-3.1-28.fc34.x86_64 +DEBUG util.py:446: p11-kit-0.23.22-4.fc35.x86_64 +DEBUG util.py:446: libgomp-11.2.1-6.fc36.x86_64 +DEBUG util.py:446: libgcrypt-1.9.4-1.fc36.x86_64 +DEBUG util.py:446: libnghttp2-1.46.0-1.fc36.x86_64 +DEBUG util.py:446: libpkgconf-1.8.0-1.fc35.x86_64 +DEBUG util.py:446: pkgconf-1.8.0-1.fc35.x86_64 +DEBUG util.py:446: pkgconf-pkg-config-1.8.0-1.fc35.x86_64 +DEBUG util.py:446: libsigsegv-2.13-3.fc35.x86_64 +DEBUG util.py:446: p11-kit-trust-0.23.22-4.fc35.x86_64 +DEBUG util.py:446: libverto-0.3.2-2.fc35.x86_64 +DEBUG util.py:446: pcre-8.45-1.fc36.x86_64 +DEBUG util.py:446: grep-3.7-1.fc36.x86_64 +DEBUG util.py:446: xz-5.2.5-7.fc35.x86_64 +DEBUG util.py:446: sed-4.8-8.fc35.x86_64 +DEBUG util.py:446: findutils-4.8.0-4.fc35.x86_64 +DEBUG util.py:446: libutempter-1.2.1-5.fc35.x86_64 +DEBUG util.py:446: patch-2.7.6-15.fc35.x86_64 +DEBUG util.py:446: tar-1.34-2.fc35.x86_64 +DEBUG util.py:446: xxhash-libs-0.8.0-4.fc35.x86_64 +DEBUG util.py:446: coreutils-common-9.0-2.fc36.x86_64 +DEBUG util.py:446: openssl-libs-3.0.0-1.fc36.x86_64 +DEBUG util.py:446: coreutils-9.0-2.fc36.x86_64 +DEBUG util.py:446: ca-certificates-2021.2.50-3.fc35.noarch +DEBUG util.py:446: krb5-libs-1.19.2-3.fc36.x86_64 +DEBUG util.py:446: libblkid-2.37.2-1.fc36.x86_64 +DEBUG util.py:446: libmount-2.37.2-1.fc36.x86_64 +DEBUG util.py:446: libtirpc-1.3.2-1.rc1.fc36.x86_64 +DEBUG util.py:446: util-linux-core-2.37.2-1.fc36.x86_64 +DEBUG util.py:446: cracklib-2.9.6-27.fc36.x86_64 +DEBUG util.py:446: libnsl2-1.3.0-4.fc35.x86_64 +DEBUG util.py:446: libpwquality-1.4.4-6.fc36.x86_64 +DEBUG util.py:446: pam-1.5.2-6.fc36.x86_64 +DEBUG util.py:446: libfdisk-2.37.2-1.fc36.x86_64 +DEBUG util.py:446: cyrus-sasl-lib-2.1.27-16.fc36.x86_64 +DEBUG util.py:446: openldap-2.4.59-4.fc36.x86_64 +DEBUG util.py:446: libssh-0.9.6-1.fc36.x86_64 +DEBUG util.py:446: elfutils-libs-0.185-5.fc35.x86_64 +DEBUG util.py:446: elfutils-debuginfod-client-0.185-5.fc35.x86_64 +DEBUG util.py:446: elfutils-0.185-5.fc35.x86_64 +DEBUG util.py:446: debugedit-5.0-2.fc35.x86_64 +DEBUG util.py:446: rpm-4.17.0-1.fc36.1.x86_64 +DEBUG util.py:446: rpm-libs-4.17.0-1.fc36.1.x86_64 +DEBUG util.py:446: rpm-build-libs-4.17.0-1.fc36.1.x86_64 +DEBUG util.py:446: efi-srpm-macros-5-4.fc36.noarch +DEBUG util.py:446: lua-srpm-macros-1-5.fc35.noarch +DEBUG util.py:446: rpmautospec-rpm-macros-0.2.5-1.fc35.noarch +DEBUG util.py:446: fonts-srpm-macros-2.0.5-6.fc35.noarch +DEBUG util.py:446: go-srpm-macros-3.0.11-2.fc35.noarch +DEBUG util.py:446: rpm-build-4.17.0-1.fc36.1.x86_64 +DEBUG util.py:446: util-linux-2.37.2-1.fc36.x86_64 +DEBUG util.py:446: libsepol-3.3-1.fc36.x86_64 +DEBUG util.py:446: libselinux-3.3-1.fc36.x86_64 +DEBUG util.py:446: libsemanage-3.3-1.fc36.x86_64 +DEBUG util.py:446: gzip-1.11-1.fc36.x86_64 +DEBUG util.py:446: which-2.21-30.fc36.x86_64 +DEBUG util.py:446: libcurl-7.79.1-3.fc36.x86_64 +DEBUG util.py:446: curl-7.79.1-3.fc36.x86_64 +DEBUG util.py:446: binutils-gold-2.37-17.fc36.x86_64 +DEBUG util.py:446: binutils-2.37-17.fc36.x86_64 +DEBUG util.py:446: glibc-gconv-extra-2.34.9000-17.fc36.x86_64 +DEBUG util.py:446: glibc-2.34.9000-17.fc36.x86_64 +DEBUG util.py:446: bash-5.1.8-3.fc36.x86_64 +DEBUG util.py:446: glibc-common-2.34.9000-17.fc36.x86_64 +DEBUG util.py:446: glibc-minimal-langpack-2.34.9000-17.fc36.x86_64 +DEBUG util.py:446: gmp-6.2.1-1.fc36.x86_64 +DEBUG util.py:446: python-srpm-macros-3.10-13.fc36.noarch +DEBUG util.py:446: bzip2-libs-1.0.8-10.fc36.x86_64 +DEBUG util.py:446: pcre2-syntax-10.39-1.fc36.noarch +DEBUG util.py:446: pcre2-10.39-1.fc36.x86_64 +DEBUG util.py:446: bzip2-1.0.8-10.fc36.x86_64 +DEBUG util.py:446: gawk-5.1.1-1.fc36.x86_64 +DEBUG util.py:446: gdb-minimal-11.1-3.fc36.x86_64 +DEBUG util.py:446: systemd-libs-249.6-2.fc36.x86_64 +DEBUG util.py:446: libgpg-error-1.43-1.fc36.x86_64 +DEBUG util.py:446: libtasn1-4.17.0-1.fc36.x86_64 +DEBUG util.py:446: shadow-utils-4.9-6.fc36.x86_64 +DEBUG util.py:446: python-setuptools-wheel-58.2.0-1.fc36.noarch +DEBUG util.py:446: python-pip-wheel-21.3.1-1.fc36.noarch +DEBUG util.py:446: mpdecimal-2.5.1-2.fc35.x86_64 +DEBUG util.py:446: expat-2.4.1-2.fc35.x86_64 +DEBUG util.py:446: python3-3.10.0-2.fc36.x86_64 +DEBUG util.py:446: python3-libs-3.10.0-2.fc36.x86_64 +DEBUG util.py:446: redhat-rpm-config-202-1.fc36.noarch +DEBUG util.py:598: Child return code was: 0 +INFO buildroot.py:227: Calling postupdate hooks because there are new/updated packages: +python3-libs-3.10.0-2.fc36.x86_64 +python-setuptools-wheel-58.2.0-1.fc36.noarch +mpdecimal-2.5.1-2.fc35.x86_64 +python-pip-wheel-21.3.1-1.fc36.noarch +python3-3.10.0-2.fc36.x86_64 +expat-2.4.1-2.fc35.x86_64 +redhat-rpm-config-202-1.fc36.noarch +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['sync'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['gtar', '--one-file-system', '--exclude-caches', '--exclude-caches-under', '--use-compress-program', 'pigz', '-cf', '/var/cache/mock/fedora-rawhide-x86_64/root_cache/cache.tar.gz', '-C', '/var/lib/mock/fedora-rawhide-x86_64/root', '--exclude=./proc', '--exclude=./sys', '--exclude=./dev', '--exclude=./tmp/ccache', '--exclude=./var/cache/yum', '--exclude=./var/cache/dnf', '--exclude=./var/log', '--exclude=.//proc', '--exclude=.//proc', '--exclude=.//sys', '--exclude=.//sys', '--exclude=.//dev/shm', '--exclude=.//dev/pts', '--exclude=.//sys/fs/selinux', '--exclude=.//var/cache/yum', '--exclude=.//var/cache/dnf', '--exclude=.//proc/filesystems', '--exclude=./var/lib/mock/fedora-rawhide-x86_64-bootstrap/root/var/lib/mock/fedora-rawhide-x86_64/root', '--exclude=./var/lib/mock/fedora-rawhide-x86_64-bootstrap/root/var/lib/mock/fedora-rawhide-x86_64/root', '.'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG file_util.py:30: touching file: /var/lib/mock/fedora-rawhide-x86_64/root/.initialized +DEBUG util.py:624: child environment: None +DEBUG util.py:536: Using nspawn with args ['--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.e0q2oq0n:/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'] +DEBUG util.py:542: Executing command: ['/usr/bin/systemd-nspawn', '-q', '-M', '7872c005a39743acbbece5f925f37945', '-D', '/var/lib/mock/fedora-rawhide-x86_64/root', '-a', '-u', 'mockbuild', '--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.e0q2oq0n:/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;\\007"', '--setenv=PS1= \\s-\\v\\$ ', '--setenv=LANG=C.UTF-8', '--resolv-conf=off', '/bin/rpm', '-Uvh', '--nodeps', '/builddir/build/originals/python-pymatreader-0.0.25-1.fc36.src.rpm'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8', 'SYSTEMD_NSPAWN_TMPFS_TMP': '0'} and shell False +DEBUG util.py:446: Updating / installing... +DEBUG util.py:444: python-pymatreader-0.0.25-1.fc36 warning: user vanessa does not exist - using root +DEBUG util.py:444: warning: group vanessa does not exist - using root +DEBUG util.py:444: warning: user vanessa does not exist - using root +DEBUG util.py:444: warning: group vanessa does not exist - using root +DEBUG util.py:446: ######################################## +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:536: Using nspawn with args ['--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.e0q2oq0n:/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'] +DEBUG util.py:542: Executing command: ['/usr/bin/systemd-nspawn', '-q', '-M', '46c52a188220482a88b51b233d11b1cf', '-D', '/var/lib/mock/fedora-rawhide-x86_64/root', '-a', '-u', 'mockbuild', '--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.e0q2oq0n:/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;\\007"', '--setenv=PS1= \\s-\\v\\$ ', '--setenv=LANG=C.UTF-8', '--resolv-conf=off', '/bin/rpm', '-qpl', '/builddir/build/originals/python-pymatreader-0.0.25-1.fc36.src.rpm'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8', 'SYSTEMD_NSPAWN_TMPFS_TMP': '0'} and shell False +DEBUG util.py:446: python-pymatreader-0.0.25.tar.gz +DEBUG util.py:446: python-pymatreader.spec +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/proc +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-t', 'tmpfs', '-o', 'rprivate', 'tmpfs', '/var/lib/mock/fedora-rawhide-x86_64/root/proc'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/proc +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-o', 'rbind', '/proc', '/var/lib/mock/fedora-rawhide-x86_64/root/proc'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-o', 'remount,nodev,noexec,nosuid,readonly,rprivate,rbind', '/proc', '/var/lib/mock/fedora-rawhide-x86_64/root/proc'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/sys +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-t', 'tmpfs', '-o', 'rprivate', 'tmpfs', '/var/lib/mock/fedora-rawhide-x86_64/root/sys'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/sys +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-o', 'rbind', '/sys', '/var/lib/mock/fedora-rawhide-x86_64/root/sys'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-o', 'remount,nodev,noexec,nosuid,readonly,rprivate,rbind', '/sys', '/var/lib/mock/fedora-rawhide-x86_64/root/sys'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/dev/shm +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-t', 'tmpfs', 'tmpfs', '/var/lib/mock/fedora-rawhide-x86_64/root/dev/shm'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/dev/pts +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-t', 'devpts', '-o', 'gid=5,mode=0620,ptmxmode=0666,newinstance', 'devpts', '/var/lib/mock/fedora-rawhide-x86_64/root/dev/pts'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/sys/fs/selinux +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-t', 'tmpfs', 'tmpfs', '/var/lib/mock/fedora-rawhide-x86_64/root/sys/fs/selinux'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/installation-homedir +DEBUG package_manager.py:197: ['/usr/bin/dnf', 'builddep', '--installroot', '/var/lib/mock/fedora-rawhide-x86_64/root/', '--releasever', '36', '--setopt=deltarpm=False', '--allowerasing', '--disableplugin=local', '--disableplugin=spacewalk', '--disableplugin=versionlock', '--disableplugin=local', '--disableplugin=spacewalk', '--disableplugin=versionlock', '/var/lib/mock/fedora-rawhide-x86_64/root//builddir/build/SRPMS/python-pymatreader-0.0.25-1.fc36.src.rpm'] +DEBUG util.py:624: child environment: None +DEBUG util.py:536: Using nspawn with args ['--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.nt08myua:/etc/resolv.conf'] +DEBUG util.py:542: Executing command: ['/usr/bin/systemd-nspawn', '-q', '-M', '1d37cc5aa1d74f2084e7a5e62e5fb278', '-D', '/var/lib/mock/fedora-rawhide-x86_64-bootstrap/root', '-a', '--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.nt08myua:/etc/resolv.conf', '--console=pipe', '--setenv=TERM=vt100', '--setenv=SHELL=/bin/bash', '--setenv=HOME=/var/lib/mock/fedora-rawhide-x86_64/root/installation-homedir', '--setenv=HOSTNAME=mock', '--setenv=PATH=/usr/bin:/bin:/usr/sbin:/sbin', '--setenv=PROMPT_COMMAND=printf "\\033]0;\\007"', '--setenv=PS1= \\s-\\v\\$ ', '--setenv=LANG=C.UTF-8', '--setenv=LC_MESSAGES=C.UTF-8', '--resolv-conf=off', '/usr/bin/dnf', 'builddep', '--installroot', '/var/lib/mock/fedora-rawhide-x86_64/root/', '--releasever', '36', '--setopt=deltarpm=False', '--allowerasing', '--disableplugin=local', '--disableplugin=spacewalk', '--disableplugin=versionlock', '--disableplugin=local', '--disableplugin=spacewalk', '--disableplugin=versionlock', '/var/lib/mock/fedora-rawhide-x86_64/root//builddir/build/SRPMS/python-pymatreader-0.0.25-1.fc36.src.rpm', '--setopt=tsflags=nocontexts'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/var/lib/mock/fedora-rawhide-x86_64/root/installation-homedir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8', 'LC_MESSAGES': 'C.UTF-8', 'SYSTEMD_NSPAWN_TMPFS_TMP': '0'} and shell False +DEBUG util.py:444: No matches found for the following disable plugin patterns: local, spacewalk, versionlock +DEBUG util.py:446: fedora 20 kB/s | 26 kB 00:01 +DEBUG util.py:446: Dependencies resolved. +DEBUG util.py:446: =================================================================================== +DEBUG util.py:446: Package Arch Version Repo Size +DEBUG util.py:446: =================================================================================== +DEBUG util.py:446: Installing: +DEBUG util.py:446: git-core x86_64 2.33.1-1.fc36 fedora 3.8 M +DEBUG util.py:446: make x86_64 1:4.3-6.fc35 fedora 533 k +DEBUG util.py:446: python3-devel x86_64 3.10.0-2.fc36 fedora 206 k +DEBUG util.py:446: python3-future noarch 0.18.2-11.fc35 fedora 748 k +DEBUG util.py:446: python3-h5py x86_64 3.4.0-2.fc36 fedora 886 k +DEBUG util.py:446: python3-numpy x86_64 1:1.21.1-1.fc35 fedora 5.1 M +DEBUG util.py:446: python3-pytest noarch 6.2.5-1.fc36 fedora 1.6 M +DEBUG util.py:446: python3-scipy x86_64 1.7.0-2.fc35 fedora 17 M +DEBUG util.py:446: python3-setuptools noarch 58.2.0-1.fc36 fedora 923 k +DEBUG util.py:446: python3-sphinx noarch 1:4.2.0-1.fc36 fedora 2.1 M +DEBUG util.py:446: python3-sphinx_rtd_theme noarch 1.0.0-1.fc36 fedora 69 k +DEBUG util.py:446: python3-wheel noarch 1:0.37.0-1.fc36 fedora 72 k +DEBUG util.py:446: python3-xmltodict noarch 0.12.0-13.fc35 fedora 22 k +DEBUG util.py:446: twine noarch 3.4.2-1.fc35 fedora 70 k +DEBUG util.py:446: Installing dependencies: +DEBUG util.py:446: flexiblas x86_64 3.0.4-6.fc35 fedora 31 k +DEBUG util.py:446: flexiblas-netlib x86_64 3.0.4-6.fc35 fedora 3.0 M +DEBUG util.py:446: flexiblas-openblas-openmp x86_64 3.0.4-6.fc35 fedora 17 k +DEBUG util.py:446: fontawesome-fonts noarch 1:4.7.0-12.fc35 fedora 204 k +DEBUG util.py:446: fonts-filesystem noarch 1:2.0.5-6.fc35 fedora 8.9 k +DEBUG util.py:446: gc x86_64 8.0.6-1.fc36 fedora 103 k +DEBUG util.py:446: google-roboto-slab-fonts noarch 1.100263-0.16.20150923git.fc35 +DEBUG util.py:446: fedora 239 k +DEBUG util.py:446: guile22 x86_64 2.2.7-3.fc35 fedora 6.4 M +DEBUG util.py:446: hdf5 x86_64 1.10.7-2.fc36 fedora 2.0 M +DEBUG util.py:446: lato-fonts noarch 2.015-12.fc35 fedora 3.1 M +DEBUG util.py:446: less x86_64 590-2.fc36 fedora 160 k +DEBUG util.py:446: libaec x86_64 1.0.6-1.fc36 fedora 41 k +DEBUG util.py:446: libcbor x86_64 0.7.0-4.fc35 fedora 56 k +DEBUG util.py:446: libedit x86_64 3.1-40.20210910cvs.fc36 fedora 105 k +DEBUG util.py:446: libfido2 x86_64 1.9.0-1.fc36 fedora 94 k +DEBUG util.py:446: libgfortran x86_64 11.2.1-6.fc36 fedora 820 k +DEBUG util.py:446: liblzf x86_64 3.6-22.fc35 fedora 27 k +DEBUG util.py:446: libquadmath x86_64 11.2.1-6.fc36 fedora 212 k +DEBUG util.py:446: libtool-ltdl x86_64 2.4.6-44.fc36 fedora 36 k +DEBUG util.py:446: openblas x86_64 0.3.18-1.fc36 fedora 34 k +DEBUG util.py:446: openblas-openmp x86_64 0.3.18-1.fc36 fedora 4.7 M +DEBUG util.py:446: openssh x86_64 8.7p1-3.fc36 fedora 451 k +DEBUG util.py:446: openssh-clients x86_64 8.7p1-3.fc36 fedora 697 k +DEBUG util.py:446: pyproject-rpm-macros noarch 0-49.fc36 fedora 36 k +DEBUG util.py:446: python-rpm-macros noarch 3.10-13.fc36 fedora 18 k +DEBUG util.py:446: python3-attrs noarch 21.2.0-4.fc35 fedora 85 k +DEBUG util.py:446: python3-babel noarch 2.9.1-4.fc35 fedora 5.8 M +DEBUG util.py:446: python3-bleach noarch 4.0.0-1.fc35 fedora 49 k +DEBUG util.py:446: python3-cached_property noarch 1.5.2-4.fc35 fedora 20 k +DEBUG util.py:446: python3-cffi x86_64 1.15.0~rc2-1.fc36 fedora 244 k +DEBUG util.py:446: python3-charset-normalizer noarch 2.0.7-1.fc36 fedora 72 k +DEBUG util.py:446: python3-colorama noarch 0.4.4-4.fc35 fedora 33 k +DEBUG util.py:446: python3-cryptography x86_64 35.0.0-2.fc36 fedora 1.0 M +DEBUG util.py:446: python3-docutils noarch 0.17.1-1.fc36 fedora 833 k +DEBUG util.py:446: python3-html5lib noarch 1:1.1-6.fc35 fedora 223 k +DEBUG util.py:446: python3-idna noarch 3.3-1.fc36 fedora 100 k +DEBUG util.py:446: python3-imagesize noarch 1.2.0-6.fc35 fedora 17 k +DEBUG util.py:446: python3-importlib-metadata noarch 4.8.1-1.fc36 fedora 39 k +DEBUG util.py:446: python3-iniconfig noarch 1.1.1-5.fc35 fedora 16 k +DEBUG util.py:446: python3-jeepney noarch 0.7.1-1.fc35 fedora 323 k +DEBUG util.py:446: python3-jinja2 noarch 3.0.1-2.fc35 fedora 529 k +DEBUG util.py:446: python3-keyring noarch 21.8.0-4.fc35 fedora 75 k +DEBUG util.py:446: python3-markupsafe x86_64 2.0.0-2.fc35 fedora 27 k +DEBUG util.py:446: python3-numpy-f2py x86_64 1:1.21.1-1.fc35 fedora 224 k +DEBUG util.py:446: python3-packaging noarch 21.2-1.fc36 fedora 72 k +DEBUG util.py:446: python3-pkginfo noarch 1.7.1-2.fc35 fedora 34 k +DEBUG util.py:446: python3-pluggy noarch 1.0.0-1.fc36 fedora 33 k +DEBUG util.py:446: python3-ply noarch 3.11-13.fc35 fedora 104 k +DEBUG util.py:446: python3-py noarch 1.10.0-5.fc35 fedora 440 k +DEBUG util.py:446: python3-pycparser noarch 2.20-5.fc35 fedora 126 k +DEBUG util.py:446: python3-pygments noarch 2.10.0-1.fc36 fedora 2.0 M +DEBUG util.py:446: python3-pyparsing noarch 2.4.7-9.fc35 fedora 151 k +DEBUG util.py:446: python3-pysocks noarch 1.7.1-11.fc35 fedora 34 k +DEBUG util.py:446: python3-pytz noarch 2021.3-1.fc36 fedora 47 k +DEBUG util.py:446: python3-readme-renderer noarch 29.0-3.fc35 fedora 29 k +DEBUG util.py:446: python3-requests noarch 2.26.0-1.fc35 fedora 117 k +DEBUG util.py:446: python3-requests-toolbelt noarch 0.9.1-15.fc35 fedora 87 k +DEBUG util.py:446: python3-rfc3986 noarch 1.4.0-7.fc35 fedora 50 k +DEBUG util.py:446: python3-rpm-generators noarch 12-10.fc36 fedora 31 k +DEBUG util.py:446: python3-rpm-macros noarch 3.10-13.fc36 fedora 15 k +DEBUG util.py:446: python3-secretstorage noarch 3.3.1-3.fc35 fedora 35 k +DEBUG util.py:446: python3-six noarch 1.16.0-4.fc35 fedora 36 k +DEBUG util.py:446: python3-snowballstemmer noarch 1.9.0-10.fc35 fedora 152 k +DEBUG util.py:446: python3-sphinx-theme-alabaster noarch 0.7.12-13.fc35 fedora 24 k +DEBUG util.py:446: python3-sphinxcontrib-applehelp noarch 1.0.2-6.fc35 fedora 35 k +DEBUG util.py:446: python3-sphinxcontrib-devhelp noarch 1.0.2-6.fc35 fedora 29 k +DEBUG util.py:446: python3-sphinxcontrib-htmlhelp noarch 2.0.0-2.fc35 fedora 44 k +DEBUG util.py:446: python3-sphinxcontrib-jsmath noarch 1.0.1-13.fc35 fedora 16 k +DEBUG util.py:446: python3-sphinxcontrib-qthelp noarch 1.0.3-6.fc35 fedora 33 k +DEBUG util.py:446: python3-sphinxcontrib-serializinghtml noarch 1.1.5-2.fc35 fedora 34 k +DEBUG util.py:446: python3-toml noarch 0.10.2-5.fc35 fedora 39 k +DEBUG util.py:446: python3-tqdm noarch 4.62.3-1.fc36 fedora 128 k +DEBUG util.py:446: python3-urllib3 noarch 1.26.7-1.fc36 fedora 183 k +DEBUG util.py:446: python3-webencodings noarch 0.5.1-16.fc35 fedora 28 k +DEBUG util.py:446: python3-zipp noarch 3.6.0-1.fc36 fedora 16 k +DEBUG util.py:446: Transaction Summary +DEBUG util.py:446: =================================================================================== +DEBUG util.py:446: Install 89 Packages +DEBUG util.py:446: Total size: 69 M +DEBUG util.py:446: Installed size: 327 M +DEBUG util.py:446: Downloading Packages: +DEBUG util.py:446: [SKIPPED] flexiblas-3.0.4-6.fc35.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] flexiblas-netlib-3.0.4-6.fc35.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] flexiblas-openblas-openmp-3.0.4-6.fc35.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] fontawesome-fonts-4.7.0-12.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] fonts-filesystem-2.0.5-6.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] gc-8.0.6-1.fc36.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] git-core-2.33.1-1.fc36.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] google-roboto-slab-fonts-1.100263-0.16.20150923git.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] guile22-2.2.7-3.fc35.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] hdf5-1.10.7-2.fc36.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] lato-fonts-2.015-12.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] less-590-2.fc36.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] libaec-1.0.6-1.fc36.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] libcbor-0.7.0-4.fc35.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] libedit-3.1-40.20210910cvs.fc36.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] libfido2-1.9.0-1.fc36.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] libgfortran-11.2.1-6.fc36.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] liblzf-3.6-22.fc35.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] libquadmath-11.2.1-6.fc36.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] libtool-ltdl-2.4.6-44.fc36.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] make-4.3-6.fc35.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] openblas-0.3.18-1.fc36.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] openblas-openmp-0.3.18-1.fc36.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] openssh-8.7p1-3.fc36.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] openssh-clients-8.7p1-3.fc36.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] pyproject-rpm-macros-0-49.fc36.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python-rpm-macros-3.10-13.fc36.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-attrs-21.2.0-4.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-babel-2.9.1-4.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-bleach-4.0.0-1.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-cached_property-1.5.2-4.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-cffi-1.15.0~rc2-1.fc36.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-charset-normalizer-2.0.7-1.fc36.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-colorama-0.4.4-4.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-cryptography-35.0.0-2.fc36.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-devel-3.10.0-2.fc36.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-docutils-0.17.1-1.fc36.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-future-0.18.2-11.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-h5py-3.4.0-2.fc36.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-html5lib-1.1-6.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-idna-3.3-1.fc36.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-imagesize-1.2.0-6.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-importlib-metadata-4.8.1-1.fc36.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-iniconfig-1.1.1-5.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-jeepney-0.7.1-1.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-jinja2-3.0.1-2.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-keyring-21.8.0-4.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-markupsafe-2.0.0-2.fc35.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-numpy-1.21.1-1.fc35.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-numpy-f2py-1.21.1-1.fc35.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-packaging-21.2-1.fc36.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-pkginfo-1.7.1-2.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-pluggy-1.0.0-1.fc36.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-ply-3.11-13.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-py-1.10.0-5.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-pycparser-2.20-5.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-pygments-2.10.0-1.fc36.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-pyparsing-2.4.7-9.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-pysocks-1.7.1-11.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-pytest-6.2.5-1.fc36.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-pytz-2021.3-1.fc36.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-readme-renderer-29.0-3.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-requests-2.26.0-1.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-requests-toolbelt-0.9.1-15.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-rfc3986-1.4.0-7.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-rpm-generators-12-10.fc36.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-rpm-macros-3.10-13.fc36.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-scipy-1.7.0-2.fc35.x86_64.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-secretstorage-3.3.1-3.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-setuptools-58.2.0-1.fc36.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-six-1.16.0-4.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-snowballstemmer-1.9.0-10.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-sphinx-4.2.0-1.fc36.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-sphinx-theme-alabaster-0.7.12-13.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-sphinx_rtd_theme-1.0.0-1.fc36.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-sphinxcontrib-applehelp-1.0.2-6.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-sphinxcontrib-devhelp-1.0.2-6.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-sphinxcontrib-htmlhelp-2.0.0-2.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-sphinxcontrib-jsmath-1.0.1-13.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-sphinxcontrib-qthelp-1.0.3-6.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-sphinxcontrib-serializinghtml-1.1.5-2.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-toml-0.10.2-5.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-tqdm-4.62.3-1.fc36.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-urllib3-1.26.7-1.fc36.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-webencodings-0.5.1-16.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-wheel-0.37.0-1.fc36.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-xmltodict-0.12.0-13.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] python3-zipp-3.6.0-1.fc36.noarch.rpm: Already downloaded +DEBUG util.py:446: [SKIPPED] twine-3.4.2-1.fc35.noarch.rpm: Already downloaded +DEBUG util.py:446: Running transaction check +DEBUG util.py:446: Transaction check succeeded. +DEBUG util.py:446: Running transaction test +DEBUG util.py:446: Transaction test succeeded. +DEBUG util.py:446: Running transaction +DEBUG util.py:446: Preparing : 1/1 +DEBUG util.py:446: Installing : python3-six-1.16.0-4.fc35.noarch 1/89 +DEBUG util.py:446: Installing : python3-setuptools-58.2.0-1.fc36.noarch 2/89 +DEBUG util.py:446: Installing : python3-docutils-0.17.1-1.fc36.noarch 3/89 +DEBUG util.py:446: Installing : python-rpm-macros-3.10-13.fc36.noarch 4/89 +DEBUG util.py:446: Installing : fonts-filesystem-1:2.0.5-6.fc35.noarch 5/89 +DEBUG util.py:446: Installing : python3-rpm-macros-3.10-13.fc36.noarch 6/89 +DEBUG util.py:446: Installing : python3-webencodings-0.5.1-16.fc35.noarch 7/89 +DEBUG util.py:446: Installing : python3-pygments-2.10.0-1.fc36.noarch 8/89 +DEBUG util.py:446: Installing : python3-jeepney-0.7.1-1.fc35.noarch 9/89 +DEBUG util.py:446: Installing : python3-idna-3.3-1.fc36.noarch 10/89 +DEBUG util.py:446: Installing : libquadmath-11.2.1-6.fc36.x86_64 11/89 +DEBUG util.py:446: Installing : libgfortran-11.2.1-6.fc36.x86_64 12/89 +DEBUG util.py:446: Installing : flexiblas-3.0.4-6.fc35.x86_64 13/89 +DEBUG util.py:446: Installing : python3-html5lib-1:1.1-6.fc35.noarch 14/89 +DEBUG util.py:446: Installing : pyproject-rpm-macros-0-49.fc36.noarch 15/89 +DEBUG util.py:446: Installing : fontawesome-fonts-1:4.7.0-12.fc35.noarch 16/89 +DEBUG util.py:446: Installing : google-roboto-slab-fonts-1.100263-0.16.20150923git.fc 17/89 +DEBUG util.py:446: Installing : lato-fonts-2.015-12.fc35.noarch 18/89 +DEBUG util.py:446: Installing : python3-pkginfo-1.7.1-2.fc35.noarch 19/89 +DEBUG util.py:446: Installing : python3-py-1.10.0-5.fc35.noarch 20/89 +DEBUG util.py:446: Installing : python3-zipp-3.6.0-1.fc36.noarch 21/89 +DEBUG util.py:446: Installing : python3-importlib-metadata-4.8.1-1.fc36.noarch 22/89 +DEBUG util.py:446: Installing : python3-tqdm-4.62.3-1.fc36.noarch 23/89 +DEBUG util.py:446: Installing : python3-toml-0.10.2-5.fc35.noarch 24/89 +DEBUG util.py:446: Installing : python3-sphinxcontrib-serializinghtml-1.1.5-2.fc35.no 25/89 +DEBUG util.py:446: Installing : python3-sphinxcontrib-qthelp-1.0.3-6.fc35.noarch 26/89 +DEBUG util.py:446: Installing : python3-sphinxcontrib-jsmath-1.0.1-13.fc35.noarch 27/89 +DEBUG util.py:446: Installing : python3-sphinxcontrib-htmlhelp-2.0.0-2.fc35.noarch 28/89 +DEBUG util.py:446: Installing : python3-sphinxcontrib-devhelp-1.0.2-6.fc35.noarch 29/89 +DEBUG util.py:446: Installing : python3-sphinxcontrib-applehelp-1.0.2-6.fc35.noarch 30/89 +DEBUG util.py:446: Installing : python3-sphinx-theme-alabaster-0.7.12-13.fc35.noarch 31/89 +DEBUG util.py:446: Installing : python3-snowballstemmer-1.9.0-10.fc35.noarch 32/89 +DEBUG util.py:446: Installing : python3-rfc3986-1.4.0-7.fc35.noarch 33/89 +DEBUG util.py:446: Installing : python3-pytz-2021.3-1.fc36.noarch 34/89 +DEBUG util.py:446: Installing : python3-babel-2.9.1-4.fc35.noarch 35/89 +DEBUG util.py:446: Installing : python3-pysocks-1.7.1-11.fc35.noarch 36/89 +DEBUG util.py:446: Installing : python3-urllib3-1.26.7-1.fc36.noarch 37/89 +DEBUG util.py:446: Installing : python3-pyparsing-2.4.7-9.fc35.noarch 38/89 +DEBUG util.py:446: Installing : python3-packaging-21.2-1.fc36.noarch 39/89 +DEBUG util.py:446: Installing : python3-bleach-4.0.0-1.fc35.noarch 40/89 +DEBUG util.py:446: Installing : python3-readme-renderer-29.0-3.fc35.noarch 41/89 +DEBUG util.py:446: Installing : python3-rpm-generators-12-10.fc36.noarch 42/89 +DEBUG util.py:446: Installing : python3-devel-3.10.0-2.fc36.x86_64 43/89 +DEBUG util.py:446: Installing : python3-ply-3.11-13.fc35.noarch 44/89 +DEBUG util.py:446: Installing : python3-pycparser-2.20-5.fc35.noarch 45/89 +DEBUG util.py:446: Installing : python3-cffi-1.15.0~rc2-1.fc36.x86_64 46/89 +DEBUG util.py:446: Installing : python3-cryptography-35.0.0-2.fc36.x86_64 47/89 +DEBUG util.py:446: Installing : python3-secretstorage-3.3.1-3.fc35.noarch 48/89 +DEBUG util.py:446: Installing : python3-keyring-21.8.0-4.fc35.noarch 49/89 +DEBUG util.py:446: Installing : python3-pluggy-1.0.0-1.fc36.noarch 50/89 +DEBUG util.py:446: Installing : python3-markupsafe-2.0.0-2.fc35.x86_64 51/89 +DEBUG util.py:446: Installing : python3-jinja2-3.0.1-2.fc35.noarch 52/89 +DEBUG util.py:446: Installing : python3-iniconfig-1.1.1-5.fc35.noarch 53/89 +DEBUG util.py:446: Installing : python3-imagesize-1.2.0-6.fc35.noarch 54/89 +DEBUG util.py:446: Installing : python3-colorama-0.4.4-4.fc35.noarch 55/89 +DEBUG util.py:446: Installing : python3-charset-normalizer-2.0.7-1.fc36.noarch 56/89 +DEBUG util.py:446: Installing : python3-requests-2.26.0-1.fc35.noarch 57/89 +DEBUG util.py:446: Installing : python3-requests-toolbelt-0.9.1-15.fc35.noarch 58/89 +DEBUG util.py:446: Installing : python3-sphinx-1:4.2.0-1.fc36.noarch 59/89 +DEBUG util.py:446: Installing : python3-cached_property-1.5.2-4.fc35.noarch 60/89 +DEBUG util.py:446: Installing : python3-attrs-21.2.0-4.fc35.noarch 61/89 +DEBUG util.py:446: Running scriptlet: openssh-8.7p1-3.fc36.x86_64 62/89 +DEBUG util.py:446: Installing : openssh-8.7p1-3.fc36.x86_64 62/89 +DEBUG util.py:446: Installing : openblas-0.3.18-1.fc36.x86_64 63/89 +DEBUG util.py:446: Installing : openblas-openmp-0.3.18-1.fc36.x86_64 64/89 +DEBUG util.py:446: Installing : flexiblas-openblas-openmp-3.0.4-6.fc35.x86_64 65/89 +DEBUG util.py:446: Installing : flexiblas-netlib-3.0.4-6.fc35.x86_64 66/89 +DEBUG util.py:446: Installing : python3-numpy-1:1.21.1-1.fc35.x86_64 67/89 +DEBUG util.py:446: Installing : python3-numpy-f2py-1:1.21.1-1.fc35.x86_64 68/89 +DEBUG util.py:446: Installing : libtool-ltdl-2.4.6-44.fc36.x86_64 69/89 +DEBUG util.py:446: Installing : liblzf-3.6-22.fc35.x86_64 70/89 +DEBUG util.py:446: Installing : libedit-3.1-40.20210910cvs.fc36.x86_64 71/89 +DEBUG util.py:446: Installing : libcbor-0.7.0-4.fc35.x86_64 72/89 +DEBUG util.py:446: Installing : libfido2-1.9.0-1.fc36.x86_64 73/89 +DEBUG util.py:446: Installing : openssh-clients-8.7p1-3.fc36.x86_64 74/89 +DEBUG util.py:446: Running scriptlet: openssh-clients-8.7p1-3.fc36.x86_64 74/89 +DEBUG util.py:446: Installing : libaec-1.0.6-1.fc36.x86_64 75/89 +DEBUG util.py:446: Installing : hdf5-1.10.7-2.fc36.x86_64 76/89 +DEBUG util.py:446: Installing : less-590-2.fc36.x86_64 77/89 +DEBUG util.py:446: Installing : gc-8.0.6-1.fc36.x86_64 78/89 +DEBUG util.py:446: Installing : guile22-2.2.7-3.fc35.x86_64 79/89 +DEBUG util.py:446: Installing : make-1:4.3-6.fc35.x86_64 80/89 +DEBUG util.py:446: Installing : git-core-2.33.1-1.fc36.x86_64 81/89 +DEBUG util.py:446: Installing : python3-h5py-3.4.0-2.fc36.x86_64 82/89 +DEBUG util.py:446: Installing : python3-scipy-1.7.0-2.fc35.x86_64 83/89 +DEBUG util.py:446: Installing : python3-pytest-6.2.5-1.fc36.noarch 84/89 +DEBUG util.py:446: Installing : python3-sphinx_rtd_theme-1.0.0-1.fc36.noarch 85/89 +DEBUG util.py:446: Installing : twine-3.4.2-1.fc35.noarch 86/89 +DEBUG util.py:446: Installing : python3-xmltodict-0.12.0-13.fc35.noarch 87/89 +DEBUG util.py:446: Installing : python3-wheel-1:0.37.0-1.fc36.noarch 88/89 +DEBUG util.py:446: Installing : python3-future-0.18.2-11.fc35.noarch 89/89 +DEBUG util.py:446: Running scriptlet: python3-future-0.18.2-11.fc35.noarch 89/89 +DEBUG util.py:446: Verifying : flexiblas-3.0.4-6.fc35.x86_64 1/89 +DEBUG util.py:446: Verifying : flexiblas-netlib-3.0.4-6.fc35.x86_64 2/89 +DEBUG util.py:446: Verifying : flexiblas-openblas-openmp-3.0.4-6.fc35.x86_64 3/89 +DEBUG util.py:446: Verifying : fontawesome-fonts-1:4.7.0-12.fc35.noarch 4/89 +DEBUG util.py:446: Verifying : fonts-filesystem-1:2.0.5-6.fc35.noarch 5/89 +DEBUG util.py:446: Verifying : gc-8.0.6-1.fc36.x86_64 6/89 +DEBUG util.py:446: Verifying : git-core-2.33.1-1.fc36.x86_64 7/89 +DEBUG util.py:446: Verifying : google-roboto-slab-fonts-1.100263-0.16.20150923git.fc 8/89 +DEBUG util.py:446: Verifying : guile22-2.2.7-3.fc35.x86_64 9/89 +DEBUG util.py:446: Verifying : hdf5-1.10.7-2.fc36.x86_64 10/89 +DEBUG util.py:446: Verifying : lato-fonts-2.015-12.fc35.noarch 11/89 +DEBUG util.py:446: Verifying : less-590-2.fc36.x86_64 12/89 +DEBUG util.py:446: Verifying : libaec-1.0.6-1.fc36.x86_64 13/89 +DEBUG util.py:446: Verifying : libcbor-0.7.0-4.fc35.x86_64 14/89 +DEBUG util.py:446: Verifying : libedit-3.1-40.20210910cvs.fc36.x86_64 15/89 +DEBUG util.py:446: Verifying : libfido2-1.9.0-1.fc36.x86_64 16/89 +DEBUG util.py:446: Verifying : libgfortran-11.2.1-6.fc36.x86_64 17/89 +DEBUG util.py:446: Verifying : liblzf-3.6-22.fc35.x86_64 18/89 +DEBUG util.py:446: Verifying : libquadmath-11.2.1-6.fc36.x86_64 19/89 +DEBUG util.py:446: Verifying : libtool-ltdl-2.4.6-44.fc36.x86_64 20/89 +DEBUG util.py:446: Verifying : make-1:4.3-6.fc35.x86_64 21/89 +DEBUG util.py:446: Verifying : openblas-0.3.18-1.fc36.x86_64 22/89 +DEBUG util.py:446: Verifying : openblas-openmp-0.3.18-1.fc36.x86_64 23/89 +DEBUG util.py:446: Verifying : openssh-8.7p1-3.fc36.x86_64 24/89 +DEBUG util.py:446: Verifying : openssh-clients-8.7p1-3.fc36.x86_64 25/89 +DEBUG util.py:446: Verifying : pyproject-rpm-macros-0-49.fc36.noarch 26/89 +DEBUG util.py:446: Verifying : python-rpm-macros-3.10-13.fc36.noarch 27/89 +DEBUG util.py:446: Verifying : python3-attrs-21.2.0-4.fc35.noarch 28/89 +DEBUG util.py:446: Verifying : python3-babel-2.9.1-4.fc35.noarch 29/89 +DEBUG util.py:446: Verifying : python3-bleach-4.0.0-1.fc35.noarch 30/89 +DEBUG util.py:446: Verifying : python3-cached_property-1.5.2-4.fc35.noarch 31/89 +DEBUG util.py:446: Verifying : python3-cffi-1.15.0~rc2-1.fc36.x86_64 32/89 +DEBUG util.py:446: Verifying : python3-charset-normalizer-2.0.7-1.fc36.noarch 33/89 +DEBUG util.py:446: Verifying : python3-colorama-0.4.4-4.fc35.noarch 34/89 +DEBUG util.py:446: Verifying : python3-cryptography-35.0.0-2.fc36.x86_64 35/89 +DEBUG util.py:446: Verifying : python3-devel-3.10.0-2.fc36.x86_64 36/89 +DEBUG util.py:446: Verifying : python3-docutils-0.17.1-1.fc36.noarch 37/89 +DEBUG util.py:446: Verifying : python3-future-0.18.2-11.fc35.noarch 38/89 +DEBUG util.py:446: Verifying : python3-h5py-3.4.0-2.fc36.x86_64 39/89 +DEBUG util.py:446: Verifying : python3-html5lib-1:1.1-6.fc35.noarch 40/89 +DEBUG util.py:446: Verifying : python3-idna-3.3-1.fc36.noarch 41/89 +DEBUG util.py:446: Verifying : python3-imagesize-1.2.0-6.fc35.noarch 42/89 +DEBUG util.py:446: Verifying : python3-importlib-metadata-4.8.1-1.fc36.noarch 43/89 +DEBUG util.py:446: Verifying : python3-iniconfig-1.1.1-5.fc35.noarch 44/89 +DEBUG util.py:446: Verifying : python3-jeepney-0.7.1-1.fc35.noarch 45/89 +DEBUG util.py:446: Verifying : python3-jinja2-3.0.1-2.fc35.noarch 46/89 +DEBUG util.py:446: Verifying : python3-keyring-21.8.0-4.fc35.noarch 47/89 +DEBUG util.py:446: Verifying : python3-markupsafe-2.0.0-2.fc35.x86_64 48/89 +DEBUG util.py:446: Verifying : python3-numpy-1:1.21.1-1.fc35.x86_64 49/89 +DEBUG util.py:446: Verifying : python3-numpy-f2py-1:1.21.1-1.fc35.x86_64 50/89 +DEBUG util.py:446: Verifying : python3-packaging-21.2-1.fc36.noarch 51/89 +DEBUG util.py:446: Verifying : python3-pkginfo-1.7.1-2.fc35.noarch 52/89 +DEBUG util.py:446: Verifying : python3-pluggy-1.0.0-1.fc36.noarch 53/89 +DEBUG util.py:446: Verifying : python3-ply-3.11-13.fc35.noarch 54/89 +DEBUG util.py:446: Verifying : python3-py-1.10.0-5.fc35.noarch 55/89 +DEBUG util.py:446: Verifying : python3-pycparser-2.20-5.fc35.noarch 56/89 +DEBUG util.py:446: Verifying : python3-pygments-2.10.0-1.fc36.noarch 57/89 +DEBUG util.py:446: Verifying : python3-pyparsing-2.4.7-9.fc35.noarch 58/89 +DEBUG util.py:446: Verifying : python3-pysocks-1.7.1-11.fc35.noarch 59/89 +DEBUG util.py:446: Verifying : python3-pytest-6.2.5-1.fc36.noarch 60/89 +DEBUG util.py:446: Verifying : python3-pytz-2021.3-1.fc36.noarch 61/89 +DEBUG util.py:446: Verifying : python3-readme-renderer-29.0-3.fc35.noarch 62/89 +DEBUG util.py:446: Verifying : python3-requests-2.26.0-1.fc35.noarch 63/89 +DEBUG util.py:446: Verifying : python3-requests-toolbelt-0.9.1-15.fc35.noarch 64/89 +DEBUG util.py:446: Verifying : python3-rfc3986-1.4.0-7.fc35.noarch 65/89 +DEBUG util.py:446: Verifying : python3-rpm-generators-12-10.fc36.noarch 66/89 +DEBUG util.py:446: Verifying : python3-rpm-macros-3.10-13.fc36.noarch 67/89 +DEBUG util.py:446: Verifying : python3-scipy-1.7.0-2.fc35.x86_64 68/89 +DEBUG util.py:446: Verifying : python3-secretstorage-3.3.1-3.fc35.noarch 69/89 +DEBUG util.py:446: Verifying : python3-setuptools-58.2.0-1.fc36.noarch 70/89 +DEBUG util.py:446: Verifying : python3-six-1.16.0-4.fc35.noarch 71/89 +DEBUG util.py:446: Verifying : python3-snowballstemmer-1.9.0-10.fc35.noarch 72/89 +DEBUG util.py:446: Verifying : python3-sphinx-1:4.2.0-1.fc36.noarch 73/89 +DEBUG util.py:446: Verifying : python3-sphinx-theme-alabaster-0.7.12-13.fc35.noarch 74/89 +DEBUG util.py:446: Verifying : python3-sphinx_rtd_theme-1.0.0-1.fc36.noarch 75/89 +DEBUG util.py:446: Verifying : python3-sphinxcontrib-applehelp-1.0.2-6.fc35.noarch 76/89 +DEBUG util.py:446: Verifying : python3-sphinxcontrib-devhelp-1.0.2-6.fc35.noarch 77/89 +DEBUG util.py:446: Verifying : python3-sphinxcontrib-htmlhelp-2.0.0-2.fc35.noarch 78/89 +DEBUG util.py:446: Verifying : python3-sphinxcontrib-jsmath-1.0.1-13.fc35.noarch 79/89 +DEBUG util.py:446: Verifying : python3-sphinxcontrib-qthelp-1.0.3-6.fc35.noarch 80/89 +DEBUG util.py:446: Verifying : python3-sphinxcontrib-serializinghtml-1.1.5-2.fc35.no 81/89 +DEBUG util.py:446: Verifying : python3-toml-0.10.2-5.fc35.noarch 82/89 +DEBUG util.py:446: Verifying : python3-tqdm-4.62.3-1.fc36.noarch 83/89 +DEBUG util.py:446: Verifying : python3-urllib3-1.26.7-1.fc36.noarch 84/89 +DEBUG util.py:446: Verifying : python3-webencodings-0.5.1-16.fc35.noarch 85/89 +DEBUG util.py:446: Verifying : python3-wheel-1:0.37.0-1.fc36.noarch 86/89 +DEBUG util.py:446: Verifying : python3-xmltodict-0.12.0-13.fc35.noarch 87/89 +DEBUG util.py:446: Verifying : python3-zipp-3.6.0-1.fc36.noarch 88/89 +DEBUG util.py:446: Verifying : twine-3.4.2-1.fc35.noarch 89/89 +DEBUG util.py:446: Installed: +DEBUG util.py:446: flexiblas-3.0.4-6.fc35.x86_64 +DEBUG util.py:446: flexiblas-netlib-3.0.4-6.fc35.x86_64 +DEBUG util.py:446: flexiblas-openblas-openmp-3.0.4-6.fc35.x86_64 +DEBUG util.py:446: fontawesome-fonts-1:4.7.0-12.fc35.noarch +DEBUG util.py:446: fonts-filesystem-1:2.0.5-6.fc35.noarch +DEBUG util.py:446: gc-8.0.6-1.fc36.x86_64 +DEBUG util.py:446: git-core-2.33.1-1.fc36.x86_64 +DEBUG util.py:446: google-roboto-slab-fonts-1.100263-0.16.20150923git.fc35.noarch +DEBUG util.py:446: guile22-2.2.7-3.fc35.x86_64 +DEBUG util.py:446: hdf5-1.10.7-2.fc36.x86_64 +DEBUG util.py:446: lato-fonts-2.015-12.fc35.noarch +DEBUG util.py:446: less-590-2.fc36.x86_64 +DEBUG util.py:446: libaec-1.0.6-1.fc36.x86_64 +DEBUG util.py:446: libcbor-0.7.0-4.fc35.x86_64 +DEBUG util.py:446: libedit-3.1-40.20210910cvs.fc36.x86_64 +DEBUG util.py:446: libfido2-1.9.0-1.fc36.x86_64 +DEBUG util.py:446: libgfortran-11.2.1-6.fc36.x86_64 +DEBUG util.py:446: liblzf-3.6-22.fc35.x86_64 +DEBUG util.py:446: libquadmath-11.2.1-6.fc36.x86_64 +DEBUG util.py:446: libtool-ltdl-2.4.6-44.fc36.x86_64 +DEBUG util.py:446: make-1:4.3-6.fc35.x86_64 +DEBUG util.py:446: openblas-0.3.18-1.fc36.x86_64 +DEBUG util.py:446: openblas-openmp-0.3.18-1.fc36.x86_64 +DEBUG util.py:446: openssh-8.7p1-3.fc36.x86_64 +DEBUG util.py:446: openssh-clients-8.7p1-3.fc36.x86_64 +DEBUG util.py:446: pyproject-rpm-macros-0-49.fc36.noarch +DEBUG util.py:446: python-rpm-macros-3.10-13.fc36.noarch +DEBUG util.py:446: python3-attrs-21.2.0-4.fc35.noarch +DEBUG util.py:446: python3-babel-2.9.1-4.fc35.noarch +DEBUG util.py:446: python3-bleach-4.0.0-1.fc35.noarch +DEBUG util.py:446: python3-cached_property-1.5.2-4.fc35.noarch +DEBUG util.py:446: python3-cffi-1.15.0~rc2-1.fc36.x86_64 +DEBUG util.py:446: python3-charset-normalizer-2.0.7-1.fc36.noarch +DEBUG util.py:446: python3-colorama-0.4.4-4.fc35.noarch +DEBUG util.py:446: python3-cryptography-35.0.0-2.fc36.x86_64 +DEBUG util.py:446: python3-devel-3.10.0-2.fc36.x86_64 +DEBUG util.py:446: python3-docutils-0.17.1-1.fc36.noarch +DEBUG util.py:446: python3-future-0.18.2-11.fc35.noarch +DEBUG util.py:446: python3-h5py-3.4.0-2.fc36.x86_64 +DEBUG util.py:446: python3-html5lib-1:1.1-6.fc35.noarch +DEBUG util.py:446: python3-idna-3.3-1.fc36.noarch +DEBUG util.py:446: python3-imagesize-1.2.0-6.fc35.noarch +DEBUG util.py:446: python3-importlib-metadata-4.8.1-1.fc36.noarch +DEBUG util.py:446: python3-iniconfig-1.1.1-5.fc35.noarch +DEBUG util.py:446: python3-jeepney-0.7.1-1.fc35.noarch +DEBUG util.py:446: python3-jinja2-3.0.1-2.fc35.noarch +DEBUG util.py:446: python3-keyring-21.8.0-4.fc35.noarch +DEBUG util.py:446: python3-markupsafe-2.0.0-2.fc35.x86_64 +DEBUG util.py:446: python3-numpy-1:1.21.1-1.fc35.x86_64 +DEBUG util.py:446: python3-numpy-f2py-1:1.21.1-1.fc35.x86_64 +DEBUG util.py:446: python3-packaging-21.2-1.fc36.noarch +DEBUG util.py:446: python3-pkginfo-1.7.1-2.fc35.noarch +DEBUG util.py:446: python3-pluggy-1.0.0-1.fc36.noarch +DEBUG util.py:446: python3-ply-3.11-13.fc35.noarch +DEBUG util.py:446: python3-py-1.10.0-5.fc35.noarch +DEBUG util.py:446: python3-pycparser-2.20-5.fc35.noarch +DEBUG util.py:446: python3-pygments-2.10.0-1.fc36.noarch +DEBUG util.py:446: python3-pyparsing-2.4.7-9.fc35.noarch +DEBUG util.py:446: python3-pysocks-1.7.1-11.fc35.noarch +DEBUG util.py:446: python3-pytest-6.2.5-1.fc36.noarch +DEBUG util.py:446: python3-pytz-2021.3-1.fc36.noarch +DEBUG util.py:446: python3-readme-renderer-29.0-3.fc35.noarch +DEBUG util.py:446: python3-requests-2.26.0-1.fc35.noarch +DEBUG util.py:446: python3-requests-toolbelt-0.9.1-15.fc35.noarch +DEBUG util.py:446: python3-rfc3986-1.4.0-7.fc35.noarch +DEBUG util.py:446: python3-rpm-generators-12-10.fc36.noarch +DEBUG util.py:446: python3-rpm-macros-3.10-13.fc36.noarch +DEBUG util.py:446: python3-scipy-1.7.0-2.fc35.x86_64 +DEBUG util.py:446: python3-secretstorage-3.3.1-3.fc35.noarch +DEBUG util.py:446: python3-setuptools-58.2.0-1.fc36.noarch +DEBUG util.py:446: python3-six-1.16.0-4.fc35.noarch +DEBUG util.py:446: python3-snowballstemmer-1.9.0-10.fc35.noarch +DEBUG util.py:446: python3-sphinx-1:4.2.0-1.fc36.noarch +DEBUG util.py:446: python3-sphinx-theme-alabaster-0.7.12-13.fc35.noarch +DEBUG util.py:446: python3-sphinx_rtd_theme-1.0.0-1.fc36.noarch +DEBUG util.py:446: python3-sphinxcontrib-applehelp-1.0.2-6.fc35.noarch +DEBUG util.py:446: python3-sphinxcontrib-devhelp-1.0.2-6.fc35.noarch +DEBUG util.py:446: python3-sphinxcontrib-htmlhelp-2.0.0-2.fc35.noarch +DEBUG util.py:446: python3-sphinxcontrib-jsmath-1.0.1-13.fc35.noarch +DEBUG util.py:446: python3-sphinxcontrib-qthelp-1.0.3-6.fc35.noarch +DEBUG util.py:446: python3-sphinxcontrib-serializinghtml-1.1.5-2.fc35.noarch +DEBUG util.py:446: python3-toml-0.10.2-5.fc35.noarch +DEBUG util.py:446: python3-tqdm-4.62.3-1.fc36.noarch +DEBUG util.py:446: python3-urllib3-1.26.7-1.fc36.noarch +DEBUG util.py:446: python3-webencodings-0.5.1-16.fc35.noarch +DEBUG util.py:446: python3-wheel-1:0.37.0-1.fc36.noarch +DEBUG util.py:446: python3-xmltodict-0.12.0-13.fc35.noarch +DEBUG util.py:446: python3-zipp-3.6.0-1.fc36.noarch +DEBUG util.py:446: twine-3.4.2-1.fc35.noarch +DEBUG util.py:446: Complete! +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/sys/fs/selinux'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/dev/pts'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/dev/shm'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/sys'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/sys'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/proc'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/proc'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:169: kill orphans +DEBUG util.py:624: child environment: None +DEBUG util.py:536: Using nspawn with args None +DEBUG util.py:542: Executing command: ['/usr/bin/systemd-nspawn', '-q', '-M', '45e14c2322a147a2a113175236bf3603', '-D', '/var/lib/mock/fedora-rawhide-x86_64-bootstrap/root', '-a', '--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;\\007"', '--setenv=PS1= \\s-\\v\\$ ', '--setenv=LANG=C.UTF-8', '--resolv-conf=off', '/bin/sh', '-c', "rpm -qa --root '/var/lib/mock/fedora-rawhide-x86_64/root' --qf '%{nevra} %{buildtime} %{size} %{pkgid} installed\\n'"] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8', 'SYSTEMD_NSPAWN_TMPFS_TMP': '0'} and shell False +DEBUG util.py:446: gpg-pubkey-38ab71f4-60242b08 1612983048 0 (none) installed +DEBUG util.py:446: gpg-pubkey-9867c58f-601c49ca 1612466634 0 (none) installed +DEBUG util.py:446: libgcc-11.2.1-6.fc36.x86_64 1634659195 198596 948bcb6d189fc7ee2bcf08df3e0ded0d installed +DEBUG util.py:446: crypto-policies-20210917-1.gitc9d86d1.fc36.noarch 1631901128 86073 f48797f7cee7bb76459a72ae397c2bbe installed +DEBUG util.py:446: fedora-release-identity-basic-36-0.7.noarch 1629727368 748 67e266a3ec721a2c5127bef2ed8c372b installed +DEBUG util.py:446: tzdata-2021a-2.fc35.noarch 1627084482 1817652 7912221f6ce6fe8b2a809fbf187f5199 installed +DEBUG util.py:446: rust-srpm-macros-18-2.fc35.noarch 1627067759 2447 f3c831d1f80f4c06a6cd1f7967318c75 installed +DEBUG util.py:446: qt5-srpm-macros-5.15.2-3.fc35.noarch 1627037606 492 be3fc262a57f16a89528f058f00a9dc3 installed +DEBUG util.py:446: publicsuffix-list-dafsa-20210518-2.fc35.noarch 1627015083 68815 66e8314a663c969e724c10861c660788 installed +DEBUG util.py:446: pkgconf-m4-1.8.0-1.fc35.noarch 1627221480 14187 d3b120a3b4d78e4a7e45396f30d9c709 installed +DEBUG util.py:446: perl-srpm-macros-1-42.fc35.noarch 1627009629 862 31fd62af1588ade5c32d0b0fcefa45d8 installed +DEBUG util.py:446: openblas-srpm-macros-2-10.fc35.noarch 1626993369 104 6ef8804b6de37b9a73f2b8502530fc68 installed +DEBUG util.py:446: ocaml-srpm-macros-6-5.fc35.noarch 1626992091 745 519a978bddefede5d9252679a1726863 installed +DEBUG util.py:446: nim-srpm-macros-3-5.fc35.noarch 1626987977 1098 50f3b27dca3c2554c3334b6908fa8da4 installed +DEBUG util.py:446: ncurses-base-6.2-8.20210508.fc35.noarch 1626991807 307293 6fc56839d735263a9cfc0886c8d62377 installed +DEBUG util.py:446: libssh-config-0.9.6-1.fc36.noarch 1632238630 277 1f87ba3b630a8afeebedabfad4aeee99 installed +DEBUG util.py:446: kernel-srpm-macros-1.0-6.fc35.noarch 1626954864 621 f34169675490393047c9f76bb0dd5167 installed +DEBUG util.py:446: gnat-srpm-macros-4-14.fc35.noarch 1626923297 725 acfa6b9efd8326ee09e42947528d2fad installed +DEBUG util.py:446: ghc-srpm-macros-1.5.0-5.fc35.noarch 1626920787 535 83b17a3ad07bb6dce09a1113c2fbfc49 installed +DEBUG util.py:446: fpc-srpm-macros-1.3-4.fc35.noarch 1626912175 144 46535e4ca0d7762b018d90f26785ebe9 installed +DEBUG util.py:446: fedora-gpg-keys-36-0.3.noarch 1629216661 118311 1d520683e0e7cc4221ade46bec750891 installed +DEBUG util.py:446: fedora-release-36-0.7.noarch 1629727368 0 e093deb4e2f58f692e9b126dffe62afa installed +DEBUG util.py:446: fedora-release-common-36-0.7.noarch 1629727368 17568 ada8b78d5dd5dc784b1aa329da05df76 installed +DEBUG util.py:446: fedora-repos-rawhide-36-0.3.noarch 1629216661 2203 d83e34aeb6aa0cfd354175876d3b63b1 installed +DEBUG util.py:446: fedora-repos-36-0.3.noarch 1629216661 4597 8205ec5fae44ad89b015238f2f0b462b installed +DEBUG util.py:446: setup-2.13.9.1-2.fc35.noarch 1627075056 736053 64f8b1c53f47bf22f25324c6e700cc72 installed +DEBUG util.py:446: filesystem-3.16-1.fc36.x86_64 1632304495 106 696c3c32224ced91b048af23913ccaef installed +DEBUG util.py:446: basesystem-11-12.fc35.noarch 1626892315 0 af618e2cf6a1583a176bb5e45b0a5068 installed +DEBUG util.py:446: ncurses-libs-6.2-8.20210508.fc35.x86_64 1626985943 996375 2f994f573415c7206570f1717dcf626b installed +DEBUG util.py:446: zlib-1.2.11-30.fc35.x86_64 1627555046 203449 fc88ceb52649360b8d871331220b0f6c installed +DEBUG util.py:446: xz-libs-5.2.5-7.fc35.x86_64 1627092507 181437 a020e7464332c7f3873c34907eacff50 installed +DEBUG util.py:446: elfutils-libelf-0.185-5.fc35.x86_64 1628259076 992174 34da460b225bcbd122e42ed8c6ca2415 installed +DEBUG util.py:446: libstdc++-11.2.1-6.fc36.x86_64 1634659195 2479101 89257d9a10d316dc32c8e304e071efbe installed +DEBUG util.py:446: libuuid-2.37.2-1.fc36.x86_64 1629194240 34397 2edb70a01bb7932f8358c5992c0dc474 installed +DEBUG util.py:446: libzstd-1.5.0-2.fc35.x86_64 1627093306 1028163 c56a81660a167665720337b2d0c97070 installed +DEBUG util.py:446: libattr-2.5.1-3.fc35.x86_64 1626891756 29341 a17b4483f4a01b5eb6d01f41842da285 installed +DEBUG util.py:446: libacl-2.3.1-2.fc35.x86_64 1626889009 41090 7f91f200578996693fbd6ba53b745348 installed +DEBUG util.py:446: libcap-2.48-3.fc35.x86_64 1626961088 180511 fa377911e225ceb086daf490d0c94ab7 installed +DEBUG util.py:446: libcom_err-1.46.4-1.fc36.x86_64 1629807360 68945 a7c2723b8bbf1bf73dbbfd124a54cf3c installed +DEBUG util.py:446: libxcrypt-4.4.26-4.fc36.x86_64 1632260314 275090 950aebba01d9009bb03a60a10a078640 installed +DEBUG util.py:446: popt-1.18-6.fc36.x86_64 1631658902 130248 1d7d1c136af2df09061406932ba0c8c2 installed +DEBUG util.py:446: readline-8.1-3.fc35.x86_64 1627041494 492684 aaf61524862c6beeb77380c15d658a93 installed +DEBUG util.py:446: mpfr-4.1.0-8.fc35.x86_64 1626983884 802431 de62fb0bd1ab4954a5a3e601e4f95b58 installed +DEBUG util.py:446: dwz-0.14-2.fc35.x86_64 1626907299 280646 8ae97d97b2c29bfe9e0ee73643bedfdd installed +DEBUG util.py:446: unzip-6.0-53.fc35.x86_64 1627085048 394499 60a40024a1a2cc4e6734159ed1108959 installed +DEBUG util.py:446: file-libs-5.41-1.fc36.x86_64 1634677368 8807844 3f6a37d6c5bbd22a9376ce12608906e9 installed +DEBUG util.py:446: file-5.41-1.fc36.x86_64 1634677368 98373 72b8f28bac0368bc72027dff2bbaa97b installed +DEBUG util.py:446: openssl1.1-1:1.1.1l-1.fc36.x86_64 1632138772 3876243 29868be49deeb8c77436b599365172d1 installed +DEBUG util.py:446: sqlite-libs-3.36.0-4.fc36.x86_64 1629274141 1338849 1e9a9fef41195dcb15fa5d655a3d168d installed +DEBUG util.py:446: alternatives-1.19-1.fc35.x86_64 1627054363 63264 5cd393a56ec2efe3a8dd3f9abe55f043 installed +DEBUG util.py:446: libcap-ng-0.8.2-7.fc36.x86_64 1632337115 75012 57098680eb7832ece9c9089fe53a280e installed +DEBUG util.py:446: audit-libs-3.0.6-1.fc36.x86_64 1633107302 307281 f50f5dee1a1c6705169fa17042f6257a installed +DEBUG util.py:446: libsmartcols-2.37.2-1.fc36.x86_64 1629194240 135371 87c55bfc59efd942ef74441cc73528b6 installed +DEBUG util.py:446: libunistring-0.9.10-14.fc35.x86_64 1626970676 1642923 fb4cd52955e96d4fe989ece3153119fa installed +DEBUG util.py:446: libidn2-2.3.2-3.fc36.x86_64 1630430183 291720 8bec67ffc0040305e3efb64d378cf49a installed +DEBUG util.py:446: lua-libs-5.4.3-2.fc35.x86_64 1626974759 555606 708062639b1ec59c853e3949ecb655b4 installed +DEBUG util.py:446: lz4-libs-1.9.3-3.fc35.x86_64 1626976924 145387 35f02696af287b52c0a8ccd356299a79 installed +DEBUG util.py:446: libpsl-0.21.1-4.fc35.x86_64 1626969221 78520 418fc994aecd296a0e9f3a900a46f7c5 installed +DEBUG util.py:446: zip-3.0-31.fc35.x86_64 1627093104 712847 8bc0595d10f2bc85179113ad1484aba4 installed +DEBUG util.py:446: zstd-1.5.0-2.fc35.x86_64 1627093306 1960479 13397e9d0ff36b3adf5abe7703fd0c04 installed +DEBUG util.py:446: libxml2-2.9.12-6.fc35.x86_64 1626972022 1923894 58e6c4b8f0daf9cb8cf8355e9855a6ce installed +DEBUG util.py:446: libarchive-3.5.2-2.fc36.x86_64 1630307534 907245 2cf74a4f9a53cf7b134f11d53d18f855 installed +DEBUG util.py:446: elfutils-default-yama-scope-0.185-5.fc35.noarch 1628259164 1810 1a4ed61c32688e5f2f93ce33501c4a16 installed +DEBUG util.py:446: info-6.8-2.fc35.x86_64 1627082242 503786 d1e469daef55e19b18e1753de365ed7b installed +DEBUG util.py:446: ed-1.14.2-11.fc35.x86_64 1626907257 129811 094cf9934b01744c0c414314070af36f installed +DEBUG util.py:446: cpio-2.13-11.fc36.x86_64 1630325808 1083898 cc85cc47d3f25270b54345d0e0ae768a installed +DEBUG util.py:446: diffutils-3.8-1.fc35.x86_64 1627895573 1563061 b288fa5059e9d347c23ecf7459de1392 installed +DEBUG util.py:446: gdbm-libs-1:1.22-1.fc36.x86_64 1634724719 128586 372620214f5cb6cdd6fde1753825fb46 installed +DEBUG util.py:446: keyutils-libs-1.6.1-3.fc35.x86_64 1626955294 55801 535a1f1ca9e121cd9574c95b07820bb7 installed +DEBUG util.py:446: libbrotli-1.0.9-6.fc35.x86_64 1626893913 784274 d45caad095b8be733739ddc36bbf1a3b installed +DEBUG util.py:446: libdb-5.3.28-50.fc36.x86_64 1631794375 1922790 9165d206f0ee0ccb1da2c1528586359a installed +DEBUG util.py:446: libeconf-0.4.0-2.fc35.x86_64 1626962507 46171 1d425d5dc6879bacad175542465b0706 installed +DEBUG util.py:446: libffi-3.1-28.fc34.x86_64 1611731196 56840 077bc570623183e5b0eb94e8ef14e874 installed +DEBUG util.py:446: p11-kit-0.23.22-4.fc35.x86_64 1626999243 1659536 2e7cda635f37cded07d6b2c83065ba9a installed +DEBUG util.py:446: libgomp-11.2.1-6.fc36.x86_64 1634659195 412772 732c7e4d782e9dd4f71784cf913cadb6 installed +DEBUG util.py:446: libgcrypt-1.9.4-1.fc36.x86_64 1629720680 1392852 59e2cc2fed649bc002fb75e05e789b1d installed +DEBUG util.py:446: libnghttp2-1.46.0-1.fc36.x86_64 1634648839 162532 f366923935df459db89aea672fbf3eb8 installed +DEBUG util.py:446: libpkgconf-1.8.0-1.fc35.x86_64 1627221416 75953 4a3b0d15ab4d7e8482d98d677ad5b928 installed +DEBUG util.py:446: pkgconf-1.8.0-1.fc35.x86_64 1627221416 81451 f6bab719cb8f1b8c5862882bc45d2b45 installed +DEBUG util.py:446: pkgconf-pkg-config-1.8.0-1.fc35.x86_64 1627221416 989 a02a23bcacf44a3bdfc74247bc5d893c installed +DEBUG util.py:446: libsigsegv-2.13-3.fc35.x86_64 1626969727 50250 f9aa2f7104c70b331c044360a70664f4 installed +DEBUG util.py:446: p11-kit-trust-0.23.22-4.fc35.x86_64 1626999243 451087 70a611a55f6a52dbf5e6966daff44ae9 installed +DEBUG util.py:446: libverto-0.3.2-2.fc35.x86_64 1626970819 30277 cbb25f656c2c22c557ee83ad0d80dfb1 installed +DEBUG util.py:446: pcre-8.45-1.fc36.x86_64 1629279764 539220 6a5448ab58ca42fa50de789ab3a15848 installed +DEBUG util.py:446: grep-3.7-1.fc36.x86_64 1629144799 949303 418a97f7521220f4733ccdad7c84451f installed +DEBUG util.py:446: xz-5.2.5-7.fc35.x86_64 1627092507 685425 dd341adc7fbb8844cb9965b1eb893ec4 installed +DEBUG util.py:446: sed-4.8-8.fc35.x86_64 1627074776 813479 18a95fcfe58463e71717b520d2412a8a installed +DEBUG util.py:446: findutils-1:4.8.0-4.fc35.x86_64 1626911297 1758182 f636dbf756669a4ed38bc1dff6c63018 installed +DEBUG util.py:446: libutempter-1.2.1-5.fc35.x86_64 1626970643 58697 1c069b7288b0240929a10f6ac1cc1514 installed +DEBUG util.py:446: patch-2.7.6-15.fc35.x86_64 1627000523 265410 1e6cd06c190ae494f76619ff9487c79b installed +DEBUG util.py:446: tar-2:1.34-2.fc35.x86_64 1627081075 3156278 052b560465e9eebf3c4f7986aa10ee0b installed +DEBUG util.py:446: xxhash-libs-0.8.0-4.fc35.x86_64 1627092400 105030 300fca06d5c6d5eaa03afd87981cbdd2 installed +DEBUG util.py:446: coreutils-common-9.0-2.fc36.x86_64 1633350515 11033739 13dc7ddd21a60338fa3b873707724bed installed +DEBUG util.py:446: openssl-libs-1:3.0.0-1.fc36.x86_64 1631206141 6910251 eecd9be83d355e37db387ec828737d70 installed +DEBUG util.py:446: coreutils-9.0-2.fc36.x86_64 1633350515 5711386 418571a189b3343b279a0ff40fde28af installed +DEBUG util.py:446: ca-certificates-2021.2.50-3.fc35.noarch 1626894832 939948 aff01f0137ea9195efe407be332a9c66 installed +DEBUG util.py:446: krb5-libs-1.19.2-3.fc36.x86_64 1629825434 2198405 86be5f59ddccdf777917f48e6d2f57cf installed +DEBUG util.py:446: libblkid-2.37.2-1.fc36.x86_64 1629194240 230761 bcf6f579f2b0dd97f8bd07fd7c1ba638 installed +DEBUG util.py:446: libmount-2.37.2-1.fc36.x86_64 1629194240 311117 0947343ed48d8d733d44ab4c62b40f85 installed +DEBUG util.py:446: libtirpc-1.3.2-1.rc1.fc36.x86_64 1631022089 208178 913ab7f77980f2baa1545e35fdbaf84b installed +DEBUG util.py:446: util-linux-core-2.37.2-1.fc36.x86_64 1629194240 1279584 d296b4db24ad10daca513e302e92ceac installed +DEBUG util.py:446: cracklib-2.9.6-27.fc36.x86_64 1630357018 251474 942e9fca4ce39033b500229201baeb56 installed +DEBUG util.py:446: libnsl2-1.3.0-4.fc35.x86_64 1626968101 130270 ec90470cea464c30c21887ef0b6b5f78 installed +DEBUG util.py:446: libpwquality-1.4.4-6.fc36.x86_64 1628688648 415452 f743797d80fbc29a7c38d3fda554ca5b installed +DEBUG util.py:446: pam-1.5.2-6.fc36.x86_64 1633617824 1954020 ddd3c23fae599e2290c4c4d32ba5ade9 installed +DEBUG util.py:446: libfdisk-2.37.2-1.fc36.x86_64 1629194240 368883 94b88429c34d3017d1a8cc4436e6f32f installed +DEBUG util.py:446: cyrus-sasl-lib-2.1.27-16.fc36.x86_64 1634043547 2409888 e427e9a94b2dd7fd03de97dae3b456e8 installed +DEBUG util.py:446: openldap-2.4.59-4.fc36.x86_64 1633097029 718693 f7df4289afa6e71199687f3a9e8ebb08 installed +DEBUG util.py:446: libssh-0.9.6-1.fc36.x86_64 1632238467 513065 b5b56898289f134595e72319cd4acaaf installed +DEBUG util.py:446: elfutils-libs-0.185-5.fc35.x86_64 1628259076 709117 2c1ab9675c840b1b828052157ed4cc9f installed +DEBUG util.py:446: elfutils-debuginfod-client-0.185-5.fc35.x86_64 1628259076 52049 0303741a9495931d73ae739631434d14 installed +DEBUG util.py:446: elfutils-0.185-5.fc35.x86_64 1628259076 2817145 f9356ecaba6fa95c491d3c17b313d91d installed +DEBUG util.py:446: debugedit-5.0-2.fc35.x86_64 1627943772 194459 5239705164dbdb4cc743115c72824aaa installed +DEBUG util.py:446: rpm-4.17.0-1.fc36.1.x86_64 1631644675 2948922 a420c79ff2a9cffb2ef50aad8ddacab4 installed +DEBUG util.py:446: rpm-libs-4.17.0-1.fc36.1.x86_64 1631644675 775140 25b1fbc8993fe8028856f1bc219d9e3e installed +DEBUG util.py:446: rpm-build-libs-4.17.0-1.fc36.1.x86_64 1631644675 199518 7056d76c06bed3b527421ac5b8e6a828 installed +DEBUG util.py:446: efi-srpm-macros-5-4.fc36.noarch 1630608889 41111 9ac42e695d91164878696a83a337da1f installed +DEBUG util.py:446: lua-srpm-macros-1-5.fc35.noarch 1626974425 1314 1d371eb16120fb40dbf7c0f03c3e8291 installed +DEBUG util.py:446: rpmautospec-rpm-macros-0.2.5-1.fc35.noarch 1628264740 698 8d7c0d5e1ebd255a29531ed50f7eac01 installed +DEBUG util.py:446: fonts-srpm-macros-1:2.0.5-6.fc35.noarch 1626911835 56503 e028a54cd411cf0f8ad51dcc2fde13e2 installed +DEBUG util.py:446: go-srpm-macros-3.0.11-2.fc35.noarch 1626930626 60319 a69641b37d6aeebdd34a6f34ebf4a394 installed +DEBUG util.py:446: rpm-build-4.17.0-1.fc36.1.x86_64 1631644675 145180 716dd2c7165dcb7459337bf33d1fc737 installed +DEBUG util.py:446: util-linux-2.37.2-1.fc36.x86_64 1629194240 11216740 26af3a095042c6a0c6540785313ea546 installed +DEBUG util.py:446: libsepol-3.3-1.fc36.x86_64 1634898517 755963 4ddeff0eab7624bdcd30f3cc2e13147d installed +DEBUG util.py:446: libselinux-3.3-1.fc36.x86_64 1634903551 169437 2d15b3d1a0de42de5fbbcc2a6508ca61 installed +DEBUG util.py:446: libsemanage-3.3-1.fc36.x86_64 1634905114 303896 8ed4e5384f70b0f9d587277fd6c770b9 installed +DEBUG util.py:446: gzip-1.11-1.fc36.x86_64 1634828906 370548 794ed9a20c54f84518e4136dd1e54b06 installed +DEBUG util.py:446: which-2.21-30.fc36.x86_64 1635264489 82340 be89267cc17b7ab206472f551fe0664a installed +DEBUG util.py:446: libcurl-7.79.1-3.fc36.x86_64 1635339368 681126 479c1b6d8a742c8bc8a6b5edc40b0e1a installed +DEBUG util.py:446: curl-7.79.1-3.fc36.x86_64 1635339368 723156 c98909900219adb47cacbe1a5427b1cc installed +DEBUG util.py:446: binutils-gold-2.37-17.fc36.x86_64 1635337381 1976795 9f56451960fe82ae10853d43f441bb2b installed +DEBUG util.py:446: binutils-2.37-17.fc36.x86_64 1635337381 34147850 0c2bb5fd702e85d0f28ef60b18895d43 installed +DEBUG util.py:446: glibc-gconv-extra-2.34.9000-17.fc36.x86_64 1635968897 8225724 3eef23931d1f8d1aef47f1127f219094 installed +DEBUG util.py:446: glibc-2.34.9000-17.fc36.x86_64 1635968897 6286667 e2e5cb78040a788ed8f39be5489cab07 installed +DEBUG util.py:446: bash-5.1.8-3.fc36.x86_64 1636111791 7739722 3c238f6212cb3e61fdf240e713fbee46 installed +DEBUG util.py:446: glibc-common-2.34.9000-17.fc36.x86_64 1635968897 1097530 a2854d609d655e576e8d9765f76bfab3 installed +DEBUG util.py:446: glibc-minimal-langpack-2.34.9000-17.fc36.x86_64 1635968897 0 4d0c92c6f53d38106326689bbedff034 installed +DEBUG util.py:446: gmp-1:6.2.1-1.fc36.x86_64 1635864434 818487 b8672b965eb91df7f27cb3eb8aa854e8 installed +DEBUG util.py:446: python-srpm-macros-3.10-13.fc36.noarch 1635937773 42068 0cc788d3faa896f6e367b8193d190aa7 installed +DEBUG util.py:446: bzip2-libs-1.0.8-10.fc36.x86_64 1635847593 78692 5e06fb139bdb55a6e35d7db6a9fd1f5d installed +DEBUG util.py:446: pcre2-syntax-10.39-1.fc36.noarch 1636034078 229322 07c65426a24baf43c87a36401347c023 installed +DEBUG util.py:446: pcre2-10.39-1.fc36.x86_64 1636034008 633258 e35b8e2e0f275380920669c31926bb0c installed +DEBUG util.py:446: bzip2-1.0.8-10.fc36.x86_64 1635847593 94045 7ba905cef7f33c69731be413a734f4f3 installed +DEBUG util.py:446: gawk-5.1.1-1.fc36.x86_64 1635772564 1708362 17f402fe974cae460327fda5caf594d9 installed +DEBUG util.py:446: gdb-minimal-11.1-3.fc36.x86_64 1636053239 12679252 40aa6ab9f1d6a3a9155a35c08439cc17 installed +DEBUG util.py:446: systemd-libs-249.6-2.fc36.x86_64 1636036536 1730520 4e084199b2e63215239fcc4e540ecb20 installed +DEBUG util.py:446: libgpg-error-1.43-1.fc36.x86_64 1635950575 851221 7afd824890acf0cdd873ae3f47867ae2 installed +DEBUG util.py:446: libtasn1-4.17.0-1.fc36.x86_64 1635979884 183476 efa04349b3218e4060e43f13152663a0 installed +DEBUG util.py:446: shadow-utils-2:4.9-6.fc36.x86_64 1636026905 3837730 2de4aa577cce23624bfa49b5bfd2757b installed +DEBUG util.py:446: python-setuptools-wheel-58.2.0-1.fc36.noarch 1634822197 594370 944df2c039d85f4bf6c8e09d035f1fd8 installed +DEBUG util.py:446: python-pip-wheel-21.3.1-1.fc36.noarch 1635195808 1232567 48c923eccdb4bfa66aa035df74d783b2 installed +DEBUG util.py:446: mpdecimal-2.5.1-2.fc35.x86_64 1626983795 246955 5a959017ea843dc9cd834137e17dcbc5 installed +DEBUG util.py:446: expat-2.4.1-2.fc35.x86_64 1626909776 295041 1daae32a6bd9b6d68dce05f6cc47415a installed +DEBUG util.py:446: python3-3.10.0-2.fc36.x86_64 1633437650 33130 8897a7af80ba3f03bda5903e505f397f installed +DEBUG util.py:446: python3-libs-3.10.0-2.fc36.x86_64 1633437650 33057311 ac68de88ad7240a2db739101232cece6 installed +DEBUG util.py:446: redhat-rpm-config-202-1.fc36.noarch 1636390968 176787 88a1c404363292de49a616ed4110827e installed +DEBUG util.py:446: python3-six-1.16.0-4.fc35.noarch 1627032980 106857 2bd146213fd8694f7cc4659dbf43aa7d installed +DEBUG util.py:446: python3-setuptools-58.2.0-1.fc36.noarch 1634822197 4769694 9279acabca6ba57cdbf7a90b0c7d4751 installed +DEBUG util.py:446: python3-docutils-0.17.1-1.fc36.noarch 1632308035 4124041 e50eb22f8524ded673acc8dfca349cbd installed +DEBUG util.py:446: python-rpm-macros-3.10-13.fc36.noarch 1635937773 13789 d4d1a05a2b2e10f2514c581ebd3a766b installed +DEBUG util.py:446: fonts-filesystem-1:2.0.5-6.fc35.noarch 1626911835 0 450077d5fbbe5891c63e0fb894c30c5d installed +DEBUG util.py:446: python3-rpm-macros-3.10-13.fc36.noarch 1635937773 5634 039bce2c403d1264ac880691d6666f59 installed +DEBUG util.py:446: python3-webencodings-0.5.1-16.fc35.noarch 1627035533 74981 a1ed29ba1c6a8a2d195d01750b436a36 installed +DEBUG util.py:446: python3-pygments-2.10.0-1.fc36.noarch 1629460960 8709593 08904c59f23da16a383bb6d7b5081701 installed +DEBUG util.py:446: python3-jeepney-0.7.1-1.fc35.noarch 1627989571 1908243 44a825bafb749be33a3f3d88d4f969c1 installed +DEBUG util.py:446: python3-idna-3.3-1.fc36.noarch 1634217913 498563 bed578d8447a294bbac66cda554d4464 installed +DEBUG util.py:446: libquadmath-11.2.1-6.fc36.x86_64 1634659195 337788 b16d7d2dbe39799287388700698b4fbd installed +DEBUG util.py:446: libgfortran-11.2.1-6.fc36.x86_64 1634659195 2822582 48bd242a7f8c846731d4f5a4216f3f84 installed +DEBUG util.py:446: flexiblas-3.0.4-6.fc35.x86_64 1626911983 69843 544a73bb54cbc59cb2b74867c82d908b installed +DEBUG util.py:446: python3-html5lib-1:1.1-6.fc35.noarch 1627023225 1220265 3dd0345a0d1c031ffcf06c518b1c54c8 installed +DEBUG util.py:446: pyproject-rpm-macros-0-49.fc36.noarch 1635499017 73310 ed69833e99f4e98ea118059d170d0192 installed +DEBUG util.py:446: fontawesome-fonts-1:4.7.0-12.fc35.noarch 1626911687 303691 9fac2c57b45b24143f285840160e3b5f installed +DEBUG util.py:446: google-roboto-slab-fonts-1.100263-0.16.20150923git.fc35.noarch 1626943841 716009 9bb6333ef6d7bb70a28195f60a90c385 installed +DEBUG util.py:446: lato-fonts-2.015-12.fc35.noarch 1626959688 11875329 e4a2197833f6742fa394327539b0cb07 installed +DEBUG util.py:446: python3-pkginfo-1.7.1-2.fc35.noarch 1627028451 68941 47fc6079c23c44289d3c46ca3a913509 installed +DEBUG util.py:446: python3-py-1.10.0-5.fc35.noarch 1627028982 2842768 b1bc52c052ea0713a59883c178a187e4 installed +DEBUG util.py:446: python3-zipp-3.6.0-1.fc36.noarch 1633439632 24036 bf3e449ccb0620fff02ed2c770786ab3 installed +DEBUG util.py:446: python3-importlib-metadata-4.8.1-1.fc36.noarch 1630316947 104653 cf397a1949bcf8a6fc45ff929f6de56d installed +DEBUG util.py:446: python3-tqdm-4.62.3-1.fc36.noarch 1632259452 481990 7a736814cdc8e28e38f745615b6a4fc7 installed +DEBUG util.py:446: python3-toml-0.10.2-5.fc35.noarch 1627374446 102372 f05c433c1cb7600141b8948ea4c93882 installed +DEBUG util.py:446: python3-sphinxcontrib-serializinghtml-1.1.5-2.fc35.noarch 1627033637 60201 af591165961093ac97d71950a8288764 installed +DEBUG util.py:446: python3-sphinxcontrib-qthelp-1.0.3-6.fc35.noarch 1627033622 57290 a085a3ee514d517a9122b5bfbf9bac91 installed +DEBUG util.py:446: python3-sphinxcontrib-jsmath-1.0.1-13.fc35.noarch 1627033575 12192 e089f85b5c3d87b675f4252393b51f21 installed +DEBUG util.py:446: python3-sphinxcontrib-htmlhelp-2.0.0-2.fc35.noarch 1627033475 74689 76b53cbe840f9b2d4c8cc611b65374a3 installed +DEBUG util.py:446: python3-sphinxcontrib-devhelp-1.0.2-6.fc35.noarch 1627033494 46576 1cdb5947807f172033e0a71aa1883230 installed +DEBUG util.py:446: python3-sphinxcontrib-applehelp-1.0.2-6.fc35.noarch 1627033500 62761 dfd9d1ac95a6f0ecb495723488e9653a installed +DEBUG util.py:446: python3-sphinx-theme-alabaster-0.7.12-13.fc35.noarch 1627033319 38942 667a66c8bd17d0e04d06f6584a247233 installed +DEBUG util.py:446: python3-snowballstemmer-1.9.0-10.fc35.noarch 1627033077 1171723 fbf5fc61cd01274922eb5374ac7c00e7 installed +DEBUG util.py:446: python3-rfc3986-1.4.0-7.fc35.noarch 1627031969 176474 f8dae2434692450ac9a3089f20a43c3b installed +DEBUG util.py:446: python3-pytz-2021.3-1.fc36.noarch 1633368815 175046 2c38cd542ebb569491be95e0d7a1bb56 installed +DEBUG util.py:446: python3-babel-2.9.1-4.fc35.noarch 1626892098 28258522 fe9419e24684a89ddb6f0db706f6d513 installed +DEBUG util.py:446: python3-pysocks-1.7.1-11.fc35.noarch 1627030415 87789 959306d8debf19cdb69e554bd372c886 installed +DEBUG util.py:446: python3-urllib3-1.26.7-1.fc36.noarch 1632687280 728395 a7ffa0025616692bbb247744a9773b90 installed +DEBUG util.py:446: python3-pyparsing-2.4.7-9.fc35.noarch 1627016952 647492 a028d078073a688bb8a587dd290ef018 installed +DEBUG util.py:446: python3-packaging-21.2-1.fc36.noarch 1635851006 248300 3e2dd47b82de2817a05981d9070ab6db installed +DEBUG util.py:446: python3-bleach-4.0.0-1.fc35.noarch 1628526364 152758 efd457181fc9818f3f774ce31143a106 installed +DEBUG util.py:446: python3-readme-renderer-29.0-3.fc35.noarch 1627031635 47222 6c23181f37059b4fffa6823481a7f20a installed +DEBUG util.py:446: python3-rpm-generators-12-10.fc36.noarch 1635755623 79386 366c8d38d30a7d57385cad3f62c4902a installed +DEBUG util.py:446: python3-devel-3.10.0-2.fc36.x86_64 1633437650 797665 107cac81d907fb21201fdd1e42de532c installed +DEBUG util.py:446: python3-ply-3.11-13.fc35.noarch 1627028727 439469 36a3fdde3894d090348ab1e5529f83e5 installed +DEBUG util.py:446: python3-pycparser-2.20-5.fc35.noarch 1627374357 754238 6f0685b74b8dd9139a2667fdf61af52c installed +DEBUG util.py:446: python3-cffi-1.15.0~rc2-1.fc36.x86_64 1633686925 1070248 821139963912d6788a44c7187258f325 installed +DEBUG util.py:446: python3-cryptography-35.0.0-2.fc36.x86_64 1632988768 4326944 05ef5a5f3e757bbfc94a3d1433e07273 installed +DEBUG util.py:446: python3-secretstorage-3.3.1-3.fc35.noarch 1627017261 92755 dfe4a07893cd494f98a9c526ddac0f64 installed +DEBUG util.py:446: python3-keyring-21.8.0-4.fc35.noarch 1627024568 211535 505f569f67826af7aaa642d64d6b6e41 installed +DEBUG util.py:446: python3-pluggy-1.0.0-1.fc36.noarch 1630053293 100225 6cab2dde649d4aed673c961c42027592 installed +DEBUG util.py:446: python3-markupsafe-2.0.0-2.fc35.x86_64 1627025453 49376 ce47aee0c30c249e90daaa1cce364427 installed +DEBUG util.py:446: python3-jinja2-3.0.1-2.fc35.noarch 1627023896 3077242 fb09f683c4bcea6cd0cea1cde2cd0687 installed +DEBUG util.py:446: python3-iniconfig-1.1.1-5.fc35.noarch 1627023431 17825 90da9af37bea0b1c3dab8214a31ffeac installed +DEBUG util.py:446: python3-imagesize-1.2.0-6.fc35.noarch 1627023355 22800 f4583c71f96be181eb6623d246d4991d installed +DEBUG util.py:446: python3-colorama-0.4.4-4.fc35.noarch 1627019687 79049 33db62bc60bb0d857caca855976071dc installed +DEBUG util.py:446: python3-charset-normalizer-2.0.7-1.fc36.noarch 1634217749 239094 cba6adf526b6834cea43ae9053f90a05 installed +DEBUG util.py:446: python3-requests-2.26.0-1.fc35.noarch 1627551985 406713 a593e08c2e0363a6351cdeffa6160c8e installed +DEBUG util.py:446: python3-requests-toolbelt-0.9.1-15.fc35.noarch 1627031830 284749 56adb0cefa3dc94bdeee173bcb123ae7 installed +DEBUG util.py:446: python3-sphinx-1:4.2.0-1.fc36.noarch 1632309078 9233273 34ea53865724e873b39bc24956001c50 installed +DEBUG util.py:446: python3-cached_property-1.5.2-4.fc35.noarch 1627018966 36772 cbbfe5a4131163ebd2060d8905d6c67d installed +DEBUG util.py:446: python3-attrs-21.2.0-4.fc35.noarch 1627018429 307243 13de25805f5258ca0fba15e4ed698f1e installed +DEBUG util.py:446: openssh-8.7p1-3.fc36.x86_64 1632915852 1958790 cf9e662acc8a646134bc2adef5ba8041 installed +DEBUG util.py:446: openblas-0.3.18-1.fc36.x86_64 1633958143 76037 ef08497d7e41c63bf16348a2f3e4dc97 installed +DEBUG util.py:446: openblas-openmp-0.3.18-1.fc36.x86_64 1633958143 40969364 3a209339070e582190b42a3cfe28b4ef installed +DEBUG util.py:446: flexiblas-openblas-openmp-3.0.4-6.fc35.x86_64 1626911983 42797 f23d4a853391dae49792d6b2b43a7b69 installed +DEBUG util.py:446: flexiblas-netlib-3.0.4-6.fc35.x86_64 1626911983 11543586 f6ffe8b87e11ff2c5026ea1e2f833025 installed +DEBUG util.py:446: python3-numpy-1:1.21.1-1.fc35.x86_64 1628181641 27618483 1a4d5524ddc3406cf8541fd9840ff752 installed +DEBUG util.py:446: python3-numpy-f2py-1:1.21.1-1.fc35.x86_64 1628181641 1029394 9b1ca332c5224e6cdbe2f76a70952c97 installed +DEBUG util.py:446: libtool-ltdl-2.4.6-44.fc36.x86_64 1633336710 72560 5cc7d431d59cc056230828cc83eafdcb installed +DEBUG util.py:446: liblzf-3.6-22.fc35.x86_64 1626966496 55270 82e7aee45fcc30bb32a0f09be01d3939 installed +DEBUG util.py:446: libedit-3.1-40.20210910cvs.fc36.x86_64 1631547159 252781 3c3ef3549035c5397cc2ba00dad58405 installed +DEBUG util.py:446: libcbor-0.7.0-4.fc35.x86_64 1626961119 99678 4382f5fc01f0042454afdb718f21f757 installed +DEBUG util.py:446: libfido2-1.9.0-1.fc36.x86_64 1635429877 235912 ab7834fcee83e71f18ffacfd8ee30a0e installed +DEBUG util.py:446: openssh-clients-8.7p1-3.fc36.x86_64 1632915852 2112707 c3369c9e3ee7dd1ccbc712f1c3a729dc installed +DEBUG util.py:446: libaec-1.0.6-1.fc36.x86_64 1631895569 121595 9aaad52dd8ce7dc329d591427d3c0d5c installed +DEBUG util.py:446: hdf5-1.10.7-2.fc36.x86_64 1630295129 7885428 ae4c269d4ab272f7a097c006bb8076ca installed +DEBUG util.py:446: less-590-2.fc36.x86_64 1635160233 367032 f978822006efbc62e77df4adc688e1a9 installed +DEBUG util.py:446: gc-8.0.6-1.fc36.x86_64 1635346211 238176 8b3202653b8fb3454de3c17abdbe811a installed +DEBUG util.py:446: guile22-2.2.7-3.fc35.x86_64 1626946667 45858329 0eb36e9b52b76b73a2bc418a5c35c7e8 installed +DEBUG util.py:446: make-1:4.3-6.fc35.x86_64 1626977336 1729022 43414cbe6954dc263444fa9f7daaf717 installed +DEBUG util.py:446: git-core-2.33.1-1.fc36.x86_64 1634096128 17798113 ae9df038b39627dd0ec3340b44fa7c67 installed +DEBUG util.py:446: python3-h5py-3.4.0-2.fc36.x86_64 1633269001 3614432 69416c9c765cd9d662262879edab2421 installed +DEBUG util.py:446: python3-scipy-1.7.0-2.fc35.x86_64 1626682181 67687106 cacdb1e32b7d47be282664ec9a7a262c installed +DEBUG util.py:446: python3-pytest-6.2.5-1.fc36.noarch 1631899835 12419548 c55f6d38626ea22d0653e8f1c093df50 installed +DEBUG util.py:446: python3-sphinx_rtd_theme-1.0.0-1.fc36.noarch 1631634647 303745 a18b9976a2bba9a50d2fd5a7c70c6b02 installed +DEBUG util.py:446: twine-3.4.2-1.fc35.noarch 1628075467 172917 363495ed7ea7d8d3458e950308c0dc22 installed +DEBUG util.py:446: python3-xmltodict-0.12.0-13.fc35.noarch 1627035980 43429 e74ab4c6f96cd97008454038cd942b71 installed +DEBUG util.py:446: python3-wheel-1:0.37.0-1.fc36.noarch 1629291722 214620 26ef322cbcab0043647fd947706925ff installed +DEBUG util.py:446: python3-future-0.18.2-11.fc35.noarch 1626913443 3428204 b468efb2ab865b78fb103c99f31d598a installed +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG backend.py:777: Copying packages to result dir +DEBUG util.py:169: kill orphans +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64-bootstrap/root/var/lib/mock/fedora-rawhide-x86_64/root'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64-bootstrap/root/var/lib/mock/fedora-rawhide-x86_64/root'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '/var/lib/mock/fedora-rawhide-x86_64/root/proc/filesystems'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '/var/lib/mock/fedora-rawhide-x86_64/root/var/cache/dnf'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '/var/lib/mock/fedora-rawhide-x86_64/root/var/cache/yum'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['btrfs', 'subv', 'list', '/var/lib/mock'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:446: ID 256 gen 66215 top level 5 path home +DEBUG util.py:446: ID 258 gen 66216 top level 5 path root +DEBUG util.py:446: ID 262 gen 52102 top level 258 path var/lib/machines +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:169: kill orphans +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '/var/lib/mock/fedora-rawhide-x86_64-bootstrap/root/proc/filesystems'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '/var/lib/mock/fedora-rawhide-x86_64-bootstrap/root/var/cache/dnf'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 +DEBUG util.py:624: child environment: None +DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '/var/lib/mock/fedora-rawhide-x86_64-bootstrap/root/var/cache/yum'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False +DEBUG util.py:598: Child return code was: 0 diff --git a/results_python-pymatreader/0.0.25/1.fc36/state.log b/results_python-pymatreader/0.0.25/1.fc36/state.log new file mode 100644 index 0000000..365e47c --- /dev/null +++ b/results_python-pymatreader/0.0.25/1.fc36/state.log @@ -0,0 +1,17 @@ +2021-11-10 07:47:08,425 - Mock Version: 2.12 +2021-11-10 07:47:12,889 - Start: dnf update +2021-11-10 07:48:36,419 - Start: creating root cache +2021-11-10 07:48:58,507 - Finish: creating root cache +2021-11-10 07:48:58,522 - Finish: dnf update +2021-11-10 07:48:58,654 - Finish: chroot init +2021-11-10 07:48:58,899 - Start: build phase for python-pymatreader-0.0.25-1.fc36.src.rpm +2021-11-10 07:48:58,913 - Start: build setup for python-pymatreader-0.0.25-1.fc36.src.rpm +2021-11-10 07:50:00,638 - Finish: build setup for python-pymatreader-0.0.25-1.fc36.src.rpm +2021-11-10 07:50:00,680 - Start: Outputting list of installed packages +2021-11-10 07:50:01,996 - Finish: Outputting list of installed packages +2021-11-10 07:50:01,999 - Start: rpmbuild python-pymatreader-0.0.25-1.fc36.src.rpm +2021-11-10 07:55:22,475 - Finish: rpmbuild python-pymatreader-0.0.25-1.fc36.src.rpm +2021-11-10 07:55:22,960 - Finish: build phase for python-pymatreader-0.0.25-1.fc36.src.rpm +2021-11-10 07:55:23,148 - Start: clean chroot +2021-11-10 07:55:37,058 - Finish: clean chroot +2021-11-10 07:55:37,061 - Finish: run From 380dc326c6ac185687bee3004e49f6d5e00b4fda Mon Sep 17 00:00:00 2001 From: Vanessa Christopher Date: Nov 10 2021 07:09:37 +0000 Subject: [PATCH 4/5] updated specFile --- diff --git a/python-pymatreader-0.0.25-1.fc36.src.rpm b/python-pymatreader-0.0.25-1.fc36.src.rpm deleted file mode 100644 index 7dd4720..0000000 Binary files a/python-pymatreader-0.0.25-1.fc36.src.rpm and /dev/null differ diff --git a/python-pymatreader-0.0.25.tar.gz b/python-pymatreader-0.0.25.tar.gz deleted file mode 100644 index 4e46144..0000000 Binary files a/python-pymatreader-0.0.25.tar.gz and /dev/null differ diff --git a/python-pymatreader.spec b/python-pymatreader.spec index d3d3577..250d4e0 100644 --- a/python-pymatreader.spec +++ b/python-pymatreader.spec @@ -96,6 +96,7 @@ popd %changelog * Fri Jul 23 2021 Fedora Release Engineering - 0.0.25-1 - Updated version to 0.0.25 +- Removed patch files in specFile * Fri Jul 23 2021 Fedora Release Engineering - 0.0.24-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild diff --git a/results_python-pymatreader/0.0.25/1.fc36/build.log b/results_python-pymatreader/0.0.25/1.fc36/build.log deleted file mode 100644 index cd1c1b9..0000000 --- a/results_python-pymatreader/0.0.25/1.fc36/build.log +++ /dev/null @@ -1,242 +0,0 @@ -Mock Version: 2.12 -ENTER ['do_with_status'](['bash', '--login', '-c', '/usr/bin/rpmbuild -bs --target x86_64 --nodeps /builddir/build/SPECS/python-pymatreader.spec'], chrootPath='/var/lib/mock/fedora-rawhide-x86_64/root'env={'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8'}shell=Falselogger=timeout=0uid=1000gid=135user='mockbuild'nspawn_args=['--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.e0q2oq0n:/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']unshare_net=TrueprintOutput=True) -Using nspawn with args ['--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.e0q2oq0n:/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'] -Executing command: ['/usr/bin/systemd-nspawn', '-q', '-M', '0701ce5d165f48d483000aa85f03dcd3', '-D', '/var/lib/mock/fedora-rawhide-x86_64/root', '-a', '-u', 'mockbuild', '--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.e0q2oq0n:/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;\\007"', '--setenv=PS1= \\s-\\v\\$ ', '--setenv=LANG=C.UTF-8', '--resolv-conf=off', 'bash', '--login', '-c', '/usr/bin/rpmbuild -bs --target x86_64 --nodeps /builddir/build/SPECS/python-pymatreader.spec'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8', 'SYSTEMD_NSPAWN_TMPFS_TMP': '0'} and shell False -Building target platforms: x86_64 -Building for target x86_64 -setting SOURCE_DATE_EPOCH=1626998400 -Wrote: /builddir/build/SRPMS/python-pymatreader-0.0.25-1.fc36.src.rpm -Child return code was: 0 -ENTER ['do_with_status'](['bash', '--login', '-c', '/usr/bin/rpmbuild -bb --target x86_64 --nodeps /builddir/build/SPECS/python-pymatreader.spec'], chrootPath='/var/lib/mock/fedora-rawhide-x86_64/root'env={'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8'}shell=Falselogger=timeout=0uid=1000gid=135user='mockbuild'nspawn_args=['--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.e0q2oq0n:/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']unshare_net=TrueprintOutput=True) -Using nspawn with args ['--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.e0q2oq0n:/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'] -Executing command: ['/usr/bin/systemd-nspawn', '-q', '-M', '34c04fe09c9c4f98aee7b9a627de104f', '-D', '/var/lib/mock/fedora-rawhide-x86_64/root', '-a', '-u', 'mockbuild', '--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.e0q2oq0n:/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;\\007"', '--setenv=PS1= \\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-pymatreader.spec'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8', 'SYSTEMD_NSPAWN_TMPFS_TMP': '0'} and shell False -Building target platforms: x86_64 -Building for target x86_64 -setting SOURCE_DATE_EPOCH=1626998400 -Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.WOk1ym -+ umask 022 -+ cd /builddir/build/BUILD -+ cd /builddir/build/BUILD -+ rm -rf pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 -+ /usr/bin/tar -xof - -+ /usr/bin/gzip -dc /builddir/build/SOURCES/python-pymatreader-0.0.25.tar.gz -+ STATUS=0 -+ '[' 0 -ne 0 ']' -+ cd pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 -+ /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w . -Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.iaAGDM -+ rm -rf pymatreader.egg-info -+ RPM_EC=0 -++ jobs -p -+ exit 0 -+ umask 022 -+ cd /builddir/build/BUILD -+ cd pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 -+ 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' -/usr/lib/python3.10/site-packages/setuptools/dist.py:487: UserWarning: Normalizing '0.0.25 -' to '0.0.25' - warnings.warn(tmpl.format(**locals())) -running build -running build_py -creating build -creating build/lib -creating build/lib/pymatreader -copying pymatreader/__init__.py -> build/lib/pymatreader -copying pymatreader/pymatreader.py -> build/lib/pymatreader -copying pymatreader/utils.py -> build/lib/pymatreader -~/build/BUILD/pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1/doc ~/build/BUILD/pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 -+ pushd doc -+ make SPHINXBUILD=sphinx-build-3 html -Running Sphinx v4.2.0 -making output directory... done -WARNING: html_static_path entry '_static' does not exist -building [mo]: targets for 0 po files that are out of date -building [html]: targets for 1 source files that are out of date -updating environment: [new config] 1 added, 0 changed, 0 removed -reading sources... [100%] index -looking for now-outdated files... none found -pickling environment... done -checking consistency... done -preparing documents... done -writing output... [100%] index -generating indices... genindex py-modindex done -highlighting module code... [100%] pymatreader.pymatreader -writing additional pages... search done -copying static files... done -copying extra files... done -dumping search index in English (code: en)... done -dumping object inventory... done -build succeeded, 1 warning. -The HTML pages are in build/html. -~/build/BUILD/pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1/doc/build/html ~/build/BUILD/pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1/doc ~/build/BUILD/pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 -+ rm -rf build/html/.doctrees -+ rm -rf build/html/.buildinfo -+ pushd build/html -+ iconv --from=ISO-8859-1 --to=UTF-8 objects.inv -+ touch -r objects.inv objects.inv.new -+ mv objects.inv.new objects.inv -~/build/BUILD/pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1/doc ~/build/BUILD/pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 -~/build/BUILD/pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 -+ popd -+ popd -+ RPM_EC=0 -++ jobs -p -+ exit 0 -Executing(%install): /bin/sh -e /var/tmp/rpm-tmp.iCqTYX -+ umask 022 -+ cd /builddir/build/BUILD -+ '[' /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64 '!=' / ']' -+ rm -rf /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64 -++ dirname /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64 -+ mkdir -p /builddir/build/BUILDROOT -+ mkdir /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64 -+ cd pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 -+ 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-pymatreader-0.0.25-1.fc36.x86_64 -/usr/lib/python3.10/site-packages/setuptools/dist.py:487: UserWarning: Normalizing '0.0.25 -' to '0.0.25' - warnings.warn(tmpl.format(**locals())) -running install -running install_lib -creating /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr -creating /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/lib -creating /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/lib/python3.10 -creating /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/lib/python3.10/site-packages -creating /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/lib/python3.10/site-packages/pymatreader -copying build/lib/pymatreader/__init__.py -> /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/lib/python3.10/site-packages/pymatreader -copying build/lib/pymatreader/pymatreader.py -> /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/lib/python3.10/site-packages/pymatreader -copying build/lib/pymatreader/utils.py -> /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/lib/python3.10/site-packages/pymatreader -byte-compiling /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/lib/python3.10/site-packages/pymatreader/__init__.py to __init__.cpython-310.pyc -byte-compiling /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/lib/python3.10/site-packages/pymatreader/pymatreader.py to pymatreader.cpython-310.pyc -byte-compiling /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/lib/python3.10/site-packages/pymatreader/utils.py to utils.cpython-310.pyc -writing byte-compilation script '/tmp/tmpqzaehqrp.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/tmpqzaehqrp.py -removing /tmp/tmpqzaehqrp.py -running install_egg_info -running egg_info -creating pymatreader.egg-info -writing pymatreader.egg-info/PKG-INFO -writing dependency_links to pymatreader.egg-info/dependency_links.txt -writing requirements to pymatreader.egg-info/requires.txt -writing top-level names to pymatreader.egg-info/top_level.txt -writing manifest file 'pymatreader.egg-info/SOURCES.txt' -reading manifest file 'pymatreader.egg-info/SOURCES.txt' -reading manifest template 'MANIFEST.in' -adding license file 'LICENSE' -writing manifest file 'pymatreader.egg-info/SOURCES.txt' -Copying pymatreader.egg-info to /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/lib/python3.10/site-packages/pymatreader-0.0.25-py3.10.egg-info -running install_scripts -+ rm -rfv /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/bin/__pycache__ -+ /usr/bin/find-debuginfo -j1 --strict-build-id -m -i --build-id-seed 0.0.25-1.fc36 --unique-debug-suffix -0.0.25-1.fc36.x86_64 --unique-debug-src-base python-pymatreader-0.0.25-1.fc36.x86_64 --run-dwz --dwz-low-mem-die-limit 10000000 --dwz-max-die-limit 110000000 -S debugsourcefiles.list /builddir/build/BUILD/pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 -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-pymatreader-0.0.25-1.fc36.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.j0uqKL -+ umask 022 -+ cd /builddir/build/BUILD -+ cd pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 -+ 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 ' -+ PATH=/builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/bin:/builddir/.local/bin:/builddir/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin -+ PYTHONPATH=/builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/lib64/python3.10/site-packages:/builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/lib/python3.10/site-packages -+ PYTHONDONTWRITEBYTECODE=1 -+ /usr/bin/pytest -k 'not test_files_with_unsupported_classesv7' -============================= test session starts ============================== -platform linux -- Python 3.10.0, pytest-6.2.5, py-1.10.0, pluggy-1.0.0 -rootdir: /builddir/build/BUILD/pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 -collected 18 items / 2 deselected / 16 selected -tests/test_pymatreader.py ................ [100%] -=============================== warnings summary =============================== -tests/test_pymatreader.py: 628 warnings - /usr/lib64/python3.10/site-packages/numpy/matrixlib/defmatrix.py:69: PendingDeprecationWarning: the matrix subclass is not the recommended way to represent matrices or deal with linear algebra (see https://docs.scipy.org/doc/numpy/user/numpy-for-matlab-users.html). Please adjust your code to use regular ndarray. - return matrix(data, dtype=dtype, copy=False) -tests/test_pymatreader.py::test_eeglab_epochs - /builddir/build/BUILD/pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1/pymatreader/utils.py:118: UserWarning: Complex objects (like classes) are not supported. They are imported on a best effort base but your mileage will vary. - warn('Complex objects (like classes) are not supported. ' --- Docs: https://docs.pytest.org/en/stable/warnings.html -========== 16 passed, 2 deselected, 629 warnings in 302.89s (0:05:02) ========== -+ RPM_EC=0 -++ jobs -p -+ exit 0 -Processing files: python3-pymatreader-0.0.25-1.fc36.noarch -Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.3V5X17 -Executing(%license): /bin/sh -e /var/tmp/rpm-tmp.OPaP6H -+ umask 022 -+ cd /builddir/build/BUILD -+ cd pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 -+ DOCDIR=/builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/share/doc/python3-pymatreader -+ export LC_ALL=C -+ LC_ALL=C -+ export DOCDIR -+ /usr/bin/mkdir -p /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/share/doc/python3-pymatreader -+ cp -pr README.md /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/share/doc/python3-pymatreader -+ RPM_EC=0 -++ jobs -p -+ exit 0 -+ umask 022 -+ cd /builddir/build/BUILD -+ cd pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 -+ LICENSEDIR=/builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/share/licenses/python3-pymatreader -+ export LC_ALL=C -+ LC_ALL=C -+ export LICENSEDIR -+ /usr/bin/mkdir -p /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/share/licenses/python3-pymatreader -+ cp -pr LICENSE /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/share/licenses/python3-pymatreader -+ RPM_EC=0 -++ jobs -p -+ exit 0 -Provides: python-pymatreader = 0.0.25-1.fc36 python3-pymatreader = 0.0.25-1.fc36 python3.10-pymatreader = 0.0.25-1.fc36 python3.10dist(pymatreader) = 0.0.25 python3dist(pymatreader) = 0.0.25 -Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PartialHardlinkSets) <= 4.0.4-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 -Requires: (python3.10dist(scipy) < 1.7 or python3.10dist(scipy) > 1.7) python(abi) = 3.10 python3.10dist(future) python3.10dist(h5py) python3.10dist(numpy) python3.10dist(xmltodict) -Processing files: python-pymatreader-doc-0.0.25-1.fc36.noarch -Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.ZOzVH5 -+ umask 022 -+ cd /builddir/build/BUILD -+ cd pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 -+ DOCDIR=/builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/share/doc/python-pymatreader-doc -+ export LC_ALL=C -+ LC_ALL=C -+ export DOCDIR -+ /usr/bin/mkdir -p /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/share/doc/python-pymatreader-doc -+ cp -pr doc/build/html /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/share/doc/python-pymatreader-doc -+ RPM_EC=0 -++ jobs -p -+ exit 0 -Executing(%license): /bin/sh -e /var/tmp/rpm-tmp.FD5pRM -+ umask 022 -+ cd /builddir/build/BUILD -+ cd pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 -+ LICENSEDIR=/builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/share/licenses/python-pymatreader-doc -+ export LC_ALL=C -+ LC_ALL=C -+ export LICENSEDIR -+ /usr/bin/mkdir -p /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/share/licenses/python-pymatreader-doc -+ cp -pr LICENSE /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64/usr/share/licenses/python-pymatreader-doc -+ RPM_EC=0 -++ jobs -p -+ exit 0 -Provides: python-pymatreader-doc = 0.0.25-1.fc36 -Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 -Checking for unpackaged file(s): /usr/lib/rpm/check-files /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64 -Wrote: /builddir/build/RPMS/python-pymatreader-doc-0.0.25-1.fc36.noarch.rpm -Wrote: /builddir/build/RPMS/python3-pymatreader-0.0.25-1.fc36.noarch.rpm -Executing(%clean): /bin/sh -e /var/tmp/rpm-tmp.HZzAEo -+ umask 022 -+ cd /builddir/build/BUILD -+ cd pymatreader-v0.0.25-1e536dbf50ee385e90273c7a31fcd85d402154d1 -+ /usr/bin/rm -rf /builddir/build/BUILDROOT/python-pymatreader-0.0.25-1.fc36.x86_64 -+ RPM_EC=0 -++ jobs -p -+ exit 0 -Child return code was: 0 diff --git a/results_python-pymatreader/0.0.25/1.fc36/hw_info.log b/results_python-pymatreader/0.0.25/1.fc36/hw_info.log deleted file mode 100644 index 37573b6..0000000 --- a/results_python-pymatreader/0.0.25/1.fc36/hw_info.log +++ /dev/null @@ -1,46 +0,0 @@ -CPU info: -Architecture: x86_64 -CPU op-mode(s): 32-bit, 64-bit -Byte Order: Little Endian -Address sizes: 36 bits physical, 48 bits virtual -CPU(s): 1 -On-line CPU(s) list: 0 -Thread(s) per core: 1 -Core(s) per socket: 1 -Socket(s): 1 -NUMA node(s): 1 -Vendor ID: GenuineIntel -CPU family: 6 -Model: 42 -Model name: Intel(R) Core(TM) i5-2540M CPU @ 2.60GHz -Stepping: 7 -CPU MHz: 2636.348 -BogoMIPS: 5272.69 -Hypervisor vendor: KVM -Virtualization type: full -L1d cache: 32 KiB -L1i cache: 32 KiB -L2 cache: 256 KiB -L3 cache: 3 MiB -NUMA node0 CPU(s): 0 -Vulnerability Itlb multihit: KVM: Mitigation: VMX unsupported -Vulnerability L1tf: Mitigation; PTE Inversion -Vulnerability Mds: Mitigation; Clear CPU buffers; SMT Host state unknown -Vulnerability Meltdown: Mitigation; PTI -Vulnerability Spec store bypass: Vulnerable -Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization -Vulnerability Spectre v2: Mitigation; Full generic retpoline, STIBP disabled, RSB filling -Vulnerability Srbds: Not affected -Vulnerability Tsx async abort: Not affected -Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 x2apic popcnt aes xsave avx hypervisor lahf_lm pti md_clear flush_l1d - - -Memory: - total used free shared buff/cache available -Mem: 4019804 2827276 107936 54788 1084592 901164 -Swap: 4019196 1688752 2330444 - - -Storage: -Filesystem Size Used Avail Use% Mounted on -/dev/sda2 11G 9.2G 692M 93% / diff --git a/results_python-pymatreader/0.0.25/1.fc36/installed_pkgs.log b/results_python-pymatreader/0.0.25/1.fc36/installed_pkgs.log deleted file mode 100644 index 0eb5a0b..0000000 --- a/results_python-pymatreader/0.0.25/1.fc36/installed_pkgs.log +++ /dev/null @@ -1,245 +0,0 @@ -gpg-pubkey-38ab71f4-60242b08 1612983048 0 (none) installed -gpg-pubkey-9867c58f-601c49ca 1612466634 0 (none) installed -libgcc-11.2.1-6.fc36.x86_64 1634659195 198596 948bcb6d189fc7ee2bcf08df3e0ded0d installed -crypto-policies-20210917-1.gitc9d86d1.fc36.noarch 1631901128 86073 f48797f7cee7bb76459a72ae397c2bbe installed -fedora-release-identity-basic-36-0.7.noarch 1629727368 748 67e266a3ec721a2c5127bef2ed8c372b installed -tzdata-2021a-2.fc35.noarch 1627084482 1817652 7912221f6ce6fe8b2a809fbf187f5199 installed -rust-srpm-macros-18-2.fc35.noarch 1627067759 2447 f3c831d1f80f4c06a6cd1f7967318c75 installed -qt5-srpm-macros-5.15.2-3.fc35.noarch 1627037606 492 be3fc262a57f16a89528f058f00a9dc3 installed -publicsuffix-list-dafsa-20210518-2.fc35.noarch 1627015083 68815 66e8314a663c969e724c10861c660788 installed -pkgconf-m4-1.8.0-1.fc35.noarch 1627221480 14187 d3b120a3b4d78e4a7e45396f30d9c709 installed -perl-srpm-macros-1-42.fc35.noarch 1627009629 862 31fd62af1588ade5c32d0b0fcefa45d8 installed -openblas-srpm-macros-2-10.fc35.noarch 1626993369 104 6ef8804b6de37b9a73f2b8502530fc68 installed -ocaml-srpm-macros-6-5.fc35.noarch 1626992091 745 519a978bddefede5d9252679a1726863 installed -nim-srpm-macros-3-5.fc35.noarch 1626987977 1098 50f3b27dca3c2554c3334b6908fa8da4 installed -ncurses-base-6.2-8.20210508.fc35.noarch 1626991807 307293 6fc56839d735263a9cfc0886c8d62377 installed -libssh-config-0.9.6-1.fc36.noarch 1632238630 277 1f87ba3b630a8afeebedabfad4aeee99 installed -kernel-srpm-macros-1.0-6.fc35.noarch 1626954864 621 f34169675490393047c9f76bb0dd5167 installed -gnat-srpm-macros-4-14.fc35.noarch 1626923297 725 acfa6b9efd8326ee09e42947528d2fad installed -ghc-srpm-macros-1.5.0-5.fc35.noarch 1626920787 535 83b17a3ad07bb6dce09a1113c2fbfc49 installed -fpc-srpm-macros-1.3-4.fc35.noarch 1626912175 144 46535e4ca0d7762b018d90f26785ebe9 installed -fedora-gpg-keys-36-0.3.noarch 1629216661 118311 1d520683e0e7cc4221ade46bec750891 installed -fedora-release-36-0.7.noarch 1629727368 0 e093deb4e2f58f692e9b126dffe62afa installed -fedora-release-common-36-0.7.noarch 1629727368 17568 ada8b78d5dd5dc784b1aa329da05df76 installed -fedora-repos-rawhide-36-0.3.noarch 1629216661 2203 d83e34aeb6aa0cfd354175876d3b63b1 installed -fedora-repos-36-0.3.noarch 1629216661 4597 8205ec5fae44ad89b015238f2f0b462b installed -setup-2.13.9.1-2.fc35.noarch 1627075056 736053 64f8b1c53f47bf22f25324c6e700cc72 installed -filesystem-3.16-1.fc36.x86_64 1632304495 106 696c3c32224ced91b048af23913ccaef installed -basesystem-11-12.fc35.noarch 1626892315 0 af618e2cf6a1583a176bb5e45b0a5068 installed -ncurses-libs-6.2-8.20210508.fc35.x86_64 1626985943 996375 2f994f573415c7206570f1717dcf626b installed -zlib-1.2.11-30.fc35.x86_64 1627555046 203449 fc88ceb52649360b8d871331220b0f6c installed -xz-libs-5.2.5-7.fc35.x86_64 1627092507 181437 a020e7464332c7f3873c34907eacff50 installed -elfutils-libelf-0.185-5.fc35.x86_64 1628259076 992174 34da460b225bcbd122e42ed8c6ca2415 installed -libstdc++-11.2.1-6.fc36.x86_64 1634659195 2479101 89257d9a10d316dc32c8e304e071efbe installed -libuuid-2.37.2-1.fc36.x86_64 1629194240 34397 2edb70a01bb7932f8358c5992c0dc474 installed -libzstd-1.5.0-2.fc35.x86_64 1627093306 1028163 c56a81660a167665720337b2d0c97070 installed -libattr-2.5.1-3.fc35.x86_64 1626891756 29341 a17b4483f4a01b5eb6d01f41842da285 installed -libacl-2.3.1-2.fc35.x86_64 1626889009 41090 7f91f200578996693fbd6ba53b745348 installed -libcap-2.48-3.fc35.x86_64 1626961088 180511 fa377911e225ceb086daf490d0c94ab7 installed -libcom_err-1.46.4-1.fc36.x86_64 1629807360 68945 a7c2723b8bbf1bf73dbbfd124a54cf3c installed -libxcrypt-4.4.26-4.fc36.x86_64 1632260314 275090 950aebba01d9009bb03a60a10a078640 installed -popt-1.18-6.fc36.x86_64 1631658902 130248 1d7d1c136af2df09061406932ba0c8c2 installed -readline-8.1-3.fc35.x86_64 1627041494 492684 aaf61524862c6beeb77380c15d658a93 installed -mpfr-4.1.0-8.fc35.x86_64 1626983884 802431 de62fb0bd1ab4954a5a3e601e4f95b58 installed -dwz-0.14-2.fc35.x86_64 1626907299 280646 8ae97d97b2c29bfe9e0ee73643bedfdd installed -unzip-6.0-53.fc35.x86_64 1627085048 394499 60a40024a1a2cc4e6734159ed1108959 installed -file-libs-5.41-1.fc36.x86_64 1634677368 8807844 3f6a37d6c5bbd22a9376ce12608906e9 installed -file-5.41-1.fc36.x86_64 1634677368 98373 72b8f28bac0368bc72027dff2bbaa97b installed -openssl1.1-1:1.1.1l-1.fc36.x86_64 1632138772 3876243 29868be49deeb8c77436b599365172d1 installed -sqlite-libs-3.36.0-4.fc36.x86_64 1629274141 1338849 1e9a9fef41195dcb15fa5d655a3d168d installed -alternatives-1.19-1.fc35.x86_64 1627054363 63264 5cd393a56ec2efe3a8dd3f9abe55f043 installed -libcap-ng-0.8.2-7.fc36.x86_64 1632337115 75012 57098680eb7832ece9c9089fe53a280e installed -audit-libs-3.0.6-1.fc36.x86_64 1633107302 307281 f50f5dee1a1c6705169fa17042f6257a installed -libsmartcols-2.37.2-1.fc36.x86_64 1629194240 135371 87c55bfc59efd942ef74441cc73528b6 installed -libunistring-0.9.10-14.fc35.x86_64 1626970676 1642923 fb4cd52955e96d4fe989ece3153119fa installed -libidn2-2.3.2-3.fc36.x86_64 1630430183 291720 8bec67ffc0040305e3efb64d378cf49a installed -lua-libs-5.4.3-2.fc35.x86_64 1626974759 555606 708062639b1ec59c853e3949ecb655b4 installed -lz4-libs-1.9.3-3.fc35.x86_64 1626976924 145387 35f02696af287b52c0a8ccd356299a79 installed -libpsl-0.21.1-4.fc35.x86_64 1626969221 78520 418fc994aecd296a0e9f3a900a46f7c5 installed -zip-3.0-31.fc35.x86_64 1627093104 712847 8bc0595d10f2bc85179113ad1484aba4 installed -zstd-1.5.0-2.fc35.x86_64 1627093306 1960479 13397e9d0ff36b3adf5abe7703fd0c04 installed -libxml2-2.9.12-6.fc35.x86_64 1626972022 1923894 58e6c4b8f0daf9cb8cf8355e9855a6ce installed -libarchive-3.5.2-2.fc36.x86_64 1630307534 907245 2cf74a4f9a53cf7b134f11d53d18f855 installed -elfutils-default-yama-scope-0.185-5.fc35.noarch 1628259164 1810 1a4ed61c32688e5f2f93ce33501c4a16 installed -info-6.8-2.fc35.x86_64 1627082242 503786 d1e469daef55e19b18e1753de365ed7b installed -ed-1.14.2-11.fc35.x86_64 1626907257 129811 094cf9934b01744c0c414314070af36f installed -cpio-2.13-11.fc36.x86_64 1630325808 1083898 cc85cc47d3f25270b54345d0e0ae768a installed -diffutils-3.8-1.fc35.x86_64 1627895573 1563061 b288fa5059e9d347c23ecf7459de1392 installed -gdbm-libs-1:1.22-1.fc36.x86_64 1634724719 128586 372620214f5cb6cdd6fde1753825fb46 installed -keyutils-libs-1.6.1-3.fc35.x86_64 1626955294 55801 535a1f1ca9e121cd9574c95b07820bb7 installed -libbrotli-1.0.9-6.fc35.x86_64 1626893913 784274 d45caad095b8be733739ddc36bbf1a3b installed -libdb-5.3.28-50.fc36.x86_64 1631794375 1922790 9165d206f0ee0ccb1da2c1528586359a installed -libeconf-0.4.0-2.fc35.x86_64 1626962507 46171 1d425d5dc6879bacad175542465b0706 installed -libffi-3.1-28.fc34.x86_64 1611731196 56840 077bc570623183e5b0eb94e8ef14e874 installed -p11-kit-0.23.22-4.fc35.x86_64 1626999243 1659536 2e7cda635f37cded07d6b2c83065ba9a installed -libgomp-11.2.1-6.fc36.x86_64 1634659195 412772 732c7e4d782e9dd4f71784cf913cadb6 installed -libgcrypt-1.9.4-1.fc36.x86_64 1629720680 1392852 59e2cc2fed649bc002fb75e05e789b1d installed -libnghttp2-1.46.0-1.fc36.x86_64 1634648839 162532 f366923935df459db89aea672fbf3eb8 installed -libpkgconf-1.8.0-1.fc35.x86_64 1627221416 75953 4a3b0d15ab4d7e8482d98d677ad5b928 installed -pkgconf-1.8.0-1.fc35.x86_64 1627221416 81451 f6bab719cb8f1b8c5862882bc45d2b45 installed -pkgconf-pkg-config-1.8.0-1.fc35.x86_64 1627221416 989 a02a23bcacf44a3bdfc74247bc5d893c installed -libsigsegv-2.13-3.fc35.x86_64 1626969727 50250 f9aa2f7104c70b331c044360a70664f4 installed -p11-kit-trust-0.23.22-4.fc35.x86_64 1626999243 451087 70a611a55f6a52dbf5e6966daff44ae9 installed -libverto-0.3.2-2.fc35.x86_64 1626970819 30277 cbb25f656c2c22c557ee83ad0d80dfb1 installed -pcre-8.45-1.fc36.x86_64 1629279764 539220 6a5448ab58ca42fa50de789ab3a15848 installed -grep-3.7-1.fc36.x86_64 1629144799 949303 418a97f7521220f4733ccdad7c84451f installed -xz-5.2.5-7.fc35.x86_64 1627092507 685425 dd341adc7fbb8844cb9965b1eb893ec4 installed -sed-4.8-8.fc35.x86_64 1627074776 813479 18a95fcfe58463e71717b520d2412a8a installed -findutils-1:4.8.0-4.fc35.x86_64 1626911297 1758182 f636dbf756669a4ed38bc1dff6c63018 installed -libutempter-1.2.1-5.fc35.x86_64 1626970643 58697 1c069b7288b0240929a10f6ac1cc1514 installed -patch-2.7.6-15.fc35.x86_64 1627000523 265410 1e6cd06c190ae494f76619ff9487c79b installed -tar-2:1.34-2.fc35.x86_64 1627081075 3156278 052b560465e9eebf3c4f7986aa10ee0b installed -xxhash-libs-0.8.0-4.fc35.x86_64 1627092400 105030 300fca06d5c6d5eaa03afd87981cbdd2 installed -coreutils-common-9.0-2.fc36.x86_64 1633350515 11033739 13dc7ddd21a60338fa3b873707724bed installed -openssl-libs-1:3.0.0-1.fc36.x86_64 1631206141 6910251 eecd9be83d355e37db387ec828737d70 installed -coreutils-9.0-2.fc36.x86_64 1633350515 5711386 418571a189b3343b279a0ff40fde28af installed -ca-certificates-2021.2.50-3.fc35.noarch 1626894832 939948 aff01f0137ea9195efe407be332a9c66 installed -krb5-libs-1.19.2-3.fc36.x86_64 1629825434 2198405 86be5f59ddccdf777917f48e6d2f57cf installed -libblkid-2.37.2-1.fc36.x86_64 1629194240 230761 bcf6f579f2b0dd97f8bd07fd7c1ba638 installed -libmount-2.37.2-1.fc36.x86_64 1629194240 311117 0947343ed48d8d733d44ab4c62b40f85 installed -libtirpc-1.3.2-1.rc1.fc36.x86_64 1631022089 208178 913ab7f77980f2baa1545e35fdbaf84b installed -util-linux-core-2.37.2-1.fc36.x86_64 1629194240 1279584 d296b4db24ad10daca513e302e92ceac installed -cracklib-2.9.6-27.fc36.x86_64 1630357018 251474 942e9fca4ce39033b500229201baeb56 installed -libnsl2-1.3.0-4.fc35.x86_64 1626968101 130270 ec90470cea464c30c21887ef0b6b5f78 installed -libpwquality-1.4.4-6.fc36.x86_64 1628688648 415452 f743797d80fbc29a7c38d3fda554ca5b installed -pam-1.5.2-6.fc36.x86_64 1633617824 1954020 ddd3c23fae599e2290c4c4d32ba5ade9 installed -libfdisk-2.37.2-1.fc36.x86_64 1629194240 368883 94b88429c34d3017d1a8cc4436e6f32f installed -cyrus-sasl-lib-2.1.27-16.fc36.x86_64 1634043547 2409888 e427e9a94b2dd7fd03de97dae3b456e8 installed -openldap-2.4.59-4.fc36.x86_64 1633097029 718693 f7df4289afa6e71199687f3a9e8ebb08 installed -libssh-0.9.6-1.fc36.x86_64 1632238467 513065 b5b56898289f134595e72319cd4acaaf installed -elfutils-libs-0.185-5.fc35.x86_64 1628259076 709117 2c1ab9675c840b1b828052157ed4cc9f installed -elfutils-debuginfod-client-0.185-5.fc35.x86_64 1628259076 52049 0303741a9495931d73ae739631434d14 installed -elfutils-0.185-5.fc35.x86_64 1628259076 2817145 f9356ecaba6fa95c491d3c17b313d91d installed -debugedit-5.0-2.fc35.x86_64 1627943772 194459 5239705164dbdb4cc743115c72824aaa installed -rpm-4.17.0-1.fc36.1.x86_64 1631644675 2948922 a420c79ff2a9cffb2ef50aad8ddacab4 installed -rpm-libs-4.17.0-1.fc36.1.x86_64 1631644675 775140 25b1fbc8993fe8028856f1bc219d9e3e installed -rpm-build-libs-4.17.0-1.fc36.1.x86_64 1631644675 199518 7056d76c06bed3b527421ac5b8e6a828 installed -efi-srpm-macros-5-4.fc36.noarch 1630608889 41111 9ac42e695d91164878696a83a337da1f installed -lua-srpm-macros-1-5.fc35.noarch 1626974425 1314 1d371eb16120fb40dbf7c0f03c3e8291 installed -rpmautospec-rpm-macros-0.2.5-1.fc35.noarch 1628264740 698 8d7c0d5e1ebd255a29531ed50f7eac01 installed -fonts-srpm-macros-1:2.0.5-6.fc35.noarch 1626911835 56503 e028a54cd411cf0f8ad51dcc2fde13e2 installed -go-srpm-macros-3.0.11-2.fc35.noarch 1626930626 60319 a69641b37d6aeebdd34a6f34ebf4a394 installed -rpm-build-4.17.0-1.fc36.1.x86_64 1631644675 145180 716dd2c7165dcb7459337bf33d1fc737 installed -util-linux-2.37.2-1.fc36.x86_64 1629194240 11216740 26af3a095042c6a0c6540785313ea546 installed -libsepol-3.3-1.fc36.x86_64 1634898517 755963 4ddeff0eab7624bdcd30f3cc2e13147d installed -libselinux-3.3-1.fc36.x86_64 1634903551 169437 2d15b3d1a0de42de5fbbcc2a6508ca61 installed -libsemanage-3.3-1.fc36.x86_64 1634905114 303896 8ed4e5384f70b0f9d587277fd6c770b9 installed -gzip-1.11-1.fc36.x86_64 1634828906 370548 794ed9a20c54f84518e4136dd1e54b06 installed -which-2.21-30.fc36.x86_64 1635264489 82340 be89267cc17b7ab206472f551fe0664a installed -libcurl-7.79.1-3.fc36.x86_64 1635339368 681126 479c1b6d8a742c8bc8a6b5edc40b0e1a installed -curl-7.79.1-3.fc36.x86_64 1635339368 723156 c98909900219adb47cacbe1a5427b1cc installed -binutils-gold-2.37-17.fc36.x86_64 1635337381 1976795 9f56451960fe82ae10853d43f441bb2b installed -binutils-2.37-17.fc36.x86_64 1635337381 34147850 0c2bb5fd702e85d0f28ef60b18895d43 installed -glibc-gconv-extra-2.34.9000-17.fc36.x86_64 1635968897 8225724 3eef23931d1f8d1aef47f1127f219094 installed -glibc-2.34.9000-17.fc36.x86_64 1635968897 6286667 e2e5cb78040a788ed8f39be5489cab07 installed -bash-5.1.8-3.fc36.x86_64 1636111791 7739722 3c238f6212cb3e61fdf240e713fbee46 installed -glibc-common-2.34.9000-17.fc36.x86_64 1635968897 1097530 a2854d609d655e576e8d9765f76bfab3 installed -glibc-minimal-langpack-2.34.9000-17.fc36.x86_64 1635968897 0 4d0c92c6f53d38106326689bbedff034 installed -gmp-1:6.2.1-1.fc36.x86_64 1635864434 818487 b8672b965eb91df7f27cb3eb8aa854e8 installed -python-srpm-macros-3.10-13.fc36.noarch 1635937773 42068 0cc788d3faa896f6e367b8193d190aa7 installed -bzip2-libs-1.0.8-10.fc36.x86_64 1635847593 78692 5e06fb139bdb55a6e35d7db6a9fd1f5d installed -pcre2-syntax-10.39-1.fc36.noarch 1636034078 229322 07c65426a24baf43c87a36401347c023 installed -pcre2-10.39-1.fc36.x86_64 1636034008 633258 e35b8e2e0f275380920669c31926bb0c installed -bzip2-1.0.8-10.fc36.x86_64 1635847593 94045 7ba905cef7f33c69731be413a734f4f3 installed -gawk-5.1.1-1.fc36.x86_64 1635772564 1708362 17f402fe974cae460327fda5caf594d9 installed -gdb-minimal-11.1-3.fc36.x86_64 1636053239 12679252 40aa6ab9f1d6a3a9155a35c08439cc17 installed -systemd-libs-249.6-2.fc36.x86_64 1636036536 1730520 4e084199b2e63215239fcc4e540ecb20 installed -libgpg-error-1.43-1.fc36.x86_64 1635950575 851221 7afd824890acf0cdd873ae3f47867ae2 installed -libtasn1-4.17.0-1.fc36.x86_64 1635979884 183476 efa04349b3218e4060e43f13152663a0 installed -shadow-utils-2:4.9-6.fc36.x86_64 1636026905 3837730 2de4aa577cce23624bfa49b5bfd2757b installed -python-setuptools-wheel-58.2.0-1.fc36.noarch 1634822197 594370 944df2c039d85f4bf6c8e09d035f1fd8 installed -python-pip-wheel-21.3.1-1.fc36.noarch 1635195808 1232567 48c923eccdb4bfa66aa035df74d783b2 installed -mpdecimal-2.5.1-2.fc35.x86_64 1626983795 246955 5a959017ea843dc9cd834137e17dcbc5 installed -expat-2.4.1-2.fc35.x86_64 1626909776 295041 1daae32a6bd9b6d68dce05f6cc47415a installed -python3-3.10.0-2.fc36.x86_64 1633437650 33130 8897a7af80ba3f03bda5903e505f397f installed -python3-libs-3.10.0-2.fc36.x86_64 1633437650 33057311 ac68de88ad7240a2db739101232cece6 installed -redhat-rpm-config-202-1.fc36.noarch 1636390968 176787 88a1c404363292de49a616ed4110827e installed -python3-six-1.16.0-4.fc35.noarch 1627032980 106857 2bd146213fd8694f7cc4659dbf43aa7d installed -python3-setuptools-58.2.0-1.fc36.noarch 1634822197 4769694 9279acabca6ba57cdbf7a90b0c7d4751 installed -python3-docutils-0.17.1-1.fc36.noarch 1632308035 4124041 e50eb22f8524ded673acc8dfca349cbd installed -python-rpm-macros-3.10-13.fc36.noarch 1635937773 13789 d4d1a05a2b2e10f2514c581ebd3a766b installed -fonts-filesystem-1:2.0.5-6.fc35.noarch 1626911835 0 450077d5fbbe5891c63e0fb894c30c5d installed -python3-rpm-macros-3.10-13.fc36.noarch 1635937773 5634 039bce2c403d1264ac880691d6666f59 installed -python3-webencodings-0.5.1-16.fc35.noarch 1627035533 74981 a1ed29ba1c6a8a2d195d01750b436a36 installed -python3-pygments-2.10.0-1.fc36.noarch 1629460960 8709593 08904c59f23da16a383bb6d7b5081701 installed -python3-jeepney-0.7.1-1.fc35.noarch 1627989571 1908243 44a825bafb749be33a3f3d88d4f969c1 installed -python3-idna-3.3-1.fc36.noarch 1634217913 498563 bed578d8447a294bbac66cda554d4464 installed -libquadmath-11.2.1-6.fc36.x86_64 1634659195 337788 b16d7d2dbe39799287388700698b4fbd installed -libgfortran-11.2.1-6.fc36.x86_64 1634659195 2822582 48bd242a7f8c846731d4f5a4216f3f84 installed -flexiblas-3.0.4-6.fc35.x86_64 1626911983 69843 544a73bb54cbc59cb2b74867c82d908b installed -python3-html5lib-1:1.1-6.fc35.noarch 1627023225 1220265 3dd0345a0d1c031ffcf06c518b1c54c8 installed -pyproject-rpm-macros-0-49.fc36.noarch 1635499017 73310 ed69833e99f4e98ea118059d170d0192 installed -fontawesome-fonts-1:4.7.0-12.fc35.noarch 1626911687 303691 9fac2c57b45b24143f285840160e3b5f installed -google-roboto-slab-fonts-1.100263-0.16.20150923git.fc35.noarch 1626943841 716009 9bb6333ef6d7bb70a28195f60a90c385 installed -lato-fonts-2.015-12.fc35.noarch 1626959688 11875329 e4a2197833f6742fa394327539b0cb07 installed -python3-pkginfo-1.7.1-2.fc35.noarch 1627028451 68941 47fc6079c23c44289d3c46ca3a913509 installed -python3-py-1.10.0-5.fc35.noarch 1627028982 2842768 b1bc52c052ea0713a59883c178a187e4 installed -python3-zipp-3.6.0-1.fc36.noarch 1633439632 24036 bf3e449ccb0620fff02ed2c770786ab3 installed -python3-importlib-metadata-4.8.1-1.fc36.noarch 1630316947 104653 cf397a1949bcf8a6fc45ff929f6de56d installed -python3-tqdm-4.62.3-1.fc36.noarch 1632259452 481990 7a736814cdc8e28e38f745615b6a4fc7 installed -python3-toml-0.10.2-5.fc35.noarch 1627374446 102372 f05c433c1cb7600141b8948ea4c93882 installed -python3-sphinxcontrib-serializinghtml-1.1.5-2.fc35.noarch 1627033637 60201 af591165961093ac97d71950a8288764 installed -python3-sphinxcontrib-qthelp-1.0.3-6.fc35.noarch 1627033622 57290 a085a3ee514d517a9122b5bfbf9bac91 installed -python3-sphinxcontrib-jsmath-1.0.1-13.fc35.noarch 1627033575 12192 e089f85b5c3d87b675f4252393b51f21 installed -python3-sphinxcontrib-htmlhelp-2.0.0-2.fc35.noarch 1627033475 74689 76b53cbe840f9b2d4c8cc611b65374a3 installed -python3-sphinxcontrib-devhelp-1.0.2-6.fc35.noarch 1627033494 46576 1cdb5947807f172033e0a71aa1883230 installed -python3-sphinxcontrib-applehelp-1.0.2-6.fc35.noarch 1627033500 62761 dfd9d1ac95a6f0ecb495723488e9653a installed -python3-sphinx-theme-alabaster-0.7.12-13.fc35.noarch 1627033319 38942 667a66c8bd17d0e04d06f6584a247233 installed -python3-snowballstemmer-1.9.0-10.fc35.noarch 1627033077 1171723 fbf5fc61cd01274922eb5374ac7c00e7 installed -python3-rfc3986-1.4.0-7.fc35.noarch 1627031969 176474 f8dae2434692450ac9a3089f20a43c3b installed -python3-pytz-2021.3-1.fc36.noarch 1633368815 175046 2c38cd542ebb569491be95e0d7a1bb56 installed -python3-babel-2.9.1-4.fc35.noarch 1626892098 28258522 fe9419e24684a89ddb6f0db706f6d513 installed -python3-pysocks-1.7.1-11.fc35.noarch 1627030415 87789 959306d8debf19cdb69e554bd372c886 installed -python3-urllib3-1.26.7-1.fc36.noarch 1632687280 728395 a7ffa0025616692bbb247744a9773b90 installed -python3-pyparsing-2.4.7-9.fc35.noarch 1627016952 647492 a028d078073a688bb8a587dd290ef018 installed -python3-packaging-21.2-1.fc36.noarch 1635851006 248300 3e2dd47b82de2817a05981d9070ab6db installed -python3-bleach-4.0.0-1.fc35.noarch 1628526364 152758 efd457181fc9818f3f774ce31143a106 installed -python3-readme-renderer-29.0-3.fc35.noarch 1627031635 47222 6c23181f37059b4fffa6823481a7f20a installed -python3-rpm-generators-12-10.fc36.noarch 1635755623 79386 366c8d38d30a7d57385cad3f62c4902a installed -python3-devel-3.10.0-2.fc36.x86_64 1633437650 797665 107cac81d907fb21201fdd1e42de532c installed -python3-ply-3.11-13.fc35.noarch 1627028727 439469 36a3fdde3894d090348ab1e5529f83e5 installed -python3-pycparser-2.20-5.fc35.noarch 1627374357 754238 6f0685b74b8dd9139a2667fdf61af52c installed -python3-cffi-1.15.0~rc2-1.fc36.x86_64 1633686925 1070248 821139963912d6788a44c7187258f325 installed -python3-cryptography-35.0.0-2.fc36.x86_64 1632988768 4326944 05ef5a5f3e757bbfc94a3d1433e07273 installed -python3-secretstorage-3.3.1-3.fc35.noarch 1627017261 92755 dfe4a07893cd494f98a9c526ddac0f64 installed -python3-keyring-21.8.0-4.fc35.noarch 1627024568 211535 505f569f67826af7aaa642d64d6b6e41 installed -python3-pluggy-1.0.0-1.fc36.noarch 1630053293 100225 6cab2dde649d4aed673c961c42027592 installed -python3-markupsafe-2.0.0-2.fc35.x86_64 1627025453 49376 ce47aee0c30c249e90daaa1cce364427 installed -python3-jinja2-3.0.1-2.fc35.noarch 1627023896 3077242 fb09f683c4bcea6cd0cea1cde2cd0687 installed -python3-iniconfig-1.1.1-5.fc35.noarch 1627023431 17825 90da9af37bea0b1c3dab8214a31ffeac installed -python3-imagesize-1.2.0-6.fc35.noarch 1627023355 22800 f4583c71f96be181eb6623d246d4991d installed -python3-colorama-0.4.4-4.fc35.noarch 1627019687 79049 33db62bc60bb0d857caca855976071dc installed -python3-charset-normalizer-2.0.7-1.fc36.noarch 1634217749 239094 cba6adf526b6834cea43ae9053f90a05 installed -python3-requests-2.26.0-1.fc35.noarch 1627551985 406713 a593e08c2e0363a6351cdeffa6160c8e installed -python3-requests-toolbelt-0.9.1-15.fc35.noarch 1627031830 284749 56adb0cefa3dc94bdeee173bcb123ae7 installed -python3-sphinx-1:4.2.0-1.fc36.noarch 1632309078 9233273 34ea53865724e873b39bc24956001c50 installed -python3-cached_property-1.5.2-4.fc35.noarch 1627018966 36772 cbbfe5a4131163ebd2060d8905d6c67d installed -python3-attrs-21.2.0-4.fc35.noarch 1627018429 307243 13de25805f5258ca0fba15e4ed698f1e installed -openssh-8.7p1-3.fc36.x86_64 1632915852 1958790 cf9e662acc8a646134bc2adef5ba8041 installed -openblas-0.3.18-1.fc36.x86_64 1633958143 76037 ef08497d7e41c63bf16348a2f3e4dc97 installed -openblas-openmp-0.3.18-1.fc36.x86_64 1633958143 40969364 3a209339070e582190b42a3cfe28b4ef installed -flexiblas-openblas-openmp-3.0.4-6.fc35.x86_64 1626911983 42797 f23d4a853391dae49792d6b2b43a7b69 installed -flexiblas-netlib-3.0.4-6.fc35.x86_64 1626911983 11543586 f6ffe8b87e11ff2c5026ea1e2f833025 installed -python3-numpy-1:1.21.1-1.fc35.x86_64 1628181641 27618483 1a4d5524ddc3406cf8541fd9840ff752 installed -python3-numpy-f2py-1:1.21.1-1.fc35.x86_64 1628181641 1029394 9b1ca332c5224e6cdbe2f76a70952c97 installed -libtool-ltdl-2.4.6-44.fc36.x86_64 1633336710 72560 5cc7d431d59cc056230828cc83eafdcb installed -liblzf-3.6-22.fc35.x86_64 1626966496 55270 82e7aee45fcc30bb32a0f09be01d3939 installed -libedit-3.1-40.20210910cvs.fc36.x86_64 1631547159 252781 3c3ef3549035c5397cc2ba00dad58405 installed -libcbor-0.7.0-4.fc35.x86_64 1626961119 99678 4382f5fc01f0042454afdb718f21f757 installed -libfido2-1.9.0-1.fc36.x86_64 1635429877 235912 ab7834fcee83e71f18ffacfd8ee30a0e installed -openssh-clients-8.7p1-3.fc36.x86_64 1632915852 2112707 c3369c9e3ee7dd1ccbc712f1c3a729dc installed -libaec-1.0.6-1.fc36.x86_64 1631895569 121595 9aaad52dd8ce7dc329d591427d3c0d5c installed -hdf5-1.10.7-2.fc36.x86_64 1630295129 7885428 ae4c269d4ab272f7a097c006bb8076ca installed -less-590-2.fc36.x86_64 1635160233 367032 f978822006efbc62e77df4adc688e1a9 installed -gc-8.0.6-1.fc36.x86_64 1635346211 238176 8b3202653b8fb3454de3c17abdbe811a installed -guile22-2.2.7-3.fc35.x86_64 1626946667 45858329 0eb36e9b52b76b73a2bc418a5c35c7e8 installed -make-1:4.3-6.fc35.x86_64 1626977336 1729022 43414cbe6954dc263444fa9f7daaf717 installed -git-core-2.33.1-1.fc36.x86_64 1634096128 17798113 ae9df038b39627dd0ec3340b44fa7c67 installed -python3-h5py-3.4.0-2.fc36.x86_64 1633269001 3614432 69416c9c765cd9d662262879edab2421 installed -python3-scipy-1.7.0-2.fc35.x86_64 1626682181 67687106 cacdb1e32b7d47be282664ec9a7a262c installed -python3-pytest-6.2.5-1.fc36.noarch 1631899835 12419548 c55f6d38626ea22d0653e8f1c093df50 installed -python3-sphinx_rtd_theme-1.0.0-1.fc36.noarch 1631634647 303745 a18b9976a2bba9a50d2fd5a7c70c6b02 installed -twine-3.4.2-1.fc35.noarch 1628075467 172917 363495ed7ea7d8d3458e950308c0dc22 installed -python3-xmltodict-0.12.0-13.fc35.noarch 1627035980 43429 e74ab4c6f96cd97008454038cd942b71 installed -python3-wheel-1:0.37.0-1.fc36.noarch 1629291722 214620 26ef322cbcab0043647fd947706925ff installed -python3-future-0.18.2-11.fc35.noarch 1626913443 3428204 b468efb2ab865b78fb103c99f31d598a installed diff --git a/results_python-pymatreader/0.0.25/1.fc36/python-pymatreader-0.0.25-1.fc36.src.rpm b/results_python-pymatreader/0.0.25/1.fc36/python-pymatreader-0.0.25-1.fc36.src.rpm deleted file mode 100644 index c336b52..0000000 Binary files a/results_python-pymatreader/0.0.25/1.fc36/python-pymatreader-0.0.25-1.fc36.src.rpm and /dev/null differ diff --git a/results_python-pymatreader/0.0.25/1.fc36/python-pymatreader-doc-0.0.25-1.fc36.noarch.rpm b/results_python-pymatreader/0.0.25/1.fc36/python-pymatreader-doc-0.0.25-1.fc36.noarch.rpm deleted file mode 100644 index e3bcecf..0000000 Binary files a/results_python-pymatreader/0.0.25/1.fc36/python-pymatreader-doc-0.0.25-1.fc36.noarch.rpm and /dev/null differ diff --git a/results_python-pymatreader/0.0.25/1.fc36/python3-pymatreader-0.0.25-1.fc36.noarch.rpm b/results_python-pymatreader/0.0.25/1.fc36/python3-pymatreader-0.0.25-1.fc36.noarch.rpm deleted file mode 100644 index 0b33576..0000000 Binary files a/results_python-pymatreader/0.0.25/1.fc36/python3-pymatreader-0.0.25-1.fc36.noarch.rpm and /dev/null differ diff --git a/results_python-pymatreader/0.0.25/1.fc36/root.log b/results_python-pymatreader/0.0.25/1.fc36/root.log deleted file mode 100644 index 5af9ec3..0000000 --- a/results_python-pymatreader/0.0.25/1.fc36/root.log +++ /dev/null @@ -1,1362 +0,0 @@ -INFO buildroot.py:491: Mock Version: 2.12 -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/dev/pts -DEBUG file_util.py:20: creating dir: /var/lib/mock/fedora-rawhide-x86_64/root/dev/pts -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/dev/shm -DEBUG file_util.py:20: creating dir: /var/lib/mock/fedora-rawhide-x86_64/root/dev/shm -DEBUG buildroot.py:675: kernel version == 5.11.12-300.fc34.x86_64 -DEBUG file_util.py:30: touching file: /var/lib/mock/fedora-rawhide-x86_64/root/etc/fstab -DEBUG file_util.py:30: touching file: /var/lib/mock/fedora-rawhide-x86_64/root/etc/yum/yum.conf -DEBUG file_util.py:30: touching file: /var/lib/mock/fedora-rawhide-x86_64/root/etc/dnf/dnf.conf -DEBUG file_util.py:30: touching file: /var/lib/mock/fedora-rawhide-x86_64/root/var/log/yum.log -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/var/cache/yum -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-o', 'bind', '/var/cache/mock/fedora-rawhide-x86_64/yum_cache', '/var/lib/mock/fedora-rawhide-x86_64/root/var/cache/yum'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/var/cache/dnf -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-o', 'bind', '/var/cache/mock/fedora-rawhide-x86_64/dnf_cache', '/var/lib/mock/fedora-rawhide-x86_64/root/var/cache/dnf'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/proc -DEBUG file_util.py:30: touching file: /var/lib/mock/fedora-rawhide-x86_64/root/proc/filesystems -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-o', 'bind', '/tmp/mock-selinux-plugin.d8dagtbi', '/var/lib/mock/fedora-rawhide-x86_64/root/proc/filesystems'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64-bootstrap/root/var/lib/mock/fedora-rawhide-x86_64/root -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-t', 'tmpfs', '-o', 'private', 'tmpfs', '/var/lib/mock/fedora-rawhide-x86_64-bootstrap/root/var/lib/mock/fedora-rawhide-x86_64/root'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64-bootstrap/root/var/lib/mock/fedora-rawhide-x86_64/root -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-o', 'rbind', '/var/lib/mock/fedora-rawhide-x86_64/root', '/var/lib/mock/fedora-rawhide-x86_64-bootstrap/root/var/lib/mock/fedora-rawhide-x86_64/root'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-o', 'remount,private,rbind', '/var/lib/mock/fedora-rawhide-x86_64/root', '/var/lib/mock/fedora-rawhide-x86_64-bootstrap/root/var/lib/mock/fedora-rawhide-x86_64/root'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG buildroot.py:195: rootdir = /var/lib/mock/fedora-rawhide-x86_64/root -DEBUG buildroot.py:196: resultdir = /home/vanessa/Desktop/contributions/python-pymatreader/results_python-pymatreader/0.0.25/1.fc36 -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/etc/pki/mock -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/etc/dnf -DEBUG package_manager.py:570: configure DNF vars -DEBUG util.py:624: child environment: None -DEBUG util.py:536: Using nspawn with args None -DEBUG util.py:542: Executing command: ['/usr/bin/systemd-nspawn', '-q', '-M', 'b6968a24a8194d3aa8bb427dadac752d', '-D', '/var/lib/mock/fedora-rawhide-x86_64/root', '-a', '--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;\\007"', '--setenv=PS1= \\s-\\v\\$ ', '--setenv=LANG=C.UTF-8', '--resolv-conf=off', '/usr/sbin/userdel', '-r', '-f', 'mockbuild'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8', 'SYSTEMD_NSPAWN_TMPFS_TMP': '0'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:536: Using nspawn with args None -DEBUG util.py:542: Executing command: ['/usr/bin/systemd-nspawn', '-q', '-M', '1070da07c059428eae72a566f44b2863', '-D', '/var/lib/mock/fedora-rawhide-x86_64/root', '-a', '--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;\\007"', '--setenv=PS1= \\s-\\v\\$ ', '--setenv=LANG=C.UTF-8', '--resolv-conf=off', '/usr/sbin/groupdel', 'mock'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8', 'SYSTEMD_NSPAWN_TMPFS_TMP': '0'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:536: Using nspawn with args None -DEBUG util.py:542: Executing command: ['/usr/bin/systemd-nspawn', '-q', '-M', '68fd922c335e40eaa08d06aff10f064c', '-D', '/var/lib/mock/fedora-rawhide-x86_64/root', '-a', '--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;\\007"', '--setenv=PS1= \\s-\\v\\$ ', '--setenv=LANG=C.UTF-8', '--resolv-conf=off', '/usr/sbin/groupadd', '-g', '135', 'mock'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8', 'SYSTEMD_NSPAWN_TMPFS_TMP': '0'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:536: Using nspawn with args None -DEBUG util.py:542: Executing command: ['/usr/bin/systemd-nspawn', '-q', '-M', '4d1a97b2b69347e6b206c6e44f969207', '-D', '/var/lib/mock/fedora-rawhide-x86_64/root', '-a', '--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;\\007"', '--setenv=PS1= \\s-\\v\\$ ', '--setenv=LANG=C.UTF-8', '--resolv-conf=off', '/usr/sbin/useradd', '-o', '-m', '-u', '1000', '-g', '135', '-d', '/builddir', '-n', 'mockbuild'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8', 'SYSTEMD_NSPAWN_TMPFS_TMP': '0'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build -DEBUG file_util.py:20: creating dir: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/RPMS -DEBUG file_util.py:20: creating dir: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/RPMS -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/SPECS -DEBUG file_util.py:20: creating dir: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/SPECS -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/SRPMS -DEBUG file_util.py:20: creating dir: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/SRPMS -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/SOURCES -DEBUG file_util.py:20: creating dir: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/SOURCES -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/BUILD -DEBUG file_util.py:20: creating dir: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/BUILD -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/BUILDROOT -DEBUG file_util.py:20: creating dir: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/BUILDROOT -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/originals -DEBUG file_util.py:20: creating dir: /var/lib/mock/fedora-rawhide-x86_64/root/builddir/build/originals -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/builddir -DEBUG util.py:624: child environment: None -DEBUG util.py:536: Using nspawn with args None -DEBUG util.py:542: Executing command: ['/usr/bin/systemd-nspawn', '-q', '-M', 'a67404001527476b82dcc2343429d6aa', '-D', '/var/lib/mock/fedora-rawhide-x86_64-bootstrap/root', '-a', '--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;\\007"', '--setenv=PS1= \\s-\\v\\$ ', '--setenv=LANG=C.UTF-8', '--resolv-conf=off', '/bin/rpm', '-qa', '--root', '/var/lib/mock/fedora-rawhide-x86_64/root'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8', 'SYSTEMD_NSPAWN_TMPFS_TMP': '0'} and shell False -DEBUG util.py:446: gpg-pubkey-38ab71f4-60242b08 -DEBUG util.py:446: gpg-pubkey-9867c58f-601c49ca -DEBUG util.py:446: libgcc-11.2.1-6.fc36.x86_64 -DEBUG util.py:446: crypto-policies-20210917-1.gitc9d86d1.fc36.noarch -DEBUG util.py:446: fedora-release-identity-basic-36-0.7.noarch -DEBUG util.py:446: tzdata-2021a-2.fc35.noarch -DEBUG util.py:446: rust-srpm-macros-18-2.fc35.noarch -DEBUG util.py:446: qt5-srpm-macros-5.15.2-3.fc35.noarch -DEBUG util.py:446: publicsuffix-list-dafsa-20210518-2.fc35.noarch -DEBUG util.py:446: pkgconf-m4-1.8.0-1.fc35.noarch -DEBUG util.py:446: perl-srpm-macros-1-42.fc35.noarch -DEBUG util.py:446: openblas-srpm-macros-2-10.fc35.noarch -DEBUG util.py:446: ocaml-srpm-macros-6-5.fc35.noarch -DEBUG util.py:446: nim-srpm-macros-3-5.fc35.noarch -DEBUG util.py:446: ncurses-base-6.2-8.20210508.fc35.noarch -DEBUG util.py:446: libssh-config-0.9.6-1.fc36.noarch -DEBUG util.py:446: kernel-srpm-macros-1.0-6.fc35.noarch -DEBUG util.py:446: gnat-srpm-macros-4-14.fc35.noarch -DEBUG util.py:446: ghc-srpm-macros-1.5.0-5.fc35.noarch -DEBUG util.py:446: fpc-srpm-macros-1.3-4.fc35.noarch -DEBUG util.py:446: fedora-gpg-keys-36-0.3.noarch -DEBUG util.py:446: fedora-release-36-0.7.noarch -DEBUG util.py:446: fedora-release-common-36-0.7.noarch -DEBUG util.py:446: fedora-repos-rawhide-36-0.3.noarch -DEBUG util.py:446: fedora-repos-36-0.3.noarch -DEBUG util.py:446: setup-2.13.9.1-2.fc35.noarch -DEBUG util.py:446: filesystem-3.16-1.fc36.x86_64 -DEBUG util.py:446: basesystem-11-12.fc35.noarch -DEBUG util.py:446: ncurses-libs-6.2-8.20210508.fc35.x86_64 -DEBUG util.py:446: zlib-1.2.11-30.fc35.x86_64 -DEBUG util.py:446: xz-libs-5.2.5-7.fc35.x86_64 -DEBUG util.py:446: elfutils-libelf-0.185-5.fc35.x86_64 -DEBUG util.py:446: libstdc++-11.2.1-6.fc36.x86_64 -DEBUG util.py:446: libuuid-2.37.2-1.fc36.x86_64 -DEBUG util.py:446: libzstd-1.5.0-2.fc35.x86_64 -DEBUG util.py:446: libattr-2.5.1-3.fc35.x86_64 -DEBUG util.py:446: libacl-2.3.1-2.fc35.x86_64 -DEBUG util.py:446: libcap-2.48-3.fc35.x86_64 -DEBUG util.py:446: libcom_err-1.46.4-1.fc36.x86_64 -DEBUG util.py:446: libxcrypt-4.4.26-4.fc36.x86_64 -DEBUG util.py:446: popt-1.18-6.fc36.x86_64 -DEBUG util.py:446: readline-8.1-3.fc35.x86_64 -DEBUG util.py:446: mpfr-4.1.0-8.fc35.x86_64 -DEBUG util.py:446: dwz-0.14-2.fc35.x86_64 -DEBUG util.py:446: unzip-6.0-53.fc35.x86_64 -DEBUG util.py:446: file-libs-5.41-1.fc36.x86_64 -DEBUG util.py:446: file-5.41-1.fc36.x86_64 -DEBUG util.py:446: openssl1.1-1.1.1l-1.fc36.x86_64 -DEBUG util.py:446: sqlite-libs-3.36.0-4.fc36.x86_64 -DEBUG util.py:446: alternatives-1.19-1.fc35.x86_64 -DEBUG util.py:446: libcap-ng-0.8.2-7.fc36.x86_64 -DEBUG util.py:446: audit-libs-3.0.6-1.fc36.x86_64 -DEBUG util.py:446: libsmartcols-2.37.2-1.fc36.x86_64 -DEBUG util.py:446: libunistring-0.9.10-14.fc35.x86_64 -DEBUG util.py:446: libidn2-2.3.2-3.fc36.x86_64 -DEBUG util.py:446: lua-libs-5.4.3-2.fc35.x86_64 -DEBUG util.py:446: lz4-libs-1.9.3-3.fc35.x86_64 -DEBUG util.py:446: libpsl-0.21.1-4.fc35.x86_64 -DEBUG util.py:446: zip-3.0-31.fc35.x86_64 -DEBUG util.py:446: zstd-1.5.0-2.fc35.x86_64 -DEBUG util.py:446: libxml2-2.9.12-6.fc35.x86_64 -DEBUG util.py:446: libarchive-3.5.2-2.fc36.x86_64 -DEBUG util.py:446: elfutils-default-yama-scope-0.185-5.fc35.noarch -DEBUG util.py:446: info-6.8-2.fc35.x86_64 -DEBUG util.py:446: ed-1.14.2-11.fc35.x86_64 -DEBUG util.py:446: cpio-2.13-11.fc36.x86_64 -DEBUG util.py:446: diffutils-3.8-1.fc35.x86_64 -DEBUG util.py:446: gdbm-libs-1.22-1.fc36.x86_64 -DEBUG util.py:446: keyutils-libs-1.6.1-3.fc35.x86_64 -DEBUG util.py:446: libbrotli-1.0.9-6.fc35.x86_64 -DEBUG util.py:446: libdb-5.3.28-50.fc36.x86_64 -DEBUG util.py:446: libeconf-0.4.0-2.fc35.x86_64 -DEBUG util.py:446: libffi-3.1-28.fc34.x86_64 -DEBUG util.py:446: p11-kit-0.23.22-4.fc35.x86_64 -DEBUG util.py:446: libgomp-11.2.1-6.fc36.x86_64 -DEBUG util.py:446: libgcrypt-1.9.4-1.fc36.x86_64 -DEBUG util.py:446: libnghttp2-1.46.0-1.fc36.x86_64 -DEBUG util.py:446: libpkgconf-1.8.0-1.fc35.x86_64 -DEBUG util.py:446: pkgconf-1.8.0-1.fc35.x86_64 -DEBUG util.py:446: pkgconf-pkg-config-1.8.0-1.fc35.x86_64 -DEBUG util.py:446: libsigsegv-2.13-3.fc35.x86_64 -DEBUG util.py:446: p11-kit-trust-0.23.22-4.fc35.x86_64 -DEBUG util.py:446: libverto-0.3.2-2.fc35.x86_64 -DEBUG util.py:446: pcre-8.45-1.fc36.x86_64 -DEBUG util.py:446: grep-3.7-1.fc36.x86_64 -DEBUG util.py:446: xz-5.2.5-7.fc35.x86_64 -DEBUG util.py:446: sed-4.8-8.fc35.x86_64 -DEBUG util.py:446: findutils-4.8.0-4.fc35.x86_64 -DEBUG util.py:446: libutempter-1.2.1-5.fc35.x86_64 -DEBUG util.py:446: patch-2.7.6-15.fc35.x86_64 -DEBUG util.py:446: tar-1.34-2.fc35.x86_64 -DEBUG util.py:446: xxhash-libs-0.8.0-4.fc35.x86_64 -DEBUG util.py:446: coreutils-common-9.0-2.fc36.x86_64 -DEBUG util.py:446: openssl-libs-3.0.0-1.fc36.x86_64 -DEBUG util.py:446: coreutils-9.0-2.fc36.x86_64 -DEBUG util.py:446: ca-certificates-2021.2.50-3.fc35.noarch -DEBUG util.py:446: krb5-libs-1.19.2-3.fc36.x86_64 -DEBUG util.py:446: libblkid-2.37.2-1.fc36.x86_64 -DEBUG util.py:446: libmount-2.37.2-1.fc36.x86_64 -DEBUG util.py:446: libtirpc-1.3.2-1.rc1.fc36.x86_64 -DEBUG util.py:446: util-linux-core-2.37.2-1.fc36.x86_64 -DEBUG util.py:446: cracklib-2.9.6-27.fc36.x86_64 -DEBUG util.py:446: libnsl2-1.3.0-4.fc35.x86_64 -DEBUG util.py:446: libpwquality-1.4.4-6.fc36.x86_64 -DEBUG util.py:446: pam-1.5.2-6.fc36.x86_64 -DEBUG util.py:446: libfdisk-2.37.2-1.fc36.x86_64 -DEBUG util.py:446: cyrus-sasl-lib-2.1.27-16.fc36.x86_64 -DEBUG util.py:446: openldap-2.4.59-4.fc36.x86_64 -DEBUG util.py:446: libssh-0.9.6-1.fc36.x86_64 -DEBUG util.py:446: elfutils-libs-0.185-5.fc35.x86_64 -DEBUG util.py:446: elfutils-debuginfod-client-0.185-5.fc35.x86_64 -DEBUG util.py:446: elfutils-0.185-5.fc35.x86_64 -DEBUG util.py:446: debugedit-5.0-2.fc35.x86_64 -DEBUG util.py:446: rpm-4.17.0-1.fc36.1.x86_64 -DEBUG util.py:446: rpm-libs-4.17.0-1.fc36.1.x86_64 -DEBUG util.py:446: rpm-build-libs-4.17.0-1.fc36.1.x86_64 -DEBUG util.py:446: efi-srpm-macros-5-4.fc36.noarch -DEBUG util.py:446: lua-srpm-macros-1-5.fc35.noarch -DEBUG util.py:446: rpmautospec-rpm-macros-0.2.5-1.fc35.noarch -DEBUG util.py:446: fonts-srpm-macros-2.0.5-6.fc35.noarch -DEBUG util.py:446: go-srpm-macros-3.0.11-2.fc35.noarch -DEBUG util.py:446: rpm-build-4.17.0-1.fc36.1.x86_64 -DEBUG util.py:446: util-linux-2.37.2-1.fc36.x86_64 -DEBUG util.py:446: libsepol-3.3-1.fc36.x86_64 -DEBUG util.py:446: libselinux-3.3-1.fc36.x86_64 -DEBUG util.py:446: libsemanage-3.3-1.fc36.x86_64 -DEBUG util.py:446: gzip-1.11-1.fc36.x86_64 -DEBUG util.py:446: which-2.21-30.fc36.x86_64 -DEBUG util.py:446: libcurl-7.79.1-3.fc36.x86_64 -DEBUG util.py:446: curl-7.79.1-3.fc36.x86_64 -DEBUG util.py:446: binutils-gold-2.37-17.fc36.x86_64 -DEBUG util.py:446: binutils-2.37-17.fc36.x86_64 -DEBUG util.py:446: glibc-gconv-extra-2.34.9000-17.fc36.x86_64 -DEBUG util.py:446: glibc-2.34.9000-17.fc36.x86_64 -DEBUG util.py:446: bash-5.1.8-3.fc36.x86_64 -DEBUG util.py:446: glibc-common-2.34.9000-17.fc36.x86_64 -DEBUG util.py:446: glibc-minimal-langpack-2.34.9000-17.fc36.x86_64 -DEBUG util.py:446: gmp-6.2.1-1.fc36.x86_64 -DEBUG util.py:446: python-srpm-macros-3.10-13.fc36.noarch -DEBUG util.py:446: redhat-rpm-config-201-1.fc36.noarch -DEBUG util.py:446: bzip2-libs-1.0.8-10.fc36.x86_64 -DEBUG util.py:446: pcre2-syntax-10.39-1.fc36.noarch -DEBUG util.py:446: pcre2-10.39-1.fc36.x86_64 -DEBUG util.py:446: bzip2-1.0.8-10.fc36.x86_64 -DEBUG util.py:446: gawk-5.1.1-1.fc36.x86_64 -DEBUG util.py:446: gdb-minimal-11.1-3.fc36.x86_64 -DEBUG util.py:446: systemd-libs-249.6-2.fc36.x86_64 -DEBUG util.py:446: libgpg-error-1.43-1.fc36.x86_64 -DEBUG util.py:446: libtasn1-4.17.0-1.fc36.x86_64 -DEBUG util.py:446: shadow-utils-4.9-6.fc36.x86_64 -DEBUG util.py:598: Child return code was: 0 -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/proc -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-t', 'tmpfs', '-o', 'rprivate', 'tmpfs', '/var/lib/mock/fedora-rawhide-x86_64/root/proc'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/proc -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-o', 'rbind', '/proc', '/var/lib/mock/fedora-rawhide-x86_64/root/proc'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-o', 'remount,nodev,noexec,nosuid,readonly,rprivate,rbind', '/proc', '/var/lib/mock/fedora-rawhide-x86_64/root/proc'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/sys -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-t', 'tmpfs', '-o', 'rprivate', 'tmpfs', '/var/lib/mock/fedora-rawhide-x86_64/root/sys'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/sys -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-o', 'rbind', '/sys', '/var/lib/mock/fedora-rawhide-x86_64/root/sys'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-o', 'remount,nodev,noexec,nosuid,readonly,rprivate,rbind', '/sys', '/var/lib/mock/fedora-rawhide-x86_64/root/sys'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/dev/shm -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-t', 'tmpfs', 'tmpfs', '/var/lib/mock/fedora-rawhide-x86_64/root/dev/shm'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/dev/pts -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-t', 'devpts', '-o', 'gid=5,mode=0620,ptmxmode=0666,newinstance', 'devpts', '/var/lib/mock/fedora-rawhide-x86_64/root/dev/pts'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/sys/fs/selinux -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-t', 'tmpfs', 'tmpfs', '/var/lib/mock/fedora-rawhide-x86_64/root/sys/fs/selinux'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/installation-homedir -DEBUG package_manager.py:197: ['/usr/bin/dnf', '--installroot', '/var/lib/mock/fedora-rawhide-x86_64/root/', '-y', '--releasever', '36', '--setopt=deltarpm=False', '--allowerasing', '--disableplugin=local', '--disableplugin=spacewalk', '--disableplugin=versionlock', 'update'] -DEBUG util.py:624: child environment: None -DEBUG util.py:536: Using nspawn with args ['--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.nt08myua:/etc/resolv.conf'] -DEBUG util.py:542: Executing command: ['/usr/bin/systemd-nspawn', '-q', '-M', 'd6501f81a2f244a39809967cedc16ab1', '-D', '/var/lib/mock/fedora-rawhide-x86_64-bootstrap/root', '-a', '--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.nt08myua:/etc/resolv.conf', '--console=pipe', '--setenv=TERM=vt100', '--setenv=SHELL=/bin/bash', '--setenv=HOME=/var/lib/mock/fedora-rawhide-x86_64/root/installation-homedir', '--setenv=HOSTNAME=mock', '--setenv=PATH=/usr/bin:/bin:/usr/sbin:/sbin', '--setenv=PROMPT_COMMAND=printf "\\033]0;\\007"', '--setenv=PS1= \\s-\\v\\$ ', '--setenv=LANG=C.UTF-8', '--setenv=LC_MESSAGES=C.UTF-8', '--resolv-conf=off', '/usr/bin/dnf', '--installroot', '/var/lib/mock/fedora-rawhide-x86_64/root/', '-y', '--releasever', '36', '--setopt=deltarpm=False', '--allowerasing', '--disableplugin=local', '--disableplugin=spacewalk', '--disableplugin=versionlock', 'update', '--setopt=tsflags=nocontexts'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/var/lib/mock/fedora-rawhide-x86_64/root/installation-homedir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8', 'LC_MESSAGES': 'C.UTF-8', 'SYSTEMD_NSPAWN_TMPFS_TMP': '0'} and shell False -DEBUG util.py:444: No matches found for the following disable plugin patterns: local, spacewalk, versionlock -DEBUG util.py:446: fedora 14 kB/s | 26 kB 00:01 -DEBUG util.py:446: fedora 364 kB/s | 3.5 MB 00:09 -DEBUG util.py:446: Last metadata expiration check: 0:00:50 ago on Wed Nov 10 07:47:29 2021. -DEBUG util.py:446: Dependencies resolved. -DEBUG util.py:446: =================================================================================== -DEBUG util.py:446: Package Architecture Version Repository Size -DEBUG util.py:446: =================================================================================== -DEBUG util.py:446: Upgrading: -DEBUG util.py:446: redhat-rpm-config noarch 202-1.fc36 fedora 66 k -DEBUG util.py:446: Installing dependencies: -DEBUG util.py:446: expat x86_64 2.4.1-2.fc35 fedora 110 k -DEBUG util.py:446: mpdecimal x86_64 2.5.1-2.fc35 fedora 99 k -DEBUG util.py:446: python-pip-wheel noarch 21.3.1-1.fc36 fedora 1.1 M -DEBUG util.py:446: python-setuptools-wheel noarch 58.2.0-1.fc36 fedora 502 k -DEBUG util.py:446: python3 x86_64 3.10.0-2.fc36 fedora 26 k -DEBUG util.py:446: python3-libs x86_64 3.10.0-2.fc36 fedora 7.5 M -DEBUG util.py:446: Transaction Summary -DEBUG util.py:446: =================================================================================== -DEBUG util.py:446: Install 6 Packages -DEBUG util.py:446: Upgrade 1 Package -DEBUG util.py:446: Total size: 9.4 M -DEBUG util.py:446: Total download size: 66 k -DEBUG util.py:446: Downloading Packages: -DEBUG util.py:446: [SKIPPED] expat-2.4.1-2.fc35.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] mpdecimal-2.5.1-2.fc35.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python-pip-wheel-21.3.1-1.fc36.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python-setuptools-wheel-58.2.0-1.fc36.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-3.10.0-2.fc36.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-libs-3.10.0-2.fc36.x86_64.rpm: Already downloaded -DEBUG util.py:446: (7/7): redhat-rpm-config-202-1.fc36.noarch.rpm 35 kB/s | 66 kB 00:01 -DEBUG util.py:446: ----------------------------------------------------------------------------------- -DEBUG util.py:446: Total 19 kB/s | 66 kB 00:03 -DEBUG util.py:446: Running transaction check -DEBUG util.py:446: Transaction check succeeded. -DEBUG util.py:446: Running transaction test -DEBUG util.py:446: Transaction test succeeded. -DEBUG util.py:446: Running transaction -DEBUG util.py:446: Preparing : 1/1 -DEBUG util.py:446: Installing : python-setuptools-wheel-58.2.0-1.fc36.noarch 1/8 -DEBUG util.py:446: Installing : python-pip-wheel-21.3.1-1.fc36.noarch 2/8 -DEBUG util.py:446: Installing : mpdecimal-2.5.1-2.fc35.x86_64 3/8 -DEBUG util.py:446: Installing : expat-2.4.1-2.fc35.x86_64 4/8 -DEBUG util.py:446: Installing : python3-3.10.0-2.fc36.x86_64 5/8 -DEBUG util.py:446: Installing : python3-libs-3.10.0-2.fc36.x86_64 6/8 -DEBUG util.py:446: Upgrading : redhat-rpm-config-202-1.fc36.noarch 7/8 -DEBUG util.py:446: Cleanup : redhat-rpm-config-201-1.fc36.noarch 8/8 -DEBUG util.py:446: Running scriptlet: redhat-rpm-config-201-1.fc36.noarch 8/8 -DEBUG util.py:446: Verifying : expat-2.4.1-2.fc35.x86_64 1/8 -DEBUG util.py:446: Verifying : mpdecimal-2.5.1-2.fc35.x86_64 2/8 -DEBUG util.py:446: Verifying : python-pip-wheel-21.3.1-1.fc36.noarch 3/8 -DEBUG util.py:446: Verifying : python-setuptools-wheel-58.2.0-1.fc36.noarch 4/8 -DEBUG util.py:446: Verifying : python3-3.10.0-2.fc36.x86_64 5/8 -DEBUG util.py:446: Verifying : python3-libs-3.10.0-2.fc36.x86_64 6/8 -DEBUG util.py:446: Verifying : redhat-rpm-config-202-1.fc36.noarch 7/8 -DEBUG util.py:446: Verifying : redhat-rpm-config-201-1.fc36.noarch 8/8 -DEBUG util.py:446: Upgraded: -DEBUG util.py:446: redhat-rpm-config-202-1.fc36.noarch -DEBUG util.py:446: Installed: -DEBUG util.py:446: expat-2.4.1-2.fc35.x86_64 -DEBUG util.py:446: mpdecimal-2.5.1-2.fc35.x86_64 -DEBUG util.py:446: python-pip-wheel-21.3.1-1.fc36.noarch -DEBUG util.py:446: python-setuptools-wheel-58.2.0-1.fc36.noarch -DEBUG util.py:446: python3-3.10.0-2.fc36.x86_64 -DEBUG util.py:446: python3-libs-3.10.0-2.fc36.x86_64 -DEBUG util.py:446: Complete! -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/sys/fs/selinux'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/dev/pts'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/dev/shm'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/sys'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/sys'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/proc'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/proc'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:169: kill orphans -DEBUG util.py:624: child environment: None -DEBUG util.py:536: Using nspawn with args None -DEBUG util.py:542: Executing command: ['/usr/bin/systemd-nspawn', '-q', '-M', '2157b9506d694f0eafd9a879bba7c7ba', '-D', '/var/lib/mock/fedora-rawhide-x86_64-bootstrap/root', '-a', '--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;\\007"', '--setenv=PS1= \\s-\\v\\$ ', '--setenv=LANG=C.UTF-8', '--resolv-conf=off', '/bin/rpm', '-qa', '--root', '/var/lib/mock/fedora-rawhide-x86_64/root'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8', 'SYSTEMD_NSPAWN_TMPFS_TMP': '0'} and shell False -DEBUG util.py:446: gpg-pubkey-38ab71f4-60242b08 -DEBUG util.py:446: gpg-pubkey-9867c58f-601c49ca -DEBUG util.py:446: libgcc-11.2.1-6.fc36.x86_64 -DEBUG util.py:446: crypto-policies-20210917-1.gitc9d86d1.fc36.noarch -DEBUG util.py:446: fedora-release-identity-basic-36-0.7.noarch -DEBUG util.py:446: tzdata-2021a-2.fc35.noarch -DEBUG util.py:446: rust-srpm-macros-18-2.fc35.noarch -DEBUG util.py:446: qt5-srpm-macros-5.15.2-3.fc35.noarch -DEBUG util.py:446: publicsuffix-list-dafsa-20210518-2.fc35.noarch -DEBUG util.py:446: pkgconf-m4-1.8.0-1.fc35.noarch -DEBUG util.py:446: perl-srpm-macros-1-42.fc35.noarch -DEBUG util.py:446: openblas-srpm-macros-2-10.fc35.noarch -DEBUG util.py:446: ocaml-srpm-macros-6-5.fc35.noarch -DEBUG util.py:446: nim-srpm-macros-3-5.fc35.noarch -DEBUG util.py:446: ncurses-base-6.2-8.20210508.fc35.noarch -DEBUG util.py:446: libssh-config-0.9.6-1.fc36.noarch -DEBUG util.py:446: kernel-srpm-macros-1.0-6.fc35.noarch -DEBUG util.py:446: gnat-srpm-macros-4-14.fc35.noarch -DEBUG util.py:446: ghc-srpm-macros-1.5.0-5.fc35.noarch -DEBUG util.py:446: fpc-srpm-macros-1.3-4.fc35.noarch -DEBUG util.py:446: fedora-gpg-keys-36-0.3.noarch -DEBUG util.py:446: fedora-release-36-0.7.noarch -DEBUG util.py:446: fedora-release-common-36-0.7.noarch -DEBUG util.py:446: fedora-repos-rawhide-36-0.3.noarch -DEBUG util.py:446: fedora-repos-36-0.3.noarch -DEBUG util.py:446: setup-2.13.9.1-2.fc35.noarch -DEBUG util.py:446: filesystem-3.16-1.fc36.x86_64 -DEBUG util.py:446: basesystem-11-12.fc35.noarch -DEBUG util.py:446: ncurses-libs-6.2-8.20210508.fc35.x86_64 -DEBUG util.py:446: zlib-1.2.11-30.fc35.x86_64 -DEBUG util.py:446: xz-libs-5.2.5-7.fc35.x86_64 -DEBUG util.py:446: elfutils-libelf-0.185-5.fc35.x86_64 -DEBUG util.py:446: libstdc++-11.2.1-6.fc36.x86_64 -DEBUG util.py:446: libuuid-2.37.2-1.fc36.x86_64 -DEBUG util.py:446: libzstd-1.5.0-2.fc35.x86_64 -DEBUG util.py:446: libattr-2.5.1-3.fc35.x86_64 -DEBUG util.py:446: libacl-2.3.1-2.fc35.x86_64 -DEBUG util.py:446: libcap-2.48-3.fc35.x86_64 -DEBUG util.py:446: libcom_err-1.46.4-1.fc36.x86_64 -DEBUG util.py:446: libxcrypt-4.4.26-4.fc36.x86_64 -DEBUG util.py:446: popt-1.18-6.fc36.x86_64 -DEBUG util.py:446: readline-8.1-3.fc35.x86_64 -DEBUG util.py:446: mpfr-4.1.0-8.fc35.x86_64 -DEBUG util.py:446: dwz-0.14-2.fc35.x86_64 -DEBUG util.py:446: unzip-6.0-53.fc35.x86_64 -DEBUG util.py:446: file-libs-5.41-1.fc36.x86_64 -DEBUG util.py:446: file-5.41-1.fc36.x86_64 -DEBUG util.py:446: openssl1.1-1.1.1l-1.fc36.x86_64 -DEBUG util.py:446: sqlite-libs-3.36.0-4.fc36.x86_64 -DEBUG util.py:446: alternatives-1.19-1.fc35.x86_64 -DEBUG util.py:446: libcap-ng-0.8.2-7.fc36.x86_64 -DEBUG util.py:446: audit-libs-3.0.6-1.fc36.x86_64 -DEBUG util.py:446: libsmartcols-2.37.2-1.fc36.x86_64 -DEBUG util.py:446: libunistring-0.9.10-14.fc35.x86_64 -DEBUG util.py:446: libidn2-2.3.2-3.fc36.x86_64 -DEBUG util.py:446: lua-libs-5.4.3-2.fc35.x86_64 -DEBUG util.py:446: lz4-libs-1.9.3-3.fc35.x86_64 -DEBUG util.py:446: libpsl-0.21.1-4.fc35.x86_64 -DEBUG util.py:446: zip-3.0-31.fc35.x86_64 -DEBUG util.py:446: zstd-1.5.0-2.fc35.x86_64 -DEBUG util.py:446: libxml2-2.9.12-6.fc35.x86_64 -DEBUG util.py:446: libarchive-3.5.2-2.fc36.x86_64 -DEBUG util.py:446: elfutils-default-yama-scope-0.185-5.fc35.noarch -DEBUG util.py:446: info-6.8-2.fc35.x86_64 -DEBUG util.py:446: ed-1.14.2-11.fc35.x86_64 -DEBUG util.py:446: cpio-2.13-11.fc36.x86_64 -DEBUG util.py:446: diffutils-3.8-1.fc35.x86_64 -DEBUG util.py:446: gdbm-libs-1.22-1.fc36.x86_64 -DEBUG util.py:446: keyutils-libs-1.6.1-3.fc35.x86_64 -DEBUG util.py:446: libbrotli-1.0.9-6.fc35.x86_64 -DEBUG util.py:446: libdb-5.3.28-50.fc36.x86_64 -DEBUG util.py:446: libeconf-0.4.0-2.fc35.x86_64 -DEBUG util.py:446: libffi-3.1-28.fc34.x86_64 -DEBUG util.py:446: p11-kit-0.23.22-4.fc35.x86_64 -DEBUG util.py:446: libgomp-11.2.1-6.fc36.x86_64 -DEBUG util.py:446: libgcrypt-1.9.4-1.fc36.x86_64 -DEBUG util.py:446: libnghttp2-1.46.0-1.fc36.x86_64 -DEBUG util.py:446: libpkgconf-1.8.0-1.fc35.x86_64 -DEBUG util.py:446: pkgconf-1.8.0-1.fc35.x86_64 -DEBUG util.py:446: pkgconf-pkg-config-1.8.0-1.fc35.x86_64 -DEBUG util.py:446: libsigsegv-2.13-3.fc35.x86_64 -DEBUG util.py:446: p11-kit-trust-0.23.22-4.fc35.x86_64 -DEBUG util.py:446: libverto-0.3.2-2.fc35.x86_64 -DEBUG util.py:446: pcre-8.45-1.fc36.x86_64 -DEBUG util.py:446: grep-3.7-1.fc36.x86_64 -DEBUG util.py:446: xz-5.2.5-7.fc35.x86_64 -DEBUG util.py:446: sed-4.8-8.fc35.x86_64 -DEBUG util.py:446: findutils-4.8.0-4.fc35.x86_64 -DEBUG util.py:446: libutempter-1.2.1-5.fc35.x86_64 -DEBUG util.py:446: patch-2.7.6-15.fc35.x86_64 -DEBUG util.py:446: tar-1.34-2.fc35.x86_64 -DEBUG util.py:446: xxhash-libs-0.8.0-4.fc35.x86_64 -DEBUG util.py:446: coreutils-common-9.0-2.fc36.x86_64 -DEBUG util.py:446: openssl-libs-3.0.0-1.fc36.x86_64 -DEBUG util.py:446: coreutils-9.0-2.fc36.x86_64 -DEBUG util.py:446: ca-certificates-2021.2.50-3.fc35.noarch -DEBUG util.py:446: krb5-libs-1.19.2-3.fc36.x86_64 -DEBUG util.py:446: libblkid-2.37.2-1.fc36.x86_64 -DEBUG util.py:446: libmount-2.37.2-1.fc36.x86_64 -DEBUG util.py:446: libtirpc-1.3.2-1.rc1.fc36.x86_64 -DEBUG util.py:446: util-linux-core-2.37.2-1.fc36.x86_64 -DEBUG util.py:446: cracklib-2.9.6-27.fc36.x86_64 -DEBUG util.py:446: libnsl2-1.3.0-4.fc35.x86_64 -DEBUG util.py:446: libpwquality-1.4.4-6.fc36.x86_64 -DEBUG util.py:446: pam-1.5.2-6.fc36.x86_64 -DEBUG util.py:446: libfdisk-2.37.2-1.fc36.x86_64 -DEBUG util.py:446: cyrus-sasl-lib-2.1.27-16.fc36.x86_64 -DEBUG util.py:446: openldap-2.4.59-4.fc36.x86_64 -DEBUG util.py:446: libssh-0.9.6-1.fc36.x86_64 -DEBUG util.py:446: elfutils-libs-0.185-5.fc35.x86_64 -DEBUG util.py:446: elfutils-debuginfod-client-0.185-5.fc35.x86_64 -DEBUG util.py:446: elfutils-0.185-5.fc35.x86_64 -DEBUG util.py:446: debugedit-5.0-2.fc35.x86_64 -DEBUG util.py:446: rpm-4.17.0-1.fc36.1.x86_64 -DEBUG util.py:446: rpm-libs-4.17.0-1.fc36.1.x86_64 -DEBUG util.py:446: rpm-build-libs-4.17.0-1.fc36.1.x86_64 -DEBUG util.py:446: efi-srpm-macros-5-4.fc36.noarch -DEBUG util.py:446: lua-srpm-macros-1-5.fc35.noarch -DEBUG util.py:446: rpmautospec-rpm-macros-0.2.5-1.fc35.noarch -DEBUG util.py:446: fonts-srpm-macros-2.0.5-6.fc35.noarch -DEBUG util.py:446: go-srpm-macros-3.0.11-2.fc35.noarch -DEBUG util.py:446: rpm-build-4.17.0-1.fc36.1.x86_64 -DEBUG util.py:446: util-linux-2.37.2-1.fc36.x86_64 -DEBUG util.py:446: libsepol-3.3-1.fc36.x86_64 -DEBUG util.py:446: libselinux-3.3-1.fc36.x86_64 -DEBUG util.py:446: libsemanage-3.3-1.fc36.x86_64 -DEBUG util.py:446: gzip-1.11-1.fc36.x86_64 -DEBUG util.py:446: which-2.21-30.fc36.x86_64 -DEBUG util.py:446: libcurl-7.79.1-3.fc36.x86_64 -DEBUG util.py:446: curl-7.79.1-3.fc36.x86_64 -DEBUG util.py:446: binutils-gold-2.37-17.fc36.x86_64 -DEBUG util.py:446: binutils-2.37-17.fc36.x86_64 -DEBUG util.py:446: glibc-gconv-extra-2.34.9000-17.fc36.x86_64 -DEBUG util.py:446: glibc-2.34.9000-17.fc36.x86_64 -DEBUG util.py:446: bash-5.1.8-3.fc36.x86_64 -DEBUG util.py:446: glibc-common-2.34.9000-17.fc36.x86_64 -DEBUG util.py:446: glibc-minimal-langpack-2.34.9000-17.fc36.x86_64 -DEBUG util.py:446: gmp-6.2.1-1.fc36.x86_64 -DEBUG util.py:446: python-srpm-macros-3.10-13.fc36.noarch -DEBUG util.py:446: bzip2-libs-1.0.8-10.fc36.x86_64 -DEBUG util.py:446: pcre2-syntax-10.39-1.fc36.noarch -DEBUG util.py:446: pcre2-10.39-1.fc36.x86_64 -DEBUG util.py:446: bzip2-1.0.8-10.fc36.x86_64 -DEBUG util.py:446: gawk-5.1.1-1.fc36.x86_64 -DEBUG util.py:446: gdb-minimal-11.1-3.fc36.x86_64 -DEBUG util.py:446: systemd-libs-249.6-2.fc36.x86_64 -DEBUG util.py:446: libgpg-error-1.43-1.fc36.x86_64 -DEBUG util.py:446: libtasn1-4.17.0-1.fc36.x86_64 -DEBUG util.py:446: shadow-utils-4.9-6.fc36.x86_64 -DEBUG util.py:446: python-setuptools-wheel-58.2.0-1.fc36.noarch -DEBUG util.py:446: python-pip-wheel-21.3.1-1.fc36.noarch -DEBUG util.py:446: mpdecimal-2.5.1-2.fc35.x86_64 -DEBUG util.py:446: expat-2.4.1-2.fc35.x86_64 -DEBUG util.py:446: python3-3.10.0-2.fc36.x86_64 -DEBUG util.py:446: python3-libs-3.10.0-2.fc36.x86_64 -DEBUG util.py:446: redhat-rpm-config-202-1.fc36.noarch -DEBUG util.py:598: Child return code was: 0 -INFO buildroot.py:227: Calling postupdate hooks because there are new/updated packages: -python3-libs-3.10.0-2.fc36.x86_64 -python-setuptools-wheel-58.2.0-1.fc36.noarch -mpdecimal-2.5.1-2.fc35.x86_64 -python-pip-wheel-21.3.1-1.fc36.noarch -python3-3.10.0-2.fc36.x86_64 -expat-2.4.1-2.fc35.x86_64 -redhat-rpm-config-202-1.fc36.noarch -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['sync'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['gtar', '--one-file-system', '--exclude-caches', '--exclude-caches-under', '--use-compress-program', 'pigz', '-cf', '/var/cache/mock/fedora-rawhide-x86_64/root_cache/cache.tar.gz', '-C', '/var/lib/mock/fedora-rawhide-x86_64/root', '--exclude=./proc', '--exclude=./sys', '--exclude=./dev', '--exclude=./tmp/ccache', '--exclude=./var/cache/yum', '--exclude=./var/cache/dnf', '--exclude=./var/log', '--exclude=.//proc', '--exclude=.//proc', '--exclude=.//sys', '--exclude=.//sys', '--exclude=.//dev/shm', '--exclude=.//dev/pts', '--exclude=.//sys/fs/selinux', '--exclude=.//var/cache/yum', '--exclude=.//var/cache/dnf', '--exclude=.//proc/filesystems', '--exclude=./var/lib/mock/fedora-rawhide-x86_64-bootstrap/root/var/lib/mock/fedora-rawhide-x86_64/root', '--exclude=./var/lib/mock/fedora-rawhide-x86_64-bootstrap/root/var/lib/mock/fedora-rawhide-x86_64/root', '.'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG file_util.py:30: touching file: /var/lib/mock/fedora-rawhide-x86_64/root/.initialized -DEBUG util.py:624: child environment: None -DEBUG util.py:536: Using nspawn with args ['--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.e0q2oq0n:/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'] -DEBUG util.py:542: Executing command: ['/usr/bin/systemd-nspawn', '-q', '-M', '7872c005a39743acbbece5f925f37945', '-D', '/var/lib/mock/fedora-rawhide-x86_64/root', '-a', '-u', 'mockbuild', '--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.e0q2oq0n:/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;\\007"', '--setenv=PS1= \\s-\\v\\$ ', '--setenv=LANG=C.UTF-8', '--resolv-conf=off', '/bin/rpm', '-Uvh', '--nodeps', '/builddir/build/originals/python-pymatreader-0.0.25-1.fc36.src.rpm'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8', 'SYSTEMD_NSPAWN_TMPFS_TMP': '0'} and shell False -DEBUG util.py:446: Updating / installing... -DEBUG util.py:444: python-pymatreader-0.0.25-1.fc36 warning: user vanessa does not exist - using root -DEBUG util.py:444: warning: group vanessa does not exist - using root -DEBUG util.py:444: warning: user vanessa does not exist - using root -DEBUG util.py:444: warning: group vanessa does not exist - using root -DEBUG util.py:446: ######################################## -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:536: Using nspawn with args ['--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.e0q2oq0n:/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'] -DEBUG util.py:542: Executing command: ['/usr/bin/systemd-nspawn', '-q', '-M', '46c52a188220482a88b51b233d11b1cf', '-D', '/var/lib/mock/fedora-rawhide-x86_64/root', '-a', '-u', 'mockbuild', '--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.e0q2oq0n:/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;\\007"', '--setenv=PS1= \\s-\\v\\$ ', '--setenv=LANG=C.UTF-8', '--resolv-conf=off', '/bin/rpm', '-qpl', '/builddir/build/originals/python-pymatreader-0.0.25-1.fc36.src.rpm'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8', 'SYSTEMD_NSPAWN_TMPFS_TMP': '0'} and shell False -DEBUG util.py:446: python-pymatreader-0.0.25.tar.gz -DEBUG util.py:446: python-pymatreader.spec -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/proc -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-t', 'tmpfs', '-o', 'rprivate', 'tmpfs', '/var/lib/mock/fedora-rawhide-x86_64/root/proc'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/proc -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-o', 'rbind', '/proc', '/var/lib/mock/fedora-rawhide-x86_64/root/proc'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-o', 'remount,nodev,noexec,nosuid,readonly,rprivate,rbind', '/proc', '/var/lib/mock/fedora-rawhide-x86_64/root/proc'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/sys -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-t', 'tmpfs', '-o', 'rprivate', 'tmpfs', '/var/lib/mock/fedora-rawhide-x86_64/root/sys'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/sys -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-o', 'rbind', '/sys', '/var/lib/mock/fedora-rawhide-x86_64/root/sys'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-o', 'remount,nodev,noexec,nosuid,readonly,rprivate,rbind', '/sys', '/var/lib/mock/fedora-rawhide-x86_64/root/sys'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/dev/shm -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-t', 'tmpfs', 'tmpfs', '/var/lib/mock/fedora-rawhide-x86_64/root/dev/shm'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/dev/pts -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-t', 'devpts', '-o', 'gid=5,mode=0620,ptmxmode=0666,newinstance', 'devpts', '/var/lib/mock/fedora-rawhide-x86_64/root/dev/pts'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/sys/fs/selinux -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/mount', '-n', '-t', 'tmpfs', 'tmpfs', '/var/lib/mock/fedora-rawhide-x86_64/root/sys/fs/selinux'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG file_util.py:17: ensuring that dir exists: /var/lib/mock/fedora-rawhide-x86_64/root/installation-homedir -DEBUG package_manager.py:197: ['/usr/bin/dnf', 'builddep', '--installroot', '/var/lib/mock/fedora-rawhide-x86_64/root/', '--releasever', '36', '--setopt=deltarpm=False', '--allowerasing', '--disableplugin=local', '--disableplugin=spacewalk', '--disableplugin=versionlock', '--disableplugin=local', '--disableplugin=spacewalk', '--disableplugin=versionlock', '/var/lib/mock/fedora-rawhide-x86_64/root//builddir/build/SRPMS/python-pymatreader-0.0.25-1.fc36.src.rpm'] -DEBUG util.py:624: child environment: None -DEBUG util.py:536: Using nspawn with args ['--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.nt08myua:/etc/resolv.conf'] -DEBUG util.py:542: Executing command: ['/usr/bin/systemd-nspawn', '-q', '-M', '1d37cc5aa1d74f2084e7a5e62e5fb278', '-D', '/var/lib/mock/fedora-rawhide-x86_64-bootstrap/root', '-a', '--capability=cap_ipc_lock', '--bind=/tmp/mock-resolv.nt08myua:/etc/resolv.conf', '--console=pipe', '--setenv=TERM=vt100', '--setenv=SHELL=/bin/bash', '--setenv=HOME=/var/lib/mock/fedora-rawhide-x86_64/root/installation-homedir', '--setenv=HOSTNAME=mock', '--setenv=PATH=/usr/bin:/bin:/usr/sbin:/sbin', '--setenv=PROMPT_COMMAND=printf "\\033]0;\\007"', '--setenv=PS1= \\s-\\v\\$ ', '--setenv=LANG=C.UTF-8', '--setenv=LC_MESSAGES=C.UTF-8', '--resolv-conf=off', '/usr/bin/dnf', 'builddep', '--installroot', '/var/lib/mock/fedora-rawhide-x86_64/root/', '--releasever', '36', '--setopt=deltarpm=False', '--allowerasing', '--disableplugin=local', '--disableplugin=spacewalk', '--disableplugin=versionlock', '--disableplugin=local', '--disableplugin=spacewalk', '--disableplugin=versionlock', '/var/lib/mock/fedora-rawhide-x86_64/root//builddir/build/SRPMS/python-pymatreader-0.0.25-1.fc36.src.rpm', '--setopt=tsflags=nocontexts'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/var/lib/mock/fedora-rawhide-x86_64/root/installation-homedir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8', 'LC_MESSAGES': 'C.UTF-8', 'SYSTEMD_NSPAWN_TMPFS_TMP': '0'} and shell False -DEBUG util.py:444: No matches found for the following disable plugin patterns: local, spacewalk, versionlock -DEBUG util.py:446: fedora 20 kB/s | 26 kB 00:01 -DEBUG util.py:446: Dependencies resolved. -DEBUG util.py:446: =================================================================================== -DEBUG util.py:446: Package Arch Version Repo Size -DEBUG util.py:446: =================================================================================== -DEBUG util.py:446: Installing: -DEBUG util.py:446: git-core x86_64 2.33.1-1.fc36 fedora 3.8 M -DEBUG util.py:446: make x86_64 1:4.3-6.fc35 fedora 533 k -DEBUG util.py:446: python3-devel x86_64 3.10.0-2.fc36 fedora 206 k -DEBUG util.py:446: python3-future noarch 0.18.2-11.fc35 fedora 748 k -DEBUG util.py:446: python3-h5py x86_64 3.4.0-2.fc36 fedora 886 k -DEBUG util.py:446: python3-numpy x86_64 1:1.21.1-1.fc35 fedora 5.1 M -DEBUG util.py:446: python3-pytest noarch 6.2.5-1.fc36 fedora 1.6 M -DEBUG util.py:446: python3-scipy x86_64 1.7.0-2.fc35 fedora 17 M -DEBUG util.py:446: python3-setuptools noarch 58.2.0-1.fc36 fedora 923 k -DEBUG util.py:446: python3-sphinx noarch 1:4.2.0-1.fc36 fedora 2.1 M -DEBUG util.py:446: python3-sphinx_rtd_theme noarch 1.0.0-1.fc36 fedora 69 k -DEBUG util.py:446: python3-wheel noarch 1:0.37.0-1.fc36 fedora 72 k -DEBUG util.py:446: python3-xmltodict noarch 0.12.0-13.fc35 fedora 22 k -DEBUG util.py:446: twine noarch 3.4.2-1.fc35 fedora 70 k -DEBUG util.py:446: Installing dependencies: -DEBUG util.py:446: flexiblas x86_64 3.0.4-6.fc35 fedora 31 k -DEBUG util.py:446: flexiblas-netlib x86_64 3.0.4-6.fc35 fedora 3.0 M -DEBUG util.py:446: flexiblas-openblas-openmp x86_64 3.0.4-6.fc35 fedora 17 k -DEBUG util.py:446: fontawesome-fonts noarch 1:4.7.0-12.fc35 fedora 204 k -DEBUG util.py:446: fonts-filesystem noarch 1:2.0.5-6.fc35 fedora 8.9 k -DEBUG util.py:446: gc x86_64 8.0.6-1.fc36 fedora 103 k -DEBUG util.py:446: google-roboto-slab-fonts noarch 1.100263-0.16.20150923git.fc35 -DEBUG util.py:446: fedora 239 k -DEBUG util.py:446: guile22 x86_64 2.2.7-3.fc35 fedora 6.4 M -DEBUG util.py:446: hdf5 x86_64 1.10.7-2.fc36 fedora 2.0 M -DEBUG util.py:446: lato-fonts noarch 2.015-12.fc35 fedora 3.1 M -DEBUG util.py:446: less x86_64 590-2.fc36 fedora 160 k -DEBUG util.py:446: libaec x86_64 1.0.6-1.fc36 fedora 41 k -DEBUG util.py:446: libcbor x86_64 0.7.0-4.fc35 fedora 56 k -DEBUG util.py:446: libedit x86_64 3.1-40.20210910cvs.fc36 fedora 105 k -DEBUG util.py:446: libfido2 x86_64 1.9.0-1.fc36 fedora 94 k -DEBUG util.py:446: libgfortran x86_64 11.2.1-6.fc36 fedora 820 k -DEBUG util.py:446: liblzf x86_64 3.6-22.fc35 fedora 27 k -DEBUG util.py:446: libquadmath x86_64 11.2.1-6.fc36 fedora 212 k -DEBUG util.py:446: libtool-ltdl x86_64 2.4.6-44.fc36 fedora 36 k -DEBUG util.py:446: openblas x86_64 0.3.18-1.fc36 fedora 34 k -DEBUG util.py:446: openblas-openmp x86_64 0.3.18-1.fc36 fedora 4.7 M -DEBUG util.py:446: openssh x86_64 8.7p1-3.fc36 fedora 451 k -DEBUG util.py:446: openssh-clients x86_64 8.7p1-3.fc36 fedora 697 k -DEBUG util.py:446: pyproject-rpm-macros noarch 0-49.fc36 fedora 36 k -DEBUG util.py:446: python-rpm-macros noarch 3.10-13.fc36 fedora 18 k -DEBUG util.py:446: python3-attrs noarch 21.2.0-4.fc35 fedora 85 k -DEBUG util.py:446: python3-babel noarch 2.9.1-4.fc35 fedora 5.8 M -DEBUG util.py:446: python3-bleach noarch 4.0.0-1.fc35 fedora 49 k -DEBUG util.py:446: python3-cached_property noarch 1.5.2-4.fc35 fedora 20 k -DEBUG util.py:446: python3-cffi x86_64 1.15.0~rc2-1.fc36 fedora 244 k -DEBUG util.py:446: python3-charset-normalizer noarch 2.0.7-1.fc36 fedora 72 k -DEBUG util.py:446: python3-colorama noarch 0.4.4-4.fc35 fedora 33 k -DEBUG util.py:446: python3-cryptography x86_64 35.0.0-2.fc36 fedora 1.0 M -DEBUG util.py:446: python3-docutils noarch 0.17.1-1.fc36 fedora 833 k -DEBUG util.py:446: python3-html5lib noarch 1:1.1-6.fc35 fedora 223 k -DEBUG util.py:446: python3-idna noarch 3.3-1.fc36 fedora 100 k -DEBUG util.py:446: python3-imagesize noarch 1.2.0-6.fc35 fedora 17 k -DEBUG util.py:446: python3-importlib-metadata noarch 4.8.1-1.fc36 fedora 39 k -DEBUG util.py:446: python3-iniconfig noarch 1.1.1-5.fc35 fedora 16 k -DEBUG util.py:446: python3-jeepney noarch 0.7.1-1.fc35 fedora 323 k -DEBUG util.py:446: python3-jinja2 noarch 3.0.1-2.fc35 fedora 529 k -DEBUG util.py:446: python3-keyring noarch 21.8.0-4.fc35 fedora 75 k -DEBUG util.py:446: python3-markupsafe x86_64 2.0.0-2.fc35 fedora 27 k -DEBUG util.py:446: python3-numpy-f2py x86_64 1:1.21.1-1.fc35 fedora 224 k -DEBUG util.py:446: python3-packaging noarch 21.2-1.fc36 fedora 72 k -DEBUG util.py:446: python3-pkginfo noarch 1.7.1-2.fc35 fedora 34 k -DEBUG util.py:446: python3-pluggy noarch 1.0.0-1.fc36 fedora 33 k -DEBUG util.py:446: python3-ply noarch 3.11-13.fc35 fedora 104 k -DEBUG util.py:446: python3-py noarch 1.10.0-5.fc35 fedora 440 k -DEBUG util.py:446: python3-pycparser noarch 2.20-5.fc35 fedora 126 k -DEBUG util.py:446: python3-pygments noarch 2.10.0-1.fc36 fedora 2.0 M -DEBUG util.py:446: python3-pyparsing noarch 2.4.7-9.fc35 fedora 151 k -DEBUG util.py:446: python3-pysocks noarch 1.7.1-11.fc35 fedora 34 k -DEBUG util.py:446: python3-pytz noarch 2021.3-1.fc36 fedora 47 k -DEBUG util.py:446: python3-readme-renderer noarch 29.0-3.fc35 fedora 29 k -DEBUG util.py:446: python3-requests noarch 2.26.0-1.fc35 fedora 117 k -DEBUG util.py:446: python3-requests-toolbelt noarch 0.9.1-15.fc35 fedora 87 k -DEBUG util.py:446: python3-rfc3986 noarch 1.4.0-7.fc35 fedora 50 k -DEBUG util.py:446: python3-rpm-generators noarch 12-10.fc36 fedora 31 k -DEBUG util.py:446: python3-rpm-macros noarch 3.10-13.fc36 fedora 15 k -DEBUG util.py:446: python3-secretstorage noarch 3.3.1-3.fc35 fedora 35 k -DEBUG util.py:446: python3-six noarch 1.16.0-4.fc35 fedora 36 k -DEBUG util.py:446: python3-snowballstemmer noarch 1.9.0-10.fc35 fedora 152 k -DEBUG util.py:446: python3-sphinx-theme-alabaster noarch 0.7.12-13.fc35 fedora 24 k -DEBUG util.py:446: python3-sphinxcontrib-applehelp noarch 1.0.2-6.fc35 fedora 35 k -DEBUG util.py:446: python3-sphinxcontrib-devhelp noarch 1.0.2-6.fc35 fedora 29 k -DEBUG util.py:446: python3-sphinxcontrib-htmlhelp noarch 2.0.0-2.fc35 fedora 44 k -DEBUG util.py:446: python3-sphinxcontrib-jsmath noarch 1.0.1-13.fc35 fedora 16 k -DEBUG util.py:446: python3-sphinxcontrib-qthelp noarch 1.0.3-6.fc35 fedora 33 k -DEBUG util.py:446: python3-sphinxcontrib-serializinghtml noarch 1.1.5-2.fc35 fedora 34 k -DEBUG util.py:446: python3-toml noarch 0.10.2-5.fc35 fedora 39 k -DEBUG util.py:446: python3-tqdm noarch 4.62.3-1.fc36 fedora 128 k -DEBUG util.py:446: python3-urllib3 noarch 1.26.7-1.fc36 fedora 183 k -DEBUG util.py:446: python3-webencodings noarch 0.5.1-16.fc35 fedora 28 k -DEBUG util.py:446: python3-zipp noarch 3.6.0-1.fc36 fedora 16 k -DEBUG util.py:446: Transaction Summary -DEBUG util.py:446: =================================================================================== -DEBUG util.py:446: Install 89 Packages -DEBUG util.py:446: Total size: 69 M -DEBUG util.py:446: Installed size: 327 M -DEBUG util.py:446: Downloading Packages: -DEBUG util.py:446: [SKIPPED] flexiblas-3.0.4-6.fc35.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] flexiblas-netlib-3.0.4-6.fc35.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] flexiblas-openblas-openmp-3.0.4-6.fc35.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] fontawesome-fonts-4.7.0-12.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] fonts-filesystem-2.0.5-6.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] gc-8.0.6-1.fc36.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] git-core-2.33.1-1.fc36.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] google-roboto-slab-fonts-1.100263-0.16.20150923git.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] guile22-2.2.7-3.fc35.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] hdf5-1.10.7-2.fc36.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] lato-fonts-2.015-12.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] less-590-2.fc36.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] libaec-1.0.6-1.fc36.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] libcbor-0.7.0-4.fc35.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] libedit-3.1-40.20210910cvs.fc36.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] libfido2-1.9.0-1.fc36.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] libgfortran-11.2.1-6.fc36.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] liblzf-3.6-22.fc35.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] libquadmath-11.2.1-6.fc36.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] libtool-ltdl-2.4.6-44.fc36.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] make-4.3-6.fc35.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] openblas-0.3.18-1.fc36.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] openblas-openmp-0.3.18-1.fc36.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] openssh-8.7p1-3.fc36.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] openssh-clients-8.7p1-3.fc36.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] pyproject-rpm-macros-0-49.fc36.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python-rpm-macros-3.10-13.fc36.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-attrs-21.2.0-4.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-babel-2.9.1-4.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-bleach-4.0.0-1.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-cached_property-1.5.2-4.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-cffi-1.15.0~rc2-1.fc36.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-charset-normalizer-2.0.7-1.fc36.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-colorama-0.4.4-4.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-cryptography-35.0.0-2.fc36.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-devel-3.10.0-2.fc36.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-docutils-0.17.1-1.fc36.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-future-0.18.2-11.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-h5py-3.4.0-2.fc36.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-html5lib-1.1-6.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-idna-3.3-1.fc36.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-imagesize-1.2.0-6.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-importlib-metadata-4.8.1-1.fc36.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-iniconfig-1.1.1-5.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-jeepney-0.7.1-1.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-jinja2-3.0.1-2.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-keyring-21.8.0-4.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-markupsafe-2.0.0-2.fc35.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-numpy-1.21.1-1.fc35.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-numpy-f2py-1.21.1-1.fc35.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-packaging-21.2-1.fc36.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-pkginfo-1.7.1-2.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-pluggy-1.0.0-1.fc36.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-ply-3.11-13.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-py-1.10.0-5.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-pycparser-2.20-5.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-pygments-2.10.0-1.fc36.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-pyparsing-2.4.7-9.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-pysocks-1.7.1-11.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-pytest-6.2.5-1.fc36.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-pytz-2021.3-1.fc36.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-readme-renderer-29.0-3.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-requests-2.26.0-1.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-requests-toolbelt-0.9.1-15.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-rfc3986-1.4.0-7.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-rpm-generators-12-10.fc36.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-rpm-macros-3.10-13.fc36.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-scipy-1.7.0-2.fc35.x86_64.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-secretstorage-3.3.1-3.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-setuptools-58.2.0-1.fc36.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-six-1.16.0-4.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-snowballstemmer-1.9.0-10.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-sphinx-4.2.0-1.fc36.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-sphinx-theme-alabaster-0.7.12-13.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-sphinx_rtd_theme-1.0.0-1.fc36.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-sphinxcontrib-applehelp-1.0.2-6.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-sphinxcontrib-devhelp-1.0.2-6.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-sphinxcontrib-htmlhelp-2.0.0-2.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-sphinxcontrib-jsmath-1.0.1-13.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-sphinxcontrib-qthelp-1.0.3-6.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-sphinxcontrib-serializinghtml-1.1.5-2.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-toml-0.10.2-5.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-tqdm-4.62.3-1.fc36.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-urllib3-1.26.7-1.fc36.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-webencodings-0.5.1-16.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-wheel-0.37.0-1.fc36.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-xmltodict-0.12.0-13.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] python3-zipp-3.6.0-1.fc36.noarch.rpm: Already downloaded -DEBUG util.py:446: [SKIPPED] twine-3.4.2-1.fc35.noarch.rpm: Already downloaded -DEBUG util.py:446: Running transaction check -DEBUG util.py:446: Transaction check succeeded. -DEBUG util.py:446: Running transaction test -DEBUG util.py:446: Transaction test succeeded. -DEBUG util.py:446: Running transaction -DEBUG util.py:446: Preparing : 1/1 -DEBUG util.py:446: Installing : python3-six-1.16.0-4.fc35.noarch 1/89 -DEBUG util.py:446: Installing : python3-setuptools-58.2.0-1.fc36.noarch 2/89 -DEBUG util.py:446: Installing : python3-docutils-0.17.1-1.fc36.noarch 3/89 -DEBUG util.py:446: Installing : python-rpm-macros-3.10-13.fc36.noarch 4/89 -DEBUG util.py:446: Installing : fonts-filesystem-1:2.0.5-6.fc35.noarch 5/89 -DEBUG util.py:446: Installing : python3-rpm-macros-3.10-13.fc36.noarch 6/89 -DEBUG util.py:446: Installing : python3-webencodings-0.5.1-16.fc35.noarch 7/89 -DEBUG util.py:446: Installing : python3-pygments-2.10.0-1.fc36.noarch 8/89 -DEBUG util.py:446: Installing : python3-jeepney-0.7.1-1.fc35.noarch 9/89 -DEBUG util.py:446: Installing : python3-idna-3.3-1.fc36.noarch 10/89 -DEBUG util.py:446: Installing : libquadmath-11.2.1-6.fc36.x86_64 11/89 -DEBUG util.py:446: Installing : libgfortran-11.2.1-6.fc36.x86_64 12/89 -DEBUG util.py:446: Installing : flexiblas-3.0.4-6.fc35.x86_64 13/89 -DEBUG util.py:446: Installing : python3-html5lib-1:1.1-6.fc35.noarch 14/89 -DEBUG util.py:446: Installing : pyproject-rpm-macros-0-49.fc36.noarch 15/89 -DEBUG util.py:446: Installing : fontawesome-fonts-1:4.7.0-12.fc35.noarch 16/89 -DEBUG util.py:446: Installing : google-roboto-slab-fonts-1.100263-0.16.20150923git.fc 17/89 -DEBUG util.py:446: Installing : lato-fonts-2.015-12.fc35.noarch 18/89 -DEBUG util.py:446: Installing : python3-pkginfo-1.7.1-2.fc35.noarch 19/89 -DEBUG util.py:446: Installing : python3-py-1.10.0-5.fc35.noarch 20/89 -DEBUG util.py:446: Installing : python3-zipp-3.6.0-1.fc36.noarch 21/89 -DEBUG util.py:446: Installing : python3-importlib-metadata-4.8.1-1.fc36.noarch 22/89 -DEBUG util.py:446: Installing : python3-tqdm-4.62.3-1.fc36.noarch 23/89 -DEBUG util.py:446: Installing : python3-toml-0.10.2-5.fc35.noarch 24/89 -DEBUG util.py:446: Installing : python3-sphinxcontrib-serializinghtml-1.1.5-2.fc35.no 25/89 -DEBUG util.py:446: Installing : python3-sphinxcontrib-qthelp-1.0.3-6.fc35.noarch 26/89 -DEBUG util.py:446: Installing : python3-sphinxcontrib-jsmath-1.0.1-13.fc35.noarch 27/89 -DEBUG util.py:446: Installing : python3-sphinxcontrib-htmlhelp-2.0.0-2.fc35.noarch 28/89 -DEBUG util.py:446: Installing : python3-sphinxcontrib-devhelp-1.0.2-6.fc35.noarch 29/89 -DEBUG util.py:446: Installing : python3-sphinxcontrib-applehelp-1.0.2-6.fc35.noarch 30/89 -DEBUG util.py:446: Installing : python3-sphinx-theme-alabaster-0.7.12-13.fc35.noarch 31/89 -DEBUG util.py:446: Installing : python3-snowballstemmer-1.9.0-10.fc35.noarch 32/89 -DEBUG util.py:446: Installing : python3-rfc3986-1.4.0-7.fc35.noarch 33/89 -DEBUG util.py:446: Installing : python3-pytz-2021.3-1.fc36.noarch 34/89 -DEBUG util.py:446: Installing : python3-babel-2.9.1-4.fc35.noarch 35/89 -DEBUG util.py:446: Installing : python3-pysocks-1.7.1-11.fc35.noarch 36/89 -DEBUG util.py:446: Installing : python3-urllib3-1.26.7-1.fc36.noarch 37/89 -DEBUG util.py:446: Installing : python3-pyparsing-2.4.7-9.fc35.noarch 38/89 -DEBUG util.py:446: Installing : python3-packaging-21.2-1.fc36.noarch 39/89 -DEBUG util.py:446: Installing : python3-bleach-4.0.0-1.fc35.noarch 40/89 -DEBUG util.py:446: Installing : python3-readme-renderer-29.0-3.fc35.noarch 41/89 -DEBUG util.py:446: Installing : python3-rpm-generators-12-10.fc36.noarch 42/89 -DEBUG util.py:446: Installing : python3-devel-3.10.0-2.fc36.x86_64 43/89 -DEBUG util.py:446: Installing : python3-ply-3.11-13.fc35.noarch 44/89 -DEBUG util.py:446: Installing : python3-pycparser-2.20-5.fc35.noarch 45/89 -DEBUG util.py:446: Installing : python3-cffi-1.15.0~rc2-1.fc36.x86_64 46/89 -DEBUG util.py:446: Installing : python3-cryptography-35.0.0-2.fc36.x86_64 47/89 -DEBUG util.py:446: Installing : python3-secretstorage-3.3.1-3.fc35.noarch 48/89 -DEBUG util.py:446: Installing : python3-keyring-21.8.0-4.fc35.noarch 49/89 -DEBUG util.py:446: Installing : python3-pluggy-1.0.0-1.fc36.noarch 50/89 -DEBUG util.py:446: Installing : python3-markupsafe-2.0.0-2.fc35.x86_64 51/89 -DEBUG util.py:446: Installing : python3-jinja2-3.0.1-2.fc35.noarch 52/89 -DEBUG util.py:446: Installing : python3-iniconfig-1.1.1-5.fc35.noarch 53/89 -DEBUG util.py:446: Installing : python3-imagesize-1.2.0-6.fc35.noarch 54/89 -DEBUG util.py:446: Installing : python3-colorama-0.4.4-4.fc35.noarch 55/89 -DEBUG util.py:446: Installing : python3-charset-normalizer-2.0.7-1.fc36.noarch 56/89 -DEBUG util.py:446: Installing : python3-requests-2.26.0-1.fc35.noarch 57/89 -DEBUG util.py:446: Installing : python3-requests-toolbelt-0.9.1-15.fc35.noarch 58/89 -DEBUG util.py:446: Installing : python3-sphinx-1:4.2.0-1.fc36.noarch 59/89 -DEBUG util.py:446: Installing : python3-cached_property-1.5.2-4.fc35.noarch 60/89 -DEBUG util.py:446: Installing : python3-attrs-21.2.0-4.fc35.noarch 61/89 -DEBUG util.py:446: Running scriptlet: openssh-8.7p1-3.fc36.x86_64 62/89 -DEBUG util.py:446: Installing : openssh-8.7p1-3.fc36.x86_64 62/89 -DEBUG util.py:446: Installing : openblas-0.3.18-1.fc36.x86_64 63/89 -DEBUG util.py:446: Installing : openblas-openmp-0.3.18-1.fc36.x86_64 64/89 -DEBUG util.py:446: Installing : flexiblas-openblas-openmp-3.0.4-6.fc35.x86_64 65/89 -DEBUG util.py:446: Installing : flexiblas-netlib-3.0.4-6.fc35.x86_64 66/89 -DEBUG util.py:446: Installing : python3-numpy-1:1.21.1-1.fc35.x86_64 67/89 -DEBUG util.py:446: Installing : python3-numpy-f2py-1:1.21.1-1.fc35.x86_64 68/89 -DEBUG util.py:446: Installing : libtool-ltdl-2.4.6-44.fc36.x86_64 69/89 -DEBUG util.py:446: Installing : liblzf-3.6-22.fc35.x86_64 70/89 -DEBUG util.py:446: Installing : libedit-3.1-40.20210910cvs.fc36.x86_64 71/89 -DEBUG util.py:446: Installing : libcbor-0.7.0-4.fc35.x86_64 72/89 -DEBUG util.py:446: Installing : libfido2-1.9.0-1.fc36.x86_64 73/89 -DEBUG util.py:446: Installing : openssh-clients-8.7p1-3.fc36.x86_64 74/89 -DEBUG util.py:446: Running scriptlet: openssh-clients-8.7p1-3.fc36.x86_64 74/89 -DEBUG util.py:446: Installing : libaec-1.0.6-1.fc36.x86_64 75/89 -DEBUG util.py:446: Installing : hdf5-1.10.7-2.fc36.x86_64 76/89 -DEBUG util.py:446: Installing : less-590-2.fc36.x86_64 77/89 -DEBUG util.py:446: Installing : gc-8.0.6-1.fc36.x86_64 78/89 -DEBUG util.py:446: Installing : guile22-2.2.7-3.fc35.x86_64 79/89 -DEBUG util.py:446: Installing : make-1:4.3-6.fc35.x86_64 80/89 -DEBUG util.py:446: Installing : git-core-2.33.1-1.fc36.x86_64 81/89 -DEBUG util.py:446: Installing : python3-h5py-3.4.0-2.fc36.x86_64 82/89 -DEBUG util.py:446: Installing : python3-scipy-1.7.0-2.fc35.x86_64 83/89 -DEBUG util.py:446: Installing : python3-pytest-6.2.5-1.fc36.noarch 84/89 -DEBUG util.py:446: Installing : python3-sphinx_rtd_theme-1.0.0-1.fc36.noarch 85/89 -DEBUG util.py:446: Installing : twine-3.4.2-1.fc35.noarch 86/89 -DEBUG util.py:446: Installing : python3-xmltodict-0.12.0-13.fc35.noarch 87/89 -DEBUG util.py:446: Installing : python3-wheel-1:0.37.0-1.fc36.noarch 88/89 -DEBUG util.py:446: Installing : python3-future-0.18.2-11.fc35.noarch 89/89 -DEBUG util.py:446: Running scriptlet: python3-future-0.18.2-11.fc35.noarch 89/89 -DEBUG util.py:446: Verifying : flexiblas-3.0.4-6.fc35.x86_64 1/89 -DEBUG util.py:446: Verifying : flexiblas-netlib-3.0.4-6.fc35.x86_64 2/89 -DEBUG util.py:446: Verifying : flexiblas-openblas-openmp-3.0.4-6.fc35.x86_64 3/89 -DEBUG util.py:446: Verifying : fontawesome-fonts-1:4.7.0-12.fc35.noarch 4/89 -DEBUG util.py:446: Verifying : fonts-filesystem-1:2.0.5-6.fc35.noarch 5/89 -DEBUG util.py:446: Verifying : gc-8.0.6-1.fc36.x86_64 6/89 -DEBUG util.py:446: Verifying : git-core-2.33.1-1.fc36.x86_64 7/89 -DEBUG util.py:446: Verifying : google-roboto-slab-fonts-1.100263-0.16.20150923git.fc 8/89 -DEBUG util.py:446: Verifying : guile22-2.2.7-3.fc35.x86_64 9/89 -DEBUG util.py:446: Verifying : hdf5-1.10.7-2.fc36.x86_64 10/89 -DEBUG util.py:446: Verifying : lato-fonts-2.015-12.fc35.noarch 11/89 -DEBUG util.py:446: Verifying : less-590-2.fc36.x86_64 12/89 -DEBUG util.py:446: Verifying : libaec-1.0.6-1.fc36.x86_64 13/89 -DEBUG util.py:446: Verifying : libcbor-0.7.0-4.fc35.x86_64 14/89 -DEBUG util.py:446: Verifying : libedit-3.1-40.20210910cvs.fc36.x86_64 15/89 -DEBUG util.py:446: Verifying : libfido2-1.9.0-1.fc36.x86_64 16/89 -DEBUG util.py:446: Verifying : libgfortran-11.2.1-6.fc36.x86_64 17/89 -DEBUG util.py:446: Verifying : liblzf-3.6-22.fc35.x86_64 18/89 -DEBUG util.py:446: Verifying : libquadmath-11.2.1-6.fc36.x86_64 19/89 -DEBUG util.py:446: Verifying : libtool-ltdl-2.4.6-44.fc36.x86_64 20/89 -DEBUG util.py:446: Verifying : make-1:4.3-6.fc35.x86_64 21/89 -DEBUG util.py:446: Verifying : openblas-0.3.18-1.fc36.x86_64 22/89 -DEBUG util.py:446: Verifying : openblas-openmp-0.3.18-1.fc36.x86_64 23/89 -DEBUG util.py:446: Verifying : openssh-8.7p1-3.fc36.x86_64 24/89 -DEBUG util.py:446: Verifying : openssh-clients-8.7p1-3.fc36.x86_64 25/89 -DEBUG util.py:446: Verifying : pyproject-rpm-macros-0-49.fc36.noarch 26/89 -DEBUG util.py:446: Verifying : python-rpm-macros-3.10-13.fc36.noarch 27/89 -DEBUG util.py:446: Verifying : python3-attrs-21.2.0-4.fc35.noarch 28/89 -DEBUG util.py:446: Verifying : python3-babel-2.9.1-4.fc35.noarch 29/89 -DEBUG util.py:446: Verifying : python3-bleach-4.0.0-1.fc35.noarch 30/89 -DEBUG util.py:446: Verifying : python3-cached_property-1.5.2-4.fc35.noarch 31/89 -DEBUG util.py:446: Verifying : python3-cffi-1.15.0~rc2-1.fc36.x86_64 32/89 -DEBUG util.py:446: Verifying : python3-charset-normalizer-2.0.7-1.fc36.noarch 33/89 -DEBUG util.py:446: Verifying : python3-colorama-0.4.4-4.fc35.noarch 34/89 -DEBUG util.py:446: Verifying : python3-cryptography-35.0.0-2.fc36.x86_64 35/89 -DEBUG util.py:446: Verifying : python3-devel-3.10.0-2.fc36.x86_64 36/89 -DEBUG util.py:446: Verifying : python3-docutils-0.17.1-1.fc36.noarch 37/89 -DEBUG util.py:446: Verifying : python3-future-0.18.2-11.fc35.noarch 38/89 -DEBUG util.py:446: Verifying : python3-h5py-3.4.0-2.fc36.x86_64 39/89 -DEBUG util.py:446: Verifying : python3-html5lib-1:1.1-6.fc35.noarch 40/89 -DEBUG util.py:446: Verifying : python3-idna-3.3-1.fc36.noarch 41/89 -DEBUG util.py:446: Verifying : python3-imagesize-1.2.0-6.fc35.noarch 42/89 -DEBUG util.py:446: Verifying : python3-importlib-metadata-4.8.1-1.fc36.noarch 43/89 -DEBUG util.py:446: Verifying : python3-iniconfig-1.1.1-5.fc35.noarch 44/89 -DEBUG util.py:446: Verifying : python3-jeepney-0.7.1-1.fc35.noarch 45/89 -DEBUG util.py:446: Verifying : python3-jinja2-3.0.1-2.fc35.noarch 46/89 -DEBUG util.py:446: Verifying : python3-keyring-21.8.0-4.fc35.noarch 47/89 -DEBUG util.py:446: Verifying : python3-markupsafe-2.0.0-2.fc35.x86_64 48/89 -DEBUG util.py:446: Verifying : python3-numpy-1:1.21.1-1.fc35.x86_64 49/89 -DEBUG util.py:446: Verifying : python3-numpy-f2py-1:1.21.1-1.fc35.x86_64 50/89 -DEBUG util.py:446: Verifying : python3-packaging-21.2-1.fc36.noarch 51/89 -DEBUG util.py:446: Verifying : python3-pkginfo-1.7.1-2.fc35.noarch 52/89 -DEBUG util.py:446: Verifying : python3-pluggy-1.0.0-1.fc36.noarch 53/89 -DEBUG util.py:446: Verifying : python3-ply-3.11-13.fc35.noarch 54/89 -DEBUG util.py:446: Verifying : python3-py-1.10.0-5.fc35.noarch 55/89 -DEBUG util.py:446: Verifying : python3-pycparser-2.20-5.fc35.noarch 56/89 -DEBUG util.py:446: Verifying : python3-pygments-2.10.0-1.fc36.noarch 57/89 -DEBUG util.py:446: Verifying : python3-pyparsing-2.4.7-9.fc35.noarch 58/89 -DEBUG util.py:446: Verifying : python3-pysocks-1.7.1-11.fc35.noarch 59/89 -DEBUG util.py:446: Verifying : python3-pytest-6.2.5-1.fc36.noarch 60/89 -DEBUG util.py:446: Verifying : python3-pytz-2021.3-1.fc36.noarch 61/89 -DEBUG util.py:446: Verifying : python3-readme-renderer-29.0-3.fc35.noarch 62/89 -DEBUG util.py:446: Verifying : python3-requests-2.26.0-1.fc35.noarch 63/89 -DEBUG util.py:446: Verifying : python3-requests-toolbelt-0.9.1-15.fc35.noarch 64/89 -DEBUG util.py:446: Verifying : python3-rfc3986-1.4.0-7.fc35.noarch 65/89 -DEBUG util.py:446: Verifying : python3-rpm-generators-12-10.fc36.noarch 66/89 -DEBUG util.py:446: Verifying : python3-rpm-macros-3.10-13.fc36.noarch 67/89 -DEBUG util.py:446: Verifying : python3-scipy-1.7.0-2.fc35.x86_64 68/89 -DEBUG util.py:446: Verifying : python3-secretstorage-3.3.1-3.fc35.noarch 69/89 -DEBUG util.py:446: Verifying : python3-setuptools-58.2.0-1.fc36.noarch 70/89 -DEBUG util.py:446: Verifying : python3-six-1.16.0-4.fc35.noarch 71/89 -DEBUG util.py:446: Verifying : python3-snowballstemmer-1.9.0-10.fc35.noarch 72/89 -DEBUG util.py:446: Verifying : python3-sphinx-1:4.2.0-1.fc36.noarch 73/89 -DEBUG util.py:446: Verifying : python3-sphinx-theme-alabaster-0.7.12-13.fc35.noarch 74/89 -DEBUG util.py:446: Verifying : python3-sphinx_rtd_theme-1.0.0-1.fc36.noarch 75/89 -DEBUG util.py:446: Verifying : python3-sphinxcontrib-applehelp-1.0.2-6.fc35.noarch 76/89 -DEBUG util.py:446: Verifying : python3-sphinxcontrib-devhelp-1.0.2-6.fc35.noarch 77/89 -DEBUG util.py:446: Verifying : python3-sphinxcontrib-htmlhelp-2.0.0-2.fc35.noarch 78/89 -DEBUG util.py:446: Verifying : python3-sphinxcontrib-jsmath-1.0.1-13.fc35.noarch 79/89 -DEBUG util.py:446: Verifying : python3-sphinxcontrib-qthelp-1.0.3-6.fc35.noarch 80/89 -DEBUG util.py:446: Verifying : python3-sphinxcontrib-serializinghtml-1.1.5-2.fc35.no 81/89 -DEBUG util.py:446: Verifying : python3-toml-0.10.2-5.fc35.noarch 82/89 -DEBUG util.py:446: Verifying : python3-tqdm-4.62.3-1.fc36.noarch 83/89 -DEBUG util.py:446: Verifying : python3-urllib3-1.26.7-1.fc36.noarch 84/89 -DEBUG util.py:446: Verifying : python3-webencodings-0.5.1-16.fc35.noarch 85/89 -DEBUG util.py:446: Verifying : python3-wheel-1:0.37.0-1.fc36.noarch 86/89 -DEBUG util.py:446: Verifying : python3-xmltodict-0.12.0-13.fc35.noarch 87/89 -DEBUG util.py:446: Verifying : python3-zipp-3.6.0-1.fc36.noarch 88/89 -DEBUG util.py:446: Verifying : twine-3.4.2-1.fc35.noarch 89/89 -DEBUG util.py:446: Installed: -DEBUG util.py:446: flexiblas-3.0.4-6.fc35.x86_64 -DEBUG util.py:446: flexiblas-netlib-3.0.4-6.fc35.x86_64 -DEBUG util.py:446: flexiblas-openblas-openmp-3.0.4-6.fc35.x86_64 -DEBUG util.py:446: fontawesome-fonts-1:4.7.0-12.fc35.noarch -DEBUG util.py:446: fonts-filesystem-1:2.0.5-6.fc35.noarch -DEBUG util.py:446: gc-8.0.6-1.fc36.x86_64 -DEBUG util.py:446: git-core-2.33.1-1.fc36.x86_64 -DEBUG util.py:446: google-roboto-slab-fonts-1.100263-0.16.20150923git.fc35.noarch -DEBUG util.py:446: guile22-2.2.7-3.fc35.x86_64 -DEBUG util.py:446: hdf5-1.10.7-2.fc36.x86_64 -DEBUG util.py:446: lato-fonts-2.015-12.fc35.noarch -DEBUG util.py:446: less-590-2.fc36.x86_64 -DEBUG util.py:446: libaec-1.0.6-1.fc36.x86_64 -DEBUG util.py:446: libcbor-0.7.0-4.fc35.x86_64 -DEBUG util.py:446: libedit-3.1-40.20210910cvs.fc36.x86_64 -DEBUG util.py:446: libfido2-1.9.0-1.fc36.x86_64 -DEBUG util.py:446: libgfortran-11.2.1-6.fc36.x86_64 -DEBUG util.py:446: liblzf-3.6-22.fc35.x86_64 -DEBUG util.py:446: libquadmath-11.2.1-6.fc36.x86_64 -DEBUG util.py:446: libtool-ltdl-2.4.6-44.fc36.x86_64 -DEBUG util.py:446: make-1:4.3-6.fc35.x86_64 -DEBUG util.py:446: openblas-0.3.18-1.fc36.x86_64 -DEBUG util.py:446: openblas-openmp-0.3.18-1.fc36.x86_64 -DEBUG util.py:446: openssh-8.7p1-3.fc36.x86_64 -DEBUG util.py:446: openssh-clients-8.7p1-3.fc36.x86_64 -DEBUG util.py:446: pyproject-rpm-macros-0-49.fc36.noarch -DEBUG util.py:446: python-rpm-macros-3.10-13.fc36.noarch -DEBUG util.py:446: python3-attrs-21.2.0-4.fc35.noarch -DEBUG util.py:446: python3-babel-2.9.1-4.fc35.noarch -DEBUG util.py:446: python3-bleach-4.0.0-1.fc35.noarch -DEBUG util.py:446: python3-cached_property-1.5.2-4.fc35.noarch -DEBUG util.py:446: python3-cffi-1.15.0~rc2-1.fc36.x86_64 -DEBUG util.py:446: python3-charset-normalizer-2.0.7-1.fc36.noarch -DEBUG util.py:446: python3-colorama-0.4.4-4.fc35.noarch -DEBUG util.py:446: python3-cryptography-35.0.0-2.fc36.x86_64 -DEBUG util.py:446: python3-devel-3.10.0-2.fc36.x86_64 -DEBUG util.py:446: python3-docutils-0.17.1-1.fc36.noarch -DEBUG util.py:446: python3-future-0.18.2-11.fc35.noarch -DEBUG util.py:446: python3-h5py-3.4.0-2.fc36.x86_64 -DEBUG util.py:446: python3-html5lib-1:1.1-6.fc35.noarch -DEBUG util.py:446: python3-idna-3.3-1.fc36.noarch -DEBUG util.py:446: python3-imagesize-1.2.0-6.fc35.noarch -DEBUG util.py:446: python3-importlib-metadata-4.8.1-1.fc36.noarch -DEBUG util.py:446: python3-iniconfig-1.1.1-5.fc35.noarch -DEBUG util.py:446: python3-jeepney-0.7.1-1.fc35.noarch -DEBUG util.py:446: python3-jinja2-3.0.1-2.fc35.noarch -DEBUG util.py:446: python3-keyring-21.8.0-4.fc35.noarch -DEBUG util.py:446: python3-markupsafe-2.0.0-2.fc35.x86_64 -DEBUG util.py:446: python3-numpy-1:1.21.1-1.fc35.x86_64 -DEBUG util.py:446: python3-numpy-f2py-1:1.21.1-1.fc35.x86_64 -DEBUG util.py:446: python3-packaging-21.2-1.fc36.noarch -DEBUG util.py:446: python3-pkginfo-1.7.1-2.fc35.noarch -DEBUG util.py:446: python3-pluggy-1.0.0-1.fc36.noarch -DEBUG util.py:446: python3-ply-3.11-13.fc35.noarch -DEBUG util.py:446: python3-py-1.10.0-5.fc35.noarch -DEBUG util.py:446: python3-pycparser-2.20-5.fc35.noarch -DEBUG util.py:446: python3-pygments-2.10.0-1.fc36.noarch -DEBUG util.py:446: python3-pyparsing-2.4.7-9.fc35.noarch -DEBUG util.py:446: python3-pysocks-1.7.1-11.fc35.noarch -DEBUG util.py:446: python3-pytest-6.2.5-1.fc36.noarch -DEBUG util.py:446: python3-pytz-2021.3-1.fc36.noarch -DEBUG util.py:446: python3-readme-renderer-29.0-3.fc35.noarch -DEBUG util.py:446: python3-requests-2.26.0-1.fc35.noarch -DEBUG util.py:446: python3-requests-toolbelt-0.9.1-15.fc35.noarch -DEBUG util.py:446: python3-rfc3986-1.4.0-7.fc35.noarch -DEBUG util.py:446: python3-rpm-generators-12-10.fc36.noarch -DEBUG util.py:446: python3-rpm-macros-3.10-13.fc36.noarch -DEBUG util.py:446: python3-scipy-1.7.0-2.fc35.x86_64 -DEBUG util.py:446: python3-secretstorage-3.3.1-3.fc35.noarch -DEBUG util.py:446: python3-setuptools-58.2.0-1.fc36.noarch -DEBUG util.py:446: python3-six-1.16.0-4.fc35.noarch -DEBUG util.py:446: python3-snowballstemmer-1.9.0-10.fc35.noarch -DEBUG util.py:446: python3-sphinx-1:4.2.0-1.fc36.noarch -DEBUG util.py:446: python3-sphinx-theme-alabaster-0.7.12-13.fc35.noarch -DEBUG util.py:446: python3-sphinx_rtd_theme-1.0.0-1.fc36.noarch -DEBUG util.py:446: python3-sphinxcontrib-applehelp-1.0.2-6.fc35.noarch -DEBUG util.py:446: python3-sphinxcontrib-devhelp-1.0.2-6.fc35.noarch -DEBUG util.py:446: python3-sphinxcontrib-htmlhelp-2.0.0-2.fc35.noarch -DEBUG util.py:446: python3-sphinxcontrib-jsmath-1.0.1-13.fc35.noarch -DEBUG util.py:446: python3-sphinxcontrib-qthelp-1.0.3-6.fc35.noarch -DEBUG util.py:446: python3-sphinxcontrib-serializinghtml-1.1.5-2.fc35.noarch -DEBUG util.py:446: python3-toml-0.10.2-5.fc35.noarch -DEBUG util.py:446: python3-tqdm-4.62.3-1.fc36.noarch -DEBUG util.py:446: python3-urllib3-1.26.7-1.fc36.noarch -DEBUG util.py:446: python3-webencodings-0.5.1-16.fc35.noarch -DEBUG util.py:446: python3-wheel-1:0.37.0-1.fc36.noarch -DEBUG util.py:446: python3-xmltodict-0.12.0-13.fc35.noarch -DEBUG util.py:446: python3-zipp-3.6.0-1.fc36.noarch -DEBUG util.py:446: twine-3.4.2-1.fc35.noarch -DEBUG util.py:446: Complete! -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/sys/fs/selinux'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/dev/pts'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/dev/shm'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/sys'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/sys'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/proc'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64/root/proc'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:169: kill orphans -DEBUG util.py:624: child environment: None -DEBUG util.py:536: Using nspawn with args None -DEBUG util.py:542: Executing command: ['/usr/bin/systemd-nspawn', '-q', '-M', '45e14c2322a147a2a113175236bf3603', '-D', '/var/lib/mock/fedora-rawhide-x86_64-bootstrap/root', '-a', '--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;\\007"', '--setenv=PS1= \\s-\\v\\$ ', '--setenv=LANG=C.UTF-8', '--resolv-conf=off', '/bin/sh', '-c', "rpm -qa --root '/var/lib/mock/fedora-rawhide-x86_64/root' --qf '%{nevra} %{buildtime} %{size} %{pkgid} installed\\n'"] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8', 'SYSTEMD_NSPAWN_TMPFS_TMP': '0'} and shell False -DEBUG util.py:446: gpg-pubkey-38ab71f4-60242b08 1612983048 0 (none) installed -DEBUG util.py:446: gpg-pubkey-9867c58f-601c49ca 1612466634 0 (none) installed -DEBUG util.py:446: libgcc-11.2.1-6.fc36.x86_64 1634659195 198596 948bcb6d189fc7ee2bcf08df3e0ded0d installed -DEBUG util.py:446: crypto-policies-20210917-1.gitc9d86d1.fc36.noarch 1631901128 86073 f48797f7cee7bb76459a72ae397c2bbe installed -DEBUG util.py:446: fedora-release-identity-basic-36-0.7.noarch 1629727368 748 67e266a3ec721a2c5127bef2ed8c372b installed -DEBUG util.py:446: tzdata-2021a-2.fc35.noarch 1627084482 1817652 7912221f6ce6fe8b2a809fbf187f5199 installed -DEBUG util.py:446: rust-srpm-macros-18-2.fc35.noarch 1627067759 2447 f3c831d1f80f4c06a6cd1f7967318c75 installed -DEBUG util.py:446: qt5-srpm-macros-5.15.2-3.fc35.noarch 1627037606 492 be3fc262a57f16a89528f058f00a9dc3 installed -DEBUG util.py:446: publicsuffix-list-dafsa-20210518-2.fc35.noarch 1627015083 68815 66e8314a663c969e724c10861c660788 installed -DEBUG util.py:446: pkgconf-m4-1.8.0-1.fc35.noarch 1627221480 14187 d3b120a3b4d78e4a7e45396f30d9c709 installed -DEBUG util.py:446: perl-srpm-macros-1-42.fc35.noarch 1627009629 862 31fd62af1588ade5c32d0b0fcefa45d8 installed -DEBUG util.py:446: openblas-srpm-macros-2-10.fc35.noarch 1626993369 104 6ef8804b6de37b9a73f2b8502530fc68 installed -DEBUG util.py:446: ocaml-srpm-macros-6-5.fc35.noarch 1626992091 745 519a978bddefede5d9252679a1726863 installed -DEBUG util.py:446: nim-srpm-macros-3-5.fc35.noarch 1626987977 1098 50f3b27dca3c2554c3334b6908fa8da4 installed -DEBUG util.py:446: ncurses-base-6.2-8.20210508.fc35.noarch 1626991807 307293 6fc56839d735263a9cfc0886c8d62377 installed -DEBUG util.py:446: libssh-config-0.9.6-1.fc36.noarch 1632238630 277 1f87ba3b630a8afeebedabfad4aeee99 installed -DEBUG util.py:446: kernel-srpm-macros-1.0-6.fc35.noarch 1626954864 621 f34169675490393047c9f76bb0dd5167 installed -DEBUG util.py:446: gnat-srpm-macros-4-14.fc35.noarch 1626923297 725 acfa6b9efd8326ee09e42947528d2fad installed -DEBUG util.py:446: ghc-srpm-macros-1.5.0-5.fc35.noarch 1626920787 535 83b17a3ad07bb6dce09a1113c2fbfc49 installed -DEBUG util.py:446: fpc-srpm-macros-1.3-4.fc35.noarch 1626912175 144 46535e4ca0d7762b018d90f26785ebe9 installed -DEBUG util.py:446: fedora-gpg-keys-36-0.3.noarch 1629216661 118311 1d520683e0e7cc4221ade46bec750891 installed -DEBUG util.py:446: fedora-release-36-0.7.noarch 1629727368 0 e093deb4e2f58f692e9b126dffe62afa installed -DEBUG util.py:446: fedora-release-common-36-0.7.noarch 1629727368 17568 ada8b78d5dd5dc784b1aa329da05df76 installed -DEBUG util.py:446: fedora-repos-rawhide-36-0.3.noarch 1629216661 2203 d83e34aeb6aa0cfd354175876d3b63b1 installed -DEBUG util.py:446: fedora-repos-36-0.3.noarch 1629216661 4597 8205ec5fae44ad89b015238f2f0b462b installed -DEBUG util.py:446: setup-2.13.9.1-2.fc35.noarch 1627075056 736053 64f8b1c53f47bf22f25324c6e700cc72 installed -DEBUG util.py:446: filesystem-3.16-1.fc36.x86_64 1632304495 106 696c3c32224ced91b048af23913ccaef installed -DEBUG util.py:446: basesystem-11-12.fc35.noarch 1626892315 0 af618e2cf6a1583a176bb5e45b0a5068 installed -DEBUG util.py:446: ncurses-libs-6.2-8.20210508.fc35.x86_64 1626985943 996375 2f994f573415c7206570f1717dcf626b installed -DEBUG util.py:446: zlib-1.2.11-30.fc35.x86_64 1627555046 203449 fc88ceb52649360b8d871331220b0f6c installed -DEBUG util.py:446: xz-libs-5.2.5-7.fc35.x86_64 1627092507 181437 a020e7464332c7f3873c34907eacff50 installed -DEBUG util.py:446: elfutils-libelf-0.185-5.fc35.x86_64 1628259076 992174 34da460b225bcbd122e42ed8c6ca2415 installed -DEBUG util.py:446: libstdc++-11.2.1-6.fc36.x86_64 1634659195 2479101 89257d9a10d316dc32c8e304e071efbe installed -DEBUG util.py:446: libuuid-2.37.2-1.fc36.x86_64 1629194240 34397 2edb70a01bb7932f8358c5992c0dc474 installed -DEBUG util.py:446: libzstd-1.5.0-2.fc35.x86_64 1627093306 1028163 c56a81660a167665720337b2d0c97070 installed -DEBUG util.py:446: libattr-2.5.1-3.fc35.x86_64 1626891756 29341 a17b4483f4a01b5eb6d01f41842da285 installed -DEBUG util.py:446: libacl-2.3.1-2.fc35.x86_64 1626889009 41090 7f91f200578996693fbd6ba53b745348 installed -DEBUG util.py:446: libcap-2.48-3.fc35.x86_64 1626961088 180511 fa377911e225ceb086daf490d0c94ab7 installed -DEBUG util.py:446: libcom_err-1.46.4-1.fc36.x86_64 1629807360 68945 a7c2723b8bbf1bf73dbbfd124a54cf3c installed -DEBUG util.py:446: libxcrypt-4.4.26-4.fc36.x86_64 1632260314 275090 950aebba01d9009bb03a60a10a078640 installed -DEBUG util.py:446: popt-1.18-6.fc36.x86_64 1631658902 130248 1d7d1c136af2df09061406932ba0c8c2 installed -DEBUG util.py:446: readline-8.1-3.fc35.x86_64 1627041494 492684 aaf61524862c6beeb77380c15d658a93 installed -DEBUG util.py:446: mpfr-4.1.0-8.fc35.x86_64 1626983884 802431 de62fb0bd1ab4954a5a3e601e4f95b58 installed -DEBUG util.py:446: dwz-0.14-2.fc35.x86_64 1626907299 280646 8ae97d97b2c29bfe9e0ee73643bedfdd installed -DEBUG util.py:446: unzip-6.0-53.fc35.x86_64 1627085048 394499 60a40024a1a2cc4e6734159ed1108959 installed -DEBUG util.py:446: file-libs-5.41-1.fc36.x86_64 1634677368 8807844 3f6a37d6c5bbd22a9376ce12608906e9 installed -DEBUG util.py:446: file-5.41-1.fc36.x86_64 1634677368 98373 72b8f28bac0368bc72027dff2bbaa97b installed -DEBUG util.py:446: openssl1.1-1:1.1.1l-1.fc36.x86_64 1632138772 3876243 29868be49deeb8c77436b599365172d1 installed -DEBUG util.py:446: sqlite-libs-3.36.0-4.fc36.x86_64 1629274141 1338849 1e9a9fef41195dcb15fa5d655a3d168d installed -DEBUG util.py:446: alternatives-1.19-1.fc35.x86_64 1627054363 63264 5cd393a56ec2efe3a8dd3f9abe55f043 installed -DEBUG util.py:446: libcap-ng-0.8.2-7.fc36.x86_64 1632337115 75012 57098680eb7832ece9c9089fe53a280e installed -DEBUG util.py:446: audit-libs-3.0.6-1.fc36.x86_64 1633107302 307281 f50f5dee1a1c6705169fa17042f6257a installed -DEBUG util.py:446: libsmartcols-2.37.2-1.fc36.x86_64 1629194240 135371 87c55bfc59efd942ef74441cc73528b6 installed -DEBUG util.py:446: libunistring-0.9.10-14.fc35.x86_64 1626970676 1642923 fb4cd52955e96d4fe989ece3153119fa installed -DEBUG util.py:446: libidn2-2.3.2-3.fc36.x86_64 1630430183 291720 8bec67ffc0040305e3efb64d378cf49a installed -DEBUG util.py:446: lua-libs-5.4.3-2.fc35.x86_64 1626974759 555606 708062639b1ec59c853e3949ecb655b4 installed -DEBUG util.py:446: lz4-libs-1.9.3-3.fc35.x86_64 1626976924 145387 35f02696af287b52c0a8ccd356299a79 installed -DEBUG util.py:446: libpsl-0.21.1-4.fc35.x86_64 1626969221 78520 418fc994aecd296a0e9f3a900a46f7c5 installed -DEBUG util.py:446: zip-3.0-31.fc35.x86_64 1627093104 712847 8bc0595d10f2bc85179113ad1484aba4 installed -DEBUG util.py:446: zstd-1.5.0-2.fc35.x86_64 1627093306 1960479 13397e9d0ff36b3adf5abe7703fd0c04 installed -DEBUG util.py:446: libxml2-2.9.12-6.fc35.x86_64 1626972022 1923894 58e6c4b8f0daf9cb8cf8355e9855a6ce installed -DEBUG util.py:446: libarchive-3.5.2-2.fc36.x86_64 1630307534 907245 2cf74a4f9a53cf7b134f11d53d18f855 installed -DEBUG util.py:446: elfutils-default-yama-scope-0.185-5.fc35.noarch 1628259164 1810 1a4ed61c32688e5f2f93ce33501c4a16 installed -DEBUG util.py:446: info-6.8-2.fc35.x86_64 1627082242 503786 d1e469daef55e19b18e1753de365ed7b installed -DEBUG util.py:446: ed-1.14.2-11.fc35.x86_64 1626907257 129811 094cf9934b01744c0c414314070af36f installed -DEBUG util.py:446: cpio-2.13-11.fc36.x86_64 1630325808 1083898 cc85cc47d3f25270b54345d0e0ae768a installed -DEBUG util.py:446: diffutils-3.8-1.fc35.x86_64 1627895573 1563061 b288fa5059e9d347c23ecf7459de1392 installed -DEBUG util.py:446: gdbm-libs-1:1.22-1.fc36.x86_64 1634724719 128586 372620214f5cb6cdd6fde1753825fb46 installed -DEBUG util.py:446: keyutils-libs-1.6.1-3.fc35.x86_64 1626955294 55801 535a1f1ca9e121cd9574c95b07820bb7 installed -DEBUG util.py:446: libbrotli-1.0.9-6.fc35.x86_64 1626893913 784274 d45caad095b8be733739ddc36bbf1a3b installed -DEBUG util.py:446: libdb-5.3.28-50.fc36.x86_64 1631794375 1922790 9165d206f0ee0ccb1da2c1528586359a installed -DEBUG util.py:446: libeconf-0.4.0-2.fc35.x86_64 1626962507 46171 1d425d5dc6879bacad175542465b0706 installed -DEBUG util.py:446: libffi-3.1-28.fc34.x86_64 1611731196 56840 077bc570623183e5b0eb94e8ef14e874 installed -DEBUG util.py:446: p11-kit-0.23.22-4.fc35.x86_64 1626999243 1659536 2e7cda635f37cded07d6b2c83065ba9a installed -DEBUG util.py:446: libgomp-11.2.1-6.fc36.x86_64 1634659195 412772 732c7e4d782e9dd4f71784cf913cadb6 installed -DEBUG util.py:446: libgcrypt-1.9.4-1.fc36.x86_64 1629720680 1392852 59e2cc2fed649bc002fb75e05e789b1d installed -DEBUG util.py:446: libnghttp2-1.46.0-1.fc36.x86_64 1634648839 162532 f366923935df459db89aea672fbf3eb8 installed -DEBUG util.py:446: libpkgconf-1.8.0-1.fc35.x86_64 1627221416 75953 4a3b0d15ab4d7e8482d98d677ad5b928 installed -DEBUG util.py:446: pkgconf-1.8.0-1.fc35.x86_64 1627221416 81451 f6bab719cb8f1b8c5862882bc45d2b45 installed -DEBUG util.py:446: pkgconf-pkg-config-1.8.0-1.fc35.x86_64 1627221416 989 a02a23bcacf44a3bdfc74247bc5d893c installed -DEBUG util.py:446: libsigsegv-2.13-3.fc35.x86_64 1626969727 50250 f9aa2f7104c70b331c044360a70664f4 installed -DEBUG util.py:446: p11-kit-trust-0.23.22-4.fc35.x86_64 1626999243 451087 70a611a55f6a52dbf5e6966daff44ae9 installed -DEBUG util.py:446: libverto-0.3.2-2.fc35.x86_64 1626970819 30277 cbb25f656c2c22c557ee83ad0d80dfb1 installed -DEBUG util.py:446: pcre-8.45-1.fc36.x86_64 1629279764 539220 6a5448ab58ca42fa50de789ab3a15848 installed -DEBUG util.py:446: grep-3.7-1.fc36.x86_64 1629144799 949303 418a97f7521220f4733ccdad7c84451f installed -DEBUG util.py:446: xz-5.2.5-7.fc35.x86_64 1627092507 685425 dd341adc7fbb8844cb9965b1eb893ec4 installed -DEBUG util.py:446: sed-4.8-8.fc35.x86_64 1627074776 813479 18a95fcfe58463e71717b520d2412a8a installed -DEBUG util.py:446: findutils-1:4.8.0-4.fc35.x86_64 1626911297 1758182 f636dbf756669a4ed38bc1dff6c63018 installed -DEBUG util.py:446: libutempter-1.2.1-5.fc35.x86_64 1626970643 58697 1c069b7288b0240929a10f6ac1cc1514 installed -DEBUG util.py:446: patch-2.7.6-15.fc35.x86_64 1627000523 265410 1e6cd06c190ae494f76619ff9487c79b installed -DEBUG util.py:446: tar-2:1.34-2.fc35.x86_64 1627081075 3156278 052b560465e9eebf3c4f7986aa10ee0b installed -DEBUG util.py:446: xxhash-libs-0.8.0-4.fc35.x86_64 1627092400 105030 300fca06d5c6d5eaa03afd87981cbdd2 installed -DEBUG util.py:446: coreutils-common-9.0-2.fc36.x86_64 1633350515 11033739 13dc7ddd21a60338fa3b873707724bed installed -DEBUG util.py:446: openssl-libs-1:3.0.0-1.fc36.x86_64 1631206141 6910251 eecd9be83d355e37db387ec828737d70 installed -DEBUG util.py:446: coreutils-9.0-2.fc36.x86_64 1633350515 5711386 418571a189b3343b279a0ff40fde28af installed -DEBUG util.py:446: ca-certificates-2021.2.50-3.fc35.noarch 1626894832 939948 aff01f0137ea9195efe407be332a9c66 installed -DEBUG util.py:446: krb5-libs-1.19.2-3.fc36.x86_64 1629825434 2198405 86be5f59ddccdf777917f48e6d2f57cf installed -DEBUG util.py:446: libblkid-2.37.2-1.fc36.x86_64 1629194240 230761 bcf6f579f2b0dd97f8bd07fd7c1ba638 installed -DEBUG util.py:446: libmount-2.37.2-1.fc36.x86_64 1629194240 311117 0947343ed48d8d733d44ab4c62b40f85 installed -DEBUG util.py:446: libtirpc-1.3.2-1.rc1.fc36.x86_64 1631022089 208178 913ab7f77980f2baa1545e35fdbaf84b installed -DEBUG util.py:446: util-linux-core-2.37.2-1.fc36.x86_64 1629194240 1279584 d296b4db24ad10daca513e302e92ceac installed -DEBUG util.py:446: cracklib-2.9.6-27.fc36.x86_64 1630357018 251474 942e9fca4ce39033b500229201baeb56 installed -DEBUG util.py:446: libnsl2-1.3.0-4.fc35.x86_64 1626968101 130270 ec90470cea464c30c21887ef0b6b5f78 installed -DEBUG util.py:446: libpwquality-1.4.4-6.fc36.x86_64 1628688648 415452 f743797d80fbc29a7c38d3fda554ca5b installed -DEBUG util.py:446: pam-1.5.2-6.fc36.x86_64 1633617824 1954020 ddd3c23fae599e2290c4c4d32ba5ade9 installed -DEBUG util.py:446: libfdisk-2.37.2-1.fc36.x86_64 1629194240 368883 94b88429c34d3017d1a8cc4436e6f32f installed -DEBUG util.py:446: cyrus-sasl-lib-2.1.27-16.fc36.x86_64 1634043547 2409888 e427e9a94b2dd7fd03de97dae3b456e8 installed -DEBUG util.py:446: openldap-2.4.59-4.fc36.x86_64 1633097029 718693 f7df4289afa6e71199687f3a9e8ebb08 installed -DEBUG util.py:446: libssh-0.9.6-1.fc36.x86_64 1632238467 513065 b5b56898289f134595e72319cd4acaaf installed -DEBUG util.py:446: elfutils-libs-0.185-5.fc35.x86_64 1628259076 709117 2c1ab9675c840b1b828052157ed4cc9f installed -DEBUG util.py:446: elfutils-debuginfod-client-0.185-5.fc35.x86_64 1628259076 52049 0303741a9495931d73ae739631434d14 installed -DEBUG util.py:446: elfutils-0.185-5.fc35.x86_64 1628259076 2817145 f9356ecaba6fa95c491d3c17b313d91d installed -DEBUG util.py:446: debugedit-5.0-2.fc35.x86_64 1627943772 194459 5239705164dbdb4cc743115c72824aaa installed -DEBUG util.py:446: rpm-4.17.0-1.fc36.1.x86_64 1631644675 2948922 a420c79ff2a9cffb2ef50aad8ddacab4 installed -DEBUG util.py:446: rpm-libs-4.17.0-1.fc36.1.x86_64 1631644675 775140 25b1fbc8993fe8028856f1bc219d9e3e installed -DEBUG util.py:446: rpm-build-libs-4.17.0-1.fc36.1.x86_64 1631644675 199518 7056d76c06bed3b527421ac5b8e6a828 installed -DEBUG util.py:446: efi-srpm-macros-5-4.fc36.noarch 1630608889 41111 9ac42e695d91164878696a83a337da1f installed -DEBUG util.py:446: lua-srpm-macros-1-5.fc35.noarch 1626974425 1314 1d371eb16120fb40dbf7c0f03c3e8291 installed -DEBUG util.py:446: rpmautospec-rpm-macros-0.2.5-1.fc35.noarch 1628264740 698 8d7c0d5e1ebd255a29531ed50f7eac01 installed -DEBUG util.py:446: fonts-srpm-macros-1:2.0.5-6.fc35.noarch 1626911835 56503 e028a54cd411cf0f8ad51dcc2fde13e2 installed -DEBUG util.py:446: go-srpm-macros-3.0.11-2.fc35.noarch 1626930626 60319 a69641b37d6aeebdd34a6f34ebf4a394 installed -DEBUG util.py:446: rpm-build-4.17.0-1.fc36.1.x86_64 1631644675 145180 716dd2c7165dcb7459337bf33d1fc737 installed -DEBUG util.py:446: util-linux-2.37.2-1.fc36.x86_64 1629194240 11216740 26af3a095042c6a0c6540785313ea546 installed -DEBUG util.py:446: libsepol-3.3-1.fc36.x86_64 1634898517 755963 4ddeff0eab7624bdcd30f3cc2e13147d installed -DEBUG util.py:446: libselinux-3.3-1.fc36.x86_64 1634903551 169437 2d15b3d1a0de42de5fbbcc2a6508ca61 installed -DEBUG util.py:446: libsemanage-3.3-1.fc36.x86_64 1634905114 303896 8ed4e5384f70b0f9d587277fd6c770b9 installed -DEBUG util.py:446: gzip-1.11-1.fc36.x86_64 1634828906 370548 794ed9a20c54f84518e4136dd1e54b06 installed -DEBUG util.py:446: which-2.21-30.fc36.x86_64 1635264489 82340 be89267cc17b7ab206472f551fe0664a installed -DEBUG util.py:446: libcurl-7.79.1-3.fc36.x86_64 1635339368 681126 479c1b6d8a742c8bc8a6b5edc40b0e1a installed -DEBUG util.py:446: curl-7.79.1-3.fc36.x86_64 1635339368 723156 c98909900219adb47cacbe1a5427b1cc installed -DEBUG util.py:446: binutils-gold-2.37-17.fc36.x86_64 1635337381 1976795 9f56451960fe82ae10853d43f441bb2b installed -DEBUG util.py:446: binutils-2.37-17.fc36.x86_64 1635337381 34147850 0c2bb5fd702e85d0f28ef60b18895d43 installed -DEBUG util.py:446: glibc-gconv-extra-2.34.9000-17.fc36.x86_64 1635968897 8225724 3eef23931d1f8d1aef47f1127f219094 installed -DEBUG util.py:446: glibc-2.34.9000-17.fc36.x86_64 1635968897 6286667 e2e5cb78040a788ed8f39be5489cab07 installed -DEBUG util.py:446: bash-5.1.8-3.fc36.x86_64 1636111791 7739722 3c238f6212cb3e61fdf240e713fbee46 installed -DEBUG util.py:446: glibc-common-2.34.9000-17.fc36.x86_64 1635968897 1097530 a2854d609d655e576e8d9765f76bfab3 installed -DEBUG util.py:446: glibc-minimal-langpack-2.34.9000-17.fc36.x86_64 1635968897 0 4d0c92c6f53d38106326689bbedff034 installed -DEBUG util.py:446: gmp-1:6.2.1-1.fc36.x86_64 1635864434 818487 b8672b965eb91df7f27cb3eb8aa854e8 installed -DEBUG util.py:446: python-srpm-macros-3.10-13.fc36.noarch 1635937773 42068 0cc788d3faa896f6e367b8193d190aa7 installed -DEBUG util.py:446: bzip2-libs-1.0.8-10.fc36.x86_64 1635847593 78692 5e06fb139bdb55a6e35d7db6a9fd1f5d installed -DEBUG util.py:446: pcre2-syntax-10.39-1.fc36.noarch 1636034078 229322 07c65426a24baf43c87a36401347c023 installed -DEBUG util.py:446: pcre2-10.39-1.fc36.x86_64 1636034008 633258 e35b8e2e0f275380920669c31926bb0c installed -DEBUG util.py:446: bzip2-1.0.8-10.fc36.x86_64 1635847593 94045 7ba905cef7f33c69731be413a734f4f3 installed -DEBUG util.py:446: gawk-5.1.1-1.fc36.x86_64 1635772564 1708362 17f402fe974cae460327fda5caf594d9 installed -DEBUG util.py:446: gdb-minimal-11.1-3.fc36.x86_64 1636053239 12679252 40aa6ab9f1d6a3a9155a35c08439cc17 installed -DEBUG util.py:446: systemd-libs-249.6-2.fc36.x86_64 1636036536 1730520 4e084199b2e63215239fcc4e540ecb20 installed -DEBUG util.py:446: libgpg-error-1.43-1.fc36.x86_64 1635950575 851221 7afd824890acf0cdd873ae3f47867ae2 installed -DEBUG util.py:446: libtasn1-4.17.0-1.fc36.x86_64 1635979884 183476 efa04349b3218e4060e43f13152663a0 installed -DEBUG util.py:446: shadow-utils-2:4.9-6.fc36.x86_64 1636026905 3837730 2de4aa577cce23624bfa49b5bfd2757b installed -DEBUG util.py:446: python-setuptools-wheel-58.2.0-1.fc36.noarch 1634822197 594370 944df2c039d85f4bf6c8e09d035f1fd8 installed -DEBUG util.py:446: python-pip-wheel-21.3.1-1.fc36.noarch 1635195808 1232567 48c923eccdb4bfa66aa035df74d783b2 installed -DEBUG util.py:446: mpdecimal-2.5.1-2.fc35.x86_64 1626983795 246955 5a959017ea843dc9cd834137e17dcbc5 installed -DEBUG util.py:446: expat-2.4.1-2.fc35.x86_64 1626909776 295041 1daae32a6bd9b6d68dce05f6cc47415a installed -DEBUG util.py:446: python3-3.10.0-2.fc36.x86_64 1633437650 33130 8897a7af80ba3f03bda5903e505f397f installed -DEBUG util.py:446: python3-libs-3.10.0-2.fc36.x86_64 1633437650 33057311 ac68de88ad7240a2db739101232cece6 installed -DEBUG util.py:446: redhat-rpm-config-202-1.fc36.noarch 1636390968 176787 88a1c404363292de49a616ed4110827e installed -DEBUG util.py:446: python3-six-1.16.0-4.fc35.noarch 1627032980 106857 2bd146213fd8694f7cc4659dbf43aa7d installed -DEBUG util.py:446: python3-setuptools-58.2.0-1.fc36.noarch 1634822197 4769694 9279acabca6ba57cdbf7a90b0c7d4751 installed -DEBUG util.py:446: python3-docutils-0.17.1-1.fc36.noarch 1632308035 4124041 e50eb22f8524ded673acc8dfca349cbd installed -DEBUG util.py:446: python-rpm-macros-3.10-13.fc36.noarch 1635937773 13789 d4d1a05a2b2e10f2514c581ebd3a766b installed -DEBUG util.py:446: fonts-filesystem-1:2.0.5-6.fc35.noarch 1626911835 0 450077d5fbbe5891c63e0fb894c30c5d installed -DEBUG util.py:446: python3-rpm-macros-3.10-13.fc36.noarch 1635937773 5634 039bce2c403d1264ac880691d6666f59 installed -DEBUG util.py:446: python3-webencodings-0.5.1-16.fc35.noarch 1627035533 74981 a1ed29ba1c6a8a2d195d01750b436a36 installed -DEBUG util.py:446: python3-pygments-2.10.0-1.fc36.noarch 1629460960 8709593 08904c59f23da16a383bb6d7b5081701 installed -DEBUG util.py:446: python3-jeepney-0.7.1-1.fc35.noarch 1627989571 1908243 44a825bafb749be33a3f3d88d4f969c1 installed -DEBUG util.py:446: python3-idna-3.3-1.fc36.noarch 1634217913 498563 bed578d8447a294bbac66cda554d4464 installed -DEBUG util.py:446: libquadmath-11.2.1-6.fc36.x86_64 1634659195 337788 b16d7d2dbe39799287388700698b4fbd installed -DEBUG util.py:446: libgfortran-11.2.1-6.fc36.x86_64 1634659195 2822582 48bd242a7f8c846731d4f5a4216f3f84 installed -DEBUG util.py:446: flexiblas-3.0.4-6.fc35.x86_64 1626911983 69843 544a73bb54cbc59cb2b74867c82d908b installed -DEBUG util.py:446: python3-html5lib-1:1.1-6.fc35.noarch 1627023225 1220265 3dd0345a0d1c031ffcf06c518b1c54c8 installed -DEBUG util.py:446: pyproject-rpm-macros-0-49.fc36.noarch 1635499017 73310 ed69833e99f4e98ea118059d170d0192 installed -DEBUG util.py:446: fontawesome-fonts-1:4.7.0-12.fc35.noarch 1626911687 303691 9fac2c57b45b24143f285840160e3b5f installed -DEBUG util.py:446: google-roboto-slab-fonts-1.100263-0.16.20150923git.fc35.noarch 1626943841 716009 9bb6333ef6d7bb70a28195f60a90c385 installed -DEBUG util.py:446: lato-fonts-2.015-12.fc35.noarch 1626959688 11875329 e4a2197833f6742fa394327539b0cb07 installed -DEBUG util.py:446: python3-pkginfo-1.7.1-2.fc35.noarch 1627028451 68941 47fc6079c23c44289d3c46ca3a913509 installed -DEBUG util.py:446: python3-py-1.10.0-5.fc35.noarch 1627028982 2842768 b1bc52c052ea0713a59883c178a187e4 installed -DEBUG util.py:446: python3-zipp-3.6.0-1.fc36.noarch 1633439632 24036 bf3e449ccb0620fff02ed2c770786ab3 installed -DEBUG util.py:446: python3-importlib-metadata-4.8.1-1.fc36.noarch 1630316947 104653 cf397a1949bcf8a6fc45ff929f6de56d installed -DEBUG util.py:446: python3-tqdm-4.62.3-1.fc36.noarch 1632259452 481990 7a736814cdc8e28e38f745615b6a4fc7 installed -DEBUG util.py:446: python3-toml-0.10.2-5.fc35.noarch 1627374446 102372 f05c433c1cb7600141b8948ea4c93882 installed -DEBUG util.py:446: python3-sphinxcontrib-serializinghtml-1.1.5-2.fc35.noarch 1627033637 60201 af591165961093ac97d71950a8288764 installed -DEBUG util.py:446: python3-sphinxcontrib-qthelp-1.0.3-6.fc35.noarch 1627033622 57290 a085a3ee514d517a9122b5bfbf9bac91 installed -DEBUG util.py:446: python3-sphinxcontrib-jsmath-1.0.1-13.fc35.noarch 1627033575 12192 e089f85b5c3d87b675f4252393b51f21 installed -DEBUG util.py:446: python3-sphinxcontrib-htmlhelp-2.0.0-2.fc35.noarch 1627033475 74689 76b53cbe840f9b2d4c8cc611b65374a3 installed -DEBUG util.py:446: python3-sphinxcontrib-devhelp-1.0.2-6.fc35.noarch 1627033494 46576 1cdb5947807f172033e0a71aa1883230 installed -DEBUG util.py:446: python3-sphinxcontrib-applehelp-1.0.2-6.fc35.noarch 1627033500 62761 dfd9d1ac95a6f0ecb495723488e9653a installed -DEBUG util.py:446: python3-sphinx-theme-alabaster-0.7.12-13.fc35.noarch 1627033319 38942 667a66c8bd17d0e04d06f6584a247233 installed -DEBUG util.py:446: python3-snowballstemmer-1.9.0-10.fc35.noarch 1627033077 1171723 fbf5fc61cd01274922eb5374ac7c00e7 installed -DEBUG util.py:446: python3-rfc3986-1.4.0-7.fc35.noarch 1627031969 176474 f8dae2434692450ac9a3089f20a43c3b installed -DEBUG util.py:446: python3-pytz-2021.3-1.fc36.noarch 1633368815 175046 2c38cd542ebb569491be95e0d7a1bb56 installed -DEBUG util.py:446: python3-babel-2.9.1-4.fc35.noarch 1626892098 28258522 fe9419e24684a89ddb6f0db706f6d513 installed -DEBUG util.py:446: python3-pysocks-1.7.1-11.fc35.noarch 1627030415 87789 959306d8debf19cdb69e554bd372c886 installed -DEBUG util.py:446: python3-urllib3-1.26.7-1.fc36.noarch 1632687280 728395 a7ffa0025616692bbb247744a9773b90 installed -DEBUG util.py:446: python3-pyparsing-2.4.7-9.fc35.noarch 1627016952 647492 a028d078073a688bb8a587dd290ef018 installed -DEBUG util.py:446: python3-packaging-21.2-1.fc36.noarch 1635851006 248300 3e2dd47b82de2817a05981d9070ab6db installed -DEBUG util.py:446: python3-bleach-4.0.0-1.fc35.noarch 1628526364 152758 efd457181fc9818f3f774ce31143a106 installed -DEBUG util.py:446: python3-readme-renderer-29.0-3.fc35.noarch 1627031635 47222 6c23181f37059b4fffa6823481a7f20a installed -DEBUG util.py:446: python3-rpm-generators-12-10.fc36.noarch 1635755623 79386 366c8d38d30a7d57385cad3f62c4902a installed -DEBUG util.py:446: python3-devel-3.10.0-2.fc36.x86_64 1633437650 797665 107cac81d907fb21201fdd1e42de532c installed -DEBUG util.py:446: python3-ply-3.11-13.fc35.noarch 1627028727 439469 36a3fdde3894d090348ab1e5529f83e5 installed -DEBUG util.py:446: python3-pycparser-2.20-5.fc35.noarch 1627374357 754238 6f0685b74b8dd9139a2667fdf61af52c installed -DEBUG util.py:446: python3-cffi-1.15.0~rc2-1.fc36.x86_64 1633686925 1070248 821139963912d6788a44c7187258f325 installed -DEBUG util.py:446: python3-cryptography-35.0.0-2.fc36.x86_64 1632988768 4326944 05ef5a5f3e757bbfc94a3d1433e07273 installed -DEBUG util.py:446: python3-secretstorage-3.3.1-3.fc35.noarch 1627017261 92755 dfe4a07893cd494f98a9c526ddac0f64 installed -DEBUG util.py:446: python3-keyring-21.8.0-4.fc35.noarch 1627024568 211535 505f569f67826af7aaa642d64d6b6e41 installed -DEBUG util.py:446: python3-pluggy-1.0.0-1.fc36.noarch 1630053293 100225 6cab2dde649d4aed673c961c42027592 installed -DEBUG util.py:446: python3-markupsafe-2.0.0-2.fc35.x86_64 1627025453 49376 ce47aee0c30c249e90daaa1cce364427 installed -DEBUG util.py:446: python3-jinja2-3.0.1-2.fc35.noarch 1627023896 3077242 fb09f683c4bcea6cd0cea1cde2cd0687 installed -DEBUG util.py:446: python3-iniconfig-1.1.1-5.fc35.noarch 1627023431 17825 90da9af37bea0b1c3dab8214a31ffeac installed -DEBUG util.py:446: python3-imagesize-1.2.0-6.fc35.noarch 1627023355 22800 f4583c71f96be181eb6623d246d4991d installed -DEBUG util.py:446: python3-colorama-0.4.4-4.fc35.noarch 1627019687 79049 33db62bc60bb0d857caca855976071dc installed -DEBUG util.py:446: python3-charset-normalizer-2.0.7-1.fc36.noarch 1634217749 239094 cba6adf526b6834cea43ae9053f90a05 installed -DEBUG util.py:446: python3-requests-2.26.0-1.fc35.noarch 1627551985 406713 a593e08c2e0363a6351cdeffa6160c8e installed -DEBUG util.py:446: python3-requests-toolbelt-0.9.1-15.fc35.noarch 1627031830 284749 56adb0cefa3dc94bdeee173bcb123ae7 installed -DEBUG util.py:446: python3-sphinx-1:4.2.0-1.fc36.noarch 1632309078 9233273 34ea53865724e873b39bc24956001c50 installed -DEBUG util.py:446: python3-cached_property-1.5.2-4.fc35.noarch 1627018966 36772 cbbfe5a4131163ebd2060d8905d6c67d installed -DEBUG util.py:446: python3-attrs-21.2.0-4.fc35.noarch 1627018429 307243 13de25805f5258ca0fba15e4ed698f1e installed -DEBUG util.py:446: openssh-8.7p1-3.fc36.x86_64 1632915852 1958790 cf9e662acc8a646134bc2adef5ba8041 installed -DEBUG util.py:446: openblas-0.3.18-1.fc36.x86_64 1633958143 76037 ef08497d7e41c63bf16348a2f3e4dc97 installed -DEBUG util.py:446: openblas-openmp-0.3.18-1.fc36.x86_64 1633958143 40969364 3a209339070e582190b42a3cfe28b4ef installed -DEBUG util.py:446: flexiblas-openblas-openmp-3.0.4-6.fc35.x86_64 1626911983 42797 f23d4a853391dae49792d6b2b43a7b69 installed -DEBUG util.py:446: flexiblas-netlib-3.0.4-6.fc35.x86_64 1626911983 11543586 f6ffe8b87e11ff2c5026ea1e2f833025 installed -DEBUG util.py:446: python3-numpy-1:1.21.1-1.fc35.x86_64 1628181641 27618483 1a4d5524ddc3406cf8541fd9840ff752 installed -DEBUG util.py:446: python3-numpy-f2py-1:1.21.1-1.fc35.x86_64 1628181641 1029394 9b1ca332c5224e6cdbe2f76a70952c97 installed -DEBUG util.py:446: libtool-ltdl-2.4.6-44.fc36.x86_64 1633336710 72560 5cc7d431d59cc056230828cc83eafdcb installed -DEBUG util.py:446: liblzf-3.6-22.fc35.x86_64 1626966496 55270 82e7aee45fcc30bb32a0f09be01d3939 installed -DEBUG util.py:446: libedit-3.1-40.20210910cvs.fc36.x86_64 1631547159 252781 3c3ef3549035c5397cc2ba00dad58405 installed -DEBUG util.py:446: libcbor-0.7.0-4.fc35.x86_64 1626961119 99678 4382f5fc01f0042454afdb718f21f757 installed -DEBUG util.py:446: libfido2-1.9.0-1.fc36.x86_64 1635429877 235912 ab7834fcee83e71f18ffacfd8ee30a0e installed -DEBUG util.py:446: openssh-clients-8.7p1-3.fc36.x86_64 1632915852 2112707 c3369c9e3ee7dd1ccbc712f1c3a729dc installed -DEBUG util.py:446: libaec-1.0.6-1.fc36.x86_64 1631895569 121595 9aaad52dd8ce7dc329d591427d3c0d5c installed -DEBUG util.py:446: hdf5-1.10.7-2.fc36.x86_64 1630295129 7885428 ae4c269d4ab272f7a097c006bb8076ca installed -DEBUG util.py:446: less-590-2.fc36.x86_64 1635160233 367032 f978822006efbc62e77df4adc688e1a9 installed -DEBUG util.py:446: gc-8.0.6-1.fc36.x86_64 1635346211 238176 8b3202653b8fb3454de3c17abdbe811a installed -DEBUG util.py:446: guile22-2.2.7-3.fc35.x86_64 1626946667 45858329 0eb36e9b52b76b73a2bc418a5c35c7e8 installed -DEBUG util.py:446: make-1:4.3-6.fc35.x86_64 1626977336 1729022 43414cbe6954dc263444fa9f7daaf717 installed -DEBUG util.py:446: git-core-2.33.1-1.fc36.x86_64 1634096128 17798113 ae9df038b39627dd0ec3340b44fa7c67 installed -DEBUG util.py:446: python3-h5py-3.4.0-2.fc36.x86_64 1633269001 3614432 69416c9c765cd9d662262879edab2421 installed -DEBUG util.py:446: python3-scipy-1.7.0-2.fc35.x86_64 1626682181 67687106 cacdb1e32b7d47be282664ec9a7a262c installed -DEBUG util.py:446: python3-pytest-6.2.5-1.fc36.noarch 1631899835 12419548 c55f6d38626ea22d0653e8f1c093df50 installed -DEBUG util.py:446: python3-sphinx_rtd_theme-1.0.0-1.fc36.noarch 1631634647 303745 a18b9976a2bba9a50d2fd5a7c70c6b02 installed -DEBUG util.py:446: twine-3.4.2-1.fc35.noarch 1628075467 172917 363495ed7ea7d8d3458e950308c0dc22 installed -DEBUG util.py:446: python3-xmltodict-0.12.0-13.fc35.noarch 1627035980 43429 e74ab4c6f96cd97008454038cd942b71 installed -DEBUG util.py:446: python3-wheel-1:0.37.0-1.fc36.noarch 1629291722 214620 26ef322cbcab0043647fd947706925ff installed -DEBUG util.py:446: python3-future-0.18.2-11.fc35.noarch 1626913443 3428204 b468efb2ab865b78fb103c99f31d598a installed -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG backend.py:777: Copying packages to result dir -DEBUG util.py:169: kill orphans -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64-bootstrap/root/var/lib/mock/fedora-rawhide-x86_64/root'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '-l', '/var/lib/mock/fedora-rawhide-x86_64-bootstrap/root/var/lib/mock/fedora-rawhide-x86_64/root'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '/var/lib/mock/fedora-rawhide-x86_64/root/proc/filesystems'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '/var/lib/mock/fedora-rawhide-x86_64/root/var/cache/dnf'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '/var/lib/mock/fedora-rawhide-x86_64/root/var/cache/yum'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['btrfs', 'subv', 'list', '/var/lib/mock'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:446: ID 256 gen 66215 top level 5 path home -DEBUG util.py:446: ID 258 gen 66216 top level 5 path root -DEBUG util.py:446: ID 262 gen 52102 top level 258 path var/lib/machines -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:169: kill orphans -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '/var/lib/mock/fedora-rawhide-x86_64-bootstrap/root/proc/filesystems'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '/var/lib/mock/fedora-rawhide-x86_64-bootstrap/root/var/cache/dnf'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 -DEBUG util.py:624: child environment: None -DEBUG util.py:542: Executing command: ['/bin/umount', '-n', '/var/lib/mock/fedora-rawhide-x86_64-bootstrap/root/var/cache/yum'] with env {'TERM': 'vt100', 'SHELL': '/bin/sh', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'LANG': 'C.UTF-8'} and shell False -DEBUG util.py:598: Child return code was: 0 diff --git a/results_python-pymatreader/0.0.25/1.fc36/state.log b/results_python-pymatreader/0.0.25/1.fc36/state.log deleted file mode 100644 index 365e47c..0000000 --- a/results_python-pymatreader/0.0.25/1.fc36/state.log +++ /dev/null @@ -1,17 +0,0 @@ -2021-11-10 07:47:08,425 - Mock Version: 2.12 -2021-11-10 07:47:12,889 - Start: dnf update -2021-11-10 07:48:36,419 - Start: creating root cache -2021-11-10 07:48:58,507 - Finish: creating root cache -2021-11-10 07:48:58,522 - Finish: dnf update -2021-11-10 07:48:58,654 - Finish: chroot init -2021-11-10 07:48:58,899 - Start: build phase for python-pymatreader-0.0.25-1.fc36.src.rpm -2021-11-10 07:48:58,913 - Start: build setup for python-pymatreader-0.0.25-1.fc36.src.rpm -2021-11-10 07:50:00,638 - Finish: build setup for python-pymatreader-0.0.25-1.fc36.src.rpm -2021-11-10 07:50:00,680 - Start: Outputting list of installed packages -2021-11-10 07:50:01,996 - Finish: Outputting list of installed packages -2021-11-10 07:50:01,999 - Start: rpmbuild python-pymatreader-0.0.25-1.fc36.src.rpm -2021-11-10 07:55:22,475 - Finish: rpmbuild python-pymatreader-0.0.25-1.fc36.src.rpm -2021-11-10 07:55:22,960 - Finish: build phase for python-pymatreader-0.0.25-1.fc36.src.rpm -2021-11-10 07:55:23,148 - Start: clean chroot -2021-11-10 07:55:37,058 - Finish: clean chroot -2021-11-10 07:55:37,061 - Finish: run From 059d80004ada9e5c7f0a3fe0b4428cca1cd2d9b3 Mon Sep 17 00:00:00 2001 From: Vanessa Christopher Date: Nov 10 2021 09:41:13 +0000 Subject: [PATCH 5/5] - Updated version to 0.0.25 - Removed patches from specFile --- diff --git a/.gitignore b/.gitignore index 5679f09..5a2d171 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /python-pymatreader-0.0.21.tar.gz /pymatreader-9ae2e1f.tar.gz /pymatreader-00041de.tar.gz +/python-pymatreader-0.0.25.tar.gz diff --git a/sources b/sources new file mode 100644 index 0000000..24c10d7 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (python-pymatreader-0.0.25.tar.gz) = ad485917d0dcc55216d0b03650e1abfa91ba9e3214f6b21cd7b60df133956ff64f22e0c6118a1ef4b50857fcec4fcfcb9d47f1fa74e9e2acc2d0016a244e8175