chore: update dependencies

This commit is contained in:
github-actions[bot] 2025-01-09 07:16:37 +00:00 committed by GitHub
parent c1028983e0
commit 3c16c12c50
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 41 additions and 0 deletions

View file

@ -1,2 +1,4 @@
DIST glab-1.48.0-deps.tar.xz 56237072 BLAKE2B 0e254a807eb9e77a2a4aa057e5d4300fc6f5100800392e69311353674adfdba520d3ff2dfab8090954954a7399f906508d878395c7d79014511ea9e433591700 SHA512 4c2db43eaf9ceb5a9f5690100a353ac0cee1a75180d7a62d019ecc6176c61b62fdf9afa41982d259af62e6cd9c3648652cf55f039d318a6fc0358f76ed171d1d
DIST glab-1.48.0.tar.gz 16780843 BLAKE2B 74e149e988a69132d7374d77694e07e773a132e690da575d9aded504ee76e78c2e47de5e3f3fc0a3eb757c01d117257b20e733c927347c47f341edc68b981eb6 SHA512 b9e4960277cc31e8821e8b9d7538d24e783e7fbc462664f1b96242a11a69ccc9491894bf3a5d33fa253790bb550b398333370f8ba21df6ecf5ef8ea66f92e57e
DIST glab-1.51.0-deps.tar.xz 56254552 BLAKE2B 22ac4d9c9c529da38985bd352a0a836a649a64986cc3cff66c22f0bb19beb90e812b0f374bf45b37cecee56be215ed2bd79df95ac55bb4bfd7b9d3bd8b17af40 SHA512 74bc089faa8cf033ec4a4c42a055c7ab4876a11f4dce9c8455f321bd76fe7a22163f4c076fd262f06db21cfd14b076201f3e2b807ce99dc0683a3ebff15795ad
DIST glab-1.51.0.tar.gz 16802163 BLAKE2B 4e772af8d479f923a8054d765ab3c95e30a3bcc5eaec72fdfa2d20362f0cb9366cb85a4ae6f01ee9ad632a708a8dd7f87f0b670618ab13f71cd78a1053479dca SHA512 15c42438637c7ccdcf83e1bfb2a276f452639761b5721a94cdcb3ca936fb8166c978278d3dd1249ce3dd60f9ce466cbbf2cf6e092dcd95d76f701da8f1933892

View file

@ -0,0 +1,39 @@
# Copyright 2020-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module tmpfiles
DESCRIPTION="A GitLab CLI tool bringing GitLab to your command line"
HOMEPAGE="https://gitlab.com/gitlab-org/cli"
SRC_URI="https://gitlab.com/gitlab-org/cli/-/archive/v${PV}/cli-v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://gentoo.rgst.io/updater_artifacts/${CATEGORY}/${PN}/${PV}/deps.tar.xz -> ${P}-deps.tar.xz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm arm64 ~riscv ~x86"
BDEPEND=">=dev-lang/go-1.23"
RESTRICT="test"
src_unpack() {
default
mv "cli-v${PV}" "${P}"
}
src_compile() {
emake GLAB_VERSION=${PV} build
mkdir -p ${S}/man
go run ./cmd/gen-docs/docs.go --manpage --path ${S}/man
}
src_install() {
dobin ${S}/bin/${PN}
einstalldocs
for page in "${S}/man/"*; do
doman "${page}"
done
}