summaryrefslogtreecommitdiff
path: root/buildstream/source.py
diff options
context:
space:
mode:
authorChandan Singh <csingh43@bloomberg.net>2018-08-23 23:51:12 +0100
committerChandan Singh <csingh43@bloomberg.net>2018-08-23 23:54:45 +0100
commit72bf5f5c590b14528a9bf4c1a7f8f3ce573edb3a (patch)
tree884ec10d63934f94cdd1b4c295acb0a5d5e23dcd /buildstream/source.py
parent8216ff8dac91692c9358c3e535f5a0a2c26c1332 (diff)
downloadbuildstream-chandan/element-cache.tar.gz
source.py,plugin.py: Allow elements to have a cache directorychandan/element-cache
At present, only source plugins are allowed to have cache directories but not elements. Move `get_mirror_directory()` method from Source() to Plugin() so that elements could also benefit from having a cache, if needed.
Diffstat (limited to 'buildstream/source.py')
-rw-r--r--buildstream/source.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/buildstream/source.py b/buildstream/source.py
index 6d5640532..2ef9fb1d8 100644
--- a/buildstream/source.py
+++ b/buildstream/source.py
@@ -481,19 +481,6 @@ class Source(Plugin):
#############################################################
# Public Methods #
#############################################################
- def get_mirror_directory(self):
- """Fetches the directory where this source should store things
-
- Returns:
- (str): The directory belonging to this source
- """
-
- # Create the directory if it doesnt exist
- context = self._get_context()
- directory = os.path.join(context.sourcedir, self.get_kind())
- os.makedirs(directory, exist_ok=True)
- return directory
-
def translate_url(self, url, *, alias_override=None):
"""Translates the given url which may be specified with an alias
into a fully qualified url.