diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-11-12 12:39:40 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-11-18 13:50:39 +0200 |
commit | 0103e8a96182ad12b3b98629ffe295a706ddcb66 (patch) | |
tree | 92beb9e92bc51b53c9d2aa6fc5a7163479825081 /bpkg/manifest | |
parent | 15077a1f309d615dcd905b0aec009cd079475327 (diff) |
Add url, email, summary, description members to the repository_manifest class
Diffstat (limited to 'bpkg/manifest')
-rw-r--r-- | bpkg/manifest | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/bpkg/manifest b/bpkg/manifest index cc45bb4..106b6ca 100644 --- a/bpkg/manifest +++ b/bpkg/manifest @@ -469,6 +469,13 @@ namespace bpkg repository_location location; butl::optional<repository_role> role; + // The following values may only be present for the base repository. + // + butl::optional<std::string> url; + butl::optional<std::string> email; + butl::optional<std::string> summary; + butl::optional<std::string> description; + public: repository_manifest (manifest_parser&); repository_manifest (manifest_parser&, manifest_name_value start); |