aboutsummaryrefslogtreecommitdiff
path: root/libbpkg/manifest.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2018-11-05 23:23:50 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2018-11-06 12:11:52 +0300
commit66931be8c547d99a5d5ca679d39694669d6e13b9 (patch)
tree987ac16bca077ce1bfac29ddfdc499a5c585a765 /libbpkg/manifest.hxx
parent82666617352b5b488f6ef59981359bd26376adf7 (diff)
Add build-warning-email and build-error-email package manifest values
Diffstat (limited to 'libbpkg/manifest.hxx')
-rw-r--r--libbpkg/manifest.hxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/libbpkg/manifest.hxx b/libbpkg/manifest.hxx
index bae3ffe..b9e7f92 100644
--- a/libbpkg/manifest.hxx
+++ b/libbpkg/manifest.hxx
@@ -262,6 +262,8 @@ namespace bpkg
// email
// package-email
// build-email
+ // build-warning-email
+ // build-error-email
//
class email: public std::string
{
@@ -452,6 +454,8 @@ namespace bpkg
butl::optional<email_type> email;
butl::optional<email_type> package_email;
butl::optional<email_type> build_email;
+ butl::optional<email_type> build_warning_email;
+ butl::optional<email_type> build_error_email;
std::vector<dependency_alternatives> dependencies;
std::vector<requirement_alternatives> requirements;
std::vector<build_constraint> build_constraints;