Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/notary/
Date: Tue, 13 Aug 2019 14:10:44
Message-Id: 1565705436.de0c017e29dcc5c14ca9ca423192194c7a5e3196.mgorny@gentoo
1 commit: de0c017e29dcc5c14ca9ca423192194c7a5e3196
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 13 13:56:29 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 13 14:10:36 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de0c017e
7
8 app-misc/notary: Fix whitespace
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-misc/notary/notary-0.6.1-r1.ebuild | 8 ++++----
13 1 file changed, 4 insertions(+), 4 deletions(-)
14
15 diff --git a/app-misc/notary/notary-0.6.1-r1.ebuild b/app-misc/notary/notary-0.6.1-r1.ebuild
16 index 00221646040..5def4a774c5 100644
17 --- a/app-misc/notary/notary-0.6.1-r1.ebuild
18 +++ b/app-misc/notary/notary-0.6.1-r1.ebuild
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2018 Gentoo Foundation
21 +# Copyright 1999-2019 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 EAPI=6
25 @@ -24,11 +24,11 @@ pkg_setup() {
26 src_compile() {
27 pushd src/${EGO_PN} || die
28 GOPATH=${S} go install -v -tags pkcs11 -ldflags "-w -X ${EGO_PN}/version.GitCommit=${GIT_COMMIT} -X ${EGO_PN}/version.NotaryVersion=${PV}" \
29 - ${EGO_PN}/cmd/notary-server || die
30 + ${EGO_PN}/cmd/notary-server || die
31 GOPATH=${S} go install -v -tags pkcs11 -ldflags "-w -X ${EGO_PN}/version.GitCommit=${GIT_COMMIT} -X ${EGO_PN}/version.NotaryVersion=${PV}" \
32 - ${EGO_PN}/cmd/notary-signer || die
33 + ${EGO_PN}/cmd/notary-signer || die
34 GOPATH=${S} go install -v -tags pkcs11 -ldflags "-w -X ${EGO_PN}/version.GitCommit=${GIT_COMMIT} -X ${EGO_PN}/version.NotaryVersion=${PV}" \
35 - ${EGO_PN}/cmd/notary || die
36 + ${EGO_PN}/cmd/notary || die
37 popd || die
38 }