From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1109361-garchives=archives.gentoo.org@lists.gentoo.org> 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 C970C138334 for <garchives@archives.gentoo.org>; Sat, 7 Sep 2019 00:36:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6AEEEE0AA2; Sat, 7 Sep 2019 00:36:52 +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 5191AE0AA2 for <gentoo-commits@lists.gentoo.org>; Sat, 7 Sep 2019 00:36:52 +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 6403434ADB9 for <gentoo-commits@lists.gentoo.org>; Sat, 7 Sep 2019 00:36:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F0257CD for <gentoo-commits@lists.gentoo.org>; Sat, 7 Sep 2019 00:36:49 +0000 (UTC) From: "Georgy Yakovlev" <gyakovlev@gentoo.org> 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" <gyakovlev@gentoo.org> Message-ID: <1567816591.a6801bad63e12f4221e1b10c56b851214a486776.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.19.ebuild net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.25.ebuild X-VCS-Directories: net-dns/dnscrypt-proxy/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: a6801bad63e12f4221e1b10c56b851214a486776 X-VCS-Branch: master Date: Sat, 7 Sep 2019 00:36:49 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 761d8d31-0cb8-4b93-aadc-5e966679e853 X-Archives-Hash: 1029936f4c3bd8f2dbf8b90e8332cd07 commit: a6801bad63e12f4221e1b10c56b851214a486776 Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org> AuthorDate: Sat Sep 7 00:36:19 2019 +0000 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org> CommitDate: Sat Sep 7 00:36:31 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6801bad net-dns/dnscrypt-proxy: backport go fix to older versions Package-Manager: Portage-2.3.75, Repoman-2.3.17 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org> net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.19.ebuild | 2 +- net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.25.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.19.ebuild b/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.19.ebuild index d8b429e49af..2f732970bcd 100644 --- a/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.19.ebuild +++ b/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.19.ebuild @@ -35,7 +35,7 @@ src_prepare() { # Create directory structure suitable for building mkdir -p "src/${EGO_PN%/*}" || die mv "${PN}" "src/${EGO_PN}" || die - mv "vendor" "src/" || die + mv "vendor" "src/${EGO_PN}" || die } src_configure() { diff --git a/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.25.ebuild b/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.25.ebuild index 257c123d9b0..fd4f4f93ab0 100644 --- a/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.25.ebuild +++ b/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.25.ebuild @@ -39,7 +39,7 @@ src_prepare() { # fixes $GOPATH/go.mod exists but should not rm go.mod || die mv "${PN}" "src/${EGO_PN}" || die - mv "vendor" "src/" || die + mv "vendor" "src/${EGO_PN}" || die } src_configure() {