diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2023-10-31 15:35:49 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2023-10-31 15:35:49 -0400 |
commit | e85405d5115ef309655ac944e5def36b0191bc40 (patch) | |
tree | b5752df43005a4d22a368570e326ceb6324f2c8f /include | |
parent | 902071e0951448f8a754024ed4bfad24349d00d0 (diff) | |
download | stasis-e85405d5115ef309655ac944e5def36b0191bc40.tar.gz |
Add new members to Delivery
Diffstat (limited to 'include')
-rw-r--r-- | include/deliverable.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/deliverable.h b/include/deliverable.h index 1487ace..e04b829 100644 --- a/include/deliverable.h +++ b/include/deliverable.h @@ -54,6 +54,8 @@ struct Delivery { int rc; // version of python to use char *python; + // shortened python identifier + char *python_compact; // URL to previous final configuration char *based_on; // hst, jwst, roman @@ -66,12 +68,21 @@ struct Delivery { bool continue_on_error; } meta; + struct Info { + // The fully combined release string + char *release_name; + struct tm *time_info; + time_t time_now; + } info; + struct Conda { char *installer_baseurl; char *installer_name; char *installer_version; char *installer_platform; char *installer_arch; + char *tool_version; + char *tool_build_version; // packages to install struct StrList *conda_packages; // conda recipes to be built |