mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-08 14:43:27 -04:00
app-vim/dracula: initial import
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
This commit is contained in:
1
app-vim/dracula/Manifest
Normal file
1
app-vim/dracula/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST dracula-2.0.0-vim.tar.gz 12112 BLAKE2B 08fe4e138ad34f9cebbf88836d30ff2cb12e58817d192d9b2d1f40b9f9fe0f30e3686754d7f87ebba14d748e5f1bd48d10acd14b6391681054ad2adb83fc5093 SHA512 cd86681aff1bd5dfc3b6747e7468fa192776c00cd10dbf6ae99703a679f2576d7c9e1439a829c22459b7bc3248d3657213c6a8d68acd579bb90cf496fa089c71
|
||||
31
app-vim/dracula/dracula-2.0.0.ebuild
Normal file
31
app-vim/dracula/dracula-2.0.0.ebuild
Normal file
@@ -0,0 +1,31 @@
|
||||
# Copyright 2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit vim-plugin
|
||||
|
||||
DESCRIPTION="Dark theme for Vim"
|
||||
HOMEPAGE="https://draculatheme.com/vim"
|
||||
SRC_URI="https://github.com/${PN}/vim/archive/refs/tags/v${PV}.tar.gz -> ${P}-vim.tar.gz"
|
||||
S="${WORKDIR}/vim-${PV}"
|
||||
|
||||
LICENSE="MIT"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
VIM_PLUGIN_HELPFILES="dracula"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
rm -r .github || die
|
||||
|
||||
# collision with app-vim/airline-themes
|
||||
rm -r autoload/airline || die
|
||||
|
||||
# avoid collision with other packages
|
||||
cd after/syntax || die
|
||||
for file in *.vim; do
|
||||
mkdir "${file%.vim}" || die
|
||||
mv "${file}" "${file%.vim}/${PN}.vim" || die
|
||||
done
|
||||
}
|
||||
11
app-vim/dracula/metadata.xml
Normal file
11
app-vim/dracula/metadata.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>cyber+gentoo@sysrq.in</email>
|
||||
<name>Anna</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="github">dracula/vim</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
Reference in New Issue
Block a user