summaryrefslogtreecommitdiff
authorJosh <jokajak@gmail.com>2012-06-19 16:04:50 (UTC)
committer Josh <jokajak@gmail.com>2012-06-19 16:04:50 (UTC)
commit28bcbca9846755746541a516f21fe661445a2bae (patch) (side-by-side diff)
treed494b8f28ec4949ecdacd8d6d95f238d62ecd94c
parent59d420a7dab19db63cc3f858492dcf0149e53987 (diff)
downloadclipperz-28bcbca9846755746541a516f21fe661445a2bae.zip
clipperz-28bcbca9846755746541a516f21fe661445a2bae.tar.gz
clipperz-28bcbca9846755746541a516f21fe661445a2bae.tar.bz2
Add a fall-back repository class for SNAPSHOTS
Create a new SnapshotRepository class that returns SNAPSHOT as the version Should let you build if there are any problems with your git repo
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--scripts/builder/repository.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/scripts/builder/repository.py b/scripts/builder/repository.py
index a47e249..7ac2324 100644
--- a/scripts/builder/repository.py
+++ b/scripts/builder/repository.py
@@ -11,12 +11,14 @@ def repositoryWithPath (path):
except:
try:
from git import Repo
-
repo = Repo(path)
result = GitRepository(repo, path)
+
except ImportError, exception:
print "Failed to import git, please install http://gitorious.org/git-python"
raise exception
+ except:
+ result = SnapshotRepository('', path)
return result
@@ -86,3 +88,10 @@ class HgRepository(Repository):
#===================================================================
+
+class SnapshotRepository(Repository):
+ def revision (self):
+ return 'SNAPSHOT'
+
+ def areTherePendingChanges (self):
+ return False