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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3BAAC158087 for ; Thu, 13 Jan 2022 10:54:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1C9CB2BC00B; Thu, 13 Jan 2022 10:54:04 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 94FFF2BC00B for ; Thu, 13 Jan 2022 10:54:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 95572343407 for ; Thu, 13 Jan 2022 10:54:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 23EA521D for ; Thu, 13 Jan 2022 10:54:01 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1642071230.c8c1f5c254e2d89e7a4fa854cf1f31be4fc25bb0.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/syncthing/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-p2p/syncthing/syncthing-1.18.5.ebuild net-p2p/syncthing/syncthing-1.18.6.ebuild X-VCS-Directories: net-p2p/syncthing/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: c8c1f5c254e2d89e7a4fa854cf1f31be4fc25bb0 X-VCS-Branch: master Date: Thu, 13 Jan 2022 10:54:01 +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: 790e34c1-31be-40d1-b3dc-ef24b716844c X-Archives-Hash: b91ad354501e112b0cc9e2c4994d7a4a commit: c8c1f5c254e2d89e7a4fa854cf1f31be4fc25bb0 Author: Marek Szuba gentoo org> AuthorDate: Thu Jan 13 10:43:21 2022 +0000 Commit: Marek Szuba gentoo org> CommitDate: Thu Jan 13 10:53:50 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8c1f5c2 net-p2p/syncthing: Revert "support cross compilation" Turns out this breaks USE=tools. This reverts commit 743f726479d8f20dc7e13f6d54f83bab4d71c70f. Closes: https://bugs.gentoo.org/831099 Signed-off-by: Marek Szuba gentoo.org> net-p2p/syncthing/syncthing-1.18.5.ebuild | 4 +--- net-p2p/syncthing/syncthing-1.18.6.ebuild | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/net-p2p/syncthing/syncthing-1.18.5.ebuild b/net-p2p/syncthing/syncthing-1.18.5.ebuild index fd83398eff20..cd3d65664324 100644 --- a/net-p2p/syncthing/syncthing-1.18.5.ebuild +++ b/net-p2p/syncthing/syncthing-1.18.5.ebuild @@ -828,10 +828,8 @@ src_prepare() { } src_compile() { - go run build.go -version "v${PV}" -no-upgrade build \ + go run build.go -version "v${PV}" -no-upgrade install \ $(usex tools "all" "") || die "build failed" - mkdir bin || die - mv "${PN}$(go env GOEXE)" bin/ || die } src_test() { diff --git a/net-p2p/syncthing/syncthing-1.18.6.ebuild b/net-p2p/syncthing/syncthing-1.18.6.ebuild index 6df612469482..60872181cf9e 100644 --- a/net-p2p/syncthing/syncthing-1.18.6.ebuild +++ b/net-p2p/syncthing/syncthing-1.18.6.ebuild @@ -828,10 +828,8 @@ src_prepare() { } src_compile() { - go run build.go -version "v${PV}" -no-upgrade build \ + go run build.go -version "v${PV}" -no-upgrade install \ $(usex tools "all" "") || die "build failed" - mkdir bin || die - mv "${PN}$(go env GOEXE)" bin/ || die } src_test() {