==> Synchronizing chroot copy [/home/leming/armv8/root] -> [leming]...done
==> Making package: ropr 0.2.25-2 (Thu Apr 9 15:23:52 2026)
==> Retrieving sources...
-> Found ropr-0.2.25.tar.gz
==> WARNING: Skipping verification of source file PGP signatures.
==> Validating source files with sha512sums...
ropr-0.2.25.tar.gz ... Passed
==> Validating source files with b2sums...
ropr-0.2.25.tar.gz ... Passed
==> Making package: ropr 0.2.25-2 (Thu Apr 9 21:23:58 2026)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Installing missing dependencies...
:: There are 2 providers available for cargo:
:: Repository extra
1) rust 2) rustup
Enter a number (default=1):
resolving dependencies...
looking for conflicting packages...
Packages (7) compiler-rt-22.1.2-1 libedit-20251016_3.1-1 libgit2-1:1.9.2-3 lld-22.1.3-1 llhttp-9.3.1-1 llvm-libs-22.1.3-1 rust-1:1.94.1-1
Total Installed Size: 439.78 MiB
:: Proceed with installation? [Y/n]
checking keyring...
checking package integrity...
loading package files...
checking for file conflicts...
checking available disk space...
:: Processing package changes...
installing compiler-rt...
installing llhttp...
installing libgit2...
installing libedit...
installing llvm-libs...
installing lld...
installing rust...
Optional dependencies for rust
gdb: rust-gdb script
lldb: rust-lldb script
:: Running post-transaction hooks...
(1/1) Arming ConditionNeedsUpdate...
==> Retrieving sources...
-> Found ropr-0.2.25.tar.gz
==> WARNING: Skipping all source file integrity checks.
==> Extracting sources...
-> Extracting ropr-0.2.25.tar.gz with bsdtar
==> Starting build()...
Updating crates.io index
Downloading crates ...
Downloaded crossbeam-deque v0.8.3
Downloaded syn v2.0.28
Downloaded rustc-hash v1.1.0
Downloaded cfg-if v1.0.0
Downloaded thiserror v1.0.44
Downloaded either v1.9.0
Downloaded crossbeam-channel v0.5.8
Downloaded plain v0.2.3
Downloaded clap_lex v0.5.0
Downloaded quote v1.0.32
Downloaded scroll_derive v0.11.1
Downloaded proc-macro2 v1.0.66
Downloaded num_cpus v1.16.0
Downloaded crossbeam-utils v0.8.16
Downloaded clap v4.3.21
Downloaded clap_builder v4.3.21
Downloaded scopeguard v1.2.0
Downloaded colored v2.0.4
Downloaded utf8parse v0.2.1
Downloaded lazy_static v1.4.0
Downloaded heck v0.4.1
Downloaded scroll v0.11.0
Downloaded strsim v0.10.0
Downloaded unicode-ident v1.0.11
Downloaded rayon-core v1.11.0
Downloaded crossbeam-epoch v0.9.15
Downloaded rustix v0.38.8
Downloaded goblin v0.7.1
Downloaded memchr v2.5.0
Downloaded regex-syntax v0.7.4
Downloaded log v0.4.20
Downloaded rayon v1.7.0
Downloaded once_cell v1.18.0
Downloaded aho-corasick v1.0.3
Downloaded is-terminal v0.4.9
Downloaded regex-automata v0.3.6
Downloaded thiserror-impl v1.0.44
Downloaded memoffset v0.9.0
Downloaded colorchoice v1.0.0
Downloaded regex v1.9.3
Downloaded anstyle-query v1.0.0
Downloaded anstyle v1.0.1
Downloaded autocfg v1.1.0
Downloaded anstyle-parse v0.2.1
Downloaded anstream v0.3.2
Downloaded bitflags v2.4.0
Downloaded clap_derive v4.3.12
Downloaded libc v0.2.147
Downloaded linux-raw-sys v0.4.5
Downloaded iced-x86 v1.20.0
Compiling proc-macro2 v1.0.66
Compiling unicode-ident v1.0.11
Compiling autocfg v1.1.0
Compiling rustix v0.38.8
Compiling crossbeam-utils v0.8.16
Compiling linux-raw-sys v0.4.5
Compiling bitflags v2.4.0
Compiling cfg-if v1.0.0
Compiling memchr v2.5.0
Compiling libc v0.2.147
Compiling utf8parse v0.2.1
Compiling scopeguard v1.2.0
Compiling anstyle-parse v0.2.1
Compiling memoffset v0.9.0
Compiling quote v1.0.32
Compiling crossbeam-epoch v0.9.15
Compiling syn v2.0.28
Compiling colorchoice v1.0.0
Compiling rayon-core v1.11.0
Compiling anstyle-query v1.0.0
Compiling anstyle v1.0.1
Compiling num_cpus v1.16.0
Compiling crossbeam-channel v0.5.8
Compiling strsim v0.10.0
Compiling is-terminal v0.4.9
Compiling anstream v0.3.2
Compiling aho-corasick v1.0.3
Compiling crossbeam-deque v0.8.3
Compiling regex-syntax v0.7.4
Compiling thiserror v1.0.44
Compiling clap_lex v0.5.0
Compiling heck v0.4.1
Compiling lazy_static v1.4.0
Compiling clap_builder v4.3.21
Compiling plain v0.2.3
Compiling once_cell v1.18.0
Compiling either v1.9.0
Compiling log v0.4.20
Compiling colored v2.0.4
Compiling iced-x86 v1.20.0
Compiling rustc-hash v1.1.0
Compiling regex-automata v0.3.6
Compiling rayon v1.7.0
Compiling scroll_derive v0.11.1
Compiling thiserror-impl v1.0.44
Compiling scroll v0.11.0
Compiling clap_derive v4.3.12
Compiling goblin v0.7.1
Compiling regex v1.9.3
Compiling clap v4.3.21
Compiling ropr v0.2.25 (/build/ropr/src/ropr-0.2.25)
warning: hiding a lifetime that's elided elsewhere is confusing
--> src/binary.rs:29:18
|
29 | pub fn sections(&self, raw: Option<bool>) -> Result<Vec<Section>> {
| ^^^^^ 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
|
29 | pub fn sections(&self, raw: Option<bool>) -> Result<Vec<Section<'_>>> {
| ++++
warning: hiding a lifetime that's elided elsewhere is confusing
--> src/disassembler.rs:84:3
|
84 | &self,
| ^^^^^ the lifetime is elided here
...
89 | ) -> GadgetIterator {
| ^^^^^^^^^^^^^^ 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
|
89 | ) -> GadgetIterator<'_> {
| ++++
warning: `ropr` (lib) generated 2 warnings (run `cargo fix --lib -p ropr` to apply 2 suggestions)
Finished `release` profile [optimized] target(s) in 48.90s
==> Entering fakeroot environment...
==> Starting package()...
==> Tidying install...
-> Removing libtool files...
-> Removing static library files...
-> Purging unwanted files...
-> Stripping unneeded symbols from binaries and libraries...
-> Compressing man and info pages...
==> Checking for packaging issues...
==> Creating package "ropr"...
-> Generating .PKGINFO file...
-> Generating .BUILDINFO file...
-> Generating .MTREE file...
-> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: ropr 0.2.25-2 (Thu Apr 9 21:25:00 2026)
==> Cleaning up...
[?12l[?25h