All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 01/26] insane.bbclass: do not hardcode oe-core path in upstream-status check
@ 2021-12-04  7:12 Alexander Kanavin
  2021-12-04  7:12 ` [PATCH 02/26] perl: replace a patch with a config option Alexander Kanavin
                   ` (24 more replies)
  0 siblings, 25 replies; 47+ messages in thread
From: Alexander Kanavin @ 2021-12-04  7:12 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
---
 meta/classes/insane.bbclass | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass
index 240f3aad62..8a47da5a09 100644
--- a/meta/classes/insane.bbclass
+++ b/meta/classes/insane.bbclass
@@ -1176,7 +1176,9 @@ python do_qa_patch() {
        (_, _, fullpath, _, _, _) = bb.fetch.decodeurl(url)
 
        # skip patches not in oe-core
-       if '/meta/' not in fullpath:
+       oecore_re = re.compile(d.getVar('BBFILE_PATTERN_core'))
+       match_oecore = oecore_re.search(fullpath)
+       if not match_oecore:
            continue
 
        content = open(fullpath, encoding='utf-8', errors='ignore').read()
-- 
2.20.1



^ permalink raw reply related	[flat|nested] 47+ messages in thread

end of thread, other threads:[~2021-12-16  1:44 UTC | newest]

Thread overview: 47+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-04  7:12 [PATCH 01/26] insane.bbclass: do not hardcode oe-core path in upstream-status check Alexander Kanavin
2021-12-04  7:12 ` [PATCH 02/26] perl: replace a patch with a config option Alexander Kanavin
2021-12-04  7:13 ` [PATCH 03/26] meson: configure and use generic exe_wrapper Alexander Kanavin
2021-12-08  9:27   ` [OE-core] " Hsia-Jun Li
2021-12-08  9:32     ` Alexander Kanavin
2021-12-09  2:55       ` Hsia-Jun Li
2021-12-15 14:07   ` Matt Madison
2021-12-15 14:52     ` Alexander Kanavin
2021-12-15 17:40       ` Khem Raj
2021-12-15 17:43         ` Alexander Kanavin
2021-12-15 17:56           ` Khem Raj
2021-12-15 18:57             ` Alexander Kanavin
2021-12-04  7:13 ` [PATCH 04/26] perlcross: do not copy ${S}/patches into sysroot Alexander Kanavin
2021-12-04  7:13 ` [PATCH 05/26] python3: drop unneeded multiprocessing module patch Alexander Kanavin
2021-12-06 11:07   ` [OE-core] " Richard Purdie
2021-12-06 16:13     ` Khem Raj
2021-12-06 16:22       ` Alexander Kanavin
2021-12-04  7:13 ` [PATCH 06/26] python3: mark patch as inappropriate, with better explanation Alexander Kanavin
2021-12-04  7:13 ` [PATCH 07/26] vala: submit patch upstream Alexander Kanavin
2021-12-04  7:13 ` [PATCH 08/26] valgrind: remove unneeded patch Alexander Kanavin
2021-12-04  7:13 ` [PATCH 09/26] lighttpd: remove unneeded (since meson switch) patch Alexander Kanavin
2021-12-04  7:13 ` [PATCH 10/26] stress-ng: submit patch upstream Alexander Kanavin
2021-12-04  7:13 ` [PATCH 11/26] zstd: " Alexander Kanavin
2021-12-04  7:13 ` [PATCH 12/26] sudo: " Alexander Kanavin
2021-12-04  7:13 ` [PATCH 13/26] adwaita-icon-theme: " Alexander Kanavin
2021-12-04  7:13 ` [PATCH 14/26] igt-gpu-tools: correct patch status Alexander Kanavin
2021-12-04  7:13 ` [PATCH 15/26] wayland: drop unnecessary patch Alexander Kanavin
2021-12-04  7:13 ` [PATCH 16/26] xserver-xorg: remove unneeded patch Alexander Kanavin
2021-12-04  7:13 ` [PATCH 17/26] kexec-tools: drop " Alexander Kanavin
2021-12-04  7:13 ` [PATCH 18/26] piglit: submit patches upstream Alexander Kanavin
2021-12-04  7:13 ` [PATCH 19/26] lttng: " Alexander Kanavin
2021-12-04  7:13 ` [PATCH 20/26] libid3tag: move to meta-oe Alexander Kanavin
2021-12-04  7:13 ` [PATCH 21/26] systemtap: submit patch upstream Alexander Kanavin
2021-12-04  7:13 ` [PATCH 22/26] ffmpeg: " Alexander Kanavin
2021-12-04  7:13 ` [PATCH 23/26] libfm: submit patches upstream Alexander Kanavin
2021-12-04  7:13 ` [PATCH 24/26] libgcrypt: submit patch upstream Alexander Kanavin
2021-12-04  7:13 ` [PATCH 25/26] libgpg-error: " Alexander Kanavin
2021-12-04  7:13 ` [PATCH 26/26] serf: mark patches as inappropriate for upstream submission Alexander Kanavin
2021-12-05  1:27   ` [OE-core] " Peter Kjellerstedt
2021-12-06 10:25   ` Ross Burton
2021-12-06 11:03     ` Alexander Kanavin
2021-12-06 14:08       ` Ross Burton
2021-12-06 15:45         ` Alexander Kanavin
     [not found]         ` <16BE34F09726DD19.18170@lists.openembedded.org>
2021-12-06 15:50           ` Alexander Kanavin
2021-12-06 16:41             ` Richard Purdie
2021-12-06 16:47               ` Konrad Weihmann
2021-12-06 17:03                 ` Alexander Kanavin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.