diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2013-08-09 05:36:46 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2013-08-09 05:36:46 +0000 |
commit | 823341af3b1f1ff225888e741771fca7c8caa7fa (patch) | |
tree | af87cde5ffccc8d230df1eebcd96b3c41da8aab8 /dev-python/ipython | |
parent | Beta channel bump. Tweak src_test to output each failed test command. (diff) | |
download | gentoo-2-823341af3b1f1ff225888e741771fca7c8caa7fa.tar.gz gentoo-2-823341af3b1f1ff225888e741771fca7c8caa7fa.tar.bz2 gentoo-2-823341af3b1f1ff225888e741771fca7c8caa7fa.zip |
Version bump
(Portage version: 2.2.01.22124-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
Diffstat (limited to 'dev-python/ipython')
-rw-r--r-- | dev-python/ipython/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/ipython/ipython-1.0.0.ebuild | 189 | ||||
-rw-r--r-- | dev-python/ipython/metadata.xml | 40 |
3 files changed, 215 insertions, 22 deletions
diff --git a/dev-python/ipython/ChangeLog b/dev-python/ipython/ChangeLog index be25e3985161..48696d0c94e1 100644 --- a/dev-python/ipython/ChangeLog +++ b/dev-python/ipython/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/ipython # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v 1.112 2013/08/05 17:34:14 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v 1.113 2013/08/09 05:36:46 bicatali Exp $ + +*ipython-1.0.0 (09 Aug 2013) + + 09 Aug 2013; Sébastien Fabbro <bicatali@gentoo.org> +ipython-1.0.0.ebuild, + metadata.xml: + Version bump 05 Aug 2013; Michał Górny <mgorny@gentoo.org> ipython-0.13.2.ebuild: Turn setuptools into an RDEPEND, since pkg_resources are used. diff --git a/dev-python/ipython/ipython-1.0.0.ebuild b/dev-python/ipython/ipython-1.0.0.ebuild new file mode 100644 index 000000000000..e631d790f15a --- /dev/null +++ b/dev-python/ipython/ipython-1.0.0.ebuild @@ -0,0 +1,189 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-1.0.0.ebuild,v 1.1 2013/08/09 05:36:46 bicatali Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_6,2_7,3_1,3_2,3_3} ) +PYTHON_REQ_USE='readline,sqlite' + +inherit distutils-r1 elisp-common eutils virtualx + +DISTUTILS_IN_SOURCE_BUILD=1 + +DESCRIPTION="Advanced interactive shell for Python" +HOMEPAGE="http://ipython.org/" +SRC_URI="https://github.com/${PN}/${PN}/releases/download/rel-${PV}/${P}.tar.gz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux" +IUSE="doc emacs examples matplotlib mongodb notebook octave + qt4 +smp test wxwidgets" + +PY2_USEDEP=$(python_gen_usedep 'python2*') + +CDEPEND=" + dev-python/decorator[${PYTHON_USEDEP}] + dev-python/pexpect[${PY2_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/simplegeneric[${PYTHON_USEDEP}] + virtual/pyparsing[${PYTHON_USEDEP}] + virtual/python-argparse[${PYTHON_USEDEP}] + emacs? ( app-emacs/python-mode virtual/emacs ) + matplotlib? ( dev-python/matplotlib[${PYTHON_USEDEP}] ) + mongodb? ( dev-python/pymongo[${PYTHON_USEDEP}] ) + octave? ( dev-python/oct2py[${PY2_USEDEP}] ) + smp? ( dev-python/pyzmq[${PYTHON_USEDEP}] ) + wxwidgets? ( dev-python/wxpython[${PY2_USEDEP}] )" +RDEPEND="${CDEPEND} + notebook? ( >=www-servers/tornado-2.1[${PY2_USEDEP}] + dev-python/pygments[${PYTHON_USEDEP}] + dev-python/pyzmq[${PYTHON_USEDEP}] ) + qt4? ( || ( dev-python/PyQt4[${PYTHON_USEDEP}] dev-python/pyside[${PYTHON_USEDEP}] ) + dev-python/pygments[${PYTHON_USEDEP}] + dev-python/pyzmq[${PYTHON_USEDEP}] )" +DEPEND="${CDEPEND} + test? ( dev-python/nose[${PYTHON_USEDEP}] )" + +PY2_REQUSE="|| ( $(python_gen_useflags python2* ) )" +REQUIRED_USE=" + mongodb? ( ${PY2_REQUSE} ) + notebook? ( ${PY2_REQUSE} ) + octave? ( ${PY2_REQUSE} ) + wxwidgets? ( ${PY2_REQUSE} )" + +S="${WORKDIR}/${PN}-rel-${PV}" + +python_prepare_all() { + # fix for gentoo python scripts + sed -i \ + -e "/ipython_cmd/s/ipython3/ipython/g" \ + IPython/terminal/console/tests/test_console.py \ + IPython/lib/irunner.py \ + IPython/testing/tools.py || die + + sed -i \ + -e "s/find_scripts(True, suffix='3')/find_scripts(True)/" \ + setup.py || die + + # fix gentoo installation directory for documentation + sed -i \ + -e "/docdirbase = pjoin/s/ipython/${PF}/" \ + -e "/pjoin(docdirbase,'manual')/s/manual/html/" \ + setupbase.py || die "sed failed" + + if ! use doc; then + sed -i \ + -e "/(pjoin(docdirbase, 'extensions'), igridhelpfiles),/d" \ + -e 's/ + manual_files//' \ + setupbase.py || die + fi + + if ! use examples; then + sed -i \ + -e 's/+ example_files//' \ + setupbase.py || die + fi + + distutils-r1_python_prepare_all +} + +python_compile_all() { + use emacs && elisp-compile docs/emacs/ipython.el +} + +src_test() { + # virtualx has trouble with parallel runs. + local DISTUTILS_NO_PARALLEL_BUILD=1 + distutils-r1_src_test +} + +python_test() { + # https://github.com/ipython/ipython/issues/2083 + unset PYTHONWARNINGS + + # ipython skips mongodb tests only if it's not running. + # since we want the widest test range, and don't want it to fiddle + # with user-running mongodb, we always run it if it's available. + + local DB_IP=127.0.0.1 + local DB_PORT=-1 # disable + + pushd "${BUILD_DIR}"/../IPython/scripts/ > /dev/null + + if has_version dev-db/mongodb; then + # please keep in sync with dev-python/pymongo + + local dbpath=${TMPDIR}/mongo.db + local logpath=${TMPDIR}/mongod.log + + # prefer starting with non-default one + DB_PORT=27018 + + mkdir -p "${dbpath}" || die + while true; do + ebegin "Trying to start mongod on port ${DB_PORT}" + + LC_ALL=C \ + mongod --dbpath "${dbpath}" --smallfiles --nojournal \ + --bind_ip ${DB_IP} --port ${DB_PORT} \ + --unixSocketPrefix "${TMPDIR}" \ + --logpath "${logpath}" --fork \ + && sleep 2 + + # Now we need to check if the server actually started... + if [[ ${?} -eq 0 && -S "${TMPDIR}"/mongodb-${DB_PORT}.sock ]]; then + # yay! + eend 0 + break + elif grep -q 'Address already in use' "${logpath}"; then + # ay, someone took our port! + eend 1 + : $(( DB_PORT += 1 )) + continue + else + eend 1 + ewarn "Unable to start mongod for tests." + break + fi + done + fi + + # No support for DB_IP and DB_PORT. + # https://github.com/ipython/ipython/pull/2910 + sed -i -e "s:Connection(:&host='${DB_IP}', port=${DB_PORT}:" \ + "${BUILD_DIR}"/lib/IPython/parallel/tests/test_mongodb.py \ + || die "Unable to sed mongod port into tests" + + + + local fail + run_tests() { + # Initialize ~/.ipython directory. + "${EPYTHON}" ipython </dev/null >/dev/null || fail=1 + # Run tests (-v for more verbosity). + PYTHONPATH=${PYTHONPATH}:. "${EPYTHON}" iptest -v || fail=1 + } + + VIRTUALX_COMMAND=run_tests virtualmake + + [[ ${DB_PORT} != -1 ]] && mongod --dbpath "${dbpath}" --shutdown + [[ ${fail} ]] && die "Tests fail with ${EPYTHON}" +} + +python_install_all() { + distutils-r1_python_install_all + if use emacs; then + cd docs/emacs || die + elisp-install ${PN} ${PN}.el* + elisp-site-file-install "${FILESDIR}"/62ipython-gentoo.el + fi +} + +pkg_postinst() { + use emacs && elisp-site-regen +} + +pkg_postrm() { + use emacs && elisp-site-regen +} diff --git a/dev-python/ipython/metadata.xml b/dev-python/ipython/metadata.xml index ce5022317632..3963b8c4af3b 100644 --- a/dev-python/ipython/metadata.xml +++ b/dev-python/ipython/metadata.xml @@ -1,28 +1,26 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> - <herd>python</herd> - <longdescription> -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. +<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"> +<longdescription lang="ja"> 対話的に利用する場合にPythonインタープリタから、より機能が豊富なIPythonへ置き換>える事ができます。 主機能: |