]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
bb/fetch2: drop checksum cache marquiz/bitbake/checksum-refactor
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>
Thu, 18 Feb 2016 17:39:10 +0000 (19:39 +0200)
committerMarkus Lehtonen <markus.lehtonen@linux.intel.com>
Tue, 10 May 2016 09:27:13 +0000 (12:27 +0300)
It is not used for anything, anymore.

Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
lib/bb/cooker.py
lib/bb/fetch2/__init__.py

index b2187d7d5ff42afdf0f0b4d6d09a2b75ea318999..04ef8e0229495889a7f1a474fcd5ffe1f6c2a1d3 100644 (file)
@@ -2040,7 +2040,6 @@ class CookerParser(object):
                 Parser.cfg = self.cfgdata
                 bb.utils.set_process_name(multiprocessing.current_process().name)
                 multiprocessing.util.Finalize(None, bb.codeparser.parser_cache_save, exitpriority=1)
-                multiprocessing.util.Finalize(None, bb.fetch.fetcher_parse_save, exitpriority=1)
 
             self.feeder_quit = multiprocessing.Queue(maxsize=1)
             self.parser_quit = multiprocessing.Queue(maxsize=self.num_processes)
@@ -2094,7 +2093,6 @@ class CookerParser(object):
         sync.start()
         multiprocessing.util.Finalize(None, sync.join, exitpriority=-100)
         bb.codeparser.parser_cache_savemerge()
-        bb.fetch.fetcher_parse_done()
         if self.cooker.configuration.profile:
             profiles = []
             for i in self.process_names:
index 7e246555d19062f93e37e1ab4ebbda5582820519..45240e55b9684400602f3a81a544973ddc9d0c27 100644 (file)
@@ -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):
     """