sys-apps/drm_info: add 2.7.0, drop 2.6.0

Signed-off-by: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
This commit is contained in:
Haelwenn (lanodan) Monnier
2024-11-25 02:42:13 +01:00
parent e55fb292b7
commit 47c9ba0eaf
3 changed files with 1 additions and 30 deletions

View File

@@ -1 +1 @@
DIST drm_info-v2.6.0.tar.bz2 16710 BLAKE2B 345b682156c2736102b14aa4f415ee676aa50342aaa0f30f23ac5fdf823883423e2a8c17a08d0e46b3e9a09a418d5a6578cba76037d18c498faed88041021e32 SHA512 19d7c7ded1b7ee2d9f9e1ebb2216a3ce6a9b8faca9ef98f8ab8882059592e513a6bc75f41efa5c5daf9f750e9457da65dfb8dad84c41fd22500818c52e4caa68
DIST drm_info-v2.7.0.tar.bz2 16899 BLAKE2B 59c049613aebada228fa4a99af0baff60b5a4db8ce849b0ad59b0e4b1e0471306f5051c0962197d01fc4a06a603fcff14b5c0ce1a8013166758e398ef1f8a320 SHA512 da62282a265358b336c0cfe6a4df2a9e8b8545f15aea33deaa03ad2b79a3c5dcd3b2a3c290faaf595118686b548cc2d60cb2bc411bb9fb255fae2778cfc2bde3

View File

@@ -1,29 +0,0 @@
From 42dad741607d8889f93b2a12725af362c09732a2 Mon Sep 17 00:00:00 2001
From: Simon Ser <contact@emersion.fr>
Date: Sun, 10 Jan 2021 12:24:04 +0100
Subject: [PATCH] Match #define when extracting DRM modifiers
Newer drm_fourcc.h headers have comments which refer to
DRM_FORMAT_MOD_*. These were matched by the regex.
Fix the regex by requiring a "#define" prefix. I checked that only the
duplicate values were removed using diff.
---
fourcc.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/fourcc.py b/fourcc.py
index 23f7be6..ebee1d9 100755
--- a/fourcc.py
+++ b/fourcc.py
@@ -22,8 +22,8 @@ def afbc_print(f, l):
info = {
'fmt': r'^#define (\w+)\s*(?:\\$\s*)?fourcc_code',
- 'basic_pre': r'\bI915_FORMAT_MOD_\w+\b',
- 'basic_post': r'\b(DRM_FORMAT_MOD_(?:INVALID|LINEAR|SAMSUNG|QCOM|VIVANTE|NVIDIA|BROADCOM|ALLWINNER)\w*)\s',
+ 'basic_pre': r'^#define (I915_FORMAT_MOD_\w+)\b',
+ 'basic_post': r'^#define (DRM_FORMAT_MOD_(?:INVALID|LINEAR|SAMSUNG|QCOM|VIVANTE|NVIDIA|BROADCOM|ALLWINNER)\w*)\s',
'afbc_block': r'\bAFBC_FORMAT_MOD_BLOCK_SIZE(?:_\d+x\d+)+\b',
'afbc_bitmask': r'\bAFBC_FORMAT_MOD_[A-Z]+\b',
}