Warning, /graphics/krita/3rdparty/ext_pyqt/0001-Fix-Qt-composite-module-lacking-a-platform-tag-on-ma.patch is written in an unsupported language. File is not indexed.

0001 From aa486a6629eb92694f37b7adcb155f879403ad2a Mon Sep 17 00:00:00 2001
0002 From: "L. E. Segovia" <amy@amyspark.me>
0003 Date: Thu, 9 Feb 2023 13:16:11 -0300
0004 Subject: [PATCH] Fix Qt composite module lacking a platform tag on macOS
0005 
0006 Co-authored-by: Ivan Yossi <ghevan@gmail.com>
0007 ---
0008  project.py | 2 ++
0009  1 file changed, 2 insertions(+)
0010 
0011 diff --git a/project.py b/project.py
0012 index 7cd0b31..61aca2a 100644
0013 --- a/project.py
0014 +++ b/project.py
0015 @@ -196,6 +196,8 @@ del find_qt
0016          # Add the composite module.
0017          if 'Qt' in self.bindings:
0018              self._add_composite_module(tool)
0019 +            # Also handle the platform tag for it.
0020 +            self.bindings['Qt'].tags.append(plattag)
0021  
0022          # Always install the uic module.
0023          installable = Installable('uic', target_subdir='PyQt5')
0024 -- 
0025 2.37.1.windows.1
0026