diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-07-29 22:38:55 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-07-29 22:38:55 +0300 |
commit | 33153c6816c65c96a083c6f5b5e85418c444f929 (patch) | |
tree | d48dff79ef36668b50a5f912aa98a75cce1ed823 /libbrep/package.cxx | |
parent | bb4daf280cbae9f37a44d3b8893a3b933134cddc (diff) |
Add support for src-url and doc-url package manifest values
Diffstat (limited to 'libbrep/package.cxx')
-rw-r--r-- | libbrep/package.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libbrep/package.cxx b/libbrep/package.cxx index e14b15a..af63c82 100644 --- a/libbrep/package.cxx +++ b/libbrep/package.cxx @@ -56,6 +56,8 @@ namespace brep optional<string> ds, string ch, url_type ur, + optional<url_type> du, + optional<url_type> su, optional<url_type> pu, email_type em, optional<email_type> pe, @@ -75,6 +77,8 @@ namespace brep description (move (ds)), changes (move (ch)), url (move (ur)), + doc_url (move (du)), + src_url (move (su)), package_url (move (pu)), email (move (em)), package_email (move (pe)), |