1d1cf83c04
Changes: c553e8e881...87cbf0a547
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
# Created by: Jean-Sébastien Pédron <dumbbell@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTVERSION= 1.40.0.${NIGHTLY_DATE:C,-,,g}
|
|
# Always set PORTREVISION explicitly as otherwise it is inherited from lang/rust
|
|
PORTREVISION= 0
|
|
PKGNAMESUFFIX= -nightly
|
|
DISTNAME= rustc-nightly-src
|
|
|
|
MASTERDIR= ${.CURDIR}/../rust
|
|
PATCHDIR= ${.CURDIR}/files
|
|
DISTINFO_FILE= ${.CURDIR}/distinfo
|
|
|
|
CONFLICTS_INSTALL= rust
|
|
|
|
# Which source to pull:
|
|
# https://static.rust-lang.org/dist/${NIGHTLY_DATE}/rustc-nightly-src.tar.gz
|
|
# https://static.rust-lang.org/dist/channel-rust-nightly.toml
|
|
NIGHTLY_DATE= 2019-11-02
|
|
NIGHTLY_SUBDIR= ${NIGHTLY_DATE}/
|
|
|
|
# See WRKSRC/src/stage0.txt for this date
|
|
BOOTSTRAPS_DATE= 2019-09-25
|
|
RUST_BOOTSTRAP_VERSION= beta
|
|
CARGO_BOOTSTRAP_VERSION= beta
|
|
|
|
CARGO_VENDOR_DIR= ${WRKSRC}/vendor
|
|
|
|
# Other bootstraps aren't provided by upstream yet
|
|
ONLY_FOR_ARCHS= amd64 i386
|
|
|
|
post-configure: nightly-post-configure
|
|
nightly-post-configure:
|
|
# Don't abort if optional tools fail to build
|
|
# https://github.com/rust-lang/rust/commit/53254a888b42
|
|
@${ECHO_CMD} 'missing-tools = true' >>${WRKSRC}/config.toml
|
|
|
|
.include "${MASTERDIR}/Makefile"
|