Package: src:hx
Version: 25.07.1+~0.3.0+20250717-5
Severity: serious
Tags: ftbfs forky sid

Dear maintainer:

During a rebuild of all packages in unstable, this package failed to build.

Below you will find the last part of the build log (probably the most
relevant part, but not necessarily). If required, the full build log
is available here:

https://people.debian.org/~sanvila/build-logs/202511/

About the archive rebuild: The build was made on virtual machines from AWS,
using sbuild and a reduced chroot with only build-essential packages.

If you cannot reproduce the bug please contact me privately, as I
am willing to provide ssh access to a virtual machine where the bug is
fully reproducible.

If this is really a bug in one of the build-depends, please use
reassign and add an affects on src:hx, so that this is still
visible in the BTS web page for this package.

Thanks.

--------------------------------------------------------------------------------
[...]
 debian/rules clean
dh clean
   dh_auto_clean --buildsystem=rust
        /usr/share/dh-rust/bin/cargo clean
debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] 
['-j2'] 0
debian cargo wrapper: rust_type, gnu_type: x86_64-unknown-linux-gnu, 
x86_64-linux-gnu
debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', 
'/usr/bin/cargo', 'clean', '--verbose', '--verbose'],) {'check': True}
     Removed 0 files
   dh_clean -XCargo.toml.orig
 debian/rules binary
dh binary
   dh_update_autotools_config
   dh_autoreconf
   dh_auto_configure --buildsystem=rust
        /usr/share/dh-rust/bin/cargo prepare-debian debian/cargo_registry

[... snipped ...]

    = help: consider adding `syslog-3` as a feature in `Cargo.toml`
    = note: see 
<https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for 
more information about checking conditional configuration

warning: unexpected `cfg` condition value: `syslog-4`
   --> /<<PKGBUILDDIR>>/debian/cargo_registry/fern-0.6.2/src/log_impl.rs:390:37
    |
390 |             #[cfg(all(not(windows), feature = "syslog-4"))]
    |                                     ^^^^^^^^^^----------
    |                                               |
    |                                               help: there is a expected 
value with a similar name: `"syslog-6"`
    |
    = note: expected values for `feature` are: `chrono`, `colored`, 
`date-based`, `libc`, `meta-logging-in-format`, `syslog-6`, and `syslog6`
    = help: consider adding `syslog-4` as a feature in `Cargo.toml`
    = note: see 
<https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for 
more information about checking conditional configuration

warning: unexpected `cfg` condition value: `syslog-4`
   --> /<<PKGBUILDDIR>>/debian/cargo_registry/fern-0.6.2/src/log_impl.rs:392:37
    |
392 |             #[cfg(all(not(windows), feature = "syslog-4"))]
    |                                     ^^^^^^^^^^----------
    |                                               |
    |                                               help: there is a expected 
value with a similar name: `"syslog-6"`
    |
    = note: expected values for `feature` are: `chrono`, `colored`, 
`date-based`, `libc`, `meta-logging-in-format`, `syslog-6`, and `syslog6`
    = help: consider adding `syslog-4` as a feature in `Cargo.toml`
    = note: see 
<https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for 
more information about checking conditional configuration

warning: unexpected `cfg` condition value: `reopen-03`
   --> /<<PKGBUILDDIR>>/debian/cargo_registry/fern-0.6.2/src/log_impl.rs:402:37
    |
402 |             #[cfg(all(not(windows), feature = "reopen-03"))]
    |                                     ^^^^^^^^^^^^^^^^^^^^^
    |
    = note: expected values for `feature` are: `chrono`, `colored`, 
`date-based`, `libc`, `meta-logging-in-format`, `syslog-6`, and `syslog6`
    = help: consider adding `reopen-03` as a feature in `Cargo.toml`
    = note: see 
<https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for 
more information about checking conditional configuration

warning: unexpected `cfg` condition value: `reopen-1`
   --> /<<PKGBUILDDIR>>/debian/cargo_registry/fern-0.6.2/src/log_impl.rs:404:37
    |
404 |             #[cfg(all(not(windows), feature = "reopen-1"))]
    |                                     ^^^^^^^^^^^^^^^^^^^^
    |
    = note: expected values for `feature` are: `chrono`, `colored`, 
`date-based`, `libc`, `meta-logging-in-format`, `syslog-6`, and `syslog6`
    = help: consider adding `reopen-1` as a feature in `Cargo.toml`
    = note: see 
<https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for 
more information about checking conditional configuration

warning: unexpected `cfg` condition value: `syslog-4`
   --> /<<PKGBUILDDIR>>/debian/cargo_registry/fern-0.6.2/src/log_impl.rs:859:37
    |
859 |             #[cfg(all(not(windows), feature = "syslog-4"))]
    |                                     ^^^^^^^^^^----------
    |                                               |
    |                                               help: there is a expected 
value with a similar name: `"syslog-6"`
    |
    = note: expected values for `feature` are: `chrono`, `colored`, 
`date-based`, `libc`, `meta-logging-in-format`, `syslog-6`, and `syslog6`
    = help: consider adding `syslog-4` as a feature in `Cargo.toml`
    = note: see 
<https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for 
more information about checking conditional configuration

       Fresh content_inspector v0.2.4
warning: `fern` (lib) generated 69 warnings
warning: hiding a lifetime that's elided elsewhere is confusing
   --> helix-term/src/commands/lsp.rs:103:40
    |
103 | fn location_to_file_location(location: &Location) -> Option<FileLocation> 
{
    |                                        ^^^^^^^^^            ------------ 
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
    |
103 | fn location_to_file_location(location: &Location) -> 
Option<FileLocation<'_>> {
    |                                                                         
++++

warning: hiding a lifetime that's elided elsewhere is confusing
   --> helix-term/src/commands/lsp.rs:585:15
    |
585 |     fn format(&self, _data: &Self::Data) -> Row {
    |               ^^^^^                         --- 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
    |
585 |     fn format(&self, _data: &Self::Data) -> Row<'_> {
    |                                                ++++

warning: hiding a lifetime that's elided elsewhere is confusing
    --> helix-term/src/commands/typed.rs:3738:28
     |
3738 | fn command_line_doc(input: &str) -> Option<Cow<str>> {
     |                            ^^^^            -------- 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
     |
3738 | fn command_line_doc(input: &str) -> Option<Cow<'_, str>> {
     |                                                +++

warning: hiding a lifetime that's elided elsewhere is confusing
  --> helix-term/src/ui/completion.rs:31:15
   |
31 |     fn format(&self, dir_style: &Self::Data) -> menu::Row {
   |               ^^^^^ 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
   |
31 |     fn format(&self, dir_style: &Self::Data) -> menu::Row<'_> {
   |                                                          ++++

warning: hiding a lifetime that's elided elsewhere is confusing
  --> helix-term/src/ui/menu.rs:16:15
   |
16 |     fn format(&self, data: &Self::Data) -> Row;
   |               ^^^^^                        --- 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
   |
16 |     fn format(&self, data: &Self::Data) -> Row<'_>;
   |                                               ++++

   Compiling indoc v2.0.6
warning: `helix-term` (lib) generated 5 warnings
     Running `CARGO=/usr/bin/cargo CARGO_CRATE_NAME=indoc CA 
[too-long-redacted] rn proc_macro --cap-lints warn`
warning: function `unindent` is never used
 --> /<<PKGBUILDDIR>>/debian/cargo_registry/indoc-2.0.6/src/unindent.rs:3:8
  |
3 | pub fn unindent(s: &str) -> String {
  |        ^^^^^^^^
  |
  = note: `#[warn(dead_code)]` on by default

warning: function `unindent_bytes` is never used
  --> /<<PKGBUILDDIR>>/debian/cargo_registry/indoc-2.0.6/src/unindent.rs:10:8
   |
10 | pub fn unindent_bytes(s: &[u8]) -> Vec<u8> {
   |        ^^^^^^^^^^^^^^

warning: trait `Unindent` is never used
  --> /<<PKGBUILDDIR>>/debian/cargo_registry/indoc-2.0.6/src/unindent.rs:53:11
   |
53 | pub trait Unindent {
   |           ^^^^^^^^

warning: hiding a lifetime that's elided elsewhere is confusing
   --> /<<PKGBUILDDIR>>/debian/cargo_registry/indoc-2.0.6/src/unindent.rs:103:14
    |
103 |     fn lines(&self) -> Split<u8, fn(&u8) -> bool>;
    |              ^^^^^     -------------------------- 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
    |
103 |     fn lines(&self) -> Split<'_, u8, fn(&u8) -> bool>;
    |                              +++

warning: hiding a lifetime that's elided elsewhere is confusing
   --> /<<PKGBUILDDIR>>/debian/cargo_registry/indoc-2.0.6/src/unindent.rs:107:14
    |
107 |     fn lines(&self) -> Split<u8, fn(&u8) -> bool> {
    |              ^^^^^     -------------------------- 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
    |
107 |     fn lines(&self) -> Split<'_, u8, fn(&u8) -> bool> {
    |                              +++

warning: `indoc` (lib) generated 5 warnings
   Compiling helix-term v25.7.1 (/<<PKGBUILDDIR>>/helix-term)
     Running `CARGO=/usr/bin/cargo CARGO_CRATE_NAME=helix_te 
[too-long-redacted] bindings-e7c886594df9da67/out'`
     Running `CARGO=/usr/bin/cargo CARGO_BIN_NAME=hx CARGO_C 
[too-long-redacted] bindings-e7c886594df9da67/out'`
     Running `CARGO=/usr/bin/cargo CARGO_BIN_EXE_hx='/<<PKGB 
[too-long-redacted] bindings-e7c886594df9da67/out'`
warning: `helix-term` (lib test) generated 5 warnings (5 duplicates)
    Finished `release` profile [optimized] target(s) in 4m 01s
     Running `CARGO=/usr/bin/cargo CARGO_MANIFEST_DIR='/<<PK 
[too-long-redacted] ps/helix_term-8783e69935ebf59d`

running 11 tests
test config::tests::keys_resolve_to_correct_defaults ... ok
test keymap::tests::aliased_modes_are_same_in_default_keymap ... ok
test keymap::tests::check_duplicate_keys_in_default_keymap ... ok
test config::tests::parsing_keymaps_config_file ... ok
test keymap::tests::escaped_keymap ... ok
test keymap::tests::duplicate_keys_should_panic - should panic ... ok
test keymap::tests::merge_partial_keys ... ok
test keymap::tests::reverse_map ... ok
test keymap::tests::order_should_be_set ... ok
test ui::picker::query::test::active_column_test ... ok
test ui::picker::query::test::parse_query_test ... ok

test result: ok. 11 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; 
finished in 0.00s

     Running `CARGO=/usr/bin/cargo CARGO_MANIFEST_DIR='/<<PK 
[too-long-redacted] lease/deps/hx-f7090c6efdd5d042`

running 0 tests

test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; 
finished in 0.00s

     Running `CARGO=/usr/bin/cargo CARGO_MANIFEST_DIR='/<<PK 
[too-long-redacted] s/integration-09d66d30b1de8ec3`

running 0 tests

test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; 
finished in 0.00s

   Doc-tests helix_term
     Running `CARGO=/usr/bin/cargo CARGO_CRATE_NAME=helix_te 
[too-long-redacted] lines"))' --error-format human`

running 2 tests
test helix-term/src/compositor.rs - compositor::AnyComponent::as_boxed_any 
(line 240) ... FAILED
test helix-term/src/keymap/macros.rs - keymap::macros::keymap (line 67) ... 
FAILED

failures:

---- helix-term/src/compositor.rs - compositor::AnyComponent::as_boxed_any 
(line 240) stdout ----
error: rustc interrupted by SIGSEGV, printing backtrace

/lib/x86_64-linux-gnu/librustc_driver-1986f22fdc122ac9.so(+0x960ba5) 
[0x7fbf2cd60ba5]
/lib/x86_64-linux-gnu/libc.so.6(+0x3fdf0) [0x7fbf2c249df0]
/lib/x86_64-linux-gnu/libLLVM.so.19.1(+0x5034b34) [0x7fbf29634b34]
/lib/x86_64-linux-gnu/libLLVM.so.19.1(_ZN4llvm15InternalizePass16maybeInternalizeERNS_11GlobalValueERNS_8DenseMapIPKNS_6ComdatENS0_10ComdatInfoENS_12DenseMapInfoIS6_vEENS_6detail12DenseMapPairIS6_S7_EEEE+0xe8)
 [0x7fbf29670b58]
/lib/x86_64-linux-gnu/libLLVM.so.19.1(_ZN4llvm15InternalizePass17internalizeModuleERNS_6ModuleE+0x427)
 [0x7fbf29671277]
/lib/x86_64-linux-gnu/libLLVM.so.19.1(_ZN4llvm24thinLTOInternalizeModuleERNS_6ModuleERKNS_8DenseMapImPNS_18GlobalValueSummaryENS_12DenseMapInfoImvEENS_6detail12DenseMapPairImS4_EEEE+0x64)
 [0x7fbf2962df04]
/lib/x86_64-linux-gnu/librustc_driver-1986f22fdc122ac9.so(+0xe9f32f) 
[0x7fbf2d29f32f]
/lib/x86_64-linux-gnu/librustc_driver-1986f22fdc122ac9.so(+0xd304e2) 
[0x7fbf2d1304e2]
/lib/x86_64-linux-gnu/librustc_driver-1986f22fdc122ac9.so(_RINvNtNtCsb2jCIke6FyW_3std3sys9backtrace28___rust_begin_short_backtraceNCINvXs0_CsdQj35e8cIyp_18rustc_codegen_llvmNtB1g_18LlvmCodegenBackendNtNtNtCs6DUxrspkrvl_17rustc_codegen_ssa6traits7backend19ExtraBackendMethods18spawn_named_threadNCINvNtNtB2k_4back5write10spawn_workB1O_E0uE0uEB1g_+0x727)
 [0x7fbf2d278247]
/lib/x86_64-linux-gnu/librustc_driver-1986f22fdc122ac9.so(+0xe7e956) 
[0x7fbf2d27e956]
/lib/x86_64-linux-gnu/librustc_driver-1986f22fdc122ac9.so(+0x426b7d7) 
[0x7fbf3066b7d7]
/lib/x86_64-linux-gnu/libc.so.6(+0x92b7b) [0x7fbf2c29cb7b]
/lib/x86_64-linux-gnu/libc.so.6(+0x1107b8) [0x7fbf2c31a7b8]

note: we would appreciate a report at https://github.com/rust-lang/rust
help: you can increase rustc's stack size by setting RUST_MIN_STACK=16777216
Couldn't compile the test.
---- helix-term/src/keymap/macros.rs - keymap::macros::keymap (line 67) stdout 
----
error: rustc interrupted by SIGSEGV, printing backtrace

/lib/x86_64-linux-gnu/librustc_driver-1986f22fdc122ac9.so(+0x960ba5) 
[0x7f81dc960ba5]
/lib/x86_64-linux-gnu/libc.so.6(+0x3fdf0) [0x7f81dbe49df0]
/lib/x86_64-linux-gnu/libLLVM.so.19.1(+0x5034b34) [0x7f81d9234b34]
/lib/x86_64-linux-gnu/libLLVM.so.19.1(_ZN4llvm15InternalizePass16maybeInternalizeERNS_11GlobalValueERNS_8DenseMapIPKNS_6ComdatENS0_10ComdatInfoENS_12DenseMapInfoIS6_vEENS_6detail12DenseMapPairIS6_S7_EEEE+0xe8)
 [0x7f81d9270b58]
/lib/x86_64-linux-gnu/libLLVM.so.19.1(_ZN4llvm15InternalizePass17internalizeModuleERNS_6ModuleE+0x427)
 [0x7f81d9271277]
/lib/x86_64-linux-gnu/libLLVM.so.19.1(_ZN4llvm24thinLTOInternalizeModuleERNS_6ModuleERKNS_8DenseMapImPNS_18GlobalValueSummaryENS_12DenseMapInfoImvEENS_6detail12DenseMapPairImS4_EEEE+0x64)
 [0x7f81d922df04]
/lib/x86_64-linux-gnu/librustc_driver-1986f22fdc122ac9.so(+0xe9f32f) 
[0x7f81dce9f32f]
/lib/x86_64-linux-gnu/librustc_driver-1986f22fdc122ac9.so(+0xd304e2) 
[0x7f81dcd304e2]
/lib/x86_64-linux-gnu/librustc_driver-1986f22fdc122ac9.so(_RINvNtNtCsb2jCIke6FyW_3std3sys9backtrace28___rust_begin_short_backtraceNCINvXs0_CsdQj35e8cIyp_18rustc_codegen_llvmNtB1g_18LlvmCodegenBackendNtNtNtCs6DUxrspkrvl_17rustc_codegen_ssa6traits7backend19ExtraBackendMethods18spawn_named_threadNCINvNtNtB2k_4back5write10spawn_workB1O_E0uE0uEB1g_+0x727)
 [0x7f81dce78247]
/lib/x86_64-linux-gnu/librustc_driver-1986f22fdc122ac9.so(+0xe7e956) 
[0x7f81dce7e956]
/lib/x86_64-linux-gnu/librustc_driver-1986f22fdc122ac9.so(+0x426b7d7) 
[0x7f81e026b7d7]
/lib/x86_64-linux-gnu/libc.so.6(+0x92b7b) [0x7f81dbe9cb7b]
/lib/x86_64-linux-gnu/libc.so.6(+0x1107b8) [0x7f81dbf1a7b8]

note: we would appreciate a report at https://github.com/rust-lang/rust
help: you can increase rustc's stack size by setting RUST_MIN_STACK=16777216
Couldn't compile the test.

failures:
    helix-term/src/compositor.rs - compositor::AnyComponent::as_boxed_any (line 
240)
    helix-term/src/keymap/macros.rs - keymap::macros::keymap (line 67)

test result: FAILED. 0 passed; 2 failed; 0 ignored; 0 measured; 0 filtered out; 
finished in 0.65s

error: doctest failed, to rerun pass `--doc`
dh_auto_test: error: /usr/share/dh-rust/bin/cargo test returned exit code 101
make: *** [debian/rules:26: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--------------------------------------------------------------------------------

Reply via email to