From 51020014f6a06e25042d02a4bf463641e88025c8 Mon Sep 17 00:00:00 2001 From: Nils Freydank Date: Sat, 15 May 2021 23:59:40 +0200 Subject: [PATCH] app-vim/python-mode: Housekeeping This commit adds some missed python deps and updates URLs. Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Nils Freydank --- app-vim/python-mode/metadata.xml | 2 +- app-vim/python-mode/python-mode-0.13.0-r1.ebuild | 12 +++++++----- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/app-vim/python-mode/metadata.xml b/app-vim/python-mode/metadata.xml index 323000a..336e80f 100644 --- a/app-vim/python-mode/metadata.xml +++ b/app-vim/python-mode/metadata.xml @@ -6,6 +6,6 @@ Nils Freydank - klen/python-mode + python-mode/python-mode diff --git a/app-vim/python-mode/python-mode-0.13.0-r1.ebuild b/app-vim/python-mode/python-mode-0.13.0-r1.ebuild index 48365bd..5d6c003 100644 --- a/app-vim/python-mode/python-mode-0.13.0-r1.ebuild +++ b/app-vim/python-mode/python-mode-0.13.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2020 Gentoo Authors +# Copyright 2020-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" @@ -9,9 +9,10 @@ inherit python-r1 vim-plugin COMMIT_ID="295e84d9dd7f4887f8a5635e9dfe88dfeabaf00c" 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" +HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=3770 https://github.com/python-mode/python-mode" LICENSE="LGPL-3" IUSE="test" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" RESTRICT="!test? ( test )" if [[ ${PV} == *9999 ]]; then @@ -21,19 +22,20 @@ 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" + SRC_URI="https://github.com/python-mode/${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" + SRC_URI="https://github.com/python-mode/${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_HELPURI="https://github.com/python-mode/python-mode" VIM_PLUGIN_MESSAGES="filetype" RDEPEND=" + ${PYTHON_DEPS} dev-python/astroid[${PYTHON_USEDEP}] dev-python/autopep8[${PYTHON_USEDEP}] dev-python/mccabe[${PYTHON_USEDEP}]