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 B7E9E138334 for ; Thu, 14 Mar 2019 02:31:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6CB0BE0BF1; Thu, 14 Mar 2019 02:31:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 41941E0BF1 for ; Thu, 14 Mar 2019 02:31:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 3603D335C36 for ; Thu, 14 Mar 2019 02:31:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 93423567 for ; Thu, 14 Mar 2019 02:31:22 +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: <1552530583.0f18ecc8dda06ecd3721efecb25269e1a15f9e82.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-9999.ebuild X-VCS-Directories: net-dns/dnscrypt-proxy/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 0f18ecc8dda06ecd3721efecb25269e1a15f9e82 X-VCS-Branch: master Date: Thu, 14 Mar 2019 02:31:22 +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: 503128b7-c37c-4412-bd36-346effaff840 X-Archives-Hash: 935a1d74de5ce26663f78ded803116a4 commit: 0f18ecc8dda06ecd3721efecb25269e1a15f9e82 Author: Georgy Yakovlev gentoo org> AuthorDate: Thu Mar 14 02:29:43 2019 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Thu Mar 14 02:29:43 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f18ecc8 net-dns/dnscrypt-proxy: sync live ebuild Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Georgy Yakovlev gentoo.org> net-dns/dnscrypt-proxy/dnscrypt-proxy-9999.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/net-dns/dnscrypt-proxy/dnscrypt-proxy-9999.ebuild b/net-dns/dnscrypt-proxy/dnscrypt-proxy-9999.ebuild index 46f88908c5f..419d40281c6 100644 --- a/net-dns/dnscrypt-proxy/dnscrypt-proxy-9999.ebuild +++ b/net-dns/dnscrypt-proxy/dnscrypt-proxy-9999.ebuild @@ -22,6 +22,8 @@ LICENSE="ISC" SLOT="0" IUSE="pie" +DEPEND=">=dev-lang/go-1.12" + FILECAPS=( cap_net_bind_service+ep usr/bin/dnscrypt-proxy ) PATCHES=( "${FILESDIR}"/config-full-paths-r10.patch ) @@ -34,6 +36,8 @@ src_prepare() { default # Create directory structure suitable for building mkdir -p "src/${EGO_PN%/*}" || die + # fixes $GOPATH/go.mod exists but should not + rm go.mod || die mv "${PN}" "src/${EGO_PN}" || die mv "vendor" "src/" || die }