mirror of
https://codeberg.org/librewolf/source.git
synced 2024-12-22 21:53:31 -05:00
fix bootstrap-without-vcs.patch
This commit is contained in:
parent
3c1af37546
commit
50f5a05294
1 changed files with 16 additions and 3 deletions
|
@ -64,7 +64,7 @@
|
||||||
|
|
||||||
--- a/third_party/python/taskcluster_taskgraph/taskgraph/util/vcs.py
|
--- a/third_party/python/taskcluster_taskgraph/taskgraph/util/vcs.py
|
||||||
+++ b/third_party/python/taskcluster_taskgraph/taskgraph/util/vcs.py
|
+++ b/third_party/python/taskcluster_taskgraph/taskgraph/util/vcs.py
|
||||||
@@ -495,6 +495,43 @@ class GitRepository(Repository):
|
@@ -495,6 +495,56 @@ class GitRepository(Repository):
|
||||||
raise
|
raise
|
||||||
|
|
||||||
|
|
||||||
|
@ -75,32 +75,45 @@
|
||||||
+ def head_ref(self):
|
+ def head_ref(self):
|
||||||
+ return ""
|
+ return ""
|
||||||
+
|
+
|
||||||
|
+ @property
|
||||||
+ def get_outgoing_files(self):
|
+ def get_outgoing_files(self):
|
||||||
+ return []
|
+ return []
|
||||||
+
|
+
|
||||||
|
+ @property
|
||||||
+ def get_changed_files(self):
|
+ def get_changed_files(self):
|
||||||
+ return []
|
+ return []
|
||||||
+
|
+
|
||||||
|
+ @property
|
||||||
+ def base_ref(self):
|
+ def base_ref(self):
|
||||||
+ raise Exception("Unimplemented")
|
+ raise Exception("Unimplemented")
|
||||||
+
|
+
|
||||||
|
+ @property
|
||||||
+ def branch(self):
|
+ def branch(self):
|
||||||
+ raise Exception("Unimplemented")
|
+ raise Exception("Unimplemented")
|
||||||
+
|
+
|
||||||
|
+ @property
|
||||||
+ def get_commit_message(self):
|
+ def get_commit_message(self):
|
||||||
+ raise Exception("Unimplemented")
|
+ raise Exception("Unimplemented")
|
||||||
+
|
+
|
||||||
|
+ @property
|
||||||
+ def get_url(self):
|
+ def get_url(self):
|
||||||
+ return ""
|
+ return ""
|
||||||
+
|
+
|
||||||
|
+ @property
|
||||||
+ def update(self):
|
+ def update(self):
|
||||||
+ raise Exception("Unimplemented")
|
+ raise Exception("Unimplemented")
|
||||||
+
|
+
|
||||||
|
+ @property
|
||||||
+ def working_directory_clean(self):
|
+ def working_directory_clean(self):
|
||||||
+ raise Exception("Unimplemented")
|
+ raise Exception("Unimplemented")
|
||||||
+
|
+
|
||||||
|
+ @property
|
||||||
+ def get_tracked_files_finder(self):
|
+ def get_tracked_files_finder(self):
|
||||||
+ files = [os.path.relpath(os.path.join(dp, f), self.path).replace("\\","/") for dp, dn, fn in os.walk(self.path) for f in fn]
|
+ files = [
|
||||||
|
+ os.path.relpath(os.path.join(dp, f), self.path).replace("\\", "/")
|
||||||
|
+ for dp, dn, fn in os.walk(self.path)
|
||||||
|
+ for f in fn
|
||||||
|
+ ]
|
||||||
+ files.sort()
|
+ files.sort()
|
||||||
+ return FileListFinder(files)
|
+ return FileListFinder(files)
|
||||||
+
|
+
|
||||||
|
@ -108,7 +121,7 @@
|
||||||
def get_repository(path):
|
def get_repository(path):
|
||||||
"""Get a repository object for the repository at `path`.
|
"""Get a repository object for the repository at `path`.
|
||||||
If `path` is not a known VCS repository, raise an exception.
|
If `path` is not a known VCS repository, raise an exception.
|
||||||
@@ -505,7 +542,7 @@ def get_repository(path):
|
@@ -505,7 +555,7 @@ def get_repository(path):
|
||||||
elif os.path.exists(os.path.join(path, ".git")):
|
elif os.path.exists(os.path.join(path, ".git")):
|
||||||
return GitRepository(path)
|
return GitRepository(path)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue