D: [iurt_root_command] chroot Installing /home/iurt/rpmbuild/SRPMS/python-editdistance-0.5.3-3.mga8.src.rpm Building target platforms: x86_64 Building for target x86_64 Executing(%prep): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.NzrdEk + umask 022 + cd /home/iurt/rpmbuild/BUILD + '[' 1 -eq 1 ']' + '[' 1 -eq 1 ']' + '[' 1 -eq 1 ']' + cd /home/iurt/rpmbuild/BUILD + rm -rf editdistance-0.5.3 + /usr/bin/gzip -dc /home/iurt/rpmbuild/SOURCES/editdistance-0.5.3.tar.gz + /usr/bin/tar -xof - + STATUS=0 + '[' 0 -ne 0 ']' + cd editdistance-0.5.3 + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w . + /usr/bin/cat /home/iurt/rpmbuild/SOURCES/python3.8.patch + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch + rm -rf editdistance.egg-info + RPM_EC=0 ++ jobs -p + exit 0 Executing(%build): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.AYVvsk + umask 022 + cd /home/iurt/rpmbuild/BUILD + cd editdistance-0.5.3 + '[' 1 -eq 1 ']' + '[' 1 -eq 1 ']' + CFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables' + LDFLAGS=' -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags' + /usr/bin/python3 setup.py build '--executable=/usr/bin/python3 -s' running build running build_py creating build creating build/lib.linux-x86_64-3.8 creating build/lib.linux-x86_64-3.8/editdistance copying editdistance/__init__.py -> build/lib.linux-x86_64-3.8/editdistance copying editdistance/_editdistance.h -> build/lib.linux-x86_64-3.8/editdistance copying editdistance/def.h -> build/lib.linux-x86_64-3.8/editdistance running build_ext building 'editdistance.bycython' extension creating build/temp.linux-x86_64-3.8 creating build/temp.linux-x86_64-3.8/editdistance gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -D_GNU_SOURCE -fPIC -fwrapv -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -D_GNU_SOURCE -fPIC -fwrapv -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -fPIC -I./editdistance -I/usr/include/python3.8 -c editdistance/_editdistance.cpp -o build/temp.linux-x86_64-3.8/editdistance/_editdistance.o editdistance/_editdistance.cpp: In instantiation of 'unsigned int edit_distance_dp(const T*, size_t, const T*, size_t) [with T = long int; size_t = long unsigned int]': editdistance/_editdistance.cpp:129:62: required from here editdistance/_editdistance.cpp:68:23: warning: comparison of integer expressions of different signedness: 'int' and 'long unsigned int' [-Wsign-compare] 68 | for (int i = 0; i < size1 + 1; i++) d[i][0] = i; | ~~^~~~~~~~~~~ editdistance/_editdistance.cpp:69:23: warning: comparison of integer expressions of different signedness: 'int' and 'long unsigned int' [-Wsign-compare] 69 | for (int i = 0; i < size2 + 1; i++) d[0][i] = i; | ~~^~~~~~~~~~~ editdistance/_editdistance.cpp:70:23: warning: comparison of integer expressions of different signedness: 'int' and 'long unsigned int' [-Wsign-compare] 70 | for (int i = 1; i < size1 + 1; i++) { | ~~^~~~~~~~~~~ editdistance/_editdistance.cpp:71:27: warning: comparison of integer expressions of different signedness: 'int' and 'long unsigned int' [-Wsign-compare] 71 | for (int j = 1; j < size2 + 1; j++) { | ~~^~~~~~~~~~~ editdistance/_editdistance.cpp: In instantiation of 'unsigned int edit_distance_bpv(T&, const int64_t*, const size_t&, const unsigned int&, const unsigned int&) [with T = std::map, std::less, std::allocator > > >; TVALUE = varr<1>; int64_t = long int; size_t = long unsigned int]': editdistance/_editdistance.cpp:97:67: required from 'unsigned int edit_distance_map_(const int64_t*, size_t, const int64_t*, size_t) [with long unsigned int N = 1; int64_t = long int; size_t = long unsigned int]' editdistance/_editdistance.cpp:119:73: required from here editdistance/_editdistance.cpp:44:26: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare] 44 | for(int r = 0; r <= tmax; ++r) { | ~~^~~~~~~ editdistance/_editdistance.cpp: In instantiation of 'unsigned int edit_distance_bpv(T&, const int64_t*, const size_t&, const unsigned int&, const unsigned int&) [with T = std::map, std::less, std::allocator > > >; TVALUE = varr<2>; int64_t = long int; size_t = long unsigned int]': editdistance/_editdistance.cpp:97:67: required from 'unsigned int edit_distance_map_(const int64_t*, size_t, const int64_t*, size_t) [with long unsigned int N = 2; int64_t = long int; size_t = long unsigned int]' editdistance/_editdistance.cpp:120:78: required from here editdistance/_editdistance.cpp:44:26: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare] editdistance/_editdistance.cpp: In instantiation of 'unsigned int edit_distance_bpv(T&, const int64_t*, const size_t&, const unsigned int&, const unsigned int&) [with T = std::map, std::less, std::allocator > > >; TVALUE = varr<3>; int64_t = long int; size_t = long unsigned int]': editdistance/_editdistance.cpp:97:67: required from 'unsigned int edit_distance_map_(const int64_t*, size_t, const int64_t*, size_t) [with long unsigned int N = 3; int64_t = long int; size_t = long unsigned int]' editdistance/_editdistance.cpp:121:78: required from here editdistance/_editdistance.cpp:44:26: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare] editdistance/_editdistance.cpp: In instantiation of 'unsigned int edit_distance_bpv(T&, const int64_t*, const size_t&, const unsigned int&, const unsigned int&) [with T = std::map, std::less, std::allocator > > >; TVALUE = varr<4>; int64_t = long int; size_t = long unsigned int]': editdistance/_editdistance.cpp:97:67: required from 'unsigned int edit_distance_map_(const int64_t*, size_t, const int64_t*, size_t) [with long unsigned int N = 4; int64_t = long int; size_t = long unsigned int]' editdistance/_editdistance.cpp:122:78: required from here editdistance/_editdistance.cpp:44:26: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare] editdistance/_editdistance.cpp: In instantiation of 'unsigned int edit_distance_bpv(T&, const int64_t*, const size_t&, const unsigned int&, const unsigned int&) [with T = std::map, std::less, std::allocator > > >; TVALUE = varr<5>; int64_t = long int; size_t = long unsigned int]': editdistance/_editdistance.cpp:97:67: required from 'unsigned int edit_distance_map_(const int64_t*, size_t, const int64_t*, size_t) [with long unsigned int N = 5; int64_t = long int; size_t = long unsigned int]' editdistance/_editdistance.cpp:123:78: required from here editdistance/_editdistance.cpp:44:26: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare] editdistance/_editdistance.cpp: In instantiation of 'unsigned int edit_distance_bpv(T&, const int64_t*, const size_t&, const unsigned int&, const unsigned int&) [with T = std::map, std::less, std::allocator > > >; TVALUE = varr<6>; int64_t = long int; size_t = long unsigned int]': editdistance/_editdistance.cpp:97:67: required from 'unsigned int edit_distance_map_(const int64_t*, size_t, const int64_t*, size_t) [with long unsigned int N = 6; int64_t = long int; size_t = long unsigned int]' editdistance/_editdistance.cpp:124:78: required from here editdistance/_editdistance.cpp:44:26: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare] editdistance/_editdistance.cpp: In instantiation of 'unsigned int edit_distance_bpv(T&, const int64_t*, const size_t&, const unsigned int&, const unsigned int&) [with T = std::map, std::less, std::allocator > > >; TVALUE = varr<7>; int64_t = long int; size_t = long unsigned int]': editdistance/_editdistance.cpp:97:67: required from 'unsigned int edit_distance_map_(const int64_t*, size_t, const int64_t*, size_t) [with long unsigned int N = 7; int64_t = long int; size_t = long unsigned int]' editdistance/_editdistance.cpp:125:78: required from here editdistance/_editdistance.cpp:44:26: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare] editdistance/_editdistance.cpp: In instantiation of 'unsigned int edit_distance_bpv(T&, const int64_t*, const size_t&, const unsigned int&, const unsigned int&) [with T = std::map, std::less, std::allocator > > >; TVALUE = varr<8>; int64_t = long int; size_t = long unsigned int]': editdistance/_editdistance.cpp:97:67: required from 'unsigned int edit_distance_map_(const int64_t*, size_t, const int64_t*, size_t) [with long unsigned int N = 8; int64_t = long int; size_t = long unsigned int]' editdistance/_editdistance.cpp:126:78: required from here editdistance/_editdistance.cpp:44:26: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare] editdistance/_editdistance.cpp: In instantiation of 'unsigned int edit_distance_bpv(T&, const int64_t*, const size_t&, const unsigned int&, const unsigned int&) [with T = std::map, std::less, std::allocator > > >; TVALUE = varr<9>; int64_t = long int; size_t = long unsigned int]': editdistance/_editdistance.cpp:97:67: required from 'unsigned int edit_distance_map_(const int64_t*, size_t, const int64_t*, size_t) [with long unsigned int N = 9; int64_t = long int; size_t = long unsigned int]' editdistance/_editdistance.cpp:127:78: required from here editdistance/_editdistance.cpp:44:26: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare] editdistance/_editdistance.cpp: In instantiation of 'unsigned int edit_distance_bpv(T&, const int64_t*, const size_t&, const unsigned int&, const unsigned int&) [with T = std::map, std::less, std::allocator > > >; TVALUE = varr<10>; int64_t = long int; size_t = long unsigned int]': editdistance/_editdistance.cpp:97:67: required from 'unsigned int edit_distance_map_(const int64_t*, size_t, const int64_t*, size_t) [with long unsigned int N = 10; int64_t = long int; size_t = long unsigned int]' editdistance/_editdistance.cpp:128:80: required from here editdistance/_editdistance.cpp:44:26: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare] gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -D_GNU_SOURCE -fPIC -fwrapv -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -D_GNU_SOURCE -fPIC -fwrapv -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables -fPIC -I./editdistance -I/usr/include/python3.8 -c editdistance/bycython.cpp -o build/temp.linux-x86_64-3.8/editdistance/bycython.o editdistance/bycython.cpp: In function 'unsigned int __pyx_f_12editdistance_8bycython_eval(PyObject*, PyObject*, int)': editdistance/bycython.cpp:1243:13: warning: conversion from 'long unsigned int' to 'unsigned int' changes value from '18446744073709551615' to '4294967295' [-Woverflow] 1243 | __pyx_r = 0xffffffffffffffff; | ^~~~~~~~~~~~~~~~~~ g++ -pthread -shared -Wl,--as-needed -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags -O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables build/temp.linux-x86_64-3.8/editdistance/_editdistance.o build/temp.linux-x86_64-3.8/editdistance/bycython.o -L/usr/lib64 -lpython3.8 -lpython3.8 -o build/lib.linux-x86_64-3.8/editdistance/bycython.cpython-38-x86_64-linux-gnu.so + RPM_EC=0 ++ jobs -p + exit 0 Executing(%install): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.Kr9cFi + umask 022 + cd /home/iurt/rpmbuild/BUILD + '[' 1 -eq 1 ']' + '[' /home/iurt/rpmbuild/BUILDROOT/python-editdistance-0.5.3-3.mga8.x86_64 '!=' / ']' + rm -rf /home/iurt/rpmbuild/BUILDROOT/python-editdistance-0.5.3-3.mga8.x86_64 ++ dirname /home/iurt/rpmbuild/BUILDROOT/python-editdistance-0.5.3-3.mga8.x86_64 + mkdir -p /home/iurt/rpmbuild/BUILDROOT + mkdir /home/iurt/rpmbuild/BUILDROOT/python-editdistance-0.5.3-3.mga8.x86_64 + cd editdistance-0.5.3 + '[' 1 -eq 1 ']' + CFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fasynchronous-unwind-tables' + LDFLAGS=' -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 -Wl,--build-id -Wl,--enable-new-dtags' + /usr/bin/python3 setup.py install -O1 --skip-build --root /home/iurt/rpmbuild/BUILDROOT/python-editdistance-0.5.3-3.mga8.x86_64 running install running install_lib creating /home/iurt/rpmbuild/BUILDROOT/python-editdistance-0.5.3-3.mga8.x86_64/usr creating /home/iurt/rpmbuild/BUILDROOT/python-editdistance-0.5.3-3.mga8.x86_64/usr/lib64 creating /home/iurt/rpmbuild/BUILDROOT/python-editdistance-0.5.3-3.mga8.x86_64/usr/lib64/python3.8 creating /home/iurt/rpmbuild/BUILDROOT/python-editdistance-0.5.3-3.mga8.x86_64/usr/lib64/python3.8/site-packages creating /home/iurt/rpmbuild/BUILDROOT/python-editdistance-0.5.3-3.mga8.x86_64/usr/lib64/python3.8/site-packages/editdistance copying build/lib.linux-x86_64-3.8/editdistance/bycython.cpython-38-x86_64-linux-gnu.so -> /home/iurt/rpmbuild/BUILDROOT/python-editdistance-0.5.3-3.mga8.x86_64/usr/lib64/python3.8/site-packages/editdistance copying build/lib.linux-x86_64-3.8/editdistance/_editdistance.h -> /home/iurt/rpmbuild/BUILDROOT/python-editdistance-0.5.3-3.mga8.x86_64/usr/lib64/python3.8/site-packages/editdistance copying build/lib.linux-x86_64-3.8/editdistance/__init__.py -> /home/iurt/rpmbuild/BUILDROOT/python-editdistance-0.5.3-3.mga8.x86_64/usr/lib64/python3.8/site-packages/editdistance copying build/lib.linux-x86_64-3.8/editdistance/def.h -> /home/iurt/rpmbuild/BUILDROOT/python-editdistance-0.5.3-3.mga8.x86_64/usr/lib64/python3.8/site-packages/editdistance byte-compiling /home/iurt/rpmbuild/BUILDROOT/python-editdistance-0.5.3-3.mga8.x86_64/usr/lib64/python3.8/site-packages/editdistance/__init__.py to __init__.cpython-38.pyc writing byte-compilation script '/tmp/tmp541nihi8.py' /usr/bin/python3 /tmp/tmp541nihi8.py removing /tmp/tmp541nihi8.py running install_egg_info running egg_info creating editdistance.egg-info writing editdistance.egg-info/PKG-INFO writing dependency_links to editdistance.egg-info/dependency_links.txt writing top-level names to editdistance.egg-info/top_level.txt writing manifest file 'editdistance.egg-info/SOURCES.txt' reading manifest file 'editdistance.egg-info/SOURCES.txt' writing manifest file 'editdistance.egg-info/SOURCES.txt' Copying editdistance.egg-info to /home/iurt/rpmbuild/BUILDROOT/python-editdistance-0.5.3-3.mga8.x86_64/usr/lib64/python3.8/site-packages/editdistance-0.5.3-py3.8.egg-info running install_scripts + rm -rfv /home/iurt/rpmbuild/BUILDROOT/python-editdistance-0.5.3-3.mga8.x86_64/usr/bin/__pycache__ + /usr/lib/rpm/find-debuginfo.sh -j96 --strict-build-id -m -i --build-id-seed 0.5.3-3.mga8 --unique-debug-suffix -0.5.3-3.mga8.x86_64 --unique-debug-src-base python-editdistance-0.5.3-3.mga8.x86_64 --run-dwz --dwz-low-mem-die-limit 10000000 --dwz-max-die-limit 110000000 -S debugsourcefiles.list /home/iurt/rpmbuild/BUILD/editdistance-0.5.3 explicitly decompress any DWARF compressed ELF sections in /home/iurt/rpmbuild/BUILDROOT/python-editdistance-0.5.3-3.mga8.x86_64/usr/lib64/python3.8/site-packages/editdistance/bycython.cpython-38-x86_64-linux-gnu.so extracting debug info from /home/iurt/rpmbuild/BUILDROOT/python-editdistance-0.5.3-3.mga8.x86_64/usr/lib64/python3.8/site-packages/editdistance/bycython.cpython-38-x86_64-linux-gnu.so original debug info size: 1140kB, size after compression: 1096kB /usr/lib/rpm/sepdebugcrcfix: Updated 1 CRC32s, 0 CRC32s did match. 269 blocks + /usr/lib/rpm/check-buildroot + '[' -n '' ']' + /usr/share/spec-helper/clean_files + '[' -n '' ']' + /usr/share/spec-helper/compress_files .xz + '[' -n '' ']' + /usr/share/spec-helper/relink_symlinks + '[' -n '' ']' + /usr/share/spec-helper/clean_perl + '[' -n '' ']' + /usr/share/spec-helper/lib_symlinks + '[' -n '' ']' + /usr/share/spec-helper/gprintify + '[' -n '' ']' + /usr/share/spec-helper/fix_mo + '[' -n '' ']' + /usr/share/spec-helper/fix_pamd + '[' -n '' ']' + /usr/share/spec-helper/remove_info_dir + '[' -n '' ']' + /usr/share/spec-helper/fix_eol + '[' -n '' ']' + /usr/share/spec-helper/check_desktop_files + '[' -n '' ']' + /usr/share/spec-helper/check_elf_files + /usr/lib/rpm/brp-python-bytecompile /usr/bin/python3 1 1 Bytecompiling .py files below /home/iurt/rpmbuild/BUILDROOT/python-editdistance-0.5.3-3.mga8.x86_64/usr/lib/debug/usr/lib64/python3.8 using /usr/bin/python3.8 Bytecompiling .py files below /home/iurt/rpmbuild/BUILDROOT/python-editdistance-0.5.3-3.mga8.x86_64/usr/lib64/python3.8 using /usr/bin/python3.8 + /usr/lib/rpm/brp-python-hardlink + /usr/lib/rpm/redhat/brp-mangle-shebangs Executing(%check): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.r4Wbvm + umask 022 + cd /home/iurt/rpmbuild/BUILD + cd editdistance-0.5.3 + '[' 1 -eq 1 ']' + /usr/bin/python3 setup.py test running test WARNING: Testing via this command is deprecated and will be removed in a future version. Users looking for a generic test entry point independent of test runner are encouraged to use tox. running egg_info writing editdistance.egg-info/PKG-INFO writing dependency_links to editdistance.egg-info/dependency_links.txt writing top-level names to editdistance.egg-info/top_level.txt reading manifest file 'editdistance.egg-info/SOURCES.txt' writing manifest file 'editdistance.egg-info/SOURCES.txt' running build_ext copying build/lib.linux-x86_64-3.8/editdistance/bycython.cpython-38-x86_64-linux-gnu.so -> editdistance ---------------------------------------------------------------------- Ran 0 tests in 0.000s OK + RPM_EC=0 ++ jobs -p + exit 0 Processing files: python3-editdistance-0.5.3-3.mga8.x86_64 Executing(%doc): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.QWr8fk + umask 022 + cd /home/iurt/rpmbuild/BUILD + cd editdistance-0.5.3 + DOCDIR=/home/iurt/rpmbuild/BUILDROOT/python-editdistance-0.5.3-3.mga8.x86_64/usr/share/doc/python3-editdistance + export LC_ALL=C + LC_ALL=C + export DOCDIR + /usr/bin/mkdir -p /home/iurt/rpmbuild/BUILDROOT/python-editdistance-0.5.3-3.mga8.x86_64/usr/share/doc/python3-editdistance + cp -pr README.rst /home/iurt/rpmbuild/BUILDROOT/python-editdistance-0.5.3-3.mga8.x86_64/usr/share/doc/python3-editdistance + RPM_EC=0 ++ jobs -p + exit 0 Provides: python-editdistance = 0.5.3-3.mga8 python3-editdistance = 0.5.3-3.mga8 python3-editdistance(x86-64) = 0.5.3-3.mga8 python3.8-editdistance = 0.5.3-3.mga8 python3.8dist(editdistance) = 0.5.3 python3dist(editdistance) = 0.5.3 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: libc.so.6()(64bit) libc.so.6(GLIBC_2.2.5)(64bit) libc.so.6(GLIBC_2.4)(64bit) libgcc_s.so.1()(64bit) libgcc_s.so.1(GCC_3.0)(64bit) libpython3.8.so.1.0()(64bit) libstdc++.so.6()(64bit) libstdc++.so.6(CXXABI_1.3)(64bit) libstdc++.so.6(CXXABI_1.3.9)(64bit) libstdc++.so.6(GLIBCXX_3.4)(64bit) python(abi) = 3.8 Obsoletes: python-editdistance < 0.5.3-3.mga8 Processing files: python-editdistance-debugsource-0.5.3-3.mga8.x86_64 Provides: python-editdistance-debugsource = 0.5.3-3.mga8 python-editdistance-debugsource(x86-64) = 0.5.3-3.mga8 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Processing files: python3-editdistance-debuginfo-0.5.3-3.mga8.x86_64 Provides: debuginfo(build-id) = 2a4f54b6dd3896839f2242dbaf4bd7a5e2e79040 python-editdistance-debuginfo = 0.5.3-3.mga8 python3-editdistance-debuginfo = 0.5.3-3.mga8 python3-editdistance-debuginfo(x86-64) = 0.5.3-3.mga8 python3.8-editdistance-debuginfo = 0.5.3-3.mga8 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Recommends: python-editdistance-debugsource(x86-64) = 0.5.3-3.mga8 Checking for unpackaged file(s): /usr/lib/rpm/check-files /home/iurt/rpmbuild/BUILDROOT/python-editdistance-0.5.3-3.mga8.x86_64 Wrote: /home/iurt/rpmbuild/RPMS/x86_64/python-editdistance-debugsource-0.5.3-3.mga8.x86_64.rpm Wrote: /home/iurt/rpmbuild/RPMS/x86_64/python3-editdistance-0.5.3-3.mga8.x86_64.rpm Wrote: /home/iurt/rpmbuild/RPMS/x86_64/python3-editdistance-debuginfo-0.5.3-3.mga8.x86_64.rpm Executing(%clean): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.qJ3Wri + umask 022 + cd /home/iurt/rpmbuild/BUILD + cd editdistance-0.5.3 + /usr/bin/rm -rf /home/iurt/rpmbuild/BUILDROOT/python-editdistance-0.5.3-3.mga8.x86_64 + RPM_EC=0 ++ jobs -p + exit 0 Executing(--clean): /bin/sh -e /home/iurt/rpmbuild/tmp/rpm-tmp.r8nOEl + umask 022 + cd /home/iurt/rpmbuild/BUILD + rm -rf editdistance-0.5.3 + RPM_EC=0 ++ jobs -p + exit 0 D: [iurt_root_command] Success!