Spec URL: https://download.copr.fedorainfracloud.org/results/solomoncyj/rust/fedora-40-x86_64/08125627-rust-ansi-to-tui/rust-ansi-to-tui.spec SRPM URL: https://download.copr.fedorainfracloud.org/results/solomoncyj/rust/fedora-40-x86_64/08125627-rust-ansi-to-tui/rust-ansi-to-tui-6.0.0-1.fc40.src.rpm Description: Library to convert ansi color coded text into ratatui::text::Text type from ratatui library Fedora Account System Username: solomoncyj Reproducible: Always
The link is 404ed, but I am giving some preliminary comments based on your current GH repo status. A few things to change: - Don't change the description inside of `Cargo.toml` - The rpm description should be fine as it was - The summary seems grammatically incomplete. Maybe add a `into ratatui` or `for ratatui` - `criterion` is something you will have to constantly patch. Try using something like: ``` [requires] build = [ "tomcli", ] [scripts.prep] post = [ "# Do not depend on criterion; it is needed only for benchmarks.", "tomcli set Cargo.toml del dev-dependencies.criterion", ] ``` - There are a few unnecessary files being included in the `devel` package which would be nice to have removed: `flake.*` You can just add an additional `rm` line in the `scripts.prep.post`