diff options
| -rw-r--r-- | meta/classes/reproducible_build.bbclass | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/meta/classes/reproducible_build.bbclass b/meta/classes/reproducible_build.bbclass index f06e00d70d..1277764fab 100644 --- a/meta/classes/reproducible_build.bbclass +++ b/meta/classes/reproducible_build.bbclass | |||
| @@ -77,17 +77,16 @@ python create_source_date_epoch_stamp() { | |||
| 77 | import oe.reproducible | 77 | import oe.reproducible |
| 78 | 78 | ||
| 79 | epochfile = d.getVar('SDE_FILE') | 79 | epochfile = d.getVar('SDE_FILE') |
| 80 | # If it exists we need to regenerate as the sources may have changed | 80 | tmp_file = "%s.new" % epochfile |
| 81 | if os.path.isfile(epochfile): | ||
| 82 | bb.debug(1, "Deleting existing SOURCE_DATE_EPOCH from: %s" % epochfile) | ||
| 83 | os.remove(epochfile) | ||
| 84 | 81 | ||
| 85 | source_date_epoch = oe.reproducible.get_source_date_epoch(d, d.getVar('S')) | 82 | source_date_epoch = oe.reproducible.get_source_date_epoch(d, d.getVar('S')) |
| 86 | 83 | ||
| 87 | bb.debug(1, "SOURCE_DATE_EPOCH: %d" % source_date_epoch) | 84 | bb.debug(1, "SOURCE_DATE_EPOCH: %d" % source_date_epoch) |
| 88 | bb.utils.mkdirhier(d.getVar('SDE_DIR')) | 85 | bb.utils.mkdirhier(d.getVar('SDE_DIR')) |
| 89 | with open(epochfile, 'w') as f: | 86 | with open(tmp_file, 'w') as f: |
| 90 | f.write(str(source_date_epoch)) | 87 | f.write(str(source_date_epoch)) |
| 88 | |||
| 89 | os.rename(tmp_file, epochfile) | ||
| 91 | } | 90 | } |
| 92 | 91 | ||
| 93 | def get_source_date_epoch_value(d): | 92 | def get_source_date_epoch_value(d): |
| @@ -97,7 +96,7 @@ def get_source_date_epoch_value(d): | |||
| 97 | 96 | ||
| 98 | epochfile = d.getVar('SDE_FILE') | 97 | epochfile = d.getVar('SDE_FILE') |
| 99 | source_date_epoch = int(d.getVar('SOURCE_DATE_EPOCH_FALLBACK')) | 98 | source_date_epoch = int(d.getVar('SOURCE_DATE_EPOCH_FALLBACK')) |
| 100 | if os.path.isfile(epochfile): | 99 | try: |
| 101 | with open(epochfile, 'r') as f: | 100 | with open(epochfile, 'r') as f: |
| 102 | s = f.read() | 101 | s = f.read() |
| 103 | try: | 102 | try: |
| @@ -110,7 +109,7 @@ def get_source_date_epoch_value(d): | |||
| 110 | bb.warn("SOURCE_DATE_EPOCH value '%s' is invalid. Reverting to SOURCE_DATE_EPOCH_FALLBACK" % s) | 109 | bb.warn("SOURCE_DATE_EPOCH value '%s' is invalid. Reverting to SOURCE_DATE_EPOCH_FALLBACK" % s) |
| 111 | source_date_epoch = int(d.getVar('SOURCE_DATE_EPOCH_FALLBACK')) | 110 | source_date_epoch = int(d.getVar('SOURCE_DATE_EPOCH_FALLBACK')) |
| 112 | bb.debug(1, "SOURCE_DATE_EPOCH: %d" % source_date_epoch) | 111 | bb.debug(1, "SOURCE_DATE_EPOCH: %d" % source_date_epoch) |
| 113 | else: | 112 | except FileNotFoundError: |
| 114 | bb.debug(1, "Cannot find %s. SOURCE_DATE_EPOCH will default to %d" % (epochfile, source_date_epoch)) | 113 | bb.debug(1, "Cannot find %s. SOURCE_DATE_EPOCH will default to %d" % (epochfile, source_date_epoch)) |
| 115 | 114 | ||
| 116 | d.setVar('__CACHED_SOURCE_DATE_EPOCH', str(source_date_epoch)) | 115 | d.setVar('__CACHED_SOURCE_DATE_EPOCH', str(source_date_epoch)) |
