mirror of
https://github.com/void-linux/void-packages.git
synced 2025-07-28 08:22:56 +02:00
cargo-bootstrap: update to 1.61.0
This commit is contained in:
parent
68e0be8ac9
commit
a2bbf9e10f
1 changed files with 13 additions and 16 deletions
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'cargo-bootstrap'
|
# Template file for 'cargo-bootstrap'
|
||||||
pkgname=cargo-bootstrap
|
pkgname=cargo-bootstrap
|
||||||
version=0.58.0
|
version=1.61.0
|
||||||
revision=1
|
revision=1
|
||||||
short_desc="Bootstrap binaries of Rust package manager"
|
short_desc="Bootstrap binaries of Rust package manager"
|
||||||
maintainer="q66 <daniel@octaforge.org>"
|
maintainer="q66 <daniel@octaforge.org>"
|
||||||
|
@ -11,45 +11,42 @@ lib32disabled=yes
|
||||||
nostrip=yes
|
nostrip=yes
|
||||||
|
|
||||||
_bootstrap_url="https://static.rust-lang.org/dist"
|
_bootstrap_url="https://static.rust-lang.org/dist"
|
||||||
_bootver=1.57.0
|
|
||||||
|
|
||||||
# we don't use upstream cargo binaries for ppc32, as they are busted (probably
|
# we don't use upstream cargo binaries for ppc32, as they are busted (probably
|
||||||
# a dependency is wrong, which results in failed signature verification when
|
# a dependency is wrong, which results in failed signature verification when
|
||||||
# updating the crates.io index)
|
# updating the crates.io index)
|
||||||
|
# ppc64 is excluded because of ABI incompatibility
|
||||||
case "$XBPS_TARGET_MACHINE" in
|
case "$XBPS_TARGET_MACHINE" in
|
||||||
x86_64*|i686|ppc64le) ;;
|
x86_64*|i686|ppc64le) ;;
|
||||||
*)
|
*) _bootstrap_url="https://repo-default.voidlinux.org/distfiles" ;;
|
||||||
_bootstrap_url="https://repo-default.voidlinux.org/distfiles"
|
|
||||||
_bootver=${version}
|
|
||||||
;;
|
|
||||||
esac
|
esac
|
||||||
|
|
||||||
wrksrc="cargo-${_bootver}-${RUST_TARGET}"
|
wrksrc="cargo-${version}-${RUST_TARGET}"
|
||||||
distfiles="${_bootstrap_url}/cargo-${_bootver}-${RUST_TARGET}.tar.xz"
|
distfiles="${_bootstrap_url}/cargo-${version}-${RUST_TARGET}.tar.xz"
|
||||||
|
|
||||||
case "$XBPS_TARGET_MACHINE" in
|
case "$XBPS_TARGET_MACHINE" in
|
||||||
i686)
|
i686)
|
||||||
checksum="9898a1fae2647f930fa14b9c160a1d22e67ccc70ac0d2d8f79ef1ffcf8d89af7"
|
checksum="fe258b85ef0644ff08c2095e329399dd4de0e1b2e51f4f4e90cb956d40dc61de"
|
||||||
;;
|
;;
|
||||||
x86_64)
|
x86_64)
|
||||||
checksum="ed2013713ae742895af5df8d91c5430ba9ba3c781e3bc7f3471b220cc06d565d"
|
checksum="9461727d754f865ef2a87479d40bbe4c5176f80963b7c50b7797bc8940d7a0a0"
|
||||||
;;
|
;;
|
||||||
x86_64-musl)
|
x86_64-musl)
|
||||||
checksum="0d8564d0348843d6c08d98990d9eac50b7b7ab790f89d514b4f45079e786d932"
|
checksum="db4b4423c2843b6e27737664cf8085afcba670374110ca24b9c8d341045e748c"
|
||||||
;;
|
;;
|
||||||
ppc64le)
|
ppc64le)
|
||||||
checksum="599cf1b5a8cdbf76d591621bc9222aefa60e2f5fd378ae71c4dcf4514c47122e"
|
checksum="09817011ff1ef4b7006387c7cabb6a059731792a9372533dec7d87e7f014444b"
|
||||||
;;
|
;;
|
||||||
ppc64le-musl)
|
ppc64le-musl)
|
||||||
checksum="99ae7661c62617ac42adacb50cce9ae8d019bcf85e987b98fbc27240bceb1dd9"
|
checksum="39215cba9b1bda63209cac0edbda583e0c822f88a50fdbf33255c8c5386e4868"
|
||||||
;;
|
;;
|
||||||
ppc64)
|
ppc64)
|
||||||
checksum="c64b9cce7a3ceaf5c310fad70be33077f1e6dea1384767fcf744732c0daa7473"
|
checksum="3fa6e033bbbab339e480842627523f95d84119a5dcae56ad4b14e5c6d1536e6b"
|
||||||
;;
|
;;
|
||||||
ppc)
|
ppc)
|
||||||
checksum="e67c2a7d16b3c732a1dcb663d031daf6eaca4b74d1d15196086c53c0c3a5b0a2"
|
checksum="5d6226a5080e429cb6bb8366ff1f71feeccde70f8bf6651779674fe27eb35e7f"
|
||||||
;;
|
;;
|
||||||
*) broken="cargo bootstrap binaries unavailable for ${XBPS_MACHINE}";;
|
*) broken="cargo bootstrap binaries unavailable for ${XBPS_TARGET_MACHINE}";;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
do_install() {
|
do_install() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue