Diff jfrog-cli-1.35.3 with a jfrog-cli-2.27.1

/usr/portage/dev-util/jfrog-cli/jfrog-cli-2.27.1.ebuild 2023-10-09 14:52:30.976368388 +0300
1 1
# Copyright 2022 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5
inherit go-module
6 6

  
7
DESCRIPTION="Command line utility foroperations on container images and image repositories"
7
DESCRIPTION="Command line utility for operations on container images and image repositories"
8 8
HOMEPAGE="https://github.com/jfrog/jfrog-cli"
9
SRC_URI="https://github.com/jfrog/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
9
SRC_URI="https://github.com/jfrog/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
10 10
	https://dev.gentoo.org/~zmedico/dist/${P}-deps.tar.xz"
11 11

  
12 12
LICENSE="Apache-2.0 BSD BSD-2 MIT MPL-2.0"
......
14 14
KEYWORDS="~amd64"
15 15

  
16 16
src_compile() {
17
	./build.sh || die
17
	build/build.sh jfrog || die
18 18
}
19 19

  
20 20
src_install() {
Thank you!