summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnna Vyalkova <cyber+gentoo@sysrq.in>2022-06-21 15:38:53 +0500
committerJoonas Niilola <juippis@gentoo.org>2022-06-22 14:29:10 +0300
commit2953b1cbee93d912eaa2489f6fc7dfd1e4502e31 (patch)
tree6df02ad1386bf7a5bf3446f4a29f9688dc323086 /app-vim
parentapp-vim/jedi: add 0.11.0 (diff)
downloadgentoo-2953b1cbee93d912eaa2489f6fc7dfd1e4502e31.tar.gz
gentoo-2953b1cbee93d912eaa2489f6fc7dfd1e4502e31.tar.bz2
gentoo-2953b1cbee93d912eaa2489f6fc7dfd1e4502e31.zip
app-vim/jedi: drop 0.10.0
Signed-off-by: Anna Vyalkova <cyber+gentoo@sysrq.in> Closes: https://github.com/gentoo/gentoo/pull/26017 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-vim')
-rw-r--r--app-vim/jedi/Manifest1
-rw-r--r--app-vim/jedi/jedi-0.10.0.ebuild37
2 files changed, 0 insertions, 38 deletions
diff --git a/app-vim/jedi/Manifest b/app-vim/jedi/Manifest
index d2964f694ff5..c833cf4de1e5 100644
--- a/app-vim/jedi/Manifest
+++ b/app-vim/jedi/Manifest
@@ -1,2 +1 @@
-DIST jedi-0.10.0.tar.gz 36820 BLAKE2B a66f7c58564487d83867d61480d83364af0047cee713c41dbd5c67bff0b2ac33d066c2d0f4367c30059f46fb9f4916fc8d2eb9c64aa6a489e2c16a03f56b0b3c SHA512 65482505446b1001e92870ae64a147b38c0bb4d3151e464d325be741729506a191b284a491f4c3eb77dc46cb9bcd6b8e7bf8689ed95107e89a1f6a05c7fbc9ea
DIST jedi-0.11.0.tar.gz 41606 BLAKE2B 146f60f43a3fc764c66e2ca94c2b4051be3e25b5a94ca3f6d82533b624433946013c7df38e61262e6ac40a00de9d3b9b0e647e794191b6deb8ed09124d2accc7 SHA512 a151fdf4d58adc36dbe9ede8e091ae00c8bd8237b66c512b4addfb6e7e436651848da2b3a0dbcbbef615bcc394e7e28a6e127e53f2205dc61f4d46a2ff0faa12
diff --git a/app-vim/jedi/jedi-0.10.0.ebuild b/app-vim/jedi/jedi-0.10.0.ebuild
deleted file mode 100644
index 7b566e307035..000000000000
--- a/app-vim/jedi/jedi-0.10.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-
-inherit vim-plugin python-single-r1
-
-DESCRIPTION="vim plugin: binding to the autocompletion library jedi"
-HOMEPAGE="https://github.com/davidhalter/jedi-vim"
-SRC_URI="https://github.com/davidhalter/jedi-vim/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="test"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="
- ${PYTHON_DEPS}
- $(python_gen_cond_dep 'dev-python/jedi[${PYTHON_USEDEP}]')
- app-editors/vim[python]"
-BDEPEND="${PYTHON_DEPS}
- test? ( dev-python/pytest )"
-
-S="${WORKDIR}/jedi-vim-${PV}"
-
-# Tests are broken.
-RESTRICT="test"
-
-# Makefile tries hard to call tests so let's silence this phase.
-src_compile() { :; }
-
-src_test() {
- epytest
-}