dev-util/gitlab-cli: add 1.55.0

Signed-off-by: William Hubbs <williamh@gentoo.org>
This commit is contained in:
William Hubbs
2025-04-16 15:41:54 -05:00
parent b9f4a96c9f
commit d100e1f4b8
2 changed files with 33 additions and 0 deletions

View File

@@ -4,3 +4,5 @@ DIST gitlab-cli-1.52.0-deps.tar.xz 21580776 BLAKE2B fe834534c503b2af0f0b3b1c5cdf
DIST gitlab-cli-1.52.0.tar.bz2 16869127 BLAKE2B 0039197b39af84969788a4e7492406fdf1a765d8351053bee220fe09966153bbb25802728cda67180c1edf752f93a64dd745858c0665c6e9d685867c52c8752e SHA512 215c2bdf17c44ee619b6c54453f2d7d279aafc982d059a8c63c6d2ab5953b7e9d4e6c2bc9c11a9dc15f4d243ceb9e81255a9c95821bc45dd429d70f1e813bb6d
DIST gitlab-cli-1.53.0-deps.tar.xz 21615064 BLAKE2B c277145440f1055283e7cfda8e91b5f3e277087dc00e7f8914f392fef918867f3787742ba130e5307c9df1cb42fa1b2e89f4e0b77bab96a7bae448a415520ee2 SHA512 48459d2d7d2604e1afff761828d47c090a23b1d8df50f912a1f88e82560540139904fba0659dfe8f3e7614e4d273ca7846a720e13715795449143d1d315efaab
DIST gitlab-cli-1.53.0.tar.bz2 16884153 BLAKE2B b1b7034a4fc93dd196aa936751af732ec1a27879fac40ce35e542072620178e5c6413bf760b4e0537b4e3f196a145de8e392264334253f31dd225eafd934d9ee SHA512 6ef770542f8cdcd695ba3f4c765873f82fc7cddbe24d2f4ffde798054be048a428267baf3849712180795e8cd7ca33c3536359659acf22f04e8b29e1b12c3109
DIST gitlab-cli-1.55.0-deps.tar.xz 21737008 BLAKE2B 6c993fa949c6e0bec789e786b890853ed6d0a544ec4e93275a694deb99dab829ddee66f5eebca3a0cb59443d9f2334423cde2749a91eec900b23bb3470f30fac SHA512 b661b50481a3f158971608a376dc687998d92c339f11747f23f67d3a648f2ffef32047eb4dccf5c655e5b2b5ede5ca6f95f3671c39b1dc7c808360213a192426
DIST gitlab-cli-1.55.0.tar.bz2 16901867 BLAKE2B 2f18ceaa683c95b1f173851845f4ff96fb7fd897af39bd9081271da0b47f1205d6694f82ff1e733dfbbebc4305f5a4a74ab2f9f590b62af3054c4e33a653c40e SHA512 cde8882f982eb369d366eab6fdd5188889cb96736d21919ed97863484fefb885d02c1c169b6697f6d7af231b660cbbfd99070d7cc3c737739cd4f8fdbf51cc36

View File

@@ -0,0 +1,31 @@
# Copyright 2023-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
GIT_COMMIT=a806d3d2ae8515ca43be48a83598c04bb71c9328
DESCRIPTION="the official gitlab command line interface"
HOMEPAGE="https://gitlab.com/gitlab-org/cli"
SRC_URI="https://gitlab.com/gitlab-org/cli/-/archive/v${PV}/${PN}-v${PV}.tar.bz2 -> ${P}.tar.bz2"
SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz"
S="${WORKDIR}/cli-v${PV}-${GIT_COMMIT}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
# tests communicate with gitlab.com and require a personal access token
RESTRICT="test"
src_compile() {
emake \
GLAB_VERSION=v${PV} \
build manpage
}
src_install() {
dobin bin/glab
dodoc README.md
doman share/man/man1/*
}