mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 15:13:31 -04:00
fixes the following pkgcheck warnings: app-admin/overmind DeprecatedEclassVariable: version 2.2.2-r1: uses deprecated variable on line 8: EGO_SUM (no replacement) DeprecatedEclassFunction: version 2.2.2-r1: uses deprecated function on line 35: go-module_set_globals (no replacement) also used ego build instead of go build in src_compile() Signed-off-by: ingenarel <ingenarelitems@gmail.com>
28 lines
650 B
Bash
28 lines
650 B
Bash
# Copyright 2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit go-module
|
|
|
|
DESCRIPTION="Process manager for Procfile-based applications and tmux"
|
|
HOMEPAGE="https://github.com/DarthSim/overmind"
|
|
SRC_URI="https://github.com/DarthSim/overmind/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
SRC_URI+=" https://github.com/ingenarel/guru-depfiles/releases/download/${P}-r1-deps.tar.xz/${P}-r1-deps.tar.xz"
|
|
|
|
LICENSE="MIT BSD BSD-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
RDEPEND="
|
|
app-misc/tmux"
|
|
|
|
src_compile() {
|
|
ego build -ldflags "-s -w" || die "go build failed"
|
|
}
|
|
|
|
src_install() {
|
|
dobin "${PN}"
|
|
dodoc README.md
|
|
}
|