diff --git a/dev-python/ipython/Manifest b/dev-python/ipython/Manifest new file mode 100644 index 000000000..9d09cbc78 --- /dev/null +++ b/dev-python/ipython/Manifest @@ -0,0 +1 @@ +DIST ipython-7.13.0.tar.gz 5224667 BLAKE2B f8fda7676046b10f46d46905ac56078e25200af777522ec8a4ac23c7667e38bef8b22a041bd57beaea1310c0460a94dea61f55b371a60ab1f24ff92fd40d143c SHA512 3fff48649ee67f2f5652e49815595c66aea1545dfcdf045e717c4142f698ad3b37b90fabe544cb57a4db5d467a91d6f091871fc7361c08d68b00e57591f29d85 diff --git a/dev-python/ipython/files/2.1.0-substitute-files.patch b/dev-python/ipython/files/2.1.0-substitute-files.patch new file mode 100644 index 000000000..659df3922 --- /dev/null +++ b/dev-python/ipython/files/2.1.0-substitute-files.patch @@ -0,0 +1,27 @@ +substitute the insource files with these messages +diff --git a/IPython/extensions/octavemagic.py b/IPython/extensions/octavemagic.py +new file mode 100644 +index 0000000..dc93fe4 +--- /dev/null ++++ b/IPython/extensions/octavemagic.py +@@ -0,0 +1,7 @@ ++import warnings ++ ++def load_ipython_extension(ip): ++ msg = ("The octavemagic extension has been moved to oct2py. " ++ "After installing oct2py, you can load octavemagic with the " ++ "following command: '%load_ext oct2py.ipython'.") ++ warnings.warn(msg, Warning, stacklevel=2) +diff --git a/IPython/extensions/rmagic.py b/IPython/extensions/rmagic.py +new file mode 100644 +index 0000000..739e491 +--- /dev/null ++++ b/IPython/extensions/rmagic.py +@@ -0,0 +1,7 @@ ++import warnings ++ ++def load_ipython_extension(ip): ++ msg = ("The rmagic extension has been moved to rpy2. " ++ "After installing rpy2, you can load rmagic with the " ++ "following command: '%load_ext rpy2.ipython'.") ++ warnings.warn(msg, Warning, stacklevel=2) diff --git a/dev-python/ipython/ipython-7.13.0.ebuild b/dev-python/ipython/ipython-7.13.0.ebuild new file mode 100644 index 000000000..12fb9c805 --- /dev/null +++ b/dev-python/ipython/ipython-7.13.0.ebuild @@ -0,0 +1,133 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7} ) +PYTHON_REQ_USE='readline,sqlite,threads(+)' + +inherit distutils-r1 eutils virtualx + +DESCRIPTION="Advanced interactive shell for Python" +HOMEPAGE="http://ipython.org/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 x86 ~amd64-linux ~x86-linux" +IUSE="doc examples matplotlib notebook nbconvert qt5 +smp test" +RESTRICT="!test? ( test )" + +CDEPEND=" + >=dev-python/jedi-0.10[${PYTHON_USEDEP}] + dev-python/decorator[${PYTHON_USEDEP}] + dev-python/pickleshare[${PYTHON_USEDEP}] + dev-python/traitlets[${PYTHON_USEDEP}] + >=dev-python/prompt_toolkit-2.0.0[${PYTHON_USEDEP}] + /dev/null || die + "${TEST_DIR}"/scripts/iptest || die + popd >/dev/null || die +} + +python_install() { + distutils-r1_python_install + + # Create ipythonX.Y symlinks. + # TODO: + # 1. do we want them for pypy? No. pypy has no numpy + # 2. handle it in the eclass instead (use _python_ln_rel). + # With pypy not an option the dosym becomes unconditional + dosym ../lib/python-exec/${EPYTHON}/ipython \ + /usr/bin/ipython${EPYTHON#python} +} + +python_install_all() { + distutils-r1_python_install_all + + if use examples; then + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples + fi +} + +pkg_postinst() { + optfeature "sympyprinting" dev-python/sympy + optfeature "cythonmagic" dev-python/cython + optfeature "%lprun magic command" dev-python/line_profiler + optfeature "%mprun magic command" dev-python/memory_profiler + + if use nbconvert; then + if ! has_version app-text/pandoc ; then + einfo "Node.js will be used to convert notebooks to other formats" + einfo "like HTML. Support for that is still experimental. If you" + einfo "encounter any problems, please use app-text/pandoc instead." + fi + fi +} diff --git a/dev-python/ipython/metadata.xml b/dev-python/ipython/metadata.xml new file mode 100644 index 000000000..2d738f93e --- /dev/null +++ b/dev-python/ipython/metadata.xml @@ -0,0 +1,53 @@ + + + + + python@gentoo.org + Python + + + IPython provides a replacement for the interactive Python interpreter with + extra functionality. Main features: + * Comprehensive object introspection. + * Input history, persistent across sessions. + * Caching of output results during a session with automatically generated + references. + * Readline based name completion. + * Extensible system of 'magic' commands for controlling the environment and + performing many tasks related either to IPython or the operating system. + * Configuration system with easy switching between different setups (simpler + than changing $PYTHONSTARTUP environment variables every time). + * Session logging and reloading. + * Extensible syntax processing for special purpose situations. + * Access to the system shell with user-extensible alias system. + * Easily embeddable in other Python programs. + * Integrated access to the pdb debugger and the Python profiler. + + +対話的に利用する場合にPythonインタープリタから、より機能が豊富なIPythonへ置き換える事ができます。 + +主機能: +* 内包的オブジェクトの分析。 +* 入力ヒストリーはセッションを越えて記憶し続けます。 +* 出力は自動作成されるリファレンスのセッション間はキャッシュします。 +* Readlineを利用した名前補完。 +* 環境管理とIPythonまたはOSのどちらかに関係するタスク実行のためのmagic + コマンドを拡張可能なシステム。 +* 異なるセットアップを簡単に交換できるコンフィグレーション・システム。 + (毎回起動時に、$PYTHONSTARTUP環境変数を指定するよりも簡単です。) +* セッション・ロギングとセッション・リローディング。 +* 特別な状況時のための拡張可能な構文解析。 +* ユーザー定義できるエイリアス・システムでシステム・シェルにアクセス。 +* 他のPython言語プログラムを組み込むのが簡単。 +* pdbデバッガとprofilerへの統合アクセス。 + + + Add support for dev-python/matplotlib + Install requirements for the web notebook based on www-servers/tornado + Enable support for converting notebooks to various formats using app-text/pandoc + + + ipython + ipython/ipython + + diff --git a/profiles/pentoo/base/package.accept_keywords/dev-python b/profiles/pentoo/base/package.accept_keywords/dev-python index a4ea3bca2..d5bfa5578 100644 --- a/profiles/pentoo/base/package.accept_keywords/dev-python +++ b/profiles/pentoo/base/package.accept_keywords/dev-python @@ -516,3 +516,6 @@ dev-python/minidump dev-python/winacl dev-python/aiocmd dev-python/asysocks + +#for recent prompt_toolkit +=dev-python/ipython-7.13* diff --git a/profiles/pentoo/base/package.use/dev-python b/profiles/pentoo/base/package.use/dev-python index 41c5f6e5e..b9382d94d 100644 --- a/profiles/pentoo/base/package.use/dev-python +++ b/profiles/pentoo/base/package.use/dev-python @@ -14,14 +14,8 @@ dev-python/ipython matplotlib #urh dev-python/PyQt5 testlib -# >=ipython-6 does not support python2 -dev-python/netaddr -cli -dev-python/ipykernel -python_targets_python2_7 -dev-python/ipyparallel -python_targets_python2_7 -dev-python/notebook -python_targets_python2_7 -dev-python/qtconsole -python_targets_python2_7 -dev-util/androguard -python_targets_python2_7 - -dev-python/networkx -python_targets_python2_7 +#remove python2 deps +#dev-python/netaddr -cli +dev-python/matplotlib -wxwidgets dev-python/django-constance database