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: net-mail/hydroxide/
Date: Mon, 26 Sep 2022 09:48:10
Message-Id: 1663825213.950e0e64f3170003f2292e351725d841ac629a38.andrewammerlaan@gentoo
1 commit: 950e0e64f3170003f2292e351725d841ac629a38
2 Author: Leonardo Hernández Hernández <leohdz172 <AT> outlook <DOT> com>
3 AuthorDate: Thu Sep 22 05:10:47 2022 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 22 05:40:13 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=950e0e64
7
8 net-mail/hydroxide: respect $(makeopts_jobs)
9
10 and also simplify docs installing
11
12 no revbump because the binary itsef doesn't change and the same files
13 are installed
14
15 Signed-off-by: Leonardo Hernández Hernández <leohdz172 <AT> outlook.com>
16
17 net-mail/hydroxide/hydroxide-0.2.23.ebuild | 8 +++-----
18 net-mail/hydroxide/hydroxide-0.2.24.ebuild | 8 +++-----
19 net-mail/hydroxide/hydroxide-9999.ebuild | 8 +++-----
20 3 files changed, 9 insertions(+), 15 deletions(-)
21
22 diff --git a/net-mail/hydroxide/hydroxide-0.2.23.ebuild b/net-mail/hydroxide/hydroxide-0.2.23.ebuild
23 index 901210cd9..e11059b9e 100644
24 --- a/net-mail/hydroxide/hydroxide-0.2.23.ebuild
25 +++ b/net-mail/hydroxide/hydroxide-0.2.23.ebuild
26 @@ -3,7 +3,7 @@
27
28 EAPI=8
29
30 -inherit go-module
31 +inherit go-module multiprocessing
32
33 if [[ "${PV}" == "9999" ]]; then
34 inherit git-r3
35 @@ -38,13 +38,11 @@ src_unpack() {
36 }
37
38 src_compile() {
39 - ego build -v ./cmd/hydroxide
40 + ego build -v -x -p "$(makeopts_jobs)" ./cmd/hydroxide
41 }
42
43 src_install() {
44 - local DOCS=( "README.md" )
45 - einstalldocs
46 -
47 + default
48 dobin "${PN}"
49 }
50
51
52 diff --git a/net-mail/hydroxide/hydroxide-0.2.24.ebuild b/net-mail/hydroxide/hydroxide-0.2.24.ebuild
53 index ef3cb95b9..f75d823e4 100644
54 --- a/net-mail/hydroxide/hydroxide-0.2.24.ebuild
55 +++ b/net-mail/hydroxide/hydroxide-0.2.24.ebuild
56 @@ -3,7 +3,7 @@
57
58 EAPI=8
59
60 -inherit go-module
61 +inherit go-module multiprocessing
62
63 if [[ "${PV}" == "9999" ]]; then
64 inherit git-r3
65 @@ -38,13 +38,11 @@ src_unpack() {
66 }
67
68 src_compile() {
69 - ego build -v ./cmd/hydroxide
70 + ego build -v -x -p "$(makeopts_jobs)" ./cmd/hydroxide
71 }
72
73 src_install() {
74 - local DOCS=( "README.md" )
75 - einstalldocs
76 -
77 + default
78 dobin "${PN}"
79 }
80
81
82 diff --git a/net-mail/hydroxide/hydroxide-9999.ebuild b/net-mail/hydroxide/hydroxide-9999.ebuild
83 index ef3cb95b9..f75d823e4 100644
84 --- a/net-mail/hydroxide/hydroxide-9999.ebuild
85 +++ b/net-mail/hydroxide/hydroxide-9999.ebuild
86 @@ -3,7 +3,7 @@
87
88 EAPI=8
89
90 -inherit go-module
91 +inherit go-module multiprocessing
92
93 if [[ "${PV}" == "9999" ]]; then
94 inherit git-r3
95 @@ -38,13 +38,11 @@ src_unpack() {
96 }
97
98 src_compile() {
99 - ego build -v ./cmd/hydroxide
100 + ego build -v -x -p "$(makeopts_jobs)" ./cmd/hydroxide
101 }
102
103 src_install() {
104 - local DOCS=( "README.md" )
105 - einstalldocs
106 -
107 + default
108 dobin "${PN}"
109 }