dev-util/tea: new package, add 0.9.2

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier (@STR/VW3) 2023-11-03 09:20:12 +01:00 committed by Andreas Billmeier
parent dbaec944f4
commit dcd5979730
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 49 additions and 0 deletions

4
dev-util/tea/Manifest Normal file
View File

@ -0,0 +1,4 @@
DIST tea-0.9.2-deps.tar.xz 52777916 BLAKE2B 3c863057e2b67b3d002afd058c91a40e51f45ec6d628d77941166dfa564a1f4b2385f7c8106bbbc707319734e4db86d5c85bd1de00445233afb54aa31d0a6beb SHA512 07c6712fc4de0cebb6680862f87455d7c491b79945c8e8de89008fba78e476c401037d42b1f8fa94b6c099813fcb690709198576c7523662c8993d7fdad03c4e
DIST tea-0.9.2.tar.gz 709669 BLAKE2B 44e757dffaf1c8d6fe9de5eaefad58f6f19722f39c870da55932a0672c4040ff0e918e82594147361079e75d934cd58995f119c8ec132870e3f6c4ce2a5d016e SHA512 05be2ea5f845773324c10fe8f0340c96f40f392b7ef8cafb44463b7a5492de2216799d8cc339e7dc42e921afcd3ba0e21be133a87385e907af47261733935e62
EBUILD tea-0.9.2.ebuild 801 BLAKE2B f1dd92026ebc3c8971ad480576eb6a317e485f72f84e9b40b6f81b89db03d1903e53458c318590b95de44e0604ca3bb020a4b44e9f4a9734c9147fe60cfbc55f SHA512 a4dc8641aadec694c13d104103f8568809493418469f34d6bca5f5cd4ddce8877d8563f286af5ac1ad9e6952ef9f12af71208afba1d9028cb2fac94828ab28c8
MISC metadata.xml 354 BLAKE2B ad1a6f1b053794385a38eecabddd1fbae68807e46d2571bacbbc686054e365ba4793afb78f082bc2740ab84806598899847c84614f4ca78f5227df59ffa72b86 SHA512 07eb2c933515f0951ac82a6a34928645abf2aca5019e25fcc474302687cf762c6174f60d0191f1da79e102fcf1c6d9169563326ec22f47f64d18b956f8b4b6eb

11
dev-util/tea/metadata.xml Normal file
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>github@fischl-online.de</email>
<name>Anton Fischl</name>
</maintainer>
<upstream>
<remote-id type="github">antonfischl1980/gentoo-go-vendored-ci</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,34 @@
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit bash-completion-r1 go-module
DESCRIPTION="A command line tool to interact with Gitea servers"
HOMEPAGE="https://gitea.com/gitea/tea"
SRC_URI="
https://gitea.com/gitea/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
https://github.com/antonfischl1980/gentoo-go-vendored-ci/releases/download/dev-util%2F${P}-deps/${P}-deps.tar.xz
"
S="${WORKDIR}/${PN}"
LICENSE="MIT Apache-2.0 BSD MPL-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
BDEPEND=""
DEPEND="${BDEPEND}"
RDEPEND="${DEPEND}"
src_compile(){
ego build
}
src_install(){
dobin "${PN}"
dodoc ./*.md
newbashcomp contrib/autocomplete.sh "${PN}"
insinto /usr/share/zsh/site-functions
newins contrib/autocomplete.zsh "_${PN}"
}