Stefan Dirsch
3480334669
the code in the function saw further fixes later on in the 24.2 branch. - integrated changes by Andreas Schwab <schwab@suse.de> * enable glamor also for driver build * update rust crates + syn 2.0.39 + proc_macro2 1.0.86 * enable valgrind also on riscv64 * added libvdpau_gallium package for generic VDPAU state tracker * switch from "swrast" to "softpipe,llvmpipe" drivers * use "-Dllvm-orcjit=true" for riscv64 build * added libgallium to Mesa-dri package - re-disable llvm for non-driver build by switching from "swrast" to "softpipe" for gallium drivers in that case - make previous changelog a bit nicer - Update to release 24.2.2 --> https://docs.mesa3d.org/relnotes/24.2.2 --> https://docs.mesa3d.org/relnotes/24.2.1 --> https://docs.mesa3d.org/relnotes/24.2.0 - refreshed the following patches with quilt: * U_fix-mpeg1_2-decode-mesa-20.2.patch * n_add-Mesa-headers-again.patch * n_stop-iris-flicker.patch * u_dep_xcb.patch * u_fix_rust_bindgen.patch - dropped U_radeonsi-vcn-Add-decode-DPB-buffers-as-CS-dependency.patch OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/Mesa?expand=0&rev=1328
55 lines
1.7 KiB
Diff
55 lines
1.7 KiB
Diff
From a14fa9920669c8d6d911e375376f2e45052a31d6 Mon Sep 17 00:00:00 2001
|
|
From: Jordan Justen <jordan.l.justen@intel.com>
|
|
Date: Sat, 20 Jan 2024 01:07:23 -0800
|
|
Subject: [PATCH 1/2] intel/genxml: Drop "from __future__ import annotations"
|
|
|
|
This is not supported in Python 3.6, and optional in 3.7+.
|
|
|
|
Ref: f1eae2f8bbe ("python: drop python2 support")
|
|
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
|
|
---
|
|
src/intel/genxml/gen_sort_tags.py | 1 -
|
|
src/intel/genxml/genxml_import.py | 1 -
|
|
src/intel/genxml/intel_genxml.py | 1 -
|
|
3 files changed, 3 deletions(-)
|
|
|
|
diff --git a/src/intel/genxml/gen_sort_tags.py b/src/intel/genxml/gen_sort_tags.py
|
|
index dcdba333fe6..44cd152cd11 100755
|
|
--- a/src/intel/genxml/gen_sort_tags.py
|
|
+++ b/src/intel/genxml/gen_sort_tags.py
|
|
@@ -2,7 +2,6 @@
|
|
# Copyright © 2019, 2022 Intel Corporation
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
-from __future__ import annotations
|
|
import argparse
|
|
import copy
|
|
import intel_genxml
|
|
diff --git a/src/intel/genxml/genxml_import.py b/src/intel/genxml/genxml_import.py
|
|
index 76a7c77eb4c..442b4726d08 100755
|
|
--- a/src/intel/genxml/genxml_import.py
|
|
+++ b/src/intel/genxml/genxml_import.py
|
|
@@ -2,7 +2,6 @@
|
|
# Copyright © 2019, 2022 Intel Corporation
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
-from __future__ import annotations
|
|
import argparse
|
|
import copy
|
|
import intel_genxml
|
|
diff --git a/src/intel/genxml/intel_genxml.py b/src/intel/genxml/intel_genxml.py
|
|
index 2b7b4d8391a..9388ebecfce 100755
|
|
--- a/src/intel/genxml/intel_genxml.py
|
|
+++ b/src/intel/genxml/intel_genxml.py
|
|
@@ -2,7 +2,6 @@
|
|
# Copyright © 2019, 2022 Intel Corporation
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
-from __future__ import annotations
|
|
from collections import OrderedDict
|
|
import copy
|
|
import io
|
|
--
|
|
2.35.3
|
|
|