chore: update dependencies
This commit is contained in:
parent
14eb2d1646
commit
6e790ea66e
2 changed files with 41 additions and 0 deletions
|
@ -2,3 +2,5 @@ DIST glab-1.46.1-deps.tar.xz 55576664 BLAKE2B 9fe5c9b6dce80f45b513a27d363272d8c9
|
|||
DIST glab-1.46.1.tar.gz 16752804 BLAKE2B b8de336a5e327669e48b19d8fa592972fe3bfa63f783f10de2a8288e5abd5c7d1d8be10c0d0ac2e5e80f3c81b9b11f90bc4b789c73f09ba5fb6ed256f860f16f SHA512 2290b6fa1b4b42f5dbb58998b2f834c4fc067ff139237625faf769e957a799db68b9498646ae835f7632704db1a2b3dd9c79cb11d139cb80e61ed99bb91141db
|
||||
DIST glab-1.47.0-deps.tar.xz 62267364 BLAKE2B 76f28b1fac3f79085071693d56df8ec2ad0b86bf8783b39a0b6d66c603ece1bfc8864dc029219c813f608c87737bad35c71d9f556cce14d56edbfc5b750e5b49 SHA512 c8fc66c1bd455b8608ee4dd6fce24788a066694ea6a0f1399b003b6d4265b064a89f643d0071cb595e425d5eaecff54e5bbd7d52f1e0bd26eef2c1b3da8fe9a0
|
||||
DIST glab-1.47.0.tar.gz 16774690 BLAKE2B 097cb1bb6ae797d4ce6e0757003052c339618103fb5d49e0aa428d3b2b49606366ad2c0aab8518ac2dfc814786adb2e27ae68cea8dfa7de17ef79caf8541d8a7 SHA512 fa0b9560e0f96403792527940a80428a5c9525e91e3f2c11442e4b443fc140c4017da87e077341972dbae6ae43bb72c282285c29c1f937b209ba69de7617fff8
|
||||
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
|
||||
|
|
39
dev-util/glab/glab-1.48.0.ebuild
Normal file
39
dev-util/glab/glab-1.48.0.ebuild
Normal 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
|
||||
}
|
Loading…
Add table
Reference in a new issue