diff --git a/community/glab/APKBUILD b/community/glab/APKBUILD index 9c1a9b99a03..e6e56a08a02 100644 --- a/community/glab/APKBUILD +++ b/community/glab/APKBUILD @@ -1,7 +1,7 @@ # Contributor: solidnerd # Maintainer: Celeste pkgname=glab -pkgver=1.45.0 +pkgver=1.46.0 pkgrel=0 pkgdesc="Open source GitLab CLI tool written in Go" url="https://gitlab.com/gitlab-org/cli" @@ -15,7 +15,9 @@ subpackages=" $pkgname-zsh-completion $pkgname-fish-completion " -source="$pkgname-$pkgver.tar.gz::https://gitlab.com/gitlab-org/cli/-/archive/v$pkgver/cli-v$pkgver.tar.gz" +source="$pkgname-$pkgver.tar.gz::https://gitlab.com/gitlab-org/cli/-/archive/v$pkgver/cli-v$pkgver.tar.gz + unbump_go.patch + " builddir="$srcdir/cli-v$pkgver" export GOCACHE="${GOCACHE:-"$srcdir/go-cache"}" @@ -51,5 +53,6 @@ package() { } sha512sums=" -6f0ac04e1005041951d69e09e7d1238e05ff93da5c293f2605ab84261491900fdb45828b11c3c178ffe9eacf23ae29495b2dfbde8cf078d2e6a7af64ace61ff1 glab-1.45.0.tar.gz +64fb4b78f8ed35a9de546fc4b053e2ee2e4de8396a5d3c3fa7477febc429500946a533399e6e8569fe45673c6c977010c785c68cca948baa39e8bb012ebf2d5b glab-1.46.0.tar.gz +34de704e2ae4f7c2601eb6231a6b6abd9c1dfbcf9ad212f3ac24a6f30d8eef82d76b7660df1a0c541e81de430170a74fa6dd8e501d052e627bfff0b9077528e8 unbump_go.patch " diff --git a/community/glab/unbump_go.patch b/community/glab/unbump_go.patch new file mode 100644 index 00000000000..dd9db40e49c --- /dev/null +++ b/community/glab/unbump_go.patch @@ -0,0 +1,10 @@ +--- a/go.mod ++++ b/go.mod +@@ -1,6 +1,6 @@ + module gitlab.com/gitlab-org/cli + +-go 1.23.0 ++go 1.22.0 + + require ( + github.com/AlecAivazis/survey/v2 v2.3.7