dev-util/tea: add 0.9.2

Signed-off-by: Anton Fischl <github@fischl-online.de>
This commit is contained in:
Anton Fischl 2023-10-08 06:12:38 +02:00
parent a056bb76f3
commit 2c632a91b8
Signed by: anton
GPG Key ID: 87E4939135F3A567
2 changed files with 36 additions and 0 deletions

View File

@ -1,2 +1,4 @@
DIST tea-0.9.0-deps.tar.xz 53336792 BLAKE2B dd408bf738d3334ae50f122d7dbd935d89865adddd6e48730944d4f016c9d0bea8385e29aef4c48acd3fca8f7e287ac73adfb18090143e153a02952020d26839 SHA512 e01fdc7bb07bcb50482bf55337fee4a9f3382d0a64cd64de5f8aa157de0f0b4d7e7373b19cb1da1a7b9e3861557cfe1b43ff0d5d88fca8553764d58f6cd48f51
DIST tea-0.9.0.tar.gz 708726 BLAKE2B fc8ec3508a4f8bf2703874b1a14a80f841c9b1e1bf054d2e5b94b4d5a8ac31fdf7e62630cb406d53b63a86a57272a574ff077f45e86d1bebe10a54052efc6ff1 SHA512 cff8fce144e90053751a1d090eb3170a39921f4f8a3913984434445575f5073d65159e45cc4d0a9f9d0d4bfd963a93a45abe9db1ec8db3ba9e8997e4eaad9d78
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

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}"
}