From e14fc7a09fe52d45dfa62f5383d4536d51b263ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Mon, 10 Jan 2022 16:52:44 +0100 Subject: DEB sip4-tqt: Update packaging after renaming binaries to sip-tqt. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- ubuntu/_base/dependencies/sip4-tqt/debian/sip_tqt_config.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 ubuntu/_base/dependencies/sip4-tqt/debian/sip_tqt_config.py (limited to 'ubuntu/_base/dependencies/sip4-tqt/debian/sip_tqt_config.py') diff --git a/ubuntu/_base/dependencies/sip4-tqt/debian/sip_tqt_config.py b/ubuntu/_base/dependencies/sip4-tqt/debian/sip_tqt_config.py new file mode 100644 index 000000000..33ebcb65b --- /dev/null +++ b/ubuntu/_base/dependencies/sip4-tqt/debian/sip_tqt_config.py @@ -0,0 +1,13 @@ +# import the sip_tqt_config.py for the normal or the debug build + +import sys + +if getattr(sys, "pydebug", False): + try: + from sip_tqt_config_d import * + from sip_tqt_config_d import _pkg_config, _default_macros + except ImportError, msg: + raise ImportError, 'No module named sip_config; package python-sip-tqt-dbg not installed' +else: + from sip_tqt_config_nd import * + from sip_tqt_config_nd import _pkg_config, _default_macros -- cgit v1.2.1