D: [iurt_root_command] chroot Building target platforms: noarch Building for target noarch Installing /home/pterjan/rpmbuild/SRPMS/rust-percent-encoding-2.3.1-1.mga10.src.rpm Executing(%mkbuilddir): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.8OcYwP Executing(%prep): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.aEiTPo + umask 022 + cd /home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build + '[' 1 -eq 1 ']' + '[' 1 -eq 1 ']' + '[' 1 -eq 1 ']' + cd /home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build + rm -rf percent-encoding-2.3.1 + /usr/lib/rpm/rpmuncompress -x /home/pterjan/rpmbuild/SOURCES/percent-encoding-2.3.1.crate + STATUS=0 + '[' 0 -ne 0 ']' + cd percent-encoding-2.3.1 + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w . + set -euo pipefail + /usr/bin/mkdir -p target/rpm + /usr/bin/ln -s rpm target/release + /usr/bin/rm -rf .cargo/ + /usr/bin/mkdir -p .cargo + cat + cat + /usr/bin/rm -f Cargo.lock + /usr/bin/rm -f Cargo.toml.orig + RPM_EC=0 ++ jobs -p + exit 0 Executing(%generate_buildrequires): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.2NTbes + umask 022 + cd /home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build + cd percent-encoding-2.3.1 + /usr/bin/cargo2rpm --path Cargo.toml buildrequires --with-check + RPM_EC=0 ++ jobs -p + exit 0 Executing(%build): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.MA2bhJ + umask 022 + cd /home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build + CFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full' + export CFLAGS + CXXFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full' + export CXXFLAGS + FFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full ' + export FFLAGS + FCFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full ' + export FCFLAGS + VALAFLAGS=-g + export VALAFLAGS + RUSTFLAGS='-Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn' + export RUSTFLAGS + LDFLAGS='-Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-z,now -Wl,-O1 -Wl,--build-id=sha1 -Wl,--enable-new-dtags -specs=/usr/lib/rpm/redhat/redhat-hardened-ld' + export LDFLAGS + LT_SYS_LIBRARY_PATH=/usr/lib: + export LT_SYS_LIBRARY_PATH + CC=gcc + export CC + CXX=g++ + export CXX + cd percent-encoding-2.3.1 + '[' 1 -eq 1 ']' + '[' 1 -eq 1 ']' + /usr/bin/env CARGO_HOME=.cargo RUSTC_BOOTSTRAP=1 'RUSTFLAGS=-Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn' /usr/bin/cargo build -j16 -Z avoid-dev-deps --profile rpm Compiling percent-encoding v2.3.1 (/home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build/percent-encoding-2.3.1) Running `/usr/bin/rustc --crate-name percent_encoding --edition=2018 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C codegen-units=1 -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=a2aa36ad1ecd4269 -C extra-filename=-8202ee4cc58d6ae6 --out-dir /home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build/percent-encoding-2.3.1/target/rpm/deps -L dependency=/home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build/percent-encoding-2.3.1/target/rpm/deps -Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn` warning: ambiguous wide pointer comparison, the comparison includes metadata which may not be expected --> src/lib.rs:466:35 | 466 | debug_assert!(raw_utf8 == &*bytes as *const [u8]); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `#[warn(ambiguous_wide_pointer_comparisons)]` on by default help: use `std::ptr::addr_eq` or untyped pointers to only compare their addresses | 466 - debug_assert!(raw_utf8 == &*bytes as *const [u8]); 466 + debug_assert!(std::ptr::addr_eq(raw_utf8, &*bytes as *const [u8])); | help: use explicit `std::ptr::eq` method to compare metadata and addresses | 466 - debug_assert!(raw_utf8 == &*bytes as *const [u8]); 466 + debug_assert!(std::ptr::eq(raw_utf8, &*bytes as *const [u8])); | warning: `percent-encoding` (lib) generated 1 warning Finished `rpm` profile [optimized + debuginfo] target(s) in 0.52s + RPM_EC=0 ++ jobs -p + exit 0 Executing(%install): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.ihHxWL + umask 022 + cd /home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build + '[' 1 -eq 1 ']' + '[' /home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build/BUILDROOT '!=' / ']' + rm -rf /home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build/BUILDROOT ++ dirname /home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build/BUILDROOT + mkdir -p /home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build + mkdir /home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build/BUILDROOT + CFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full' + export CFLAGS + CXXFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full' + export CXXFLAGS + FFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full ' + export FFLAGS + FCFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full ' + export FCFLAGS + VALAFLAGS=-g + export VALAFLAGS + RUSTFLAGS='-Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn' + export RUSTFLAGS + LDFLAGS='-Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-z,now -Wl,-O1 -Wl,--build-id=sha1 -Wl,--enable-new-dtags -specs=/usr/lib/rpm/redhat/redhat-hardened-ld' + export LDFLAGS + LT_SYS_LIBRARY_PATH=/usr/lib: + export LT_SYS_LIBRARY_PATH + CC=gcc + export CC + CXX=g++ + export CXX + cd percent-encoding-2.3.1 + '[' 1 -eq 1 ']' + set -euo pipefail ++ /usr/bin/cargo2rpm --path Cargo.toml is-lib + '[' 1 -eq 1 ']' + '[' 1 -eq 1 ']' ++ /usr/bin/cargo2rpm --path Cargo.toml name + CRATE_NAME=percent-encoding ++ /usr/bin/cargo2rpm --path Cargo.toml version + CRATE_VERSION=2.3.1 + REG_DIR=/home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build/BUILDROOT/usr/share/cargo/registry/percent-encoding-2.3.1 + /usr/bin/mkdir -p /home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build/BUILDROOT/usr/share/cargo/registry/percent-encoding-2.3.1 + /usr/bin/awk -i inplace -v INPLACE_SUFFIX=.deps '/^\[((.+\.)?((dev|build)-)?dependencies|features)/{f=1;next} /^\[/{f=0}; !f' Cargo.toml + /usr/bin/env CARGO_HOME=.cargo RUSTC_BOOTSTRAP=1 'RUSTFLAGS=-Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn' /usr/bin/cargo package -l + xargs -d '\n' /usr/bin/cp --parents -a -t /home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build/BUILDROOT/usr/share/cargo/registry/percent-encoding-2.3.1 + grep -w -E -v 'Cargo.(lock|toml.orig)' warning: no (git) VCS found for `/home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build/percent-encoding-2.3.1` + /usr/bin/mv Cargo.toml.deps Cargo.toml + /usr/bin/cp -a Cargo.toml /home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build/BUILDROOT/usr/share/cargo/registry/percent-encoding-2.3.1/Cargo.toml + /usr/bin/rm -f /home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build/BUILDROOT/usr/share/cargo/registry/percent-encoding-2.3.1/Cargo.toml.deps + echo '{"files":{},"package":""}' ++ /usr/bin/cargo2rpm --path Cargo.toml is-bin + '[' 0 -eq 1 ']' + /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-strip /usr/bin/strip + /usr/lib/rpm/brp-strip-comment-note /usr/bin/strip /usr/bin/objdump + /usr/lib/rpm/brp-strip-static-archive /usr/bin/strip + /usr/lib/rpm/check-rpaths + /usr/lib/rpm/brp-remove-la-files + /usr/lib/rpm/redhat/brp-mangle-shebangs + env -u SOURCE_DATE_EPOCH /usr/lib/rpm/redhat/brp-python-bytecompile '' 1 0 -j16 + /usr/lib/rpm/redhat/brp-python-hardlink Executing(%check): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.LFqlzp + umask 022 + cd /home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build + CFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full' + export CFLAGS + CXXFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full' + export CXXFLAGS + FFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full ' + export FFLAGS + FCFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full ' + export FCFLAGS + VALAFLAGS=-g + export VALAFLAGS + RUSTFLAGS='-Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn' + export RUSTFLAGS + LDFLAGS='-Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-z,now -Wl,-O1 -Wl,--build-id=sha1 -Wl,--enable-new-dtags -specs=/usr/lib/rpm/redhat/redhat-hardened-ld' + export LDFLAGS + LT_SYS_LIBRARY_PATH=/usr/lib: + export LT_SYS_LIBRARY_PATH + CC=gcc + export CC + CXX=g++ + export CXX + cd percent-encoding-2.3.1 + '[' 1 -eq 1 ']' + /usr/bin/env CARGO_HOME=.cargo RUSTC_BOOTSTRAP=1 'RUSTFLAGS=-Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn' /usr/bin/cargo test -j16 -Z avoid-dev-deps --profile rpm --no-fail-fast warning: ambiguous wide pointer comparison, the comparison includes metadata which may not be expected --> src/lib.rs:466:35 | 466 | debug_assert!(raw_utf8 == &*bytes as *const [u8]); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `#[warn(ambiguous_wide_pointer_comparisons)]` on by default help: use `std::ptr::addr_eq` or untyped pointers to only compare their addresses | 466 - debug_assert!(raw_utf8 == &*bytes as *const [u8]); 466 + debug_assert!(std::ptr::addr_eq(raw_utf8, &*bytes as *const [u8])); | help: use explicit `std::ptr::eq` method to compare metadata and addresses | 466 - debug_assert!(raw_utf8 == &*bytes as *const [u8]); 466 + debug_assert!(std::ptr::eq(raw_utf8, &*bytes as *const [u8])); | warning: `percent-encoding` (lib) generated 1 warning Compiling percent-encoding v2.3.1 (/home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build/percent-encoding-2.3.1) Running `/usr/bin/rustc --crate-name percent_encoding --edition=2018 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C opt-level=3 -C embed-bitcode=no -C codegen-units=1 -C debuginfo=2 --test --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=1389e9f68bae28ca -C extra-filename=-5515bd6e99223c91 --out-dir /home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build/percent-encoding-2.3.1/target/rpm/deps -L dependency=/home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build/percent-encoding-2.3.1/target/rpm/deps -Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn` warning: `percent-encoding` (lib test) generated 1 warning (1 duplicate) Finished `rpm` profile [optimized + debuginfo] target(s) in 0.73s Running `/home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build/percent-encoding-2.3.1/target/rpm/deps/percent_encoding-5515bd6e99223c91` running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s Doc-tests percent_encoding Running `/usr/bin/rustdoc --edition=2018 --crate-type lib --color auto --crate-name percent_encoding --test src/lib.rs --test-run-directory /home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build/percent-encoding-2.3.1 -L dependency=/home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build/percent-encoding-2.3.1/target/rpm/deps -L dependency=/home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build/percent-encoding-2.3.1/target/rpm/deps --extern percent_encoding=/home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build/percent-encoding-2.3.1/target/rpm/deps/libpercent_encoding-8202ee4cc58d6ae6.rlib -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' --error-format human` running 6 tests test src/lib.rs - AsciiSet (line 63) ... ok test src/lib.rs - percent_encode_byte (line 181) ... ok test src/lib.rs - percent_encode (line 226) ... ok test src/lib.rs - percent_decode (line 349) ... ok test src/lib.rs - utf8_percent_encode (line 245) ... ok test src/lib.rs - (line 31) ... ok test result: ok. 6 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.58s + RPM_EC=0 ++ jobs -p + exit 0 Processing files: rust-percent-encoding-devel-2.3.1-1.mga10.noarch warning: File listed twice: /usr/share/cargo/registry/percent-encoding-2.3.1/LICENSE-APACHE warning: File listed twice: /usr/share/cargo/registry/percent-encoding-2.3.1/LICENSE-MIT Provides: crate(percent-encoding) = 2.3.1 rust-percent-encoding-devel = 2.3.1-1.mga10 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: cargo rust >= 1.51 Processing files: rust-percent-encoding+default-devel-2.3.1-1.mga10.noarch Provides: crate(percent-encoding/default) = 2.3.1 rust-percent-encoding+default-devel = 2.3.1-1.mga10 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: cargo crate(percent-encoding) = 2.3.1 crate(percent-encoding/std) = 2.3.1 Processing files: rust-percent-encoding+alloc-devel-2.3.1-1.mga10.noarch Provides: crate(percent-encoding/alloc) = 2.3.1 rust-percent-encoding+alloc-devel = 2.3.1-1.mga10 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: cargo crate(percent-encoding) = 2.3.1 Processing files: rust-percent-encoding+std-devel-2.3.1-1.mga10.noarch Provides: crate(percent-encoding/std) = 2.3.1 rust-percent-encoding+std-devel = 2.3.1-1.mga10 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: cargo crate(percent-encoding) = 2.3.1 crate(percent-encoding/alloc) = 2.3.1 Checking for unpackaged file(s): /usr/lib/rpm/check-files /home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build/BUILDROOT Wrote: /home/pterjan/rpmbuild/RPMS/noarch/rust-percent-encoding-devel-2.3.1-1.mga10.noarch.rpm Wrote: /home/pterjan/rpmbuild/RPMS/noarch/rust-percent-encoding+std-devel-2.3.1-1.mga10.noarch.rpm Wrote: /home/pterjan/rpmbuild/RPMS/noarch/rust-percent-encoding+alloc-devel-2.3.1-1.mga10.noarch.rpm Wrote: /home/pterjan/rpmbuild/RPMS/noarch/rust-percent-encoding+default-devel-2.3.1-1.mga10.noarch.rpm Executing(rmbuild): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.Fv4Xu7 + umask 022 + cd /home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build + test -d /home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w /home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build + rm -rf /home/pterjan/rpmbuild/BUILD/rust-percent-encoding-2.3.1-build + RPM_EC=0 ++ jobs -p + exit 0 RPM build warnings: File listed twice: /usr/share/cargo/registry/percent-encoding-2.3.1/LICENSE-APACHE File listed twice: /usr/share/cargo/registry/percent-encoding-2.3.1/LICENSE-MIT D: [iurt_root_command] Success!