summaryrefslogtreecommitdiff
path: root/lang/rust/distinfo
AgeCommit message (Collapse)AuthorFilesLines
2017-01-08rust: match newer versions of llvm, too.maya1-1/+2
while I didn't complete the build, it is likely necessary, as pkgsrc llvm is 3.9 and doesn't match this test.
2016-09-13Restore accidentally deleted comment and use .NetBSD suffixryoon1-2/+2
Thank you, jperkin@.
2016-09-12Add NetBSD/amd64 supportryoon1-3/+8
This package must be built with pkgtools/cwrappers with USE_CWRAPPERS=yes.
2016-09-06Import rust 1.11.0 as lang/rust into pkgsrc.jperkin1-0/+37
pkgsrc notes: * The build requires binary bootstraps built by the Rust team. Due to the requirement that only the previous version is supported as a bootstrap compiler, and new versions of Rust are released every 6 weeks, it is unlikely to be practical to build TNF bootstraps. Users should evaluate whether they trust binaries from upstream. * There is currently no SunOS bootstrap provided by the Rust team, so for now a version built by myself is provided by Joyent. * Only Darwin/Linux/SunOS are currently supported. The Rust team do provide NetBSD bootstraps so support should be easy enough to add. Information about Rust from the DESCR: Rust is a systems programming language focused on three goals: safety, speed, and concurrency. It maintains these goals without having a garbage collector, making it a useful language for a number of use cases other languages aren't good at: embedding in other languages, programs with specific space and time requirements, and writing low-level code, like device drivers and operating systems. It improves on current languages targeting this space by having a number of compile-time safety checks that produce no runtime overhead, while eliminating all data races. Rust also aims to achieve "zero-cost abstractions" even though some of these abstractions feel like those of a high-level language. Even then, Rust still allows precise control like a low-level language would.