aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-unpack.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2018-05-21 21:10:09 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2018-05-24 17:39:13 +0300
commit3a6c4ab1b6fc79a6a543088553cdd6bc8cb0a1dd (patch)
tree1ca0c3b9ef763276ff45c20a62d2504833e5f67d /bpkg/pkg-unpack.hxx
parent1cab4fbd051ee5a71f073446ad5ad1b3d79f1031 (diff)
Adapt to inventing package_name type
Diffstat (limited to 'bpkg/pkg-unpack.hxx')
-rw-r--r--bpkg/pkg-unpack.hxx13
1 files changed, 8 insertions, 5 deletions
diff --git a/bpkg/pkg-unpack.hxx b/bpkg/pkg-unpack.hxx
index 79dfe1c..cab335f 100644
--- a/bpkg/pkg-unpack.hxx
+++ b/bpkg/pkg-unpack.hxx
@@ -5,7 +5,8 @@
#ifndef BPKG_PKG_UNPACK_HXX
#define BPKG_PKG_UNPACK_HXX
-#include <libbpkg/manifest.hxx> // version
+#include <libbpkg/manifest.hxx> // version
+#include <libbpkg/package-name.hxx>
#include <bpkg/types.hxx>
#include <bpkg/forward.hxx> // transaction, selected_package
@@ -18,7 +19,8 @@ namespace bpkg
int
pkg_unpack (const pkg_unpack_options&, cli::scanner& args);
- // Unpack the package as a source directory and commit the transaction.
+ // Unpack the package as a source directory and commit the transaction. Can
+ // return a new selected package object, replacing the existing one.
//
shared_ptr<selected_package>
pkg_unpack (const common_options&,
@@ -35,17 +37,18 @@ namespace bpkg
pkg_unpack (const common_options&,
const dir_path& configuration,
transaction&,
- const string& name,
+ const package_name&,
bool simulate);
// Unpack the package as a source directory from a directory-based
- // repository and commit the transaction.
+ // repository and commit the transaction. Can return a new selected package
+ // object, replacing the existing one.
//
shared_ptr<selected_package>
pkg_unpack (const common_options&,
const dir_path& configuration,
transaction&,
- string name,
+ package_name,
version,
bool replace,
bool simulate);