attempting to add vimdir

This commit is contained in:
anon 2025-01-29 00:38:16 +01:00
parent cdcb54bf92
commit 501cbe47d3
3 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,2 @@
EBUILD vimdir-9999.ebuild 594 BLAKE2B 954286ccae4c8a8fb1ef20ec8d4363c6af6cece79e8d5a20c560372270050daf70b76dcfbbb7e5538c50607399c817ffb25e852f926e8df36e516b86b00937b8 SHA512 71069e90f9c28e431643a8ae5f3d83f58ec0c33fc7172302c1190e68c3687cd42f560320e4fd0252c7d5d1d80b7c1fa1cd84ea43e77d0e52d9cc0ca260926c24
MISC metadata.xml 336 BLAKE2B 70baaed6c18057204c8d08249afc73eb53f1d6df71ba4bf5098096bbfd705c530727e0e30815f117c6f73bcc836f5f6ab78ef511bc9afe379be40afe68feb41c SHA512 d8812a0673839f9f2aa66de7ed9aa07001db6ae2d4b916b57a57eb0b25f896fc22c8646c52e76c1410816e231c738b92f27597c9c9b4cefd9e19ca20df4c9ebf

View 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>anon8697@cock.li</email>
<name>anon8697</name>
</maintainer>
<longdescription lang="en">
Edit your filesystem in your editor.
</longdescription>
</pkgmetadata>

View File

@ -0,0 +1,37 @@
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
EGIT_REPO_URI="https://bis64wqhh3louusbd45iyj76kmn4rzw5ysawyan5bkxwyzihj67c5lid.onion/anon/vimdir.git"
inherit git-r3-tor
DESCRIPTION="Vidir improved."
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="man"
BDEPEND="
sys-devel/gcc
dev-build/make
man? ( dev-go/go-md2man )
"
src_build() {
default
if use man; then
go-md2man < README.md > vimdir.1 || die
fi
}
src_install() {
dobin vimdir
if use man; then
doman vimdir.1
fi
}