From 66931be8c547d99a5d5ca679d39694669d6e13b9 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 5 Nov 2018 23:23:50 +0300 Subject: Add build-warning-email and build-error-email package manifest values --- libbpkg/manifest.cxx | 26 +++++++++++++++++++++++++- libbpkg/manifest.hxx | 4 ++++ tests/manifest/testscript | 2 ++ 3 files changed, 31 insertions(+), 1 deletion(-) diff --git a/libbpkg/manifest.cxx b/libbpkg/manifest.cxx index 4f53fbc..e41099e 100644 --- a/libbpkg/manifest.cxx +++ b/libbpkg/manifest.cxx @@ -1150,7 +1150,21 @@ namespace bpkg if (m.build_email) bad_name ("build email redefinition"); - m.build_email = parse_email (v, "build", true); + m.build_email = parse_email (v, "build", true /* empty */); + } + else if (n == "build-warning-email") + { + if (m.build_warning_email) + bad_name ("build warning email redefinition"); + + m.build_warning_email = parse_email (v, "build warning"); + } + else if (n == "build-error-email") + { + if (m.build_error_email) + bad_name ("build error email redefinition"); + + m.build_error_email = parse_email (v, "build error"); } else if (n == "priority") { @@ -1502,6 +1516,16 @@ namespace bpkg serializer::merge_comment (*m.build_email, m.build_email->comment)); + if (m.build_warning_email) + s.next ("build-warning-email", + serializer::merge_comment (*m.build_warning_email, + m.build_warning_email->comment)); + + if (m.build_error_email) + s.next ("build-error-email", + serializer::merge_comment (*m.build_error_email, + m.build_error_email->comment)); + for (const auto& d: m.dependencies) s.next ("depends", (d.conditional 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; butl::optional package_email; butl::optional build_email; + butl::optional build_warning_email; + butl::optional build_error_email; std::vector dependencies; std::vector requirements; std::vector build_constraints; diff --git a/tests/manifest/testscript b/tests/manifest/testscript index f9a42cb..4f9a9a9 100644 --- a/tests/manifest/testscript +++ b/tests/manifest/testscript @@ -115,6 +115,7 @@ package-email: libfoo-1.2.3+2@example.org; Bug reports are welcome. build-email: libfoo-builds@example.org; Mailing list for bbot notification\ emails. + build-warning-email: libfoo-issues@example.org; Email for libfoo issues. depends: libz ~1.0.0 | libz ^2.0.0 depends: libgnutls <= 1.2.3 | libopenssl >= 2.3.4 depends: ? libboost-regex >= 1.52.0; Only if C++ compiler does not support\ @@ -151,6 +152,7 @@ license: LGPLv2 url: http://www.example.org/projects/libbar/ email: libbaz-users@example.org + build-error-email: libbaz-issues@example.org; Email for libbaz issues. location: libbaz/libbaz-+2-3.4A.5+3.tar.gz sha256sum: b5b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 EOF -- cgit v1.1