app-vim/jedi: add 0.11.2

Adds python3_11 support. In order to pass tests on python 3.11, the
minimum version of dev-python/jedi must be bumped to 0.19.

Due to mysterious reasons, the upstream version tag is now prefixed with
a "v", so the download url must adapt. While we are at it, naming the
distfile as "jedi" is simply wrong, since that could clash with
dev-python/jedi's distfiles if the version numbers ever collided. Use
MY_PN instead.

Closes: https://bugs.gentoo.org/882821
Closes: https://bugs.gentoo.org/896654
Signed-off-by: Eli Schwartz <eschwartz93@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/32538
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Eli Schwartz
2023-08-30 22:50:29 -04:00
committed by Sam James
parent d9d98a2c73
commit 06e74cf585
2 changed files with 81 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST jedi-0.11.0.tar.gz 41606 BLAKE2B 146f60f43a3fc764c66e2ca94c2b4051be3e25b5a94ca3f6d82533b624433946013c7df38e61262e6ac40a00de9d3b9b0e647e794191b6deb8ed09124d2accc7 SHA512 a151fdf4d58adc36dbe9ede8e091ae00c8bd8237b66c512b4addfb6e7e436651848da2b3a0dbcbbef615bcc394e7e28a6e127e53f2205dc61f4d46a2ff0faa12
DIST jedi-vim-0.11.2.tar.gz 42704 BLAKE2B 375cdf4742eb6328f5dc601b7a0b529a3d18b70711f93ab860e2827275f36454281c9d4ec85de0cfe280115fadde3a45f1bf74bfb4a4f1036b603eaa6051bf56 SHA512 b5711a963bcd61e03af0ad9936de37bf0391fcf1edd5b881b45612469e573cfc91bd012e7f12c5a9c8e51242dd26381bfa08bbc7853fbfd4a30897eeefbadb7c

View File

@@ -0,0 +1,80 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
inherit edo vim-plugin python-single-r1
MY_PN="${PN}-vim"
DESCRIPTION="vim plugin: binding to the autocompletion library jedi"
HOMEPAGE="https://github.com/davidhalter/jedi-vim"
SRC_URI="https://github.com/davidhalter/${MY_PN}/archive/v${PV}.tar.gz -> ${MY_PN}-${PV}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="MIT"
KEYWORDS="~amd64 ~arm64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="
${PYTHON_DEPS}
$(python_gen_cond_dep '>=dev-python/jedi-0.19[${PYTHON_USEDEP}]')
|| (
app-editors/vim[python,${PYTHON_SINGLE_USEDEP}]
app-editors/gvim[python,${PYTHON_SINGLE_USEDEP}]
)
"
BDEPEND="
test? (
${RDEPEND}
app-vim/vspec
)
"
DOCS=( AUTHORS.txt CONTRIBUTING.md README.rst )
src_prepare() {
vim-plugin_src_prepare
rm doc/logotype-a.svg || die
rmdir pythonx/{jedi,parso} || die
# Disable failing tests
sed -i test/vspec/signatures.vim \
-e "/it 'highlights correct argument'/a SKIP 'fail'" || die
}
# Makefile tries hard to call tests so let's silence this phase.
src_compile() { :; }
src_test() {
local bindir="${S}"/venv/bin
local sitedir="${S}"/venv/lib/${EPYTHON}/site-packages
mkdir -p "${bindir}" || die
mkdir -p "${sitedir}" || die
ln -s "${PYTHON}" "${bindir}/${EPYTHON}" || die
ln -s "${EPYTHON}" "${bindir}/python3" || die
ln -s "${EPYTHON}" "${bindir}/python" || die
cat > "${bindir}"/pyvenv.cfg <<-EOF || die
include-system-site-packages = false
EOF
ln -s "$(python_get_sitedir)"/parso "${sitedir}"/parso || die
cp -r "$(python_get_sitedir)"/parso-*.dist-info "${sitedir}" || die
ln -s "$(python_get_sitedir)"/jedi "${sitedir}"/jedi || die
cp -r "$(python_get_sitedir)"/jedi-*.dist-info "${sitedir}" || die
export PATH="${bindir}:${PATH}"
unset PYTHONPATH
edo prove-vspec -d "${S}" test/vspec
}
src_install() {
vim-plugin_src_install pythonx
python_optimize "${ED}"/usr/share/vim/vimfiles/pythonx
}