+class GitSearchPath(TarrableSearchPath):
+ def pin(self, v: Verification) -> GitPin:
+ if hasattr(self, 'git_revision'):
+ self.old_git_revision = self.git_revision
+ del self.git_revision
+
+ git_fetch(v, self)
+ return GitPin(release_name=git_revision_name(v, self),
+ git_revision=self.git_revision)
+
+ def fetch(self, v: Verification, section: str,
+ conf: configparser.SectionProxy) -> str:
+ if 'git_repo' not in conf or 'release_name' not in conf:
+ raise Exception(
+ 'Cannot update unpinned channel "%s" (Run "pin" before "update")' %
+ section)
+
+ ensure_git_rev_available(v, self)
+ return git_get_tarball(v, self)
+
+
+class ChannelSearchPath(TarrableSearchPath):
+ def pin(self, v: Verification) -> ChannelPin: