2017-10-08 19:09:46 +00:00
|
|
|
|
/// The version string isn’t the simplest: we want to show the version,
|
|
|
|
|
/// current Git hash, and compilation date when building *debug* versions, but
|
|
|
|
|
/// just the version for *release* versions so the builds are reproducible.
|
|
|
|
|
///
|
|
|
|
|
/// This script generates the string from the environment variables that Cargo
|
|
|
|
|
/// adds (http://doc.crates.io/environment-variables.html) and runs `git` to
|
|
|
|
|
/// get the SHA1 hash. It then writes the string into a file, which exa then
|
|
|
|
|
/// includes at build-time.
|
|
|
|
|
///
|
|
|
|
|
/// - https://stackoverflow.com/q/43753491/3484614
|
|
|
|
|
/// - https://crates.io/crates/vergen
|
|
|
|
|
|
|
|
|
|
extern crate datetime;
|
|
|
|
|
use std::env;
|
2020-10-12 23:54:06 +00:00
|
|
|
|
use std::io;
|
2020-10-10 18:49:46 +00:00
|
|
|
|
|
2017-10-08 19:09:46 +00:00
|
|
|
|
|
|
|
|
|
fn git_hash() -> String {
|
|
|
|
|
use std::process::Command;
|
|
|
|
|
|
|
|
|
|
String::from_utf8_lossy(
|
|
|
|
|
&Command::new("git")
|
|
|
|
|
.args(&["rev-parse", "--short", "HEAD"])
|
|
|
|
|
.output().unwrap()
|
|
|
|
|
.stdout).trim().to_string()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
write_statics().unwrap();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn is_development_version() -> bool {
|
2017-10-08 19:44:34 +00:00
|
|
|
|
// Both weekly releases and actual releases are --release releases,
|
|
|
|
|
// but actual releases will have a proper version number
|
|
|
|
|
cargo_version().ends_with("-pre") || env::var("PROFILE").unwrap() == "debug"
|
2017-10-08 19:09:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn cargo_version() -> String {
|
|
|
|
|
env::var("CARGO_PKG_VERSION").unwrap()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn build_date() -> String {
|
|
|
|
|
use datetime::{LocalDateTime, ISO};
|
|
|
|
|
|
|
|
|
|
let now = LocalDateTime::now();
|
|
|
|
|
format!("{}", now.date().iso())
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-12 23:54:06 +00:00
|
|
|
|
fn write_statics() -> io::Result<()> {
|
2017-10-08 19:09:46 +00:00
|
|
|
|
use std::fs::File;
|
|
|
|
|
use std::io::Write;
|
|
|
|
|
use std::path::PathBuf;
|
|
|
|
|
|
2020-04-19 04:33:42 +00:00
|
|
|
|
let ver = if is_development_version() {
|
|
|
|
|
format!("exa v{} ({} built on {})", cargo_version(), git_hash(), build_date())
|
2020-10-10 18:49:46 +00:00
|
|
|
|
}
|
|
|
|
|
else {
|
2020-04-19 04:33:42 +00:00
|
|
|
|
format!("exa v{}", cargo_version())
|
2017-10-08 19:09:46 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
let out = PathBuf::from(env::var("OUT_DIR").unwrap());
|
|
|
|
|
let mut f = File::create(&out.join("version_string.txt"))?;
|
|
|
|
|
write!(f, "{:?}", ver)
|
|
|
|
|
}
|