aboutsummaryrefslogtreecommitdiff
path: root/libbpkg/manifest.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2018-06-12 13:49:29 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2018-06-12 13:49:29 +0300
commit8fe369a00e4c230f10611361942086709e2d4f1b (patch)
tree0af323c45da58c9c1fb88fdf87d5b9186b6d6a61 /libbpkg/manifest.hxx
parent8a300f420c276ec92a53259aaa15affda8daa723 (diff)
Make project url and email optional in package manifest
Diffstat (limited to 'libbpkg/manifest.hxx')
-rw-r--r--libbpkg/manifest.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbpkg/manifest.hxx b/libbpkg/manifest.hxx
index 82e580d..5e7a748 100644
--- a/libbpkg/manifest.hxx
+++ b/libbpkg/manifest.hxx
@@ -394,11 +394,11 @@ namespace bpkg
strings tags;
butl::optional<text_file> description;
std::vector<text_file> changes;
- url_type url;
+ butl::optional<url_type> url;
butl::optional<url_type> doc_url;
butl::optional<url_type> src_url;
butl::optional<url_type> package_url;
- email_type email;
+ butl::optional<email_type> email;
butl::optional<email_type> package_email;
butl::optional<email_type> build_email;
std::vector<dependency_alternatives> dependencies;