D: [iurt_root_command] chroot Building target platforms: noarch Building for target noarch Installing /home/pterjan/rpmbuild/SRPMS/rust-unicode-segmentation-1.12.0-1.mga10.src.rpm Executing(%mkbuilddir): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.YYafWs Executing(%prep): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.Os96k0 + umask 022 + cd /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build + '[' 1 -eq 1 ']' + '[' 1 -eq 1 ']' + '[' 1 -eq 1 ']' + cd /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build + rm -rf unicode-segmentation-1.12.0 + /usr/lib/rpm/rpmuncompress -x /home/pterjan/rpmbuild/SOURCES/unicode-segmentation-1.12.0.crate + STATUS=0 + '[' 0 -ne 0 ']' + cd unicode-segmentation-1.12.0 + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w . + /usr/lib/rpm/rpmuncompress /home/pterjan/rpmbuild/SOURCES/unicode-segmentation-fix-metadata.diff + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f + 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.O0aUr7 + umask 022 + cd /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build + cd unicode-segmentation-1.12.0 + /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.zHFVsQ + umask 022 + cd /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-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 unicode-segmentation-1.12.0 + '[' 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 unicode-segmentation v1.12.0 (/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0) Running `/usr/bin/rustc --crate-name unicode_segmentation --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 --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("no_std"))' -C metadata=b4f346eaa8bc74af -C extra-filename=-6025813e9b5df2ea --out-dir /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps -L dependency=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps -Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn` warning: hiding a lifetime that's elided elsewhere is confusing --> src/lib.rs:251:18 | 251 | fn graphemes(&self, is_extended: bool) -> Graphemes { | ^^^^^ --------- the same lifetime is hidden here | | | the lifetime is elided here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default help: use `'_` for type paths | 251 | fn graphemes(&self, is_extended: bool) -> Graphemes<'_> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/lib.rs:256:25 | 256 | fn grapheme_indices(&self, is_extended: bool) -> GraphemeIndices { | ^^^^^ --------------- the same lifetime is hidden here | | | the lifetime is elided here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 256 | fn grapheme_indices(&self, is_extended: bool) -> GraphemeIndices<'_> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/lib.rs:261:22 | 261 | fn unicode_words(&self) -> UnicodeWords { | ^^^^^ ------------ the same lifetime is hidden here | | | the lifetime is elided here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 261 | fn unicode_words(&self) -> UnicodeWords<'_> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/lib.rs:266:29 | 266 | fn unicode_word_indices(&self) -> UnicodeWordIndices { | ^^^^^ ------------------ the same lifetime is hidden here | | | the lifetime is elided here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 266 | fn unicode_word_indices(&self) -> UnicodeWordIndices<'_> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/lib.rs:271:26 | 271 | fn split_word_bounds(&self) -> UWordBounds { | ^^^^^ ----------- the same lifetime is hidden here | | | the lifetime is elided here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 271 | fn split_word_bounds(&self) -> UWordBounds<'_> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/lib.rs:276:33 | 276 | fn split_word_bound_indices(&self) -> UWordBoundIndices { | ^^^^^ ----------------- the same lifetime is hidden here | | | the lifetime is elided here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 276 | fn split_word_bound_indices(&self) -> UWordBoundIndices<'_> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/lib.rs:281:26 | 281 | fn unicode_sentences(&self) -> UnicodeSentences { | ^^^^^ ---------------- the same lifetime is hidden here | | | the lifetime is elided here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 281 | fn unicode_sentences(&self) -> UnicodeSentences<'_> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/lib.rs:286:30 | 286 | fn split_sentence_bounds(&self) -> USentenceBounds { | ^^^^^ --------------- the same lifetime is hidden here | | | the lifetime is elided here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 286 | fn split_sentence_bounds(&self) -> USentenceBounds<'_> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/lib.rs:291:37 | 291 | fn split_sentence_bound_indices(&self) -> USentenceBoundIndices { | ^^^^^ --------------------- the same lifetime is hidden here | | | the lifetime is elided here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 291 | fn split_sentence_bound_indices(&self) -> USentenceBoundIndices<'_> { | ++++ warning: `unicode-segmentation` (lib) generated 9 warnings Finished `rpm` profile [optimized + debuginfo] target(s) in 0.66s + RPM_EC=0 ++ jobs -p + exit 0 Executing(%install): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.hoDbv9 + umask 022 + cd /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build + '[' 1 -eq 1 ']' + '[' /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/BUILDROOT '!=' / ']' + rm -rf /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/BUILDROOT ++ dirname /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/BUILDROOT + mkdir -p /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build + mkdir /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-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 unicode-segmentation-1.12.0 + '[' 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=unicode-segmentation ++ /usr/bin/cargo2rpm --path Cargo.toml version + CRATE_VERSION=1.12.0 + REG_DIR=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/BUILDROOT/usr/share/cargo/registry/unicode-segmentation-1.12.0 + /usr/bin/mkdir -p /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/BUILDROOT/usr/share/cargo/registry/unicode-segmentation-1.12.0 + /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 + grep -w -E -v 'Cargo.(lock|toml.orig)' + xargs -d '\n' /usr/bin/cp --parents -a -t /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/BUILDROOT/usr/share/cargo/registry/unicode-segmentation-1.12.0 warning: no (git) VCS found for `/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0` + /usr/bin/mv Cargo.toml.deps Cargo.toml + /usr/bin/cp -a Cargo.toml /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/BUILDROOT/usr/share/cargo/registry/unicode-segmentation-1.12.0/Cargo.toml + /usr/bin/rm -f /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/BUILDROOT/usr/share/cargo/registry/unicode-segmentation-1.12.0/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.5ZkfMg + umask 022 + cd /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-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 unicode-segmentation-1.12.0 + '[' 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 Compiling libc v0.2.175 Compiling memchr v2.7.5 Compiling cfg-if v1.0.1 Compiling regex-syntax v0.8.5 Compiling log v0.4.27 warning: hiding a lifetime that's elided elsewhere is confusing --> src/lib.rs:251:18 | 251 | fn graphemes(&self, is_extended: bool) -> Graphemes { | ^^^^^ --------- the same lifetime is hidden here | | | the lifetime is elided here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default help: use `'_` for type paths | 251 | fn graphemes(&self, is_extended: bool) -> Graphemes<'_> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/lib.rs:256:25 | 256 | fn grapheme_indices(&self, is_extended: bool) -> GraphemeIndices { | ^^^^^ --------------- the same lifetime is hidden here | | | the lifetime is elided here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 256 | fn grapheme_indices(&self, is_extended: bool) -> GraphemeIndices<'_> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/lib.rs:261:22 | 261 | fn unicode_words(&self) -> UnicodeWords { | ^^^^^ ------------ the same lifetime is hidden here | | | the lifetime is elided here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 261 | fn unicode_words(&self) -> UnicodeWords<'_> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/lib.rs:266:29 | 266 | fn unicode_word_indices(&self) -> UnicodeWordIndices { | ^^^^^ ------------------ the same lifetime is hidden here | | | the lifetime is elided here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 266 | fn unicode_word_indices(&self) -> UnicodeWordIndices<'_> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/lib.rs:271:26 | 271 | fn split_word_bounds(&self) -> UWordBounds { | ^^^^^ ----------- the same lifetime is hidden here | | | the lifetime is elided here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 271 | fn split_word_bounds(&self) -> UWordBounds<'_> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/lib.rs:276:33 | 276 | fn split_word_bound_indices(&self) -> UWordBoundIndices { | ^^^^^ ----------------- the same lifetime is hidden here | | | the lifetime is elided here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 276 | fn split_word_bound_indices(&self) -> UWordBoundIndices<'_> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/lib.rs:281:26 | 281 | fn unicode_sentences(&self) -> UnicodeSentences { | ^^^^^ ---------------- the same lifetime is hidden here | | | the lifetime is elided here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 281 | fn unicode_sentences(&self) -> UnicodeSentences<'_> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/lib.rs:286:30 | 286 | fn split_sentence_bounds(&self) -> USentenceBounds { | ^^^^^ --------------- the same lifetime is hidden here | | | the lifetime is elided here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 286 | fn split_sentence_bounds(&self) -> USentenceBounds<'_> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/lib.rs:291:37 | 291 | fn split_sentence_bound_indices(&self) -> USentenceBoundIndices { | ^^^^^ --------------------- the same lifetime is hidden here | | | the lifetime is elided here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 291 | fn split_sentence_bound_indices(&self) -> USentenceBoundIndices<'_> { | ++++ Running `/usr/bin/rustc --crate-name build_script_build --edition=2021 /usr/share/cargo/registry/libc-0.2.175/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no '--allow=clippy::used_underscore_binding' --allow=unused_qualifications '--warn=clippy::unnecessary_semicolon' '--allow=clippy::unnecessary_cast' '--allow=clippy::uninlined_format_args' '--warn=clippy::ptr_as_ptr' '--allow=clippy::non_minimal_cfg' '--allow=clippy::missing_safety_doc' '--warn=clippy::map_unwrap_or' '--warn=clippy::manual_assert' '--allow=clippy::identity_op' '--warn=clippy::explicit_iter_loop' '--allow=clippy::expl_impl_clone_on_copy' -C debug-assertions=off --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=69db84a876ea34d1 -C extra-filename=-3689981c9c015de7 --out-dir /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/build/libc-3689981c9c015de7 -L dependency=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps --cap-lints allow -Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn` Running `/usr/bin/rustc --crate-name memchr --edition=2021 /usr/share/cargo/registry/memchr-2.7.5/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="std"' --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("alloc", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=c00e661943832b51 -C extra-filename=-dfe855f48e62aac8 --out-dir /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps -L dependency=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps --cap-lints allow -Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn` Running `/usr/bin/rustc --crate-name cfg_if --edition=2018 /usr/share/cargo/registry/cfg-if-1.0.1/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 --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("core", "rustc-dep-of-std"))' -C metadata=d15e1610e28af61d -C extra-filename=-248c37a1e6f75f0e --out-dir /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps -L dependency=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps --cap-lints allow -Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn` Running `/usr/bin/rustc --crate-name regex_syntax --edition=2021 /usr/share/cargo/registry/regex-syntax-0.8.5/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="std"' --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("arbitrary", "default", "std", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment"))' -C metadata=b3837258f82c6b78 -C extra-filename=-bbd4689e0db684cb --out-dir /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps -L dependency=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps --cap-lints allow -Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn` Running `/usr/bin/rustc --crate-name log --edition=2021 /usr/share/cargo/registry/log-0.4.27/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="std"' --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("kv", "max_level_debug", "max_level_error", "max_level_info", "max_level_off", "max_level_trace", "max_level_warn", "release_max_level_debug", "release_max_level_error", "release_max_level_info", "release_max_level_off", "release_max_level_trace", "release_max_level_warn", "serde", "std"))' -C metadata=dd3d09a54ce8e4c2 -C extra-filename=-c24fb6f12d2e4004 --out-dir /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps -L dependency=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps --cap-lints allow -Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn` warning: `unicode-segmentation` (lib) generated 9 warnings Compiling aho-corasick v1.1.3 Running `/usr/bin/rustc --crate-name aho_corasick --edition=2021 /usr/share/cargo/registry/aho-corasick-1.1.3/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="perf-literal"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("default", "logging", "perf-literal", "std"))' -C metadata=82b2138f5825247a -C extra-filename=-262184ea65a1d37d --out-dir /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps -L dependency=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps --extern memchr=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps/libmemchr-dfe855f48e62aac8.rmeta --cap-lints allow -Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn` Running `/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/build/libc-3689981c9c015de7/build-script-build` Running `/usr/bin/rustc --crate-name libc --edition=2021 /usr/share/cargo/registry/libc-0.2.175/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 '--allow=clippy::used_underscore_binding' --allow=unused_qualifications '--warn=clippy::unnecessary_semicolon' '--allow=clippy::unnecessary_cast' '--allow=clippy::uninlined_format_args' '--warn=clippy::ptr_as_ptr' '--allow=clippy::non_minimal_cfg' '--allow=clippy::missing_safety_doc' '--warn=clippy::map_unwrap_or' '--warn=clippy::manual_assert' '--allow=clippy::identity_op' '--warn=clippy::explicit_iter_loop' '--allow=clippy::expl_impl_clone_on_copy' --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=25c2ba817ba0ec2b -C extra-filename=-71f4bfc73a4884e1 --out-dir /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps -L dependency=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps --cap-lints allow -Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_old_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_file_offset_bits64)' --check-cfg 'cfg(gnu_time_bits64)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(linux_time_bits64)' --check-cfg 'cfg(musl_v1_2_3)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx","cygwin"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos","nto71_iosock","nto80"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` Compiling regex-automata v0.4.9 Running `/usr/bin/rustc --crate-name regex_automata --edition=2021 /usr/share/cargo/registry/regex-automata-0.4.9/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="dfa-onepass"' --cfg 'feature="hybrid"' --cfg 'feature="meta"' --cfg 'feature="nfa-backtrack"' --cfg 'feature="nfa-pikevm"' --cfg 'feature="nfa-thompson"' --cfg 'feature="perf-inline"' --cfg 'feature="perf-literal"' --cfg 'feature="perf-literal-multisubstring"' --cfg 'feature="perf-literal-substring"' --cfg 'feature="std"' --cfg 'feature="syntax"' --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("alloc", "default", "dfa", "dfa-build", "dfa-onepass", "dfa-search", "hybrid", "internal-instrument", "internal-instrument-pikevm", "logging", "meta", "nfa", "nfa-backtrack", "nfa-pikevm", "nfa-thompson", "perf", "perf-inline", "perf-literal", "perf-literal-multisubstring", "perf-literal-substring", "std", "syntax", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment", "unicode-word-boundary"))' -C metadata=5df9528e3ac69a88 -C extra-filename=-9339ac65abf863c8 --out-dir /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps -L dependency=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps --extern aho_corasick=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps/libaho_corasick-262184ea65a1d37d.rmeta --extern memchr=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps/libmemchr-dfe855f48e62aac8.rmeta --extern regex_syntax=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps/libregex_syntax-bbd4689e0db684cb.rmeta --cap-lints allow -Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn` Compiling getrandom v0.2.15 Running `/usr/bin/rustc --crate-name getrandom --edition=2018 /usr/share/cargo/registry/getrandom-0.2.15/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 --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("custom", "linux_disable_fallback", "rdrand", "std"))' -C metadata=56f4e18019818cd7 -C extra-filename=-2f82a4eb4be77ab5 --out-dir /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps -L dependency=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps --extern cfg_if=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps/libcfg_if-248c37a1e6f75f0e.rmeta --extern libc=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps/liblibc-71f4bfc73a4884e1.rmeta --cap-lints allow -Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn` Compiling rand_core v0.6.4 Running `/usr/bin/rustc --crate-name rand_core --edition=2018 /usr/share/cargo/registry/rand_core-0.6.4/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="getrandom"' --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("alloc", "getrandom", "serde", "serde1", "std"))' -C metadata=8f43c0e035d2084d -C extra-filename=-b8376279975c8f54 --out-dir /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps -L dependency=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps --extern getrandom=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps/libgetrandom-2f82a4eb4be77ab5.rmeta --cap-lints allow -Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn` Compiling rand v0.8.5 Running `/usr/bin/rustc --crate-name rand --edition=2018 /usr/share/cargo/registry/rand-0.8.5/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="getrandom"' --cfg 'feature="small_rng"' --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("alloc", "default", "getrandom", "libc", "log", "min_const_gen", "nightly", "packed_simd", "rand_chacha", "serde", "serde1", "simd_support", "small_rng", "std", "std_rng"))' -C metadata=1c186a09e1c4b114 -C extra-filename=-128385f537618c0d --out-dir /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps -L dependency=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps --extern rand_core=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps/librand_core-b8376279975c8f54.rmeta --cap-lints allow -Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn` Compiling regex v1.11.1 Running `/usr/bin/rustc --crate-name regex --edition=2021 /usr/share/cargo/registry/regex-1.11.1/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="perf"' --cfg 'feature="perf-backtrack"' --cfg 'feature="perf-cache"' --cfg 'feature="perf-dfa"' --cfg 'feature="perf-inline"' --cfg 'feature="perf-literal"' --cfg 'feature="perf-onepass"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("default", "logging", "pattern", "perf", "perf-backtrack", "perf-cache", "perf-dfa", "perf-dfa-full", "perf-inline", "perf-literal", "perf-onepass", "std", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment", "unstable", "use_std"))' -C metadata=a726f2831816efda -C extra-filename=-1e9030f3af2f5390 --out-dir /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps -L dependency=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps --extern aho_corasick=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps/libaho_corasick-262184ea65a1d37d.rmeta --extern memchr=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps/libmemchr-dfe855f48e62aac8.rmeta --extern regex_automata=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps/libregex_automata-9339ac65abf863c8.rmeta --extern regex_syntax=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps/libregex_syntax-bbd4689e0db684cb.rmeta --cap-lints allow -Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn` Compiling env_logger v0.8.4 Running `/usr/bin/rustc --crate-name env_logger --edition=2018 /usr/share/cargo/registry/env_logger-0.8.4/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="regex"' --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("atty", "default", "humantime", "regex", "termcolor"))' -C metadata=e9d92c5cbde8b7ae -C extra-filename=-ed58a260ab87175f --out-dir /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps -L dependency=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps --extern log=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps/liblog-c24fb6f12d2e4004.rmeta --extern regex=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps/libregex-1e9030f3af2f5390.rmeta --cap-lints allow -Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn` Compiling quickcheck v1.0.3 Running `/usr/bin/rustc --crate-name quickcheck --edition=2018 /usr/share/cargo/registry/quickcheck-1.0.3/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="default"' --cfg 'feature="env_logger"' --cfg 'feature="log"' --cfg 'feature="regex"' --cfg 'feature="use_logging"' --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("default", "env_logger", "log", "regex", "use_logging"))' -C metadata=61eb6a5c54d333a3 -C extra-filename=-ca0b8af936ec3795 --out-dir /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps -L dependency=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps --extern env_logger=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps/libenv_logger-ed58a260ab87175f.rmeta --extern log=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps/liblog-c24fb6f12d2e4004.rmeta --extern rand=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps/librand-128385f537618c0d.rmeta --cap-lints allow -Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn` Compiling unicode-segmentation v1.12.0 (/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0) Running `/usr/bin/rustc --crate-name unicode_segmentation --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 --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("no_std"))' -C metadata=f9b9254df53b6db4 -C extra-filename=-5323df6405fd7d5f --out-dir /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps -L dependency=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps --extern quickcheck=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps/libquickcheck-ca0b8af936ec3795.rlib -Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn` Running `/usr/bin/rustc --crate-name test --edition=2018 tests/test.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 --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("no_std"))' -C metadata=528ac2c76b22cff2 -C extra-filename=-12dedeeda0578bf7 --out-dir /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps -L dependency=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps --extern quickcheck=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps/libquickcheck-ca0b8af936ec3795.rlib --extern unicode_segmentation=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps/libunicode_segmentation-6025813e9b5df2ea.rlib -Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn` warning: `unicode-segmentation` (lib test) generated 9 warnings (9 duplicates) Finished `rpm` profile [optimized + debuginfo] target(s) in 19.87s Running `/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps/unicode_segmentation-5323df6405fd7d5f` running 6 tests test grapheme::test_grapheme_cursor_chunk_start_require_precontext ... ok test grapheme::test_grapheme_cursor_prev_boundary ... ok test grapheme::test_grapheme_cursor_ris_precontext ... ok test grapheme::test_grapheme_cursor_prev_boundary_chunk_start ... ok test word::tests::test_end_of_ayah_cat ... ok test word::tests::test_syriac_abbr_mark ... ok test result: ok. 6 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s Running `/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps/test-12dedeeda0578bf7` running 8 tests test test_sentences ... ok test quickcheck_forward_reverse_graphemes_extended ... ok test test_graphemes ... ok test quickcheck_forward_reverse_graphemes_legacy ... ok test quickcheck_forward_reverse_words ... ok test quickcheck_join_words ... ok test quickcheck_join_graphemes ... ok test test_words ... ok test result: ok. 8 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s Doc-tests unicode_segmentation Running `/usr/bin/rustdoc --edition=2018 --crate-type lib --color auto --crate-name unicode_segmentation --test src/lib.rs --test-run-directory /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0 -L dependency=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps -L dependency=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps --extern quickcheck=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps/libquickcheck-ca0b8af936ec3795.rlib --extern unicode_segmentation=/home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/unicode-segmentation-1.12.0/target/rpm/deps/libunicode_segmentation-6025813e9b5df2ea.rlib -C embed-bitcode=no --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("no_std"))' --error-format human` running 23 tests test src/grapheme.rs - grapheme::GraphemeCursor::set_cursor (line 352) ... ok test src/grapheme.rs - grapheme::GraphemeCursor::prev_boundary (line 765) ... ok test src/word.rs - word::UWordBounds<'a>::as_str (line 683) ... ok test src/grapheme.rs - grapheme::GraphemeCursor::prev_boundary (line 753) ... ok test src/grapheme.rs - grapheme::GraphemeCursor::cur_cursor (line 381) ... ok test src/grapheme.rs - grapheme::GraphemeCursor::is_boundary (line 581) ... ok test src/word.rs - word::UWordBoundIndices<'a>::as_str (line 124) ... ok test src/grapheme.rs - grapheme::GraphemeCursor::new (line 291) ... ok test src/lib.rs - UnicodeSegmentation::split_sentence_bound_indices (line 237) ... ok test src/grapheme.rs - grapheme::GraphemeCursor::provide_context (line 398) ... ok test src/lib.rs - UnicodeSegmentation::split_sentence_bounds (line 222) ... ok test src/lib.rs - UnicodeSegmentation::split_word_bounds (line 169) ... ok test src/grapheme.rs - grapheme::GraphemeCursor::next_boundary (line 667) ... ok test src/grapheme.rs - grapheme::GraphemeIndices<'a>::as_str (line 32) ... ok test src/lib.rs - UnicodeSegmentation::unicode_sentences (line 205) ... ok test src/grapheme.rs - grapheme::GraphemeCursor::next_boundary (line 678) ... ok test src/grapheme.rs - grapheme::Graphemes<'a>::as_str (line 91) ... ok test src/lib.rs - UnicodeSegmentation::grapheme_indices (line 106) ... ok test src/lib.rs - UnicodeSegmentation::graphemes (line 86) ... ok test src/lib.rs - UnicodeSegmentation::split_word_bound_indices (line 183) ... ok test src/lib.rs - UnicodeSegmentation::unicode_word_indices (line 151) ... ok test src/lib.rs - (line 14) ... ok test src/lib.rs - UnicodeSegmentation::unicode_words (line 128) ... ok test result: ok. 23 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.26s + RPM_EC=0 ++ jobs -p + exit 0 Processing files: rust-unicode-segmentation-devel-1.12.0-1.mga10.noarch warning: File listed twice: /usr/share/cargo/registry/unicode-segmentation-1.12.0/COPYRIGHT warning: File listed twice: /usr/share/cargo/registry/unicode-segmentation-1.12.0/LICENSE-APACHE warning: File listed twice: /usr/share/cargo/registry/unicode-segmentation-1.12.0/LICENSE-MIT warning: File listed twice: /usr/share/cargo/registry/unicode-segmentation-1.12.0/README.md Provides: crate(unicode-segmentation) = 1.12.0 rust-unicode-segmentation-devel = 1.12.0-1.mga10 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: cargo Processing files: rust-unicode-segmentation+default-devel-1.12.0-1.mga10.noarch Provides: crate(unicode-segmentation/default) = 1.12.0 rust-unicode-segmentation+default-devel = 1.12.0-1.mga10 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: cargo crate(unicode-segmentation) = 1.12.0 Processing files: rust-unicode-segmentation+no_std-devel-1.12.0-1.mga10.noarch Provides: crate(unicode-segmentation/no_std) = 1.12.0 rust-unicode-segmentation+no_std-devel = 1.12.0-1.mga10 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: cargo crate(unicode-segmentation) = 1.12.0 Checking for unpackaged file(s): /usr/lib/rpm/check-files /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build/BUILDROOT Wrote: /home/pterjan/rpmbuild/RPMS/noarch/rust-unicode-segmentation+default-devel-1.12.0-1.mga10.noarch.rpm Wrote: /home/pterjan/rpmbuild/RPMS/noarch/rust-unicode-segmentation+no_std-devel-1.12.0-1.mga10.noarch.rpm Wrote: /home/pterjan/rpmbuild/RPMS/noarch/rust-unicode-segmentation-devel-1.12.0-1.mga10.noarch.rpm Executing(rmbuild): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.kUN0Lj + umask 022 + cd /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build + test -d /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build + rm -rf /home/pterjan/rpmbuild/BUILD/rust-unicode-segmentation-1.12.0-build + RPM_EC=0 ++ jobs -p + exit 0 RPM build warnings: File listed twice: /usr/share/cargo/registry/unicode-segmentation-1.12.0/COPYRIGHT File listed twice: /usr/share/cargo/registry/unicode-segmentation-1.12.0/LICENSE-APACHE File listed twice: /usr/share/cargo/registry/unicode-segmentation-1.12.0/LICENSE-MIT File listed twice: /usr/share/cargo/registry/unicode-segmentation-1.12.0/README.md D: [iurt_root_command] Success!