aboutsummaryrefslogtreecommitdiff
path: root/bpkg/fetch
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-09-25 07:10:57 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-09-25 07:10:57 +0200
commit287c71ddc00f0db1436d557042b69c03dc448b13 (patch)
tree824d66203c59530b856151c94c4bd322eff28562 /bpkg/fetch
parent5ab55b3efa7be536af146c778ebe457462a886a6 (diff)
Add support for fetching remote repositories
Wget, curl, and (FreeBSD) fetch are supported.
Diffstat (limited to 'bpkg/fetch')
-rw-r--r--bpkg/fetch7
1 files changed, 5 insertions, 2 deletions
diff --git a/bpkg/fetch b/bpkg/fetch
index 5290107..49d8cd9 100644
--- a/bpkg/fetch
+++ b/bpkg/fetch
@@ -9,14 +9,17 @@
#include <bpkg/types>
#include <bpkg/utility>
+#include <bpkg/common-options>
namespace bpkg
{
repository_manifests fetch_repositories (const dir_path&);
- repository_manifests fetch_repositories (const repository_location&);
+ repository_manifests fetch_repositories (const common_options&,
+ const repository_location&);
package_manifests fetch_packages (const dir_path&);
- package_manifests fetch_packages (const repository_location&);
+ package_manifests fetch_packages (const common_options&,
+ const repository_location&);
}
#endif // BPKG_FETCH