diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2016-09-29 22:08:17 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2016-09-29 22:08:17 +0300 |
commit | 64e4d05d45099a91dc845235eb08e47bd5fc43ec (patch) | |
tree | 45df6481ca247a323d0aee1d037f1dbe37f8c68b | |
parent | d234314463b1d8c4112bf52e2c1966be5953b327 (diff) |
Adapt to move of manifest_parser and manifest_serializer to libbutl
-rw-r--r-- | bpkg/fetch.cxx | 3 | ||||
-rw-r--r-- | bpkg/pkg-verify.cxx | 3 | ||||
-rw-r--r-- | bpkg/rep-create.cxx | 2 | ||||
-rw-r--r-- | bpkg/rep-info.cxx | 4 |
4 files changed, 5 insertions, 7 deletions
diff --git a/bpkg/fetch.cxx b/bpkg/fetch.cxx index 0851950..efb2632 100644 --- a/bpkg/fetch.cxx +++ b/bpkg/fetch.cxx @@ -9,8 +9,7 @@ #include <butl/process> #include <butl/fdstream> #include <butl/filesystem> - -#include <bpkg/manifest-parser> +#include <butl/manifest-parser> #include <bpkg/checksum> #include <bpkg/diagnostics> diff --git a/bpkg/pkg-verify.cxx b/bpkg/pkg-verify.cxx index 1423d82..3b85a5c 100644 --- a/bpkg/pkg-verify.cxx +++ b/bpkg/pkg-verify.cxx @@ -6,8 +6,7 @@ #include <butl/process> #include <butl/fdstream> - -#include <bpkg/manifest-parser> +#include <butl/manifest-parser> #include <bpkg/archive> #include <bpkg/diagnostics> diff --git a/bpkg/rep-create.cxx b/bpkg/rep-create.cxx index da44d3b..ac58936 100644 --- a/bpkg/rep-create.cxx +++ b/bpkg/rep-create.cxx @@ -8,9 +8,9 @@ #include <butl/fdstream> #include <butl/filesystem> // dir_iterator +#include <butl/manifest-serializer> #include <bpkg/manifest> -#include <bpkg/manifest-serializer> #include <bpkg/auth> #include <bpkg/fetch> diff --git a/bpkg/rep-info.cxx b/bpkg/rep-info.cxx index 355d8b8..b5ef751 100644 --- a/bpkg/rep-info.cxx +++ b/bpkg/rep-info.cxx @@ -6,10 +6,10 @@ #include <iostream> // cout -#include <butl/sha256> // sha256_to_fingerprint() +#include <butl/sha256> // sha256_to_fingerprint() +#include <butl/manifest-serializer> #include <bpkg/manifest> -#include <bpkg/manifest-serializer> #include <bpkg/auth> #include <bpkg/fetch> |