chore: update dependencies
This commit is contained in:
parent
7ac1a480ae
commit
fe74cebb2c
2 changed files with 40 additions and 0 deletions
|
@ -1,2 +1,3 @@
|
|||
DIST deps.tar.xz 153044756 BLAKE2B c2f1df18913184a0163460f0ec5eeef5675c050efbfa0e429eb13a2c0a0c80c806a504eadf65a8c5cb4d7d06cbd8c6b3a872f3b0712a9134c7ddceb9725cae68 SHA512 1a8479ff560f8542921f62e8234d597b79b9f0517b373b29b2fae1a8593c141e0eaccb974ea50fdea09944cd66f1451a5e6c7e4bbf59c00a9eed407051340f6a
|
||||
DIST glab-1.41.0.tar.gz 16729508 BLAKE2B 82e8d286dcac395425d34b5191d543b7266220643823ee903ba00200b5b36d6359384ef8d3c8b9dec5220cd5332d3d4510ff19fdebbe14c204419a602dfb7069 SHA512 66d996768b592aab6a43260812ccee6da84a314262adac1fa714cde539008182cd0fd54ac825d69729bef05ddd41249e25f40f7fc8376c23f4fc6abbc4f3b1a3
|
||||
DIST glab-1.42.0.tar.gz 16744998 BLAKE2B 116db512e1570f0eda8c5a04c86a72479bff481b0ff2452db5cc8dbe6f5d9c6f2e33074f0c6f01384b2e76651a649698b5bd21f1ba7cae2926555a1d2d3a15e8 SHA512 9b3f8b3ddc0e752350b7e29421dc76a991ad41c978b4963b3b71cbdff4ad67e4540b543e186e1a88fd4708a8eb12e619041c285c5af9f14b8faaab2b72efd0f9
|
||||
|
|
39
dev-util/glab/glab-1.42.0.ebuild
Normal file
39
dev-util/glab/glab-1.42.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"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm arm64 ~riscv ~x86"
|
||||
|
||||
BDEPEND=">=dev-lang/go-1.22"
|
||||
|
||||
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