aboutsummaryrefslogtreecommitdiff
path: root/bpkg/package.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2023-02-01 11:42:31 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2023-02-01 11:42:31 +0200
commit546391dab6173660acceba6404136e9411ce1388 (patch)
tree79da333fd1f7447c6b9490565f520d1d79a329b7 /bpkg/package.hxx
parent724131b7e03934664621f86df2dc2285ff43dba8 (diff)
Implement system package manager query and install support for Debian
Diffstat (limited to 'bpkg/package.hxx')
-rw-r--r--bpkg/package.hxx11
1 files changed, 10 insertions, 1 deletions
diff --git a/bpkg/package.hxx b/bpkg/package.hxx
index 8796036..e811e62 100644
--- a/bpkg/package.hxx
+++ b/bpkg/package.hxx
@@ -847,7 +847,7 @@ namespace bpkg
//
#pragma db member(tests) id_column("") value_column("test_")
- // distributions
+ // distribution_values
//
#pragma db member(distribution_values) id_column("") value_column("dist_")
@@ -888,6 +888,15 @@ namespace bpkg
available_package () = default;
};
+ // The available packages together with the repository fragments they belong
+ // to.
+ //
+ // Note that lazy_shared_ptr is used to also convey the databases the
+ // objects belong to.
+ //
+ using available_packages = vector<pair<shared_ptr<available_package>,
+ lazy_shared_ptr<repository_fragment>>>;
+
#pragma db view object(available_package)
struct available_package_count
{