From: Anton Mikanovich <amikan@ilbers.de>
To: isar-users@googlegroups.com
Cc: Anton Mikanovich <amikan@ilbers.de>
Subject: [PATCH v2 18/18] isar-sstate: adopt sstate maintenance script
Date: Fri, 15 Jul 2022 09:04:42 +0300 [thread overview]
Message-ID: <20220715060442.18063-19-amikan@ilbers.de> (raw)
In-Reply-To: <20220715060442.18063-1-amikan@ilbers.de>
Fix sstate maintenance helper script to work with updated Bitbake
siginfo data format.
Signed-off-by: Anton Mikanovich <amikan@ilbers.de>
---
scripts/isar-sstate | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/scripts/isar-sstate b/scripts/isar-sstate
index 8ea85ed..cb2d2d0 100755
--- a/scripts/isar-sstate
+++ b/scripts/isar-sstate
@@ -124,7 +124,7 @@ import shutil
import sys
from tempfile import NamedTemporaryFile
import time
-import pickle
+import json
sys.path.insert(0, os.path.join(os.path.dirname(os.path.realpath(__file__)), '..', 'bitbake', 'lib'))
from bb.siggen import compare_sigfiles
@@ -802,16 +802,18 @@ def sstate_lint(target, verbose, sources_dir, build_dir, exit_code, **kwargs):
hits_other = 0
for sig in cache_sigs.values():
sig_file = target.download(sig.path)
- with open(sig_file, 'rb') as f:
- sigdata_raw = pickle.Unpickler(f)
- sigdata = sigdata_raw.load()
+
+ with bb.compress.zstd.open(sig_file, "rt", encoding="utf-8", num_threads=1) as f:
+ sigdata = json.load(f, object_hook=bb.siggen.SetDecoder)
+
+ bb.siggen.handle_renames(sigdata)
pn_issues = []
for name, val in sigdata['varvals'].items():
if not name[0].isupper():
continue
- if sigdata['basewhitelist'] and name in sigdata['basewhitelist'] or \
- sigdata['taskwhitelist'] and name in sigdata['taskwhitelist'] or \
+ if sigdata['basehash_ignore_vars'] and name in sigdata['basehash_ignore_vars'] or \
+ sigdata['taskhash_ignore_tasks'] and name in sigdata['taskhash_ignore_tasks'] or \
name in ADDITIONAL_IGNORED_VARNAMES:
continue
if not val or not val[0] == '/':
--
2.17.1
next prev parent reply other threads:[~2022-07-15 6:05 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-15 6:04 [PATCH v2 00/18] Migrate to Bitbake 2.0 Anton Mikanovich
2022-07-15 6:04 ` [PATCH v2 01/18] meta: change deprecated parse calls Anton Mikanovich
2022-07-15 6:04 ` [PATCH v2 02/18] scripts/contrib: Add override conversion script Anton Mikanovich
2022-07-15 6:04 ` [PATCH v2 03/18] scripts/contrib: configure " Anton Mikanovich
2022-07-15 6:04 ` [PATCH v2 04/18] meta-isar: set default branch names Anton Mikanovich
2022-07-15 6:04 ` [PATCH v2 05/18] meta: remove non recommended syntax Anton Mikanovich
2022-07-15 6:04 ` [PATCH v2 06/18] bitbake: Update to Bitbake 2.0.1 Anton Mikanovich
2022-07-15 6:04 ` [PATCH v2 07/18] doc: require zstd tool Anton Mikanovich
2022-07-15 6:04 ` [PATCH v2 08/18] meta: update bitbake variables Anton Mikanovich
2022-07-15 6:04 ` [PATCH v2 09/18] bitbake.conf: align hash vars with openembedded Anton Mikanovich
2022-07-15 6:04 ` [PATCH v2 10/18] meta: mark network and sudo tasks Anton Mikanovich
2022-07-15 6:04 ` [PATCH v2 11/18] meta: update overrides syntax Anton Mikanovich
2022-07-15 6:04 ` [PATCH v2 12/18] sstate: update bbclass Anton Mikanovich
2022-07-15 6:04 ` [PATCH v2 13/18] bitbake.conf: declare default XZ and ZSTD options Anton Mikanovich
2022-07-15 6:04 ` [PATCH v2 14/18] Revert "devshell: Use different termination test to avoid warnings" Anton Mikanovich
2022-07-15 6:04 ` [PATCH v2 15/18] meta: align with OE-core libraries update Anton Mikanovich
2022-07-15 6:04 ` [PATCH v2 16/18] Revert "Revert "devshell: Use different termination test to avoid warnings"" Anton Mikanovich
2022-07-15 6:04 ` [PATCH v2 17/18] CI: Adopt tests to syntax change Anton Mikanovich
2022-07-15 6:04 ` Anton Mikanovich [this message]
2022-07-19 11:36 ` [PATCH v2 00/18] Migrate to Bitbake 2.0 Schmidt, Adriaan
2022-07-19 13:09 ` Anton Mikanovich
2022-07-20 5:26 ` Schmidt, Adriaan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220715060442.18063-19-amikan@ilbers.de \
--to=amikan@ilbers.de \
--cc=isar-users@googlegroups.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox