0002-fix-QtCoremod.sip-syntax-error.patch 1.5 KB

1234567891011121314151617181920212223242526272829
  1. From d004e17cd92f660cb386d91e14729a03cab087d4 Mon Sep 17 00:00:00 2001
  2. From: Adam Duskett <aduskett@gmail.com>
  3. Date: Sun, 22 May 2022 13:23:27 -0700
  4. Subject: [PATCH] fix QtCoremod.sip syntax error
  5. Fixes PyQt5/bindings/QtCore/QtCoremod.sip:23: syntax error from the
  6. python-sip-4 package.
  7. Signed-off-by: Adam Duskett <aduskett@gmail.com>
  8. ---
  9. sip/QtCore/QtCoremod.sip | 2 +-
  10. 1 file changed, 1 insertion(+), 1 deletion(-)
  11. diff --git a/sip/QtCore/QtCoremod.sip b/sip/QtCore/QtCoremod.sip
  12. index b525bc5..1e2b8ba 100644
  13. --- a/sip/QtCore/QtCoremod.sip
  14. +++ b/sip/QtCore/QtCoremod.sip
  15. @@ -20,7 +20,7 @@
  16. // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  17. -%Module(name=PyQt5.QtCore, call_super_init=True, default_VirtualErrorHandler=PyQt5, keyword_arguments="Optional", use_limited_api=True, py_ssize_t_clean=True)
  18. +%Module(name=PyQt5.QtCore, call_super_init=True, default_VirtualErrorHandler=PyQt5, keyword_arguments="Optional", use_limited_api=True)
  19. %Timeline {Qt_5_0_0 Qt_5_0_1 Qt_5_0_2 Qt_5_1_0 Qt_5_1_1 Qt_5_2_0 Qt_5_2_1 Qt_5_3_0 Qt_5_3_1 Qt_5_3_2 Qt_5_4_0 Qt_5_4_1 Qt_5_4_2 Qt_5_5_0 Qt_5_5_1 Qt_5_6_0 Qt_5_6_1 Qt_5_6_2 Qt_5_6_3 Qt_5_6_4 Qt_5_6_5 Qt_5_6_6 Qt_5_6_7 Qt_5_6_8 Qt_5_6_9 Qt_5_7_0 Qt_5_7_1 Qt_5_8_0 Qt_5_8_1 Qt_5_9_0 Qt_5_9_1 Qt_5_9_2 Qt_5_9_3 Qt_5_9_4 Qt_5_9_5 Qt_5_9_6 Qt_5_9_7 Qt_5_9_8 Qt_5_9_9 Qt_5_10_0 Qt_5_10_1 Qt_5_11_0 Qt_5_11_1 Qt_5_11_2 Qt_5_11_3 Qt_5_12_0 Qt_5_12_1 Qt_5_12_2 Qt_5_12_3 Qt_5_12_4 Qt_5_13_0 Qt_5_14_0 Qt_5_15_0}
  20. --
  21. 2.36.1