app-arch/vimball - 9999 (gentoo)

Search

Install

Install this version:

emerge -a =app-arch/vimball-9999

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =app-arch/vimball-9999

Or alternatively:

emerge --autounmask-write -a =app-arch/vimball-9999

Package Information

Description:
A command-line vimball archive extractor
Homepage:
https://github.com/radhermit/vimball/ https://pypi.org/project/vimball/
License:
MIT

Ebuild Details

Version EAPI Keywords Slot
9999 8 ~amd64 ~x86 0
View Raw Ebuild
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..14} )

inherit distutils-r1

if [[ ${PV} == *9999 ]] ; then
	EGIT_REPO_URI="https://github.com/radhermit/vimball.git"
	inherit git-r3
else
	KEYWORDS="~amd64 ~x86"
	inherit pypi
fi

DESCRIPTION="A command-line vimball archive extractor"
HOMEPAGE="
	https://github.com/radhermit/vimball/
	https://pypi.org/project/vimball/
"

LICENSE="MIT"
SLOT="0"

EPYTEST_PLUGINS=()
distutils_enable_tests pytest

Inherited Eclasses