[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

View File

@ -0,0 +1,33 @@
From 009e5cf0750134ed5403aae23ef53a177764ca04 Mon Sep 17 00:00:00 2001
From: Adam Duskett <aduskett@gmail.com>
Date: Wed, 29 Dec 2021 13:49:15 -0800
Subject: [PATCH] remove join from sip_h.files string
When cross compiling, the configure system appends the hosts /usr/ directory
to the path of which to find files that python-sip will install. This leads to
python-sip attempting to install everything under the hosts /usr directory into
the targets /usr/include/python directory.
Remove the .join() in the sip_h.files string to prevent the above issue.
Signed-off-by: Adam Duskett <aduskett@gmail.com>
---
configure.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.py b/configure.py
index 25bcaa7..fc8f2dc 100644
--- a/configure.py
+++ b/configure.py
@@ -408,7 +408,7 @@ def create_makefiles(macros):
# There will only be one element.
files, path = gen_installs[0]
pro.write("\n")
- pro.write("sip_h.files = %s\n" % " ".join(files))
+ pro.write("sip_h.files = %s\n" % files)
pro.write("sip_h.path = %s\n" % quote(path))
pro.write("INSTALLS += sip_h\n")
--
2.33.1

View File

@ -0,0 +1,17 @@
config BR2_PACKAGE_PYTHON_SIP
bool "python-sip"
depends on BR2_PACKAGE_QT5
help
SIP is a tool that makes it very easy to create Python
bindings for C and C++ libraries. It was originally
developed to create PyQt, the Python bindings for the Qt
toolkit, but can be used to create bindings for any C or C++
library.
SIP comprises a code generator and a Python module. The code
generator processes a set of specification files and
generates C or C++ code which is then compiled to create the
bindings extension module. The SIP Python module provides
support functions to the automatically generated code.
http://www.riverbankcomputing.com/software/sip/intro

View File

@ -0,0 +1,5 @@
# Locally calculated:
sha256 b39d93e937647807bac23579edbff25fe46d16213f708370072574ab1f1b4211 sip-4.19.25.tar.gz
sha256 accecbfda71ad4497bce0d451796706e734e405e5ecf3b3f9ee0cc68300a3d9c LICENSE
sha256 7ebb61006e46b9e9340dd135d5f4afbbcb1d1d6c6709f74473b35929007b9aeb LICENSE-GPL2
sha256 63cb5f5c1ea39b732c495f354f971e40f6db84c567ca5573a68bb65af07741f8 LICENSE-GPL3

View File

@ -0,0 +1,50 @@
################################################################################
#
# python-sip
#
################################################################################
PYTHON_SIP_VERSION = 4.19.25
PYTHON_SIP_SOURCE = sip-$(PYTHON_SIP_VERSION).tar.gz
PYTHON_SIP_SITE = https://www.riverbankcomputing.com/static/Downloads/sip/$(PYTHON_SIP_VERSION)
PYTHON_SIP_LICENSE = SIP license or GPL-2.0 or GPL-3.0
PYTHON_SIP_LICENSE_FILES = LICENSE LICENSE-GPL2 LICENSE-GPL3
PYTHON_SIP_DEPENDENCIES = python3 qt5base
HOST_PYTHON_SIP_DEPENDENCIES = host-python3
define HOST_PYTHON_SIP_CONFIGURE_CMDS
(cd $(@D); \
$(HOST_MAKE_ENV) $(HOST_CONFIGURE_OPTS) $(HOST_DIR)/bin/python configure.py)
endef
define HOST_PYTHON_SIP_BUILD_CMDS
$(HOST_MAKE_ENV) $(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D)
endef
define HOST_PYTHON_SIP_INSTALL_CMDS
$(HOST_MAKE_ENV) $(HOST_CONFIGURE_OPTS) $(MAKE) install -C $(@D)
endef
define PYTHON_SIP_CONFIGURE_CMDS
(cd $(@D); \
$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(HOST_DIR)/bin/python configure.py \
--bindir $(TARGET_DIR)/usr/bin \
--destdir $(TARGET_DIR)/usr/lib/python$(PYTHON3_VERSION_MAJOR)/site-packages \
--incdir $(STAGING_DIR)/usr/include/python$(PYTHON3_VERSION_MAJOR) \
--sipdir $(TARGET_DIR)/usr/share/sip \
--sysroot $(STAGING_DIR)/usr \
--no-stubs \
--use-qmake && \
$(HOST_DIR)/bin/qmake)
endef
define PYTHON_SIP_BUILD_CMDS
$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)
endef
define PYTHON_SIP_INSTALL_TARGET_CMDS
$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) install -C $(@D)
endef
$(eval $(generic-package))
$(eval $(host-generic-package))