commit: 8d9eb7ee474782eaf64478ec041b509e7eb9d1e5 Author: Timur Kuprava <kupravagoodman <AT> proton <DOT> me> AuthorDate: Sun May 11 03:09:29 2025 +0000 Commit: Timur Kuprava <kupravagoodman <AT> proton <DOT> me> CommitDate: Sun May 11 03:11:23 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8d9eb7ee
sys-apps/gat: new package Signed-off-by: Timur Kuprava <kupravagoodman <AT> proton.me> sys-apps/gat/Manifest | 2 ++ sys-apps/gat/gat-0.23.1.ebuild | 25 +++++++++++++++++++++++++ sys-apps/gat/metadata.xml | 12 ++++++++++++ 3 files changed, 39 insertions(+) diff --git a/sys-apps/gat/Manifest b/sys-apps/gat/Manifest new file mode 100644 index 000000000..1ed4f9f37 --- /dev/null +++ b/sys-apps/gat/Manifest @@ -0,0 +1,2 @@ +DIST gat-0.23.1-deps.tar.xz 47959296 BLAKE2B ae69c2d9efdee7c6de2dc2fccc9f51591c784ab503e146db0a291c65d357f74586f2c69bba5092fbb2002cd80a6cee7e03c5abeaa4e13c542c5437aa79bb982c SHA512 0a228d3da40f01d2e37b1a59b2de346f317a10e7df6e0ffebbe3a8ee5702d7e8afa817a5575d61c07aa3208288e64c785800a0e695324cf6daca9fbc166ada87 +DIST gat-0.23.1.tar.gz 15018022 BLAKE2B 71925642505dc27d88049a7471c38021ffdfb66843f73e7f4a98b29163d51a37a3648a96c123b38b0b45032c6b87fd62832b4f77296af552e7940ceebad878d8 SHA512 07bdfdda39d55ede4e30561d5b378541e1b9df8fd35dade110dc241bb908676249aee3edd2362e8d705b52346991c7b5e4ec7756d41ca99c5458e5bd990c1063 diff --git a/sys-apps/gat/gat-0.23.1.ebuild b/sys-apps/gat/gat-0.23.1.ebuild new file mode 100644 index 000000000..8b00c14db --- /dev/null +++ b/sys-apps/gat/gat-0.23.1.ebuild @@ -0,0 +1,25 @@ +# Copyright 2022-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit go-module + +DESCRIPTION="Cat alternative written in Go" +HOMEPAGE="https://github.com/koki-develop/gat" + +SRC_URI="https://github.com/koki-develop/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI+=" https://github.com/kuprTheMan/contribute-deps/releases/download/${P}/${P}-deps.tar.xz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64" + +src_compile() { + ego build . +} + +src_install() { + dobin ${PN} + dodoc README.md CHANGELOG.md +} diff --git a/sys-apps/gat/metadata.xml b/sys-apps/gat/metadata.xml new file mode 100644 index 000000000..97b8270a6 --- /dev/null +++ b/sys-apps/gat/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>[email protected]</email> + <name>Timur Kuprava</name> + </maintainer> + <upstream> + <bugs-to>https://github.com/koki-develop/gat/issues</bugs-to> + <remote-id type="github">koki-develop/gat</remote-id> + </upstream> +</pkgmetadata>
