You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-containers/kompose/kompose-1.26.1.ebuild

36 lines
793 B

# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit go-module
GIT_COMMIT=a9d05d50
DESCRIPTION="Tool to move from docker-compose to Kubernetes"
HOMEPAGE="https://github.com/kubernetes/kompose https://kompose.io"
SRC_URI="https://github.com/kubernetes/kompose/archive/v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE="hardened"
RESTRICT+=" test"
src_prepare() {
default
sed -i -e 's/-w -s//' Makefile || die
}
src_compile() {
CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \
emake \
GITCOMMIT=${GIT_COMMIT} \
bin
}
src_install() {
dobin ${PN}
dodoc -r docs examples {README,RELEASE,CHANGELOG,CONTRIBUTING}.md
}