Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: app-admin/overmind/
Date: Thu, 04 Nov 2021 11:38:40
Message-Id: 1635948985.0f042dd6b0bb8706d036b3ef3544c8ec021face4.andrewammerlaan@gentoo
1 commit: 0f042dd6b0bb8706d036b3ef3544c8ec021face4
2 Author: Alexey Zapparov <alexey <AT> zapparov <DOT> com>
3 AuthorDate: Wed Nov 3 14:10:48 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 3 14:16:25 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0f042dd6
7
8 app-admin/overmind: add 2.2.2-r1
9
10 Address review comments:
11 https://github.com/gentoo/guru/commit/a9d01bf7144c8ae5f9076b45828c1114c68f5f32#r59265484
12
13 Package-Manager: Portage-3.0.28, Repoman-3.0.3
14 Signed-off-by: Alexey Zapparov <alexey <AT> zapparov.com>
15
16 app-admin/overmind/overmind-2.2.2-r1.ebuild | 56 +++++++++++++++++++++++++++++
17 1 file changed, 56 insertions(+)
18
19 diff --git a/app-admin/overmind/overmind-2.2.2-r1.ebuild b/app-admin/overmind/overmind-2.2.2-r1.ebuild
20 new file mode 100644
21 index 000000000..1a7b1cc81
22 --- /dev/null
23 +++ b/app-admin/overmind/overmind-2.2.2-r1.ebuild
24 @@ -0,0 +1,56 @@
25 +# Copyright 2021 Gentoo Authors
26 +# Distributed under the terms of the GNU General Public License v2
27 +
28 +EAPI=8
29 +
30 +inherit go-module
31 +
32 +EGO_SUM=(
33 + "github.com/BurntSushi/toml v0.3.1/go.mod"
34 + "github.com/DarthSim/godotenv v1.3.1"
35 + "github.com/DarthSim/godotenv v1.3.1/go.mod"
36 + "github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d"
37 + "github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod"
38 + "github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0"
39 + "github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0/go.mod"
40 + "github.com/matoous/go-nanoid v0.0.0-20181114085210-eab626deece6"
41 + "github.com/matoous/go-nanoid v0.0.0-20181114085210-eab626deece6/go.mod"
42 + "github.com/pmezard/go-difflib v1.0.0"
43 + "github.com/pmezard/go-difflib v1.0.0/go.mod"
44 + "github.com/russross/blackfriday/v2 v2.0.1"
45 + "github.com/russross/blackfriday/v2 v2.0.1/go.mod"
46 + "github.com/sevlyar/go-daemon v0.1.5"
47 + "github.com/sevlyar/go-daemon v0.1.5/go.mod"
48 + "github.com/shurcooL/sanitized_anchor_name v1.0.0"
49 + "github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod"
50 + "github.com/urfave/cli v1.22.2"
51 + "github.com/urfave/cli v1.22.2/go.mod"
52 + "golang.org/x/crypto v0.0.0-20190411191339-88737f569e3a"
53 + "golang.org/x/crypto v0.0.0-20190411191339-88737f569e3a/go.mod"
54 + "golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e"
55 + "golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod"
56 + "gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod"
57 + "gopkg.in/yaml.v2 v2.2.2/go.mod"
58 + )
59 +go-module_set_globals
60 +
61 +DESCRIPTION="Process manager for Procfile-based applications and tmux"
62 +HOMEPAGE="https://github.com/DarthSim/overmind"
63 +SRC_URI="https://github.com/DarthSim/overmind/archive/v${PV}.tar.gz -> ${P}.tar.gz
64 + ${EGO_SUM_SRC_URI}"
65 +
66 +LICENSE="MIT BSD BSD-2"
67 +SLOT="0"
68 +KEYWORDS="~amd64 ~x86"
69 +
70 +RDEPEND="
71 + app-misc/tmux"
72 +
73 +src_compile() {
74 + go build -ldflags "-s -w" || die "go build failed"
75 +}
76 +
77 +src_install() {
78 + dobin "${PN}"
79 + dodoc README.md
80 +}