* [gentoo-commits] proj/sci:master commit in: dev-python/ipython/files/, dev-python/ipython/
@ 2015-11-28 17:58 99% Marius Brehler
0 siblings, 0 replies; 1+ results
From: Marius Brehler @ 2015-11-28 17:58 UTC (permalink / raw
To: gentoo-commits
commit: 0a95563dde5d355c3df5ea91d147ac2e02757719
Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Sat Nov 28 17:55:04 2015 +0000
Commit: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Sat Nov 28 17:55:04 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=0a95563d
dev-python/ipython: Moved to tree
dev-python/ipython/ChangeLog | 50 --------
.../ipython/files/2.1.0-substitute-files.patch | 27 ----
dev-python/ipython/ipython-4.0.0-r2.ebuild | 136 ---------------------
dev-python/ipython/metadata.xml | 51 --------
4 files changed, 264 deletions(-)
diff --git a/dev-python/ipython/ChangeLog b/dev-python/ipython/ChangeLog
deleted file mode 100644
index 37c5859..0000000
--- a/dev-python/ipython/ChangeLog
+++ /dev/null
@@ -1,50 +0,0 @@
-# ChangeLog for dev-python/ipython
-# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Id$
-
- 22 Sep 2015; Marius Brehler <marbre@linux.sungazer.de>
- ipython-4.0.0-r2.ebuild:
- dev-python/ipython: Add ~x86 to KEYWORDS, fixes #561032
-
- 17 Sep 2015; François Bissey <francois.bissey@canterbury.ac.nz>
- ipython-4.0.0-r2.ebuild:
- dev-python/ipython: Solve circular dependency between ipython and ipyparallel
- when smp is enabled.
-
- 16 Sep 2015; suhr <null@null>
- ipython-4.0.0-r2.ebuild:
- dev-python/ipython: separate wxwidgets dependency from ipywidgets
-
- 02 Sep 2015; Marius Brehler <marbre@linux.sungazer.de>
- ipython-4.0.0-r1.ebuild:
- dev-python/ipython: Fix #480; add testpath to dependencies
-
- 02 Sep 2015; Marius Brehler <marbre@linux.sungazer.de>
- ipython-4.0.0-r1.ebuild:
- dev-python/ipython: Move setuptools from CDEPEND to DEPEND
-
- 02 Sep 2015; Marius Brehler <marbre@linux.sungazer.de>
- ipython-4.0.0-r1.ebuild:
- dev-python/ipython: Re-Fix #474; notebook use flag requires use wxwidgets
-
- 01 Sep 2015; Sean Vig <sean.v.775@gmail.com>
- dev-python/ipython: remove mathjax references
-
-*ipython-4.0.0-r1 (01 Sep 2015)
-
- 01 Sep 2015; Marius Brehler <marbre@linux.sungazer.de>
- +ipython-4.0.0-r1.ebuild, -ipython-4.0.0.ebuild:
- dev-python/ipython: Fix #474
-
- 25 Aug 2015; Marius Brehler <marbre@linux.sungazer.de> ipython-4.0.0.ebuild,
- metadata.xml:
- dev-python/ipython: Drop octave useflag
-
- 25 Aug 2015; Marius Brehler <marbre@linux.sungazer.de> ipython-4.0.0.ebuild:
- dev-python/ipython: Provide qt4 console via dev-python/qtconsole
-
-*ipython-4.0.0 (13 Aug 2015)
-
- 13 Aug 2015; Marius Brehler <marbre@linux.sungazer.de>
- +files/2.1.0-substitute-files.patch, +ipython-4.0.0.ebuild, +metadata.xml:
- dev-python/ipython: Version bumped ebuild; Imported from tree
diff --git a/dev-python/ipython/files/2.1.0-substitute-files.patch b/dev-python/ipython/files/2.1.0-substitute-files.patch
deleted file mode 100644
index 659df39..0000000
--- a/dev-python/ipython/files/2.1.0-substitute-files.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-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-4.0.0-r2.ebuild b/dev-python/ipython/ipython-4.0.0-r2.ebuild
deleted file mode 100644
index 076965c..0000000
--- a/dev-python/ipython/ipython-4.0.0-r2.ebuild
+++ /dev/null
@@ -1,136 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
-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 ~x86"
-IUSE="doc examples matplotlib mongodb notebook nbconvert qt4 +smp test wxwidgets"
-
-REQUIRED_USE="
- test? ( doc matplotlib mongodb notebook nbconvert qt4 wxwidgets )
- doc? ( mongodb )"
-
-CDEPEND="
- dev-python/decorator[${PYTHON_USEDEP}]
- dev-python/pexpect[${PYTHON_USEDEP}]
- dev-python/pickleshare[${PYTHON_USEDEP}]
- dev-python/pyparsing[${PYTHON_USEDEP}]
- dev-python/simplegeneric[${PYTHON_USEDEP}]
- dev-python/traitlets[${PYTHON_USEDEP}]
- matplotlib? ( dev-python/matplotlib[${PYTHON_USEDEP}] )
- mongodb? ( <dev-python/pymongo-3[${PYTHON_USEDEP}] )
- wxwidgets? ( $(python_gen_cond_dep 'dev-python/wxpython:*[${PYTHON_USEDEP}]' python2_7) )"
-
-RDEPEND="${CDEPEND}
- notebook? (
- dev-python/notebook[${PYTHON_USEDEP}]
- dev-python/ipywidgets[${PYTHON_USEDEP}]
- )
- nbconvert? ( dev-python/nbconvert[${PYTHON_USEDEP}] )
- qt4? ( dev-python/qtconsole )"
-DEPEND="${CDEPEND}
- dev-python/setuptools[${PYTHON_USEDEP}]
- test? (
- app-text/dvipng
- dev-python/jinja[${PYTHON_USEDEP}]
- $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7)
- >=dev-python/nose-0.10.1[${PYTHON_USEDEP}]
- dev-python/requests[${PYTHON_USEDEP}]
- dev-python/sphinx[${PYTHON_USEDEP}]
- >=www-servers/tornado-4.0[${PYTHON_USEDEP}]
- dev-python/testpath[${PYTHON_USEDEP}]
- )
- doc? (
- dev-python/cython[${PYTHON_USEDEP}]
- $(python_gen_cond_dep 'dev-python/fabric[${PYTHON_USEDEP}]' python2_7)
- >=dev-python/jsonschema-2.0[${PYTHON_USEDEP}]
- dev-python/matplotlib[${PYTHON_USEDEP}]
- >=dev-python/nose-0.10.1[${PYTHON_USEDEP}]
- dev-python/numpydoc[${PYTHON_USEDEP}]
- dev-python/rpy[${PYTHON_USEDEP}]
- >=dev-python/sphinx-1.1[${PYTHON_USEDEP}]
- >=www-servers/tornado-4.0[${PYTHON_USEDEP}]
- )"
-
-PDEPEND="
- smp? ( dev-python/ipyparallel[${PYTHON_USEDEP}] )"
-
-PATCHES=(
- "${FILESDIR}"/2.1.0-substitute-files.patch
- )
-
-DISTUTILS_IN_SOURCE_BUILD=1
-
-python_prepare_all() {
- # Remove out of date insource files
- rm IPython/extensions/rmagic.py || die
-
- # Prevent un-needed download during build
- if use doc; then
- sed -e "/^ 'sphinx.ext.intersphinx',/d" -i docs/source/conf.py || die
- fi
-
- distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
- use doc && emake -C docs html_noapi
-}
-
-python_test() {
- distutils_install_for_testing
- # https://github.com/ipython/ipython/issues/8639
- # Failure of some modules only in python3.4
- local fail
- run_tests() {
- pushd ${TEST_DIR} > /dev/null
- "${PYTHON}" -m IPython.testing.iptestcontroller --all || fail=1
- popd > /dev/null
- }
- VIRTUALX_COMMAND=run_tests virtualmake
- [[ ${fail} ]] && die "Tests fail with ${EPYTHON}"
-}
-
-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() {
- use doc && local HTML_DOCS=( docs/build/html/. )
- use examples && local EXAMPLES=( examples/. )
- distutils-r1_python_install_all
-}
-
-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
deleted file mode 100644
index 75c2dff..0000000
--- a/dev-python/ipython/metadata.xml
+++ /dev/null
@@ -1,51 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <herd>python</herd>
- <longdescription lang="en">
- 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.
-</longdescription>
- <longdescription lang="ja">
-対話的に利用する場合にPythonインタープリタから、より機能が豊富なIPythonへ置き換>える事ができます。
-
-主機能:
-* 内包的オブジェクトの分析。
-* 入力ヒストリーはセッションを越えて記憶し続けます。
-* 出力は自動作成されるリファレンスのセッション間はキャッシュします。
-* Readlineを利用した名前補完。
-* 環境管理とIPythonまたはOSのどちらかに関係するタスク実行のためのmagic
- コマンドを拡張可能なシステム。
-* 異なるセットアップを簡単に交換できるコンフィグレーション・システム。
- (毎回起動時に、$PYTHONSTARTUP環境変数を指定するよりも簡単です。)
-* セッション・ロギングとセッション・リローディング。
-* 特別な状況時のための拡張可能な構文解析。
-* ユーザー定義できるエイリアス・システムでシステム・シェルにアクセス。
-* 他のPython言語プログラムを組み込むのが簡単。
-* pdbデバッガとprofilerへの統合アクセス。
-</longdescription>
- <use>
- <flag name="matplotlib">Add support for <pkg>dev-python/matplotlib</pkg></flag>
- <flag name="mongodb">Enable support for MongoDB via <pkg>dev-python/pymongo</pkg></flag>
- <flag name="notebook">Install requirements for the web notebook based on <pkg>www-servers/tornado</pkg></flag>
- <flag name="nbconvert">Enable support for converting notebooks to various formats using <pkg>app-text/pandoc</pkg></flag>
- </use>
- <upstream>
- <remote-id type="pypi">ipython</remote-id>
- <remote-id type="github">ipython/ipython</remote-id>
- </upstream>
-</pkgmetadata>
^ permalink raw reply related [relevance 99%]
Results 1-1 of 1 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2015-11-28 17:58 99% [gentoo-commits] proj/sci:master commit in: dev-python/ipython/files/, dev-python/ipython/ Marius Brehler
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox