Codebase list rust-stfu8 / 86d55e8
debcargo: update to 2.4.1 and force everyone to use it Ximin Luo 4 years ago
3 changed file(s) with 10 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
0 rust-debcargo (2.4.1-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Package debcargo 2.4.1 from crates.io using debcargo 2.4.1
3 * Closes: #945436, #945499, #945560, #947088.
4
5 -- Ximin Luo <infinity0@debian.org> Fri, 03 Jan 2020 01:19:08 +0000
6
07 rust-debcargo (2.4.0-1) unstable; urgency=medium
18
29 * Package debcargo 2.4.0 from crates.io using debcargo 2.4.0
2626
2727 Files: debian/*
2828 Copyright:
29 2018-2019 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
30 2018-2019 Ximin Luo <infinity0@debian.org>
29 2018-2020 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
30 2018-2020 Ximin Luo <infinity0@debian.org>
3131 License: MIT or Apache-2.0
3232
3333 License: Apache-2.0
3434 test -x "$DEBCARGO" || abort 1 "debcargo found but not executable: $DEBCARGO"
3535 dcver=$($DEBCARGO --version | sed -ne 's/debcargo //p')
3636 case $dcver in
37 2.0.*|2.1.*|2.2.[0123456789]|2.2.[0123456789]-*) abort 1 "unsupported debcargo version $dcver. try reinstalling with \`cargo install debcargo --force\`";;
38 2.2.*) true;;
39 2.3.*) true;;
37 2.0.*|2.1.*|2.2.*|2.3.*) abort 1 "unsupported debcargo version $dcver. try reinstalling with \`cargo install debcargo --force\`";;
4038 2.4.*) true;;
4139 *) abort 1 "unsupported debcargo version: $dcver";;
4240 esac