summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGreg Becker <becker33@llnl.gov>2020-03-11 03:24:38 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2020-03-20 11:14:37 -0700
commit32a3d59bfab37ad0deec1e07d69d02a6ee92b89d (patch)
treec5e9a296fd91e3ae46d75b3357b0253681264454 /lib
parent97d46dc36f2512e5d93f640499100c8bf5ce0f8f (diff)
downloadspack-32a3d59bfab37ad0deec1e07d69d02a6ee92b89d.tar.gz
spack-32a3d59bfab37ad0deec1e07d69d02a6ee92b89d.tar.bz2
spack-32a3d59bfab37ad0deec1e07d69d02a6ee92b89d.tar.xz
spack-32a3d59bfab37ad0deec1e07d69d02a6ee92b89d.zip
fetch_strategy: remove vestigial code (#15431)
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/fetch_strategy.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/spack/spack/fetch_strategy.py b/lib/spack/spack/fetch_strategy.py
index 5ae01286c4..eaf9f130c5 100644
--- a/lib/spack/spack/fetch_strategy.py
+++ b/lib/spack/spack/fetch_strategy.py
@@ -29,7 +29,6 @@ import os.path
import re
import shutil
import sys
-import xml.etree.ElementTree
import llnl.util.tty as tty
import six
@@ -760,13 +759,6 @@ class GitFetchStrategy(VCSFetchStrategy):
result = os.path.sep.join(['git', repo_path, repo_ref])
return result
- def get_source_id(self):
- if not self.branch:
- return
- output = self.git('ls-remote', self.url, self.branch, output=str)
- if output:
- return output.split()[0]
-
def _repo_info(self):
args = ''
@@ -944,11 +936,6 @@ class SvnFetchStrategy(VCSFetchStrategy):
def source_id(self):
return self.revision
- def get_source_id(self):
- output = self.svn('info', '--xml', self.url, output=str)
- info = xml.etree.ElementTree.fromstring(output)
- return info.find('entry/commit').get('revision')
-
def mirror_id(self):
if self.revision:
repo_path = url_util.parse(self.url).path
@@ -1064,11 +1051,6 @@ class HgFetchStrategy(VCSFetchStrategy):
result = os.path.sep.join(['hg', repo_path, self.revision])
return result
- def get_source_id(self):
- output = self.hg('id', self.url, output=str)
- if output:
- return output.strip()
-
@_needs_stage
def fetch(self):
if self.stage.expanded: