Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(122)

Unified Diff: utils/pub/git_source.dart

Issue 10392089: Add a Pub source that checks packages out from Git. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update both RegExps Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | utils/pub/io.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/git_source.dart
diff --git a/utils/pub/git_source.dart b/utils/pub/git_source.dart
new file mode 100644
index 0000000000000000000000000000000000000000..22c5c5500bc45a86ebeb434d3efeb7f370ee1134
--- /dev/null
+++ b/utils/pub/git_source.dart
@@ -0,0 +1,33 @@
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+/**
+ * A package source that installs packages from Git repos.
+ */
+class GitSource extends Source {
+ final String name = "git";
+
+ // TODO(nweiz): this should be cached since it uses the network, but until we
+ // support versions there's no good way to distinguish between different
+ // checkouts of the same repository.
+ final bool shouldCache = false;
+
+ GitSource();
+
+ /**
+ * Clones a Git repo to the local filesystem.
+ */
+ Future<bool> install(PackageId id, String destPath) {
+ return runProcess("git", ["clone", "--progress", id.fullName, destPath],
+ pipeStdout: true, pipeStderr: true).
+ transform((result) => result.success);
+ }
+
+ /**
+ * The package name of a Git repo is the name of the directory into which
+ * it'll be cloned.
+ */
+ String packageName(PackageId id) =>
+ basename(id.fullName).replaceFirst(const RegExp("\.git\$"), "");
+}
« no previous file with comments | « no previous file | utils/pub/io.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698