aboutsummaryrefslogtreecommitdiff
path: root/load/load.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2018-11-14 22:19:50 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2018-11-15 20:40:40 +0300
commit2667fad8bf6e7ef6ef1894ab49a3bdc5cc858607 (patch)
treef3f6650da4c3a4b3b8a5c06343c82646be84507f /load/load.cxx
parentd622f34a8c6ad0e71618f75a02787589b21d795c (diff)
Add support for repository location compound schemes (git+https, etc)
Diffstat (limited to 'load/load.cxx')
-rw-r--r--load/load.cxx18
1 files changed, 8 insertions, 10 deletions
diff --git a/load/load.cxx b/load/load.cxx
index 97cd133..c032137 100644
--- a/load/load.cxx
+++ b/load/load.cxx
@@ -94,7 +94,7 @@ using internal_repositories = vector<internal_repository>;
// will allow handling CI requests for bpkg repositories.
//
// The current thinking is that the CI handler will be able to "suggest"
-// this using (the planned) cache:file+dir:// form.
+// this using (the planned) cache:dir+file:// form.
//
static internal_repositories
load_repositories (path p)
@@ -138,10 +138,7 @@ load_repositories (path p)
try
{
- repository_url u (tl[i].value);
-
- r.location = repository_location (u,
- guess_type (u, false /* local */));
+ r.location = repository_location (tl[i].value);
}
catch (const invalid_argument& e)
{
@@ -277,16 +274,17 @@ changed (const string& tenant,
database& db)
{
strings names;
- for (auto& r: repos)
+ for (const internal_repository& r: repos)
{
shared_ptr<repository> pr (
db.find<repository> (repository_id (tenant,
r.location.canonical_name ())));
- if (pr == nullptr || r.location.string () != pr->location.string () ||
- r.display_name != pr->display_name ||
- r.cache_location.path () != pr->cache_location.path () ||
- file_mtime (r.packages_path ()) != pr->packages_timestamp ||
+ if (pr == nullptr ||
+ r.location.string () != pr->location.string () ||
+ r.display_name != pr->display_name ||
+ r.cache_location.path () != pr->cache_location.path () ||
+ file_mtime (r.packages_path ()) != pr->packages_timestamp ||
file_mtime (r.repositories_path ()) != pr->repositories_timestamp ||
!pr->internal)
return true;