package/python-ipython: bump to version 8.6.0

Drop patch which is no longer needed.

Migrate from distutils to setuptools infrastructure.

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
James Hilliard 2022-11-02 16:17:22 -06:00 committed by Thomas Petazzoni
parent 3de9aa3eea
commit 2e6c204f51
3 changed files with 5 additions and 20 deletions

View File

@ -1,15 +0,0 @@
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

View File

@ -1,6 +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
md5 8c98f6def0622ea32975cb779247c3d7 ipython-8.6.0.tar.gz
sha256 7c959e3dedbf7ed81f9b9d8833df252c430610e2a4a6464ec13cd20975ce20a5 ipython-8.6.0.tar.gz
# Locally computed sha256 checksums
sha256 341afcbd729887b7046fe7b98fc4f4edff3aed8d38f06eefd9b30670f043df17 COPYING.rst
sha256 e0e390748ed440ab893ca1f135a88a920aaf5409dbb90a5b427c75c5e51268fb LICENSE

View File

@ -4,13 +4,13 @@
#
################################################################################
PYTHON_IPYTHON_VERSION = 7.31.1
PYTHON_IPYTHON_VERSION = 8.6.0
PYTHON_IPYTHON_SOURCE = ipython-$(PYTHON_IPYTHON_VERSION).tar.gz
PYTHON_IPYTHON_SITE = https://files.pythonhosted.org/packages/fb/39/c1947dc1bb993a35469ca474535cb3214c91f5f9a7752a1fcbd9b6b37dde
PYTHON_IPYTHON_SITE = https://files.pythonhosted.org/packages/7f/59/05e94e067afb61460f0d5229a1edb800e2f65b8436085fad9cd262d80d45
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
PYTHON_IPYTHON_SETUP_TYPE = setuptools
$(eval $(python-package))