Searched refs:epochfile (Results 1 – 1 of 1) sorted by relevance
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/ |
| H A D | reproducible.py | 160 def epochfile_read(epochfile, d): argument 162 if cached and efile == epochfile: 165 if cached and epochfile != efile: 166 bb.debug(1, "Epoch file changed from %s to %s" % (efile, epochfile)) 170 with open(epochfile, 'r') as f: 179 …bb.debug(1, "Cannot find %s. SOURCE_DATE_EPOCH will default to %d" % (epochfile, source_date_epoch… 181 d.setVar('__CACHED_SOURCE_DATE_EPOCH', (str(source_date_epoch), epochfile)) 184 def epochfile_write(source_date_epoch, epochfile, d): argument 187 bb.utils.mkdirhier(os.path.dirname(epochfile)) 189 tmp_file = "%s.new" % epochfile [all …]
|