generated from gaoyang3513/SDK_RK3288
[Mod] First commit
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
|
||||
18
package/python-ipython/Config.in
Normal file
18
package/python-ipython/Config.in
Normal file
@ -0,0 +1,18 @@
|
||||
config BR2_PACKAGE_PYTHON_IPYTHON
|
||||
bool "python-ipython"
|
||||
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 6907b67691ba697173a3befb2c35f7ac ipython-7.31.1.tar.gz
|
||||
sha256 b5548ec5329a4bcf054a5deed5099b0f9622eb9ea51aaa7104d215fece201d8c ipython-7.31.1.tar.gz
|
||||
# Locally computed sha256 checksums
|
||||
sha256 341afcbd729887b7046fe7b98fc4f4edff3aed8d38f06eefd9b30670f043df17 COPYING.rst
|
||||
sha256 e0e390748ed440ab893ca1f135a88a920aaf5409dbb90a5b427c75c5e51268fb LICENSE
|
||||
16
package/python-ipython/python-ipython.mk
Normal file
16
package/python-ipython/python-ipython.mk
Normal file
@ -0,0 +1,16 @@
|
||||
################################################################################
|
||||
#
|
||||
# python-ipython
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PYTHON_IPYTHON_VERSION = 7.31.1
|
||||
PYTHON_IPYTHON_SOURCE = ipython-$(PYTHON_IPYTHON_VERSION).tar.gz
|
||||
PYTHON_IPYTHON_SITE = https://files.pythonhosted.org/packages/fb/39/c1947dc1bb993a35469ca474535cb3214c91f5f9a7752a1fcbd9b6b37dde
|
||||
PYTHON_IPYTHON_LICENSE = BSD-3-Clause
|
||||
PYTHON_IPYTHON_LICENSE_FILES = COPYING.rst LICENSE
|
||||
PYTHON_IPYTHON_CPE_ID_VENDOR = ipython
|
||||
PYTHON_IPYTHON_CPE_ID_PRODUCT = ipython
|
||||
PYTHON_IPYTHON_SETUP_TYPE = distutils
|
||||
|
||||
$(eval $(python-package))
|
||||
Reference in New Issue
Block a user