Skip to content

Commit cc60e7a

Browse files
committed
The great renaming
1 parent 96bde2b commit cc60e7a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+881
-1459
lines changed

Cargo.lock

+73-107
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+10-22
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,10 @@
11
[package]
22

3-
name = "rustup"
4-
version = "1.11.0"
5-
authors = [ "Diggory Blake <[email protected]>" ]
3+
name = "elan"
4+
version = "0.1.0"
5+
authors = [ "Sebastian Ullrich <[email protected]>" ]
66
description = "Manage multiple rust installations with ease"
77

8-
documentation = "http://rust-lang-nursery.github.io/rustup.rs/rustup/index.html"
9-
homepage = "https://github.com/rust-lang-nursery/rustup.rs"
10-
repository = "https://github.com/rust-lang-nursery/rustup.rs"
11-
12-
readme = "README.md"
13-
14-
keywords = ["rustup", "multirust", "install", "proxy"]
15-
168
license = "MIT OR Apache-2.0"
179

1810
build = "build.rs"
@@ -31,8 +23,8 @@ no-self-update = []
3123
msi-installed = []
3224

3325
[dependencies]
34-
rustup-dist = { path = "src/rustup-dist" }
35-
rustup-utils = { path = "src/rustup-utils" }
26+
elan-dist = { path = "src/elan-dist" }
27+
elan-utils = { path = "src/elan-utils" }
3628
download = { path = "src/download" }
3729
clap = "2.18.0"
3830
error-chain = "0.11"
@@ -61,19 +53,15 @@ winapi = { version = "0.3", features = ["jobapi", "jobapi2", "processthreadsapi"
6153
winreg = "0.5.0"
6254
gcc = "0.3.50"
6355

64-
[dev-dependencies]
65-
rustup-mock = { path = "src/rustup-mock", version = "1.1.0" }
66-
lazy_static = "1.0.0"
67-
6856
[workspace]
69-
members = ["src/rustup-win-installer"]
57+
members = ["src/elan-win-installer"]
7058

7159
[lib]
72-
name = "rustup"
73-
path = "src/rustup/lib.rs"
60+
name = "elan"
61+
path = "src/elan/lib.rs"
7462
test = false # no unit tests
7563

7664
[[bin]]
77-
name = "rustup-init"
78-
path = "src/rustup-cli/main.rs"
65+
name = "elan-init"
66+
path = "src/elan-cli/main.rs"
7967
test = false # no unit tests

LICENSE-MIT

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
Copyright (c) 2016 The Rust Project Developers
2+
Modifications copyright (c) 2018 Sebastian Ullrich
23

34
Permission is hereby granted, free of charge, to any
45
person obtaining a copy of this software and associated

build.rs

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
use std::env;
2+
use std::error::Error;
3+
use std::fs::File;
4+
use std::io::Write;
5+
use std::path::PathBuf;
6+
use std::process::Command;
7+
8+
struct Ignore;
9+
10+
impl<E> From<E> for Ignore
11+
where E: Error
12+
{
13+
fn from(_: E) -> Ignore {
14+
Ignore
15+
}
16+
}
17+
18+
fn main() {
19+
let out_dir = PathBuf::from(env::var_os("OUT_DIR").unwrap());
20+
21+
File::create(out_dir.join("commit-info.txt"))
22+
.unwrap()
23+
.write_all(commit_info().as_bytes())
24+
.unwrap();
25+
println!("cargo:rerun-if-changed=build.rs");
26+
}
27+
28+
// Try to get hash and date of the last commit on a best effort basis. If anything goes wrong
29+
// (git not installed or if this is not a git repository) just return an empty string.
30+
fn commit_info() -> String {
31+
match (commit_hash(), commit_date()) {
32+
(Ok(hash), Ok(date)) => format!(" ({} {})", hash.trim_right(), date),
33+
_ => String::new(),
34+
}
35+
}
36+
37+
fn commit_hash() -> Result<String, Ignore> {
38+
Ok(try!(String::from_utf8(try!(Command::new("git")
39+
.args(&["rev-parse", "--short=9", "HEAD"])
40+
.output())
41+
.stdout)))
42+
}
43+
44+
fn commit_date() -> Result<String, Ignore> {
45+
Ok(try!(String::from_utf8(try!(Command::new("git")
46+
.args(&["log",
47+
"-1",
48+
"--date=short",
49+
"--pretty=format:%cd"])
50+
.output())
51+
.stdout)))
52+
}

elan-init.sh

+11-11
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,21 @@
1010
# except according to those terms.
1111

1212
# This is just a little script that can be downloaded from the internet to
13-
# install rustup. It just does platform detection, downloads the installer
13+
# install elan. It just does platform detection, downloads the installer
1414
# and runs it.
1515

1616
set -u
1717

18-
RUSTUP_UPDATE_ROOT="https://static.rust-lang.org/rustup/dist"
18+
ELAN_UPDATE_ROOT="https://static.lean-lang.org/elan/dist"
1919

2020
#XXX: If you change anything here, please make the same changes in setup_mode.rs
2121
usage() {
2222
cat 1>&2 <<EOF
23-
rustup-init 1.0.0 (408ed84 2017-02-11)
24-
The installer for rustup
23+
elan-init 1.0.0 (408ed84 2017-02-11)
24+
The installer for elan
2525
2626
USAGE:
27-
rustup-init [FLAGS] [OPTIONS]
27+
elan-init [FLAGS] [OPTIONS]
2828
2929
FLAGS:
3030
-v, --verbose Enable verbose output
@@ -60,10 +60,10 @@ main() {
6060
;;
6161
esac
6262

63-
local _url="$RUSTUP_UPDATE_ROOT/$_arch/rustup-init$_ext"
63+
local _url="$ELAN_UPDATE_ROOT/$_arch/elan-init$_ext"
6464

65-
local _dir="$(mktemp -d 2>/dev/null || ensure mktemp -d -t rustup)"
66-
local _file="$_dir/rustup-init$_ext"
65+
local _dir="$(mktemp -d 2>/dev/null || ensure mktemp -d -t elan)"
66+
local _file="$_dir/elan-init$_ext"
6767

6868
local _ansi_escapes_are_valid=false
6969
if [ -t 2 ]; then
@@ -104,7 +104,7 @@ main() {
104104
ensure chmod u+x "$_file"
105105
if [ ! -x "$_file" ]; then
106106
printf '%s\n' "Cannot execute $_file (likely because of mounting /tmp as noexec)." 1>&2
107-
printf '%s\n' "Please copy the file to a location where you can execute binaries and run ./rustup-init$_ext." 1>&2
107+
printf '%s\n' "Please copy the file to a location where you can execute binaries and run ./elan-init$_ext." 1>&2
108108
exit 1
109109
fi
110110

@@ -306,7 +306,7 @@ get_architecture() {
306306
fi
307307
fi
308308

309-
# Detect armv7 but without the CPU features Rust needs in that build,
309+
# Detect armv7 but without the CPU features Lean needs in that build,
310310
# and fall back to arm.
311311
# See https://github.com/rust-lang-nursery/rustup.rs/issues/587.
312312
if [ $_ostype = "unknown-linux-gnueabihf" -a $_cputype = armv7 ]; then
@@ -322,7 +322,7 @@ get_architecture() {
322322
}
323323

324324
say() {
325-
echo "rustup: $1"
325+
echo "elan: $1"
326326
}
327327

328328
err() {

src/download/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ pub mod reqwest_be {
332332
let src = try!(url.to_file_path()
333333
.map_err(|_| Error::from(format!("bogus file url: '{}'", url))));
334334
if !src.is_file() {
335-
// Because some of rustup's logic depends on checking
335+
// Because some of elan's logic depends on checking
336336
// the error when a downloaded file doesn't exist, make
337337
// the file case return the same error value as the
338338
// network case.

0 commit comments

Comments
 (0)