Your message dated Thu, 19 Sep 2024 10:56:06 +0000
with message-id <e1sreps-00cily...@fasolo.debian.org>
and subject line Bug#1081713: fixed in rust-numbat-cli 1.11.0-1
has caused the Debian Bug report #1081713,
regarding rust-numbat-cli: FTBFS: error[E0599]: no method named `iter` found
for opaque type `impl Iterator<Item = std::string::String> + '_` in the current
scope
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)
--
1081713: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1081713
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: rust-numbat-cli
Version: 1.9.0-2
Severity: serious
Tags: ftbfs
Justification: fails to build from source (but built successfully in the past)
X-Debbugs-Cc: sramac...@debian.org
https://buildd.debian.org/status/fetch.php?pkg=rust-numbat-cli&arch=amd64&ver=1.9.0-2%2Bb2&stamp=1726261583&raw=0
warning: `nix` (lib) generated 4 warnings
warning: `rustyline` (lib) generated 3 warnings
Compiling numbat-cli v1.9.0 (/<<PKGBUILDDIR>>)
Running `CARGO=/usr/bin/cargo CARGO_BIN_NAME=numbat
CARGO_CRATE_NAME=numbat CARGO_MANIFEST_DIR=/<<PKGBUILDDIR>>
CARGO_PKG_AUTHORS='David Peter <m...@david-peter.de>' CARGO_PKG_DESCRIPTION='A
statically typed programming language for scientific computations with first
class support for physical dimensions and units.'
CARGO_PKG_HOMEPAGE='https://numbat.dev/' CARGO_PKG_LICENSE='MIT OR Apache-2.0'
CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=numbat-cli CARGO_PKG_README=README.md
CARGO_PKG_REPOSITORY='https://github.com/sharkdp/numbat'
CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=1.9.0 CARGO_PKG_VERSION_MAJOR=1
CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE=''
CARGO_PRIMARY_PACKAGE=1 CARGO_RUSTC_CURRENT_DIR=/<<PKGBUILDDIR>>
LD_LIBRARY_PATH=/<<PKGBUILDDIR>>/target/debug/deps rustc --crate-name numbat
--edition=2021 src/main.rs --error-format=json
--json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin
--emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg
'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=2bb9836c94fb8066
-C extra-filename=-2bb9836c94fb8066 --out-dir
/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps --target
x86_64-unknown-linux-gnu -C
incremental=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/incremental
-L dependency=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps -L
dependency=/<<PKGBUILDDIR>>/target/debug/deps --extern
anyhow=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libanyhow-d77910c87ecd4bb3.rlib
--extern
clap=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libclap-ae7aea5245196479.rlib
--extern
colored=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libcolored-4008326923e6a1bd.rlib
--extern
dirs=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libdirs-1cba88ca4d3bb110.rlib
--extern
itertools=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libitertools-3eb0f1de62b22115.rlib
--extern
numbat=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libnumbat-1cb793a8784ca207.rlib
--extern
rustyline=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/librustyline-b270178b1ae625e5.rlib
--extern
serde=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libserde-6a08675ea7dcf65e.rlib
--extern
terminal_size=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libterminal_size-514eb1ba09deb860.rlib
--extern
toml=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libtoml-c0b99a2353739af0.rlib
-C debuginfo=2 -C strip=none --cap-lints warn -C linker=x86_64-linux-gnu-gcc
-C link-arg=-Wl,-z,relro --remap-path-prefix
/<<PKGBUILDDIR>>=/usr/share/cargo/registry/numbat-cli-1.9.0 --remap-path-prefix
/<<PKGBUILDDIR>>/debian/cargo_registry=/usr/share/cargo/registry -L
native=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/build/ring-4444bb85a3b66fc9/out`
error[E0599]: no method named `iter` found for opaque type `impl Iterator<Item
= std::string::String> + '_` in the current scope
--> src/highlighter.rs:40:33
|
40 | if ctx.variable_names().iter().any(|n| n == candidate)
| ^^^^
|
help: there is a method `filter` with a similar name, but with different
arguments
--> /usr/src/rustc-1.80.1/library/core/src/iter/traits/iterator.rs:884:5
error[E0599]: no method named `iter` found for opaque type `impl Iterator<Item
= std::string::String> + '_` in the current scope
--> src/highlighter.rs:43:18
|
41 | || ctx
| ________________-
42 | | .function_names()
43 | | .iter()
| |_________________-^^^^
|
help: there is a method `filter` with a similar name, but with different
arguments
--> /usr/src/rustc-1.80.1/library/core/src/iter/traits/iterator.rs:884:5
error[E0061]: this method takes 4 arguments but 3 arguments were supplied
--> src/main.rs:472:56
|
472 | let result_markup = interpreter_result.to_markup(
| ________________________________________________________^^^^^^^^^-
473 | | statements.last(),
474 | | ®istry,
475 | | interactive || pretty_print,
476 | | );
| |_________________- an argument of type `bool` is missing
|
note: method defined here
--> /usr/share/cargo/registry/numbat-1.11.0/src/interpreter.rs:60:12
|
60 | pub fn to_markup(
| ^^^^^^^^^
help: provide the argument
|
472 | let result_markup =
interpreter_result.to_markup(statements.last(), ®istry, interactive ||
pretty_print, /* bool */);
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Some errors have detailed explanations: E0061, E0599.
For more information about an error, try `rustc --explain E0061`.
error: could not compile `numbat-cli` (bin "numbat") due to 3 previous errors
Caused by:
process didn't exit successfully: `CARGO=/usr/bin/cargo CARGO_BIN_NAME=numbat
CARGO_CRATE_NAME=numbat CARGO_MANIFEST_DIR=/<<PKGBUILDDIR>>
CARGO_PKG_AUTHORS='David Peter <m...@david-peter.de>' CARGO_PKG_DESCRIPTION='A
statically typed programming language for scientific computations with first
class support for physical dimensions and units.'
CARGO_PKG_HOMEPAGE='https://numbat.dev/' CARGO_PKG_LICENSE='MIT OR Apache-2.0'
CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=numbat-cli CARGO_PKG_README=README.md
CARGO_PKG_REPOSITORY='https://github.com/sharkdp/numbat'
CARGO_PKG_RUST_VERSION=1.70 CARGO_PKG_VERSION=1.9.0 CARGO_PKG_VERSION_MAJOR=1
CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE=''
CARGO_PRIMARY_PACKAGE=1 CARGO_RUSTC_CURRENT_DIR=/<<PKGBUILDDIR>>
LD_LIBRARY_PATH=/<<PKGBUILDDIR>>/target/debug/deps rustc --crate-name numbat
--edition=2021 src/main.rs --error-format=json
--json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin
--emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg
'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=2bb9836c94fb8066
-C extra-filename=-2bb9836c94fb8066 --out-dir
/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps --target
x86_64-unknown-linux-gnu -C
incremental=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/incremental
-L dependency=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps -L
dependency=/<<PKGBUILDDIR>>/target/debug/deps --extern
anyhow=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libanyhow-d77910c87ecd4bb3.rlib
--extern
clap=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libclap-ae7aea5245196479.rlib
--extern
colored=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libcolored-4008326923e6a1bd.rlib
--extern
dirs=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libdirs-1cba88ca4d3bb110.rlib
--extern
itertools=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libitertools-3eb0f1de62b22115.rlib
--extern
numbat=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libnumbat-1cb793a8784ca207.rlib
--extern
rustyline=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/librustyline-b270178b1ae625e5.rlib
--extern
serde=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libserde-6a08675ea7dcf65e.rlib
--extern
terminal_size=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libterminal_size-514eb1ba09deb860.rlib
--extern
toml=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libtoml-c0b99a2353739af0.rlib
-C debuginfo=2 -C strip=none --cap-lints warn -C linker=x86_64-linux-gnu-gcc
-C link-arg=-Wl,-z,relro --remap-path-prefix
/<<PKGBUILDDIR>>=/usr/share/cargo/registry/numbat-cli-1.9.0 --remap-path-prefix
/<<PKGBUILDDIR>>/debian/cargo_registry=/usr/share/cargo/registry -L
native=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/build/ring-4444bb85a3b66fc9/out`
(exit status: 1)
dh_auto_test: error: /usr/share/cargo/bin/cargo build returned exit code 101
Cheers
--
Sebastian Ramacher
--- End Message ---
--- Begin Message ---
Source: rust-numbat-cli
Source-Version: 1.11.0-1
Done: Peter Michael Green <plugw...@debian.org>
We believe that the bug you reported is fixed in the latest version of
rust-numbat-cli, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to 1081...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Peter Michael Green <plugw...@debian.org> (supplier of updated rust-numbat-cli
package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Thu, 19 Sep 2024 10:17:26 +0000
Source: rust-numbat-cli
Architecture: source
Version: 1.11.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers
<pkg-rust-maintain...@alioth-lists.debian.net>
Changed-By: Peter Michael Green <plugw...@debian.org>
Closes: 1081713
Changes:
rust-numbat-cli (1.11.0-1) unstable; urgency=medium
.
* Team upload.
* Package numbat-cli 1.11.0 from crates.io using debcargo 2.6.1 (Closes:
#1081713)
+ Version matches the version of numbat we currently have, newer
numbat needs new dependencies.
* Stop patching terminal_size and toml dependencies, what upstream wants
now matches what Debian has.
Checksums-Sha1:
8007094b69bc3b28629ce16a6895ad2656586dc1 2770 rust-numbat-cli_1.11.0-1.dsc
5f05691733c7c8d06270e6f41ada746ebf251283 23748
rust-numbat-cli_1.11.0.orig.tar.gz
5e0c5061c85acbbeec83b705a027c30985feb670 2960
rust-numbat-cli_1.11.0-1.debian.tar.xz
072c1c11e1cd704455e3d9c25a163c6942608312 13895
rust-numbat-cli_1.11.0-1_source.buildinfo
Checksums-Sha256:
6a7a5e15a3cb9f7dbcaf69f25a623a7d4cb6f388a3496e868fb1e4eeaf4aab41 2770
rust-numbat-cli_1.11.0-1.dsc
3449bb7bc88a259baeec08225e01dcc77832cd0c62f58ff8d9435eb2e8b52acc 23748
rust-numbat-cli_1.11.0.orig.tar.gz
90787a2992c0e4bceb204aacfb09910ace9e7cd5bb54a59656f5b6bc964fa381 2960
rust-numbat-cli_1.11.0-1.debian.tar.xz
0c9591b94ae1807ab21a2a7b9c2afcd810afc754610e621069614a299b295296 13895
rust-numbat-cli_1.11.0-1_source.buildinfo
Files:
7913878990f0f571fd2780aef3180279 2770 math optional
rust-numbat-cli_1.11.0-1.dsc
9297dbabbd36176e42025c3717c1eb1c 23748 math optional
rust-numbat-cli_1.11.0.orig.tar.gz
7b64bd9a35e8f018e72e694ebd76c3f2 2960 math optional
rust-numbat-cli_1.11.0-1.debian.tar.xz
145a1f7f9a34de581cab1be1e3bf8fd1 13895 math optional
rust-numbat-cli_1.11.0-1_source.buildinfo
-----BEGIN PGP SIGNATURE-----
iQJIBAEBCAAyFiEEU0DQATYMplbjSX63DEjqKnqP/XsFAmbr+uMUHHBsdWd3YXNo
QGRlYmlhbi5vcmcACgkQDEjqKnqP/XuVXA//eaOAsPk6J12d3ztTxyTyW5JZY3LE
Msxlbd2LyirQ4NcTbvx2vvhC5r9v7gh+SwnxCGyip12MUzdWb9at+A8OrxlEWfmq
FR/3AO9+WMI+o5DMS0dBgnbgvQ9TIhIvsmVpM+qhU68nDpdffUAoe88QWLjG7JNB
8uS3PJmdU/ddhunFpbu++GJfSQ9d+21zRGUyFD8FpBHSHU0ykA0lRUzLQ/QDm+pY
pbmhEsVazU/mXxt1yH3j6++MAQiKntCn+nSGQ3NXdFtCFzaikBoYmrQx6e8gLYqW
owp/DACF8D78UbqcGE+U8l/KKnf3eZXrxstZn23xmfKrlwx3RZ0FSH/0IoMahbVi
YOo5WHbH5z99a9zL/BIF3E2AdgrPcCGGVyRAA/BNg8tzOl/7cbOVCkE+LchXcrcT
/OffJyCNmFP4gm8WbBntrmzLx2j0DRmWbXbizWeu4nsdSN1CDhKQ7+88nmaCjuJl
/XPQTsKOT8UoBHWKslJvb66sbend2pCKsftJiJl2/6hJ+CAgVrQGCoygTwAY7DAS
0k/GTSJ7T/JcEDlFPJWHjTMFS7BINsBhuRqumxHMrTY/8VMN+k1k8NyhBFsyuMH/
R8908nQNvXztvpuq01MInvTnCZMEVHP1LGiXzCAWarDOnirJJU66S275UMG9oz1W
hBCNav37Wl0TmU4=
=2Dkj
-----END PGP SIGNATURE-----
pgpPhOSE5meYM.pgp
Description: PGP signature
--- End Message ---