Nils Freydank
b7161579b9
This bump fixes commit 06b5c87481
,
adds the commit id based tarball and limits to python3_6 as some
deps still don't support higher python versions.
Package-Manager: Portage-2.3.87, Repoman-2.3.20
Manifest-Sign-Key: 00EFD31F1B60D5DBADB831C1C0ECE6960E54475B
Signed-off-by: Nils Freydank <holgersson@posteo.de>
55 lines
1.5 KiB
Bash
55 lines
1.5 KiB
Bash
# Copyright 2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="7"
|
|
|
|
PYTHON_COMPAT=( python3_6 )
|
|
inherit python-r1 vim-plugin
|
|
|
|
COMMIT_ID="1e97e4d8fa427f7b3262b2daadff8d32ca5be536"
|
|
|
|
DESCRIPTION="vim plugin: Turn vim into a python IDE"
|
|
HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=3770 https://github.com/klen/python-mode"
|
|
LICENSE="LGPL-3"
|
|
IUSE="test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
if [[ ${PV} == *9999 ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/${PN}/${PN}.git"
|
|
else
|
|
if [[ ${PV} == *_p* ]]; then
|
|
KEYWORDS="~amd64 ~x86"
|
|
S="${WORKDIR}/${PN}-${COMMIT_ID}"
|
|
SRC_URI="https://github.com/klen/${PN}/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
|
|
else
|
|
KEYWORDS="~amd64 ~x86"
|
|
SRC_URI="https://github.com/klen/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
fi
|
|
fi
|
|
|
|
VIM_PLUGIN_HELPFILES="PythonModeCommands"
|
|
VIM_PLUGIN_HELPTEXT=""
|
|
VIM_PLUGIN_HELPURI="https://github.com/klen/python-mode"
|
|
VIM_PLUGIN_MESSAGES="filetype"
|
|
|
|
RDEPEND="
|
|
>=dev-python/astroid-2.1.0[${PYTHON_USEDEP}]
|
|
dev-python/autopep8[${PYTHON_USEDEP}]
|
|
dev-python/mccabe[${PYTHON_USEDEP}]
|
|
dev-python/pep257[${PYTHON_USEDEP}]
|
|
dev-python/pycodestyle[${PYTHON_USEDEP}]
|
|
dev-python/pyflakes[${PYTHON_USEDEP}]
|
|
dev-python/pylama[${PYTHON_USEDEP}]
|
|
>=dev-python/pylint-2.2.2[${PYTHON_USEDEP}]
|
|
dev-python/rope[${PYTHON_USEDEP}]
|
|
dev-python/ropemode[${PYTHON_USEDEP}]
|
|
dev-python/six[${PYTHON_USEDEP}]
|
|
dev-python/snowballstemmer[${PYTHON_USEDEP}]
|
|
"
|
|
|
|
src_install() {
|
|
vim-plugin_src_install
|
|
insinto usr/share/${PN}
|
|
}
|