=> "/opt/local/bin/bmake" ["-C", "/data/jenkins/workspace/pkgsrc-trunk-x86_64/devel/git-cinnabar", "all", "PYTHON_VERSION_REQD=313", "BATCH=1", "DEPENDS_TARGET=/nonexistent"] ===> Building for git-cinnabar-0.7.0beta2nb7 Compiling libc v0.2.159 Compiling proc-macro2 v1.0.86 Compiling unicode-ident v1.0.13 Compiling shlex v1.3.0 Compiling pkg-config v0.3.31 Compiling jobserver v0.1.32 Compiling quote v1.0.37 Compiling cc v1.1.23 Compiling syn v2.0.79 Compiling cfg-if v1.0.0 Compiling vcpkg v0.2.15 Compiling typenum v1.17.0 Compiling version_check v0.9.5 Compiling libz-sys v1.1.20 Compiling generic-array v0.14.7 Compiling zstd-sys v2.0.13+zstd.1.5.6 Compiling zerocopy-derive v0.7.35 Compiling utf8parse v0.2.2 Compiling byteorder v1.5.0 Compiling tinyvec_macros v0.1.1 Compiling tinyvec v1.8.0 Compiling zerocopy v0.7.35 Compiling anstyle-parse v0.2.5 Compiling bzip2-sys v0.1.11+1.0.8 Compiling curl-sys v0.4.77+curl-8.10.1 Compiling getrandom v0.2.15 Compiling anstyle v1.0.8 Compiling colorchoice v1.0.2 Compiling syn v1.0.109 Compiling is_terminal_polyfill v1.70.1 Compiling rustix v0.38.37 Compiling zstd-safe v7.2.1 Compiling memchr v2.7.4 Compiling anstyle-query v1.1.1 Compiling either v1.13.0 Compiling itertools v0.13.0 Compiling anstream v0.6.15 Compiling rand_core v0.6.4 Compiling unicode-normalization v0.1.24 Compiling ppv-lite86 v0.2.20 Compiling block-buffer v0.10.4 Compiling crypto-common v0.1.6 Compiling errno v0.3.9 Compiling proc-macro-error-attr2 v2.0.0 Compiling make-cmd v0.1.0 Compiling bitflags v2.6.0 Compiling clap_lex v0.7.2 Compiling strsim v0.11.1 Compiling target v2.1.0 Compiling regex-syntax v0.8.5 Compiling unicode-bidi v0.3.15 Compiling heck v0.5.0 Compiling semver v1.0.23 Compiling gimli v0.31.0 Compiling adler2 v2.0.0 Compiling percent-encoding v2.3.1 Compiling miniz_oxide v0.8.0 Compiling form_urlencoded v1.2.1 Compiling addr2line v0.24.1 Compiling clap_derive v4.5.18 Compiling regex-automata v0.4.8 Compiling idna v0.5.0 Compiling git-cinnabar v0.7.0-beta.2 (/tmp/work/devel/git-cinnabar/work/git-cinnabar-0.7.0beta2) Compiling clap_builder v4.5.18 Compiling proc-macro-error2 v2.0.1 Compiling digest v0.10.7 Compiling rand_chacha v0.3.1 Compiling object v0.36.4 Compiling git-version-macro v0.3.9 Compiling crc32fast v1.4.2 Compiling equivalent v1.0.1 Compiling cpufeatures v0.2.14 Compiling rustc-demangle v0.1.24 Compiling fastrand v2.1.1 Compiling hashbrown v0.14.5 Compiling once_cell v1.20.1 Compiling tempfile v3.13.0 Compiling indexmap v2.5.0 Compiling backtrace v0.3.74 Compiling sha-1 v0.10.1 Compiling flate2 v1.0.34 Compiling git-version v0.3.9 Compiling derivative v2.2.0 Compiling zstd v0.13.2 Compiling rand v0.8.5 Compiling getset v0.1.3 Compiling clap v4.5.18 Compiling bzip2 v0.4.4 Compiling url v2.5.2 Compiling regex v1.11.0 Compiling bstr v1.10.0 Compiling derive_more v0.99.18 Compiling cstr v0.2.12 Compiling array-init v2.1.0 Compiling hex v0.4.3 Compiling concat_const v0.1.3 Compiling hex-literal v0.4.1 Compiling bit-vec v0.8.0 Compiling log v0.4.22 Compiling tee v0.1.0 Compiling lru v0.12.4 warning: unnecessary parentheses around closure body --> src/hg_bundle.rs:1189:22 | 1189 | .map(|p| (p.to_git(store).unwrap().into())) | ^ ^ | = note: `#[warn(unused_parens)]` (part of `#[warn(unused)]`) on by default help: remove these parentheses | 1189 - .map(|p| (p.to_git(store).unwrap().into())) 1189 + .map(|p| p.to_git(store).unwrap().into()) | warning: hiding a lifetime that's elided elsewhere is confusing --> src/main.rs:551:17 | 551 | fn unbundle(&mut self, _heads: Option<&[HgChangesetId]>, _input: File) -> UnbundleResponse { | ^^^^^^^^^ the lifetime is elided here ^^^^^^^^^^^^^^^^ the same lifetime is hidden 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 | 551 | fn unbundle(&mut self, _heads: Option<&[HgChangesetId]>, _input: File) -> UnbundleResponse<'_> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/git/commit.rs:27:18 | 27 | pub fn parse(&self) -> Option { | ^^^^^ ^^^^^^ 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 | 27 | pub fn parse(&self) -> Option> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/libcinnabar.rs:35:21 | 35 | fn as_str_slice(&self) -> strslice; | ^^^^^ ^^^^^^^^ 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 | 35 | fn as_str_slice(&self) -> strslice<'_>; | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/libcinnabar.rs:39:21 | 39 | fn as_str_slice(&self) -> strslice { | ^^^^^ ^^^^^^^^ 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 | 39 | fn as_str_slice(&self) -> strslice<'_> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/store.rs:118:28 | 118 | pub fn changeset_heads(&self) -> Ref { | ^^^^^ ^^^^^^^^^^^^^^^^^^^ 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 | 118 | pub fn changeset_heads(&self) -> Ref<'_, ChangesetHeads> { | +++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/store.rs:130:32 | 130 | pub fn changeset_heads_mut(&self) -> RefMut { | ^^^^^ ^^^^^^^^^^^^^^^^^^^^^^ 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 | 130 | pub fn changeset_heads_mut(&self) -> RefMut<'_, ChangesetHeads> { | +++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/store.rs:135:27 | 135 | pub fn manifest_heads(&self) -> Ref { | ^^^^^ ^^^^^^^^^^^^^^^^^^ 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 | 135 | pub fn manifest_heads(&self) -> Ref<'_, ManifestHeads> { | +++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/store.rs:147:31 | 147 | pub fn manifest_heads_mut(&self) -> RefMut { | ^^^^^ ^^^^^^^^^^^^^^^^^^^^^ 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 | 147 | pub fn manifest_heads_mut(&self) -> RefMut<'_, ManifestHeads> { | +++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/store.rs:152:19 | 152 | pub fn hg2git(&self) -> Ref { | ^^^^^ ^^^^^^^^^^^^^^^^^^ 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 | 152 | pub fn hg2git(&self) -> Ref<'_, hg_notes_tree> { | +++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/store.rs:158:23 | 158 | pub fn hg2git_mut(&self) -> RefMut { | ^^^^^ ^^^^^^^^^^^^^^^^^^^^^ 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 | 158 | pub fn hg2git_mut(&self) -> RefMut<'_, hg_notes_tree> { | +++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/store.rs:163:19 | 163 | pub fn git2hg(&self) -> Ref { | ^^^^^ ^^^^^^^^^^^^^^^^^^^ 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 | 163 | pub fn git2hg(&self) -> Ref<'_, git_notes_tree> { | +++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/store.rs:169:23 | 169 | pub fn git2hg_mut(&self) -> RefMut { | ^^^^^ ^^^^^^^^^^^^^^^^^^^^^^ 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 | 169 | pub fn git2hg_mut(&self) -> RefMut<'_, git_notes_tree> { | +++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/store.rs:174:23 | 174 | pub fn files_meta(&self) -> Ref { | ^^^^^ ^^^^^^^^^^^^^^^^^^ 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 | 174 | pub fn files_meta(&self) -> Ref<'_, hg_notes_tree> { | +++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/store.rs:180:27 | 180 | pub fn files_meta_mut(&self) -> RefMut { | ^^^^^ ^^^^^^^^^^^^^^^^^^^^^ 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 | 180 | pub fn files_meta_mut(&self) -> RefMut<'_, hg_notes_tree> { | +++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/store.rs:239:18 | 239 | pub fn parse(&self) -> Option { | ^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^ 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 | 239 | pub fn parse(&self) -> Option> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/store.rs:301:18 | 301 | pub fn extra(&self) -> Option { | ^^^^^ ^^^^^^^^^^^^^^ 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 | 301 | pub fn extra(&self) -> Option> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/store.rs:320:18 | 320 | pub fn patch(&self) -> Option { | ^^^^^ ^^^^^^^^^^^^^^^^^ 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 | 320 | pub fn patch(&self) -> Option> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/store.rs:651:18 | 651 | pub fn parse(&self) -> Option { | ^^^^^ ^^^^^^^^^^^ 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 | 651 | pub fn parse(&self) -> Option> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/store.rs:690:18 | 690 | pub fn extra(&self) -> Option { | ^^^^^ ^^^^^^^^^^^^^^ 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 | 690 | pub fn extra(&self) -> Option> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/hg_bundle.rs:122:22 | 122 | pub fn iter_diff(&self) -> RevDiffIter { | ^^^^^ ^^^^^^^^^^^ 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 | 122 | pub fn iter_diff(&self) -> RevDiffIter<'_> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/hg_bundle.rs:449:22 | 449 | pub fn next_part(&mut self) -> io::Result> { | ^^^^^^^^^ ^^^^^^^^^^^^^^^^ 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 | 449 | pub fn next_part(&mut self) -> io::Result>> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/hg_bundle.rs:687:21 | 687 | pub fn new_part(&mut self, info: BundlePartInfo) -> io::Result> { | ^^^^^^^^^ the lifetime is elided here ^^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 687 | pub fn new_part(&mut self, info: BundlePartInfo) -> io::Result> { | +++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/hg_connect.rs:48:22 | 48 | pub fn as_string(&self) -> Cow { | ^^^^^ ^^^^^^^^ 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 | 48 | pub fn as_string(&self) -> Cow<'_, str> { | +++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/hg_connect.rs:179:21 | 179 | fn push_command(&mut self, input: File, command: &str, args: HgArgs) -> UnbundleResponse; | ^^^^^^^^^ the lifetime is elided here ^^^^^^^^^^^^^^^^ the same lifetime is hidden here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 179 | fn push_command(&mut self, input: File, command: &str, args: HgArgs) -> UnbundleResponse<'_>; | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/hg_connect.rs:192:17 | 192 | fn unbundle(&mut self, _heads: Option<&[HgChangesetId]>, _input: File) -> UnbundleResponse { | ^^^^^^^^^ the lifetime is elided here ^^^^^^^^^^^^^^^^ the same lifetime is hidden here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 192 | fn unbundle(&mut self, _heads: Option<&[HgChangesetId]>, _input: File) -> UnbundleResponse<'_> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/hg_connect.rs:240:17 | 240 | fn unbundle(&mut self, heads: Option<&[HgChangesetId]>, input: File) -> UnbundleResponse { | ^^^^^^^^^ the lifetime is elided here ^^^^^^^^^^^^^^^^ the same lifetime is hidden here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 240 | fn unbundle(&mut self, heads: Option<&[HgChangesetId]>, input: File) -> UnbundleResponse<'_> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/hg_connect.rs:400:21 | 400 | fn push_command(&mut self, input: File, command: &str, args: HgArgs) -> UnbundleResponse { | ^^^^^^^^^ the lifetime is elided here ^^^^^^^^^^^^^^^^ the same lifetime is hidden here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 400 | fn push_command(&mut self, input: File, command: &str, args: HgArgs) -> UnbundleResponse<'_> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/hg_connect.rs:515:17 | 515 | fn unbundle(&mut self, heads: Option<&[HgChangesetId]>, input: File) -> UnbundleResponse { | ^^^^^^^^^ the lifetime is elided here ^^^^^^^^^^^^^^^^ the same lifetime is hidden here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 515 | fn unbundle(&mut self, heads: Option<&[HgChangesetId]>, input: File) -> UnbundleResponse<'_> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/hg_connect.rs:1271:30 | 1271 | fn cinnabar_clone_info(line: &[u8]) -> Result, String> { | ^^^^^ ^^^^^^^^^^^^^^^^^ 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 | 1271 | fn cinnabar_clone_info(line: &[u8]) -> Result>, String> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/hg_connect_http.rs:795:21 | 795 | fn push_command(&mut self, input: File, command: &str, args: HgArgs) -> UnbundleResponse { | ^^^^^^^^^ the lifetime is elided here ^^^^^^^^^^^^^^^^ the same lifetime is hidden here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 795 | fn push_command(&mut self, input: File, command: &str, args: HgArgs) -> UnbundleResponse<'_> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/hg_connect_stdio.rs:126:21 | 126 | fn push_command(&mut self, mut input: File, command: &str, args: HgArgs) -> UnbundleResponse { | ^^^^^^^^^ the lifetime is elided here ^^^^^^^^^^^^^^^^ the same lifetime is hidden here | = help: the same lifetime is referred to in inconsistent ways, making the signature confusing help: use `'_` for type paths | 126 | fn push_command(&mut self, mut input: File, command: &str, args: HgArgs) -> UnbundleResponse<'_> { | ++++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/hg_data.rs:89:32 | 89 | fn normalize_hg_author(author: &[u8]) -> (Cow<[u8]>, Cow<[u8]>) { | ^^^^^ ^^^^^^^^^ ^^^^^^^^^ the same lifetime is hidden here | | | | | 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 | 89 | fn normalize_hg_author(author: &[u8]) -> (Cow<'_, [u8]>, Cow<'_, [u8]>) { | +++ +++ warning: hiding a lifetime that's elided elsewhere is confusing --> src/hg_data.rs:90:19 | 90 | fn cleanup(s: &BStr) -> Cow<[u8]> { | ^^^^^ ^^^^^^^^^ 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 | 90 | fn cleanup(s: &BStr) -> Cow<'_, [u8]> { | +++ warning: `git-cinnabar` (bin "git-cinnabar") generated 34 warnings (run `cargo fix --bin "git-cinnabar" -p git-cinnabar` to apply 34 suggestions) Finished `release` profile [optimized] target(s) in 6m 53s *** Please use pkgtools/verifypc to sanity check dependencies.