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 CB667138350 for ; Mon, 9 Mar 2020 20:50:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 15C77E097E; Mon, 9 Mar 2020 20:50:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E8971E097E for ; Mon, 9 Mar 2020 20:50:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BE71A34F338 for ; Mon, 9 Mar 2020 20:50:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4C410102 for ; Mon, 9 Mar 2020 20:50:36 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1583787019.9195eecc38151c11bb9e7a6952ffb7f19c8bafe9.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/dnscrypt-proxy/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.39.ebuild X-VCS-Directories: net-dns/dnscrypt-proxy/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 9195eecc38151c11bb9e7a6952ffb7f19c8bafe9 X-VCS-Branch: master Date: Mon, 9 Mar 2020 20:50:36 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 18a07aa1-698a-4450-a5c6-239db8be4418 X-Archives-Hash: d772dffb33873c4b150ddf94d5f0fe6b commit: 9195eecc38151c11bb9e7a6952ffb7f19c8bafe9 Author: Georgy Yakovlev gentoo org> AuthorDate: Mon Mar 9 20:41:08 2020 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Mon Mar 9 20:50:19 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9195eecc net-dns/dnscrypt-proxy: fix vendored source usage was broken with latest go-module eclass changes Bug: https://bugs.gentoo.org/711924 Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Georgy Yakovlev gentoo.org> net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.39.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.39.ebuild b/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.39.ebuild index df223114220..bf14276c848 100644 --- a/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.39.ebuild +++ b/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.39.ebuild @@ -34,7 +34,7 @@ PATCHES=( "${FILESDIR}"/config-full-paths-r10.patch ) src_compile() { pushd "${PN}" >/dev/null || die - go build -buildmode="$(usex pie pie default)" || die + go build -v -x -mod=readonly -mod=vendor -buildmode="$(usex pie pie default)" || die popd >/dev/null || die }