From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2ECC51395E2 for ; Thu, 17 Nov 2016 19:46:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DE665E0B95; Thu, 17 Nov 2016 19:46:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C09D0E0B95 for ; Thu, 17 Nov 2016 19:46:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 046C934121E for ; Thu, 17 Nov 2016 19:46:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 70271489 for ; Thu, 17 Nov 2016 19:46:21 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1479411968.0b488fac91677d6e7cd90b0c22bce0f3f2e9d496.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/drone/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/drone/drone-0.5.0_pre20161019.ebuild X-VCS-Directories: dev-util/drone/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 0b488fac91677d6e7cd90b0c22bce0f3f2e9d496 X-VCS-Branch: master Date: Thu, 17 Nov 2016 19:46:21 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9c18ef3f-ee53-4719-8fc6-db890ce180bf X-Archives-Hash: 2f1b5e1b60b183c1e422d461e091cd27 commit: 0b488fac91677d6e7cd90b0c22bce0f3f2e9d496 Author: Manuel Rüger gentoo org> AuthorDate: Thu Nov 17 19:46:08 2016 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Thu Nov 17 19:46:08 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b488fac dev-util/drone: Fix quotes Package-Manager: portage-2.3.2 dev-util/drone/drone-0.5.0_pre20161019.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-util/drone/drone-0.5.0_pre20161019.ebuild b/dev-util/drone/drone-0.5.0_pre20161019.ebuild index 45fc4b4..93dfb8d 100644 --- a/dev-util/drone/drone-0.5.0_pre20161019.ebuild +++ b/dev-util/drone/drone-0.5.0_pre20161019.ebuild @@ -24,7 +24,7 @@ src_compile() { GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" emake -C src/github.com/drone/drone gen || die pushd src || die DRONE_BUILD_NUMBER="${EGIT_COMMIT}" GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)"\ - go install -ldflags '-extldflags "-static" -X github.com/drone/drone/version.VersionDev=${EGIT_COMMIT}' github.com/drone/drone/drone || die + go install -ldflags "-extldflags '-static' -X github.com/drone/drone/version.VersionDev=${EGIT_COMMIT}" github.com/drone/drone/drone || die popd || die }