mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-13 13:41:05 +00:00
Result of running the command: grep --include="*.ebuild" -r . -e 'KEYWORDS=.*[" ]sparc' -l | xargs ekeyword ~sparc Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
19 lines
479 B
Bash
19 lines
479 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit vim-plugin
|
|
|
|
DESCRIPTION="vim plugin: Colour parentheses to differentiate nest levels"
|
|
HOMEPAGE="https://github.com/kien/rainbow_parentheses.vim"
|
|
SRC_URI="https://dev.gentoo.org/~monsieurp/packages/${P}.zip"
|
|
S="${WORKDIR}/${PN}.vim-master"
|
|
|
|
LICENSE="vim"
|
|
KEYWORDS="~alpha amd64 ppc ~sparc x86"
|
|
|
|
DEPEND="app-arch/unzip"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
DOCS=( readme.md )
|