summaryrefslogtreecommitdiffstats
path: root/lib/bb/fetch2/__init__.py
diff options
context:
space:
mode:
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>2016-02-18 19:39:10 +0200
committerMarkus Lehtonen <markus.lehtonen@linux.intel.com>2016-05-10 12:27:13 +0300
commit8256eb9889288f3ad22f1988d88d10fe5c645b91 (patch)
tree28ddf76977c6097d6dab0b87a03a225c0e878467 /lib/bb/fetch2/__init__.py
parentf2d3f3a9b71c2de5c7dfb219dbe690705e595e1c (diff)
downloadopenembedded-core-contrib-marquiz/bitbake/checksum-refactor.tar.gz
bb/fetch2: drop checksum cachemarquiz/bitbake/checksum-refactor
It is not used for anything, anymore. Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Diffstat (limited to 'lib/bb/fetch2/__init__.py')
-rw-r--r--lib/bb/fetch2/__init__.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/bb/fetch2/__init__.py b/lib/bb/fetch2/__init__.py
index 7e246555d1..45240e55b9 100644
--- a/lib/bb/fetch2/__init__.py
+++ b/lib/bb/fetch2/__init__.py
@@ -39,7 +39,6 @@ import bb.process
import subprocess
__version__ = "2"
-_checksum_cache = bb.checksum.FileChecksumCache()
logger = logging.getLogger("BitBake.Fetcher")
@@ -510,18 +509,10 @@ def fetcher_init(d):
else:
raise FetchError("Invalid SRCREV cache policy of: %s" % srcrev_policy)
- _checksum_cache.init_cache(d, d.getVar("BB_HASH_CHECKSUM_CACHE_FILE", True))
-
for m in methods:
if hasattr(m, "init"):
m.init(d)
-def fetcher_parse_save():
- _checksum_cache.save_extras()
-
-def fetcher_parse_done():
- _checksum_cache.save_merge()
-
def fetcher_compare_revisions():
"""
Compare the revisions in the persistant cache with current values and
@@ -1132,15 +1123,6 @@ def get_checksum_file_list(d):
return " ".join(filelist)
-def get_file_checksums(filelist, pn):
- """Get a list of the checksums for a list of local files
-
- Returns the checksums for a list of local files, caching the results as
- it proceeds
-
- """
- return _checksum_cache.get_checksums(filelist, pn)
-
class FetchData(object):
"""