mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
create rootf's & SDK from 2018.02.9 buildroot (#10)
--------- Co-authored-by: tiopex <tiopxyz@gmail.com> Co-authored-by: tiopex <67048640+tiopex@users.noreply.github.com>
This commit is contained in:
@@ -15,25 +15,22 @@ dynamically, return the version of the buildroot environment.
|
||||
Written by Michael Rommel, modified for version 16.0.2 by Lionel
|
||||
Flandrin.
|
||||
|
||||
Modified for version 18.0.2 by Asaf Kahlon
|
||||
|
||||
Signed-off-by: Lionel Flandrin <lionel@svkt.org>
|
||||
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
|
||||
---
|
||||
buildutils/detect.py | 14 ++++++++------
|
||||
1 file changed, 8 insertions(+), 6 deletions(-)
|
||||
|
||||
diff --git a/buildutils/detect.py b/buildutils/detect.py
|
||||
index d1380fe..4a91351 100644
|
||||
index 9520da7..823144f 100644
|
||||
--- a/buildutils/detect.py
|
||||
+++ b/buildutils/detect.py
|
||||
@@ -120,13 +120,15 @@ def detect_zmq(basedir, compiler=None, **compiler_attrs):
|
||||
|
||||
@@ -117,13 +117,15 @@ def detect_zmq(basedir, compiler=None, **compiler_attrs):
|
||||
|
||||
cc = get_compiler(compiler=compiler, **compiler_attrs)
|
||||
efile = test_compilation(cfile, compiler=cc, **compiler_attrs)
|
||||
efile = test_compilation(cfile, compiler=cc)
|
||||
- patch_lib_paths(efile, cc.library_dirs)
|
||||
+ #patch_lib_paths(efile, cc.library_dirs)
|
||||
|
||||
|
||||
- rc, so, se = get_output_error([efile])
|
||||
- if rc:
|
||||
- msg = "Error running version detection script:\n%s\n%s" % (so,se)
|
||||
@@ -50,5 +47,5 @@ index d1380fe..4a91351 100644
|
||||
handlers = {'vers': lambda val: tuple(int(v) for v in val.split('.'))}
|
||||
|
||||
--
|
||||
2.20.1
|
||||
2.11.0
|
||||
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
detect.py: replace compile_and_run with compile_and_forget
|
||||
|
||||
This function is only used in setup.py to detect the availability of
|
||||
sys/un.h by compiling and running a small test program. Since we're
|
||||
cross-compiling we can't run the generated program, however if the
|
||||
header is missing the test will fail at the compilation step so
|
||||
running the test in unnecessary.
|
||||
|
||||
Signed-off-by: Lionel Flandrin <lionel@svkt.org>
|
||||
---
|
||||
buildutils/detect.py | 16 ++++++++--------
|
||||
setup.py | 4 ++--
|
||||
2 files changed, 10 insertions(+), 10 deletions(-)
|
||||
|
||||
diff --git a/buildutils/detect.py b/buildutils/detect.py
|
||||
index 7a6c115..9520da7 100644
|
||||
--- a/buildutils/detect.py
|
||||
+++ b/buildutils/detect.py
|
||||
@@ -58,7 +58,7 @@ def test_compilation(cfile, compiler=None, **compiler_attrs):
|
||||
cc.link_executable(objs, efile, extra_preargs=lpreargs)
|
||||
return efile
|
||||
|
||||
-def compile_and_run(basedir, src, compiler=None, **compiler_attrs):
|
||||
+def compile_and_forget(basedir, src, compiler=None, **compiler_attrs):
|
||||
if not os.path.exists(basedir):
|
||||
os.makedirs(basedir)
|
||||
cfile = pjoin(basedir, os.path.basename(src))
|
||||
@@ -66,16 +66,16 @@ def compile_and_run(basedir, src, compiler=None, **compiler_attrs):
|
||||
try:
|
||||
cc = get_compiler(compiler, **compiler_attrs)
|
||||
efile = test_compilation(cfile, compiler=cc)
|
||||
- patch_lib_paths(efile, cc.library_dirs)
|
||||
- result = Popen(efile, stdout=PIPE, stderr=PIPE)
|
||||
- so, se = result.communicate()
|
||||
- # for py3k:
|
||||
- so = so.decode()
|
||||
- se = se.decode()
|
||||
+ # patch_lib_paths(efile, cc.library_dirs)
|
||||
+ # result = Popen(efile, stdout=PIPE, stderr=PIPE)
|
||||
+ # so, se = result.communicate()
|
||||
+ # # for py3k:
|
||||
+ # so = so.decode()
|
||||
+ # se = se.decode()
|
||||
finally:
|
||||
shutil.rmtree(basedir)
|
||||
|
||||
- return result.returncode, so, se
|
||||
+ return None
|
||||
|
||||
|
||||
def detect_zmq(basedir, compiler=None, **compiler_attrs):
|
||||
diff --git a/setup.py b/setup.py
|
||||
index c3a2879..b8b0aaf 100755
|
||||
--- a/setup.py
|
||||
+++ b/setup.py
|
||||
@@ -54,7 +54,7 @@ from buildutils import (
|
||||
info, warn, fatal, debug, line, copy_and_patch_libzmq, localpath,
|
||||
fetch_libzmq, stage_platform_hpp,
|
||||
bundled_version, customize_mingw,
|
||||
- compile_and_run,
|
||||
+ compile_and_forget,
|
||||
patch_lib_paths,
|
||||
)
|
||||
|
||||
@@ -327,7 +327,7 @@ class Configure(build_ext):
|
||||
except Exception:
|
||||
pass
|
||||
try:
|
||||
- compile_and_run(self.tempdir,
|
||||
+ compile_and_forget(self.tempdir,
|
||||
pjoin('buildutils', 'check_sys_un.c'),
|
||||
**minus_zmq
|
||||
)
|
||||
--
|
||||
2.11.0
|
||||
|
||||
@@ -9,4 +9,5 @@ config BR2_PACKAGE_PYTHON_PYZMQ
|
||||
http://zeromq.org/bindings:python
|
||||
|
||||
comment "python-pyzmq needs a toolchain w/ C++, threads"
|
||||
depends on BR2_PACKAGE_PYTHON
|
||||
depends on !(BR2_INSTALL_LIBSTDCPP && BR2_TOOLCHAIN_HAS_THREADS)
|
||||
|
||||
@@ -1,6 +1,3 @@
|
||||
# md5, sha256 from https://pypi.org/pypi/pyzmq/json
|
||||
md5 200abc1a75bdcfff7adf61304f46f55e pyzmq-19.0.2.tar.gz
|
||||
sha256 296540a065c8c21b26d63e3cea2d1d57902373b16e4256afe46422691903a438 pyzmq-19.0.2.tar.gz
|
||||
# Locally computed sha256 checksums
|
||||
sha256 aef3b80570351d44e29c22d080d4e9e106b34f3fdbc5cdf9636994474c72b1a2 COPYING.BSD
|
||||
sha256 44b23767df3c0fe27f88981f09bc7f50a1695cec4b24252fa5f55f03e76bcd6d COPYING.LESSER
|
||||
# md5 from https://pypi.python.org/pypi/pyzmq/json, sha256 locally computed
|
||||
md5 9a8768b00a566a400d70318f8c359cfe pyzmq-16.0.2.tar.gz
|
||||
sha256 0322543fff5ab6f87d11a8a099c4c07dd8a1719040084b6ce9162bcdf5c45c9d pyzmq-16.0.2.tar.gz
|
||||
|
||||
@@ -4,9 +4,9 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PYTHON_PYZMQ_VERSION = 19.0.2
|
||||
PYTHON_PYZMQ_VERSION = 16.0.2
|
||||
PYTHON_PYZMQ_SOURCE = pyzmq-$(PYTHON_PYZMQ_VERSION).tar.gz
|
||||
PYTHON_PYZMQ_SITE = https://files.pythonhosted.org/packages/05/77/7483975d84fe1fd24cc67881ba7810e0e7b3ee6c2a0e002a5d6703cca49b
|
||||
PYTHON_PYZMQ_SITE = https://pypi.python.org/packages/af/37/8e0bf3800823bc247c36715a52e924e8f8fd5d1432f04b44b8cd7a5d7e55
|
||||
PYTHON_PYZMQ_LICENSE = LGPL-3.0+, BSD-3-Clause, Apache-2.0
|
||||
# Apache license only online: http://www.apache.org/licenses/LICENSE-2.0
|
||||
PYTHON_PYZMQ_LICENSE_FILES = COPYING.LESSER COPYING.BSD
|
||||
@@ -22,8 +22,4 @@ endef
|
||||
|
||||
PYTHON_PYZMQ_POST_PATCH_HOOKS += PYTHON_PYZMQ_PATCH_ZEROMQ_VERSION
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ZEROMQ_DRAFTS),y)
|
||||
PYTHON_PYZMQ_BUILD_OPTS += --enable-drafts
|
||||
endif
|
||||
|
||||
$(eval $(python-package))
|
||||
|
||||
Reference in New Issue
Block a user