https://bugzilla.redhat.com/show_bug.cgi?id=1628005 Robert-André Mauchin <zebob.m@xxxxxxxxx> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |zebob.m@xxxxxxxxx --- Comment #1 from Robert-André Mauchin <zebob.m@xxxxxxxxx> --- Same issue as before: + /usr/lib/rpm/redhat/brp-mangle-shebangs BUILDSTDERR: *** WARNING: ./usr/share/cargo/registry/criterion-plot-0.2.5/Cargo.toml.orig is executable but has empty or no shebang, removing executable bit BUILDSTDERR: *** WARNING: ./usr/share/cargo/registry/criterion-plot-0.2.5/README.md is executable but has empty or no shebang, removing executable bit BUILDSTDERR: *** WARNING: ./usr/share/cargo/registry/criterion-plot-0.2.5/src/axis.rs is executable but has empty or no shebang, removing executable bit BUILDSTDERR: *** WARNING: ./usr/share/cargo/registry/criterion-plot-0.2.5/src/candlestick.rs is executable but has empty or no shebang, removing executable bit BUILDSTDERR: *** WARNING: ./usr/share/cargo/registry/criterion-plot-0.2.5/src/curve.rs is executable but has empty or no shebang, removing executable bit BUILDSTDERR: *** ERROR: ./usr/share/cargo/registry/criterion-plot-0.2.5/src/data.rs has shebang which doesn't start with '/' ([allow(deprecated)]) BUILDSTDERR: *** WARNING: ./usr/share/cargo/registry/criterion-plot-0.2.5/src/display.rs is executable but has empty or no shebang, removing executable bit BUILDSTDERR: *** WARNING: ./usr/share/cargo/registry/criterion-plot-0.2.5/src/errorbar.rs is executable but has empty or no shebang, removing executable bit BUILDSTDERR: *** WARNING: ./usr/share/cargo/registry/criterion-plot-0.2.5/src/filledcurve.rs is executable but has empty or no shebang, removing executable bit BUILDSTDERR: *** WARNING: ./usr/share/cargo/registry/criterion-plot-0.2.5/src/grid.rs is executable but has empty or no shebang, removing executable bit BUILDSTDERR: *** WARNING: ./usr/share/cargo/registry/criterion-plot-0.2.5/src/key.rs is executable but has empty or no shebang, removing executable bit BUILDSTDERR: *** WARNING: ./usr/share/cargo/registry/criterion-plot-0.2.5/src/lib.rs is executable but has empty or no shebang, removing executable bit BUILDSTDERR: *** WARNING: ./usr/share/cargo/registry/criterion-plot-0.2.5/src/map.rs is executable but has empty or no shebang, removing executable bit BUILDSTDERR: *** WARNING: ./usr/share/cargo/registry/criterion-plot-0.2.5/src/prelude.rs is executable but has empty or no shebang, removing executable bit BUILDSTDERR: *** WARNING: ./usr/share/cargo/registry/criterion-plot-0.2.5/src/proxy.rs is executable but has empty or no shebang, removing executable bit BUILDSTDERR: *** WARNING: ./usr/share/cargo/registry/criterion-plot-0.2.5/src/traits.rs is executable but has empty or no shebang, removing executable bit Erreur de construction de RPM : BUILDSTDERR: erreur : Mauvais statut de sortie pour /var/tmp/rpm-tmp.tJaLtG (%install) BUILDSTDERR: Mauvais statut de sortie pour /var/tmp/rpm-tmp.tJaLtG (%install) Child return code was: 1 It seems the whole crate is marked as executable. You should patch that. find . -type f -exec chmod 0644 "{}" \; find . -type d -exec chmod 0755 "{}" \; Then a test fails: running 5 tests test src/lib.rs - (line 236) ... FAILED test src/lib.rs - (line 14) ... ok test src/lib.rs - (line 167) ... ok test src/lib.rs - (line 314) ... ok test src/lib.rs - (line 81) ... ok failures: ---- src/lib.rs - (line 236) stdout ---- error[E0599]: no method named `arg` found for type `num_complex::Complex<f64>` in the current scope --> src/lib.rs:259:38 | 24 | let phase = xs.iter().map(|&x| tf(x).arg() * 180. / PI); | ^^^ error[E0599]: no method named `norm` found for type `num_complex::Complex<f64>` in the current scope --> src/lib.rs:260:42 | 25 | let magnitude = xs.iter().map(|&x| tf(x).norm()); | ^^^^ thread 'src/lib.rs - (line 236)' panicked at 'couldn't compile the test', librustdoc/test.rs:330:13 note: Run with `RUST_BACKTRACE=1` for a backtrace. failures: src/lib.rs - (line 236) test result: FAILED. 4 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out I believe this is due to your bump of num_complex. It fails in Travis too: https://travis-ci.org/japaric/criterion.rs/builds/427526252 -- You are receiving this mail because: You are on the CC list for the bug. You are always notified about changes to this product and component _______________________________________________ package-review mailing list -- package-review@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to package-review-leave@xxxxxxxxxxxxxxxxxxxxxxx Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/package-review@xxxxxxxxxxxxxxxxxxxxxxx