ghaction_version_gen 0.17.2

Generate various version options as github action outputs
Documentation
// Copyright (C) 2022 Leandro Lisboa Penz <lpenz@lpenz.org>
// This file is subject to the terms and conditions defined in
// file 'LICENSE', which is part of this source code package.

use std::path::Path;

use color_eyre::Result;
use color_eyre::eyre::OptionExt;
use color_eyre::eyre::eyre;

use configparser::ini::Ini;

pub fn module_version<P: AsRef<Path>>(repo: P) -> Result<Option<String>> {
    let setupcfgfile = repo.as_ref().join("setup.cfg");
    let mut config = Ini::new();
    let result = config.load(setupcfgfile);
    if let Err(e) = result {
        // Could have used a proper error...
        if e.contains("No such file or directory") {
            return Ok(None);
        } else {
            return Err(eyre!("parsing setup.cfg: {}", e));
        }
    }
    let version = config
        .get("metadata", "version")
        .ok_or_eyre("could not find metadata.version")?;
    Ok(Some(version))
}