python-sip/disable-strip.diff
Luca Beltrame d8aaf213bc Accepting request 830078 from home:bnavigator:branches:KDE:Qt5
- Update to 4.19.24
  * Added support for Python v3.9.
  * %InstanceCode is now used to provide the default result of
    virtual handlers that return a class or mapped type by value.
  * 'android_abi' can now be used in a configuration file when
    building the sip module using qmake.  This is required when
    using Qt v5.14 or later on Android.
- all intermediate versions are tagged "minor bug-fix release"
- refresh disable-strip.diff

And it's time for SIP 5!

OBS-URL: https://build.opensuse.org/request/show/830078
OBS-URL: https://build.opensuse.org/package/show/KDE:Qt5/python-sip?expand=0&rev=39
2020-08-28 06:56:35 +00:00

31 lines
1.4 KiB
Diff

commit c59ca3fa7a63c7c13fb6be2d9642feeeaef603e2
Author: Christophe Giboudeaux <christophe@krop.fr>
Date: Sun Oct 21 11:29:04 2018 +0200
Don't strip files.
This prevents the debug package from being created.
Index: sip-4.19.24/siputils.py
===================================================================
--- sip-4.19.24.orig/siputils.py
+++ sip-4.19.24/siputils.py
@@ -1474,7 +1474,7 @@ class ModuleMakefile(Makefile):
"""
def __init__(self, configuration, build_file, install_dir=None, static=0,
console=0, qt=0, opengl=0, threaded=0, warnings=1, debug=0,
- dir=None, makefile="Makefile", installs=None, strip=1,
+ dir=None, makefile="Makefile", installs=None, strip=0,
export_all=0, universal=None, arch=None,
deployment_target=None):
"""Initialise an instance of a module Makefile.
@@ -1785,7 +1785,7 @@ class SIPModuleMakefile(ModuleMakefile):
"""
def __init__(self, configuration, build_file, install_dir=None, static=0,
console=0, qt=0, opengl=0, threaded=0, warnings=1, debug=0,
- dir=None, makefile="Makefile", installs=None, strip=1,
+ dir=None, makefile="Makefile", installs=None, strip=0,
export_all=0, universal=None, arch=None, prot_is_public=0,
deployment_target=None):
"""Initialise an instance of a SIP generated module Makefile.