Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2023-09-28 19:56:51 +0300
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2023-09-29 15:05:07 +0300
commit6159f299be6eae07a5fc7683cc98749fb2b8fd31 (patch)
tree7ec244902ca5d0dbdfd4f415666a9c205432dc4e /version-helper
parent4d9263f93299a359e1d57bfaad261fcd49ac4c84 (diff)
version-helper: Also try parsing release date from Cargo.toml
The `package.metadata.gstreamer.release_date` date string can be used to specify the release date. This is used if there's no git repository as a fallback before using the mtime of the Cargo.toml. Using the mtime will fail when building a crate packaged by cargo because cargo sets the mtimes to bogus values. Fixes https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/issues/440 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1341>
Diffstat (limited to 'version-helper')
-rw-r--r--version-helper/Cargo.toml1
-rw-r--r--version-helper/src/lib.rs43
2 files changed, 40 insertions, 4 deletions
diff --git a/version-helper/Cargo.toml b/version-helper/Cargo.toml
index d7b7c987b..04f45b736 100644
--- a/version-helper/Cargo.toml
+++ b/version-helper/Cargo.toml
@@ -14,3 +14,4 @@ rust-version = "1.70"
[dependencies]
chrono = { version = "0.4.23", default-features = false, features = ["std", "clock"] }
+toml_edit = { version = "0.20", default-features = false }
diff --git a/version-helper/src/lib.rs b/version-helper/src/lib.rs
index 899514a80..4764ddb67 100644
--- a/version-helper/src/lib.rs
+++ b/version-helper/src/lib.rs
@@ -50,7 +50,12 @@ use std::{env, fs, path};
/// commit.
///
/// - If not, `COMMIT_ID` will be set to the string `RELEASE` and the
-/// `BUILD_REL_DATE` variable will be set to the mtime of `Cargo.toml`.
+/// `BUILD_REL_DATE` variable will be set to the `package.metadata.gstreamer.release_date` key of
+/// `Cargo.toml`, if it exists.
+///
+/// - If not, `COMMIT_ID` will be set to the string `RELEASE` and the `BUILD_REL_DATE` variable
+/// will be set to the mtime of `Cargo.toml`. Note that the crates created by `cargo package` and
+/// `cargo publish` have bogus mtimes for all files and won't be used.
///
/// - If neither is possible, `COMMIT_ID` is set to the string `UNKNOWN` and `BUILD_REL_DATE` to the
/// current date.
@@ -70,7 +75,9 @@ pub fn info() {
// If there is a git repository, extract the version information from there.
// Otherwise assume this is a release and use Cargo.toml mtime as date.
let (commit_id, commit_date) = git_info.unwrap_or_else(|| {
- let date = cargo_mtime_date(crate_dir).unwrap_or_else(chrono::Utc::now);
+ let date = cargo_metadata_release_date(&crate_dir)
+ .or_else(|| cargo_mtime_date(&crate_dir))
+ .unwrap_or_else(chrono::Utc::now);
("RELEASE".into(), date.format("%Y-%m-%d").to_string())
});
@@ -78,8 +85,36 @@ pub fn info() {
println!("cargo:rustc-env=BUILD_REL_DATE={commit_date}");
}
-fn cargo_mtime_date(crate_dir: path::PathBuf) -> Option<chrono::DateTime<chrono::Utc>> {
- let mut cargo_toml = crate_dir;
+fn cargo_metadata_release_date(crate_dir: &path::Path) -> Option<chrono::DateTime<chrono::Utc>> {
+ use std::io::prelude::*;
+
+ let mut cargo_toml = path::PathBuf::from(crate_dir);
+ cargo_toml.push("Cargo.toml");
+
+ let mut file = fs::File::open(&cargo_toml).ok()?;
+ let mut contents = String::new();
+ file.read_to_string(&mut contents).ok()?;
+
+ let doc = contents.parse::<toml_edit::Document>().ok()?;
+ let release_date = doc
+ .get("package")
+ .and_then(|package| package.as_table_like())
+ .and_then(|package| package.get("metadata"))
+ .and_then(|metadata| metadata.as_table_like())
+ .and_then(|metadata| metadata.get("gstreamer"))
+ .and_then(|gstreamer| gstreamer.as_table_like())
+ .and_then(|gstreamer| gstreamer.get("release_date"))
+ .and_then(|release_date| release_date.as_str())?;
+
+ let release_date = release_date.parse::<chrono::NaiveDate>().ok()?;
+ Some(chrono::DateTime::from_naive_utc_and_offset(
+ release_date.and_hms_opt(0, 0, 0)?,
+ chrono::Utc,
+ ))
+}
+
+fn cargo_mtime_date(crate_dir: &path::Path) -> Option<chrono::DateTime<chrono::Utc>> {
+ let mut cargo_toml = path::PathBuf::from(crate_dir);
cargo_toml.push("Cargo.toml");
let metadata = fs::metadata(&cargo_toml).ok()?;