diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-05-22 14:15:44 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-05-22 16:40:04 +0300 |
commit | 7e4c92e29954c14f9c1dd51aff95fff25d3ced32 (patch) | |
tree | 2434a56ce3ebc84bbaca5267b5afecda8a523fba /libbrep/package.cxx | |
parent | aae2024a1bdce3ffcb9e638d4a949a71ecdef4c0 (diff) |
Add support for package manifest upstream-version value
Diffstat (limited to 'libbrep/package.cxx')
-rw-r--r-- | libbrep/package.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libbrep/package.cxx b/libbrep/package.cxx index a01ed14..763cec9 100644 --- a/libbrep/package.cxx +++ b/libbrep/package.cxx @@ -52,6 +52,7 @@ namespace brep package:: package (package_name nm, version_type vr, + optional<string> uv, package_name pn, priority_type pr, string sm, @@ -81,6 +82,7 @@ namespace brep tenant (id.tenant), name (id.name), version (move (vr)), + upstream_version (move (uv)), project (move (pn)), priority (move (pr)), summary (move (sm)), @@ -144,6 +146,9 @@ namespace brep string k (project.string () + " " + name.string () + " " + version.string () + " " + version.string (true)); + if (upstream_version) + k += " " + *upstream_version; + // Add tags to keywords. // for (const auto& t: tags) |