diff options
author | Trevor Gamblin <tgamblin@baylibre.com> | 2024-09-24 07:54:59 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-09-30 17:00:50 +0100 |
commit | d6ede9c73b44062d8831a08f522d519591bf29c2 (patch) | |
tree | 17711c77f409da9d7ed38361c9551e6bb6f967dd /meta/lib/patchtest/patterns.py | |
parent | bb0f1625d7655d04c6df3c144e488f676ff2f762 (diff) | |
download | poky-d6ede9c73b44062d8831a08f522d519591bf29c2.tar.gz |
patchtest: mbox.py: new data implementation
Consolidate and improve some objects:
- absorb utils.py functionality
- repo.py: use mbox.py
- repo.py: remove some cruft
- utils.py: replace with logs.py
- utils.py: delete
- patch.py: delete
- scripts/patchtest: use logging directly
- general cleanup
(From OE-Core rev: d4fbdb1d15f281b236137d63710c73bca8911a36)
Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/patchtest/patterns.py')
-rw-r--r-- | meta/lib/patchtest/patterns.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/meta/lib/patchtest/patterns.py b/meta/lib/patchtest/patterns.py index ba97a4ffe9..b703b0c8b9 100644 --- a/meta/lib/patchtest/patterns.py +++ b/meta/lib/patchtest/patterns.py | |||
@@ -10,11 +10,8 @@ import pyparsing | |||
10 | colon = pyparsing.Literal(":") | 10 | colon = pyparsing.Literal(":") |
11 | line_start = pyparsing.LineStart() | 11 | line_start = pyparsing.LineStart() |
12 | line_end = pyparsing.LineEnd() | 12 | line_end = pyparsing.LineEnd() |
13 | at = pyparsing.Literal("@") | ||
14 | lessthan = pyparsing.Literal("<") | 13 | lessthan = pyparsing.Literal("<") |
15 | greaterthan = pyparsing.Literal(">") | 14 | greaterthan = pyparsing.Literal(">") |
16 | opensquare = pyparsing.Literal("[") | ||
17 | closesquare = pyparsing.Literal("]") | ||
18 | inappropriate = pyparsing.CaselessLiteral("Inappropriate") | 15 | inappropriate = pyparsing.CaselessLiteral("Inappropriate") |
19 | submitted = pyparsing.CaselessLiteral("Submitted") | 16 | submitted = pyparsing.CaselessLiteral("Submitted") |
20 | 17 | ||