diff options
author | Mikael Urankar <mikael@FreeBSD.org> | 2022-05-01 15:40:06 +0000 |
---|---|---|
committer | Mikael Urankar <mikael@FreeBSD.org> | 2022-05-01 16:39:19 +0000 |
commit | e57dfbf32324ca40f17bb6c4a10581e6a06ab00b (patch) | |
tree | 92a22758ee80a6e7de0ce3c6659f87ee2166b069 /Mk | |
parent | 17ad2e0d3c07a5a0b6b6bfe86b12b85bcd15a7f0 (diff) | |
download | ports-e57dfbf32324ca40f17bb6c4a10581e6a06ab00b.tar.gz ports-e57dfbf32324ca40f17bb6c4a10581e6a06ab00b.zip |
lang/rust: Update to 1.60.0
- Switch to using "x.py dist" instead of "x.py build" in the do-build phase as
we are missing the rustc-dev component on nightly
- Revert part of [1] as it causes cross build problem with lang/rust-bootstrap@powerpc
- Mark devel/racer as deprecated: it's hard to maintain due to recurrent build problem
and it's not actively maintained. Upstream advises to use devel/rust-analyzer instead.
[1] https://github.com/rust-lang/rust/commit/07dae5a97b64100f5abd511f1e2d5a6263a54006
Announce: https://blog.rust-lang.org/2022/04/07/Rust-1.60.0.html
ChangeLog: https://github.com/rust-lang/rust/blob/master/RELEASES.md#version-1600-2022-04-07
Reviewed by: tobik
Exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D34823
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/Uses/cargo.mk | 2 | ||||
-rw-r--r-- | Mk/bsd.gecko.mk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Mk/Uses/cargo.mk b/Mk/Uses/cargo.mk index 4d4a0921abfc..39a36af7af9b 100644 --- a/Mk/Uses/cargo.mk +++ b/Mk/Uses/cargo.mk @@ -97,7 +97,7 @@ WRKSRC_crate_${_crate}= ${WRKDIR}/${_wrksrc} CARGO_BUILDDEP?= yes . if ${CARGO_BUILDDEP:tl} == "yes" -BUILD_DEPENDS+= ${RUST_DEFAULT}>=1.59.0:lang/${RUST_DEFAULT} +BUILD_DEPENDS+= ${RUST_DEFAULT}>=1.60.0:lang/${RUST_DEFAULT} . endif # Location of toolchain (default to lang/rust's toolchain) diff --git a/Mk/bsd.gecko.mk b/Mk/bsd.gecko.mk index 4997aa86031a..f73b6fb7eb8f 100644 --- a/Mk/bsd.gecko.mk +++ b/Mk/bsd.gecko.mk @@ -79,7 +79,7 @@ BUNDLE_LIBS= yes BUILD_DEPENDS+= llvm${LLVM_DEFAULT}>0:devel/llvm${LLVM_DEFAULT} \ rust-cbindgen>=0.19.0:devel/rust-cbindgen \ - ${RUST_DEFAULT}>=1.59.0:lang/${RUST_DEFAULT} \ + ${RUST_DEFAULT}>=1.60.0:lang/${RUST_DEFAULT} \ node:www/node LIB_DEPENDS+= libdrm.so:graphics/libdrm RUN_DEPENDS+= ${LOCALBASE}/lib/libpci.so:devel/libpci |