From 87f8dbefda89bf6cb9e4b88f23a5317b054da0d4 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Mon, 13 Apr 2015 14:17:29 +0000 Subject: Add version guessing function to gitdir and cached repo. Change-Id: I1c79ce68a7a7534d36a9e83210e18a58e7b648e8 --- morphlib/cachedrepo.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'morphlib/cachedrepo.py') diff --git a/morphlib/cachedrepo.py b/morphlib/cachedrepo.py index 0c0f5cb7..a630cc29 100644 --- a/morphlib/cachedrepo.py +++ b/morphlib/cachedrepo.py @@ -143,6 +143,15 @@ class CachedRepo(object): ''' return self._gitdir.branches_containing_sha1(ref) + def version_guess(self, ref): # pragma: no cover + '''Guess version number using `git describe --tags` + + Raises a gitdir.InvalidRefError if the ref is not found in the + repository. + + ''' + return self._gitdir.version_guess(ref) + def list_files(self, ref, recurse=True): # pragma: no cover '''Return filenames found in the tree pointed to by the given ref. -- cgit v1.2.1