initial buildroot for linux 5.15
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
|
||||
@@ -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/
|
||||
@@ -0,0 +1,6 @@
|
||||
# md5, sha256 from https://pypi.org/pypi/ipython/json
|
||||
md5 f733048322cd34ce392ec5404813540b ipython-7.28.0.tar.gz
|
||||
sha256 2097be5c814d1b974aea57673176a924c4c8c9583890e7a5f082f547b9975b11 ipython-7.28.0.tar.gz
|
||||
# Locally computed sha256 checksums
|
||||
sha256 341afcbd729887b7046fe7b98fc4f4edff3aed8d38f06eefd9b30670f043df17 COPYING.rst
|
||||
sha256 e0e390748ed440ab893ca1f135a88a920aaf5409dbb90a5b427c75c5e51268fb LICENSE
|
||||
@@ -0,0 +1,16 @@
|
||||
################################################################################
|
||||
#
|
||||
# python-ipython
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PYTHON_IPYTHON_VERSION = 7.28.0
|
||||
PYTHON_IPYTHON_SOURCE = ipython-$(PYTHON_IPYTHON_VERSION).tar.gz
|
||||
PYTHON_IPYTHON_SITE = https://files.pythonhosted.org/packages/e2/c8/7046d0409a90e31263d5bbaa708347d522ac584a1140c01a951d9deb1792
|
||||
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