dev-util/tea: newly added

Signed-off-by: Anton Fischl <github@fischl-online.de>
This commit is contained in:
Anton Fischl 2022-12-16 10:32:09 +01:00
parent c02ad8b02f
commit c2a0174bf0
Signed by: anton
GPG Key ID: 87E4939135F3A567
3 changed files with 42 additions and 0 deletions

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

@ -0,0 +1,2 @@
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

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,29 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit 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}"
}