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 2F1C6138334 for ; Thu, 7 Nov 2019 12:26:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0B959E0898; Thu, 7 Nov 2019 12:26:17 +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 CDB2BE0898 for ; Thu, 7 Nov 2019 12:26:16 +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 383B434CA04 for ; Thu, 7 Nov 2019 12:26:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D42B288E for ; Thu, 7 Nov 2019 12:26:11 +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: <1573129561.bb5222d980dca601d08430aeff584588dac305a1.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.3.1.ebuild X-VCS-Directories: net-p2p/syncthing/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: bb5222d980dca601d08430aeff584588dac305a1 X-VCS-Branch: master Date: Thu, 7 Nov 2019 12:26:11 +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: d299bd9f-ca99-4d08-9923-426948a87264 X-Archives-Hash: 8b74af57212fd40b29a3ac4e8397ae9a commit: bb5222d980dca601d08430aeff584588dac305a1 Author: Marek Szuba gentoo org> AuthorDate: Thu Nov 7 12:24:43 2019 +0000 Commit: Marek Szuba gentoo org> CommitDate: Thu Nov 7 12:26:01 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb5222d9 net-p2p/syncthing-1.3.1: temporarily restrict tests if USE=tools is set For some reason the switch to go-module.eclass has resulted in the following test failure appearing repeatedly when USE=tools is set: --- FAIL: TestAPIServiceRequests (5.45s) api_test.go:394: Testing /rest/db/completion?device= api_test.go:394: Testing /rest/db/file?folder=default&file=something ... api_test.go:394: Testing /rest/db/ignores?folder=default ... api_test.go:394: Testing /rest/db/need?folder=default ... api_test.go:394: Testing /rest/db/status?folder=default ... api_test.go:394: Testing /rest/db/browse?folder=default ... api_test.go:394: Testing /rest/stats/device ... api_test.go:394: Testing /rest/stats/folder ... api_test.go:394: Testing /rest/svc/deviceid?id= api_test.go:394: Testing /rest/svc/lang ... api_test.go:394: Testing /rest/svc/report ... api_test.go:419: Unexpected error requesting /rest/svc/report: Get http://127.0.0.1:36607/rest/svc/report: net/http: request canceled (Client.Timeout exceeded while awaiting headers) api_test.go:394: Testing /rest/system/browse?current=~ ... api_test.go:394: Testing /rest/system/config ... api_test.go:394: Testing /rest/system/config/insync ... api_test.go:394: Testing /rest/system/connections ... api_test.go:394: Testing /rest/system/discovery ... api_test.go:394: Testing /rest/system/error?since=0 ... api_test.go:394: Testing /rest/system/ping ... api_test.go:394: Testing /rest/system/status ... api_test.go:394: Testing /rest/system/version ... api_test.go:394: Testing /rest/system/debug ... api_test.go:394: Testing /rest/system/log?since=0 ... api_test.go:394: Testing /rest/system/log.txt?since=0 ... FAIL FAIL github.com/syncthing/syncthing/lib/api 66.295s This may or may not be a consequence of the fact Syncthing upstream doesn't fully support go-1.13 yet, as shown by the fact their CI configuration uses the very-much-not-recommended workaround of deleting go.sum. Anyway, since the tests pass with USE=-tools and there have been requests for Syncthing ebuilds with go-1.13 support, disable testing when USE=tools is set until the problem has been resolved. Package-Manager: Portage-2.3.76, Repoman-2.3.16 Signed-off-by: Marek Szuba gentoo.org> net-p2p/syncthing/syncthing-1.3.1.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/net-p2p/syncthing/syncthing-1.3.1.ebuild b/net-p2p/syncthing/syncthing-1.3.1.ebuild index 8f0e558ef16..7fb9fed4738 100644 --- a/net-p2p/syncthing/syncthing-1.3.1.ebuild +++ b/net-p2p/syncthing/syncthing-1.3.1.ebuild @@ -77,6 +77,12 @@ SLOT="0" KEYWORDS="~amd64 ~arm ~x86" IUSE="selinux tools" +# For some reason the switch to go-module.eclass has resulted in the test suite +# failing when USE=tools is set. Temporarily disable testing under such circumstances +# so that there is a a working go1.13-compatible version out there already, will +# continue to look into this. +RESTRICT="tools? ( test )" + RDEPEND="acct-group/syncthing acct-user/syncthing tools? ( acct-group/stdiscosrv