* [gentoo-commits] repo/proj/guru:dev commit in: app-vim/dracula/
@ 2022-01-21 21:30 Anna Vyalkova
0 siblings, 0 replies; 2+ messages in thread
From: Anna Vyalkova @ 2022-01-21 21:30 UTC (permalink / raw
To: gentoo-commits
commit: 69b68d7ffa779e2a920b999e7e8a52ee69641891
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Fri Jan 21 21:29:38 2022 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Fri Jan 21 21:30:32 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=69b68d7f
app-vim/dracula: initial import
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
app-vim/dracula/Manifest | 1 +
app-vim/dracula/dracula-2.0.0.ebuild | 31 +++++++++++++++++++++++++++++++
app-vim/dracula/metadata.xml | 11 +++++++++++
3 files changed, 43 insertions(+)
diff --git a/app-vim/dracula/Manifest b/app-vim/dracula/Manifest
new file mode 100644
index 000000000..eafbb74f0
--- /dev/null
+++ b/app-vim/dracula/Manifest
@@ -0,0 +1 @@
+DIST dracula-2.0.0-vim.tar.gz 12112 BLAKE2B 08fe4e138ad34f9cebbf88836d30ff2cb12e58817d192d9b2d1f40b9f9fe0f30e3686754d7f87ebba14d748e5f1bd48d10acd14b6391681054ad2adb83fc5093 SHA512 cd86681aff1bd5dfc3b6747e7468fa192776c00cd10dbf6ae99703a679f2576d7c9e1439a829c22459b7bc3248d3657213c6a8d68acd579bb90cf496fa089c71
diff --git a/app-vim/dracula/dracula-2.0.0.ebuild b/app-vim/dracula/dracula-2.0.0.ebuild
new file mode 100644
index 000000000..1f409fcf7
--- /dev/null
+++ b/app-vim/dracula/dracula-2.0.0.ebuild
@@ -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
+}
diff --git a/app-vim/dracula/metadata.xml b/app-vim/dracula/metadata.xml
new file mode 100644
index 000000000..fe9a58440
--- /dev/null
+++ b/app-vim/dracula/metadata.xml
@@ -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>
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: app-vim/dracula/
@ 2022-05-30 17:47 Anna Vyalkova
0 siblings, 0 replies; 2+ messages in thread
From: Anna Vyalkova @ 2022-05-30 17:47 UTC (permalink / raw
To: gentoo-commits
commit: 5973cd47c02880e8fcc3e03538b3dd6eb4aa529d
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Mon May 30 14:35:05 2022 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Mon May 30 17:46:29 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5973cd47
app-vim/dracula: update EAPI 7 -> 8
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
app-vim/dracula/dracula-2.0.0.ebuild | 12 ++----------
1 file changed, 2 insertions(+), 10 deletions(-)
diff --git a/app-vim/dracula/dracula-2.0.0.ebuild b/app-vim/dracula/dracula-2.0.0.ebuild
index 1f409fcf7..cda007842 100644
--- a/app-vim/dracula/dracula-2.0.0.ebuild
+++ b/app-vim/dracula/dracula-2.0.0.ebuild
@@ -1,7 +1,7 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
inherit vim-plugin
@@ -16,16 +16,8 @@ KEYWORDS="~amd64"
VIM_PLUGIN_HELPFILES="dracula"
src_prepare() {
- default
- rm -r .github || die
+ vim-plugin_src_prepare
# 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
}
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-05-30 17:47 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-30 17:47 [gentoo-commits] repo/proj/guru:dev commit in: app-vim/dracula/ Anna Vyalkova
-- strict thread matches above, loose matches on Subject: below --
2022-01-21 21:30 Anna Vyalkova
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox