summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-05-27 11:33:48 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-05-27 11:33:48 +0000
commitfddc42fea57ae26d1b12c3a3b994065dea2669ec (patch)
tree1c7698c9210a6138ebc9a7caf0c094b13e4a433a /dev-python/jedi
parentRemove old. (diff)
downloadgentoo-2-fddc42fea57ae26d1b12c3a3b994065dea2669ec.tar.gz
gentoo-2-fddc42fea57ae26d1b12c3a3b994065dea2669ec.tar.bz2
gentoo-2-fddc42fea57ae26d1b12c3a3b994065dea2669ec.zip
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-python/jedi')
-rw-r--r--dev-python/jedi/ChangeLog5
-rw-r--r--dev-python/jedi/jedi-0.8.1.ebuild45
2 files changed, 4 insertions, 46 deletions
diff --git a/dev-python/jedi/ChangeLog b/dev-python/jedi/ChangeLog
index c3272b71938a..f6d9151a7a42 100644
--- a/dev-python/jedi/ChangeLog
+++ b/dev-python/jedi/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/jedi
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/jedi/ChangeLog,v 1.20 2015/05/27 11:22:19 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/jedi/ChangeLog,v 1.21 2015/05/27 11:33:48 mrueg Exp $
+
+ 27 May 2015; Manuel Rüger <mrueg@gentoo.org> -jedi-0.8.1.ebuild:
+ Remove old.
27 May 2015; Agostino Sarubbo <ago@gentoo.org> jedi-0.8.1-r2.ebuild:
Stable for x86, wrt bug #541614
diff --git a/dev-python/jedi/jedi-0.8.1.ebuild b/dev-python/jedi/jedi-0.8.1.ebuild
deleted file mode 100644
index a0fff3e01e9f..000000000000
--- a/dev-python/jedi/jedi-0.8.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/jedi/jedi-0.8.1.ebuild,v 1.4 2014/12/28 12:12:48 ago Exp $
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-inherit distutils-r1
-
-MY_PV="${PV/_beta/b}-final0"
-
-DESCRIPTION="Awesome autocompletion library for python"
-HOMEPAGE="https://github.com/davidhalter/jedi"
-SRC_URI="mirror://pypi/j/jedi/jedi-${MY_PV}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc test"
-
-DEPEND="app-arch/xz-utils
- dev-python/setuptools[${PYTHON_USEDEP}]
- doc? ( dev-python/sphinx )
- test? (
- dev-python/pytest[${PYTHON_USEDEP}]
- dev-python/tox[${PYTHON_USEDEP}]
- )"
-
-S=${WORKDIR}/${PN}-${MY_PV}
-
-python_test() {
- PYTHONPATH="${PYTHONPATH%:}${PYTHONPATH+:}${S}/test" py.test test || die "Tests failed under ${EPYTHON}"
-}
-
-src_compile() {
- if use doc ; then
- emake -C docs html
- fi
- distutils-r1_src_compile
-}
-
-python_install_all() {
- use doc && dohtml -r "${S}"/docs/_build/html/*
- distutils-r1_python_install_all
-}