mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@db180c0
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
Set correct Python executable path
|
||||
|
||||
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
|
||||
|
||||
--- python-ipython-2.1.0/setupbase.py 2014-05-21 15:19:12.000000000 -0400
|
||||
+++ python-ipython-2.1.0-new/setupbase.py 2014-07-23 23:34:32.892030423 -0400
|
||||
@@ -394,7 +394,7 @@ class build_scripts_entrypt(build_script
|
||||
|
||||
mod, func = entrypt.split(':')
|
||||
with open(outfile, 'w') as f:
|
||||
- f.write(script_src.format(executable=sys.executable,
|
||||
+ f.write(script_src.format(executable='/usr/bin/env python',
|
||||
mod=mod, func=func))
|
||||
|
||||
return outfiles, outfiles
|
||||
19
package/python-ipython/Config.in
Normal file
19
package/python-ipython/Config.in
Normal file
@@ -0,0 +1,19 @@
|
||||
config BR2_PACKAGE_PYTHON_IPYTHON
|
||||
bool "python-ipython"
|
||||
depends on BR2_PACKAGE_PYTHON3
|
||||
select BR2_PACKAGE_PYTHON_BACKCALL # runtime
|
||||
select BR2_PACKAGE_PYTHON_DECORATOR # runtime
|
||||
select BR2_PACKAGE_PYTHON_JEDI # runtime
|
||||
select BR2_PACKAGE_PYTHON_PICKLESHARE # runtime
|
||||
select BR2_PACKAGE_PYTHON_PROMPT_TOOLKIT # runtime
|
||||
select BR2_PACKAGE_PYTHON_PYGMENTS # runtime
|
||||
select BR2_PACKAGE_PYTHON_PEXPECT # runtime
|
||||
select BR2_PACKAGE_PYTHON_TRAITLETS # runtime
|
||||
help
|
||||
IPython is a command shell for interactive computing in
|
||||
multiple programming languages, originally developed for the
|
||||
Python programming language, that offers enhanced
|
||||
introspection, rich media, additional shell syntax, tab
|
||||
completion, and rich history.
|
||||
|
||||
http://ipython.org/
|
||||
6
package/python-ipython/python-ipython.hash
Normal file
6
package/python-ipython/python-ipython.hash
Normal file
@@ -0,0 +1,6 @@
|
||||
# md5, sha256 from https://pypi.org/pypi/ipython/json
|
||||
md5 826178c87b7b96651ce8b26a779e3016 ipython-7.4.0.tar.gz
|
||||
sha256 b038baa489c38f6d853a3cfc4c635b0cda66f2864d136fe8f40c1a6e334e2a6b ipython-7.4.0.tar.gz
|
||||
# Locally computed sha256
|
||||
sha256 341afcbd729887b7046fe7b98fc4f4edff3aed8d38f06eefd9b30670f043df17 COPYING.rst
|
||||
sha256 e0e390748ed440ab893ca1f135a88a920aaf5409dbb90a5b427c75c5e51268fb LICENSE
|
||||
14
package/python-ipython/python-ipython.mk
Normal file
14
package/python-ipython/python-ipython.mk
Normal file
@@ -0,0 +1,14 @@
|
||||
################################################################################
|
||||
#
|
||||
# python-ipython
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PYTHON_IPYTHON_VERSION = 7.4.0
|
||||
PYTHON_IPYTHON_SOURCE = ipython-$(PYTHON_IPYTHON_VERSION).tar.gz
|
||||
PYTHON_IPYTHON_SITE = https://files.pythonhosted.org/packages/e3/88/39c8b7701b2f7d5c8f3a1796b0c174f21071232bc5b242feb670e913acc6
|
||||
PYTHON_IPYTHON_LICENSE = BSD-3-Clause
|
||||
PYTHON_IPYTHON_LICENSE_FILES = COPYING.rst LICENSE
|
||||
PYTHON_IPYTHON_SETUP_TYPE = distutils
|
||||
|
||||
$(eval $(python-package))
|
||||
Reference in New Issue
Block a user