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

Side by Side Diff: utils/pub/git_source.dart

Issue 10386021: Add a Pub source that checks packages out from Git. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | utils/pub/io.dart » ('j') | utils/pub/io.dart » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 /**
6 * A package source that installs packages from Git repos.
7 */
8 class GitSource extends Source {
Bob Nystrom 2012/05/08 17:01:49 Where are the tests for this?
nweiz 2012/05/09 00:21:04 Just confirmed with Emily that we can run Git on t
9 final String name = "git";
10
11 // TODO(nweiz): this should be cached since it uses the network, but until we
12 // support versions there's no good way to distinguish between different
13 // checkouts of the same repository.
14 final bool shouldCache = false;
15
16 GitSource();
17
18 /**
19 * Clones a Git repo to the local filesystem.
20 */
21 Future<bool> install(PackageId id, String destPath) {
22 return runProcess("git", ["clone", "--progress", id.fullName, destPath],
23 pipeStdout: true, pipeStderr: true).
24 transform((result) => result.success);
25 }
26
27 /**
28 * The package name of a Git repo is the name of the directory into which
29 * it'll be cloned.
30 */
31 String packageName(PackageId id) =>
32 basename(id.fullName).replaceFirst(const RegExp("\.git\$"), "");
Bob Nystrom 2012/05/08 17:01:49 Either make this a {} body (which I would prefer,
nweiz 2012/05/09 00:21:04 Done.
33 }
OLDNEW
« no previous file with comments | « no previous file | utils/pub/io.dart » ('j') | utils/pub/io.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698