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 5DC0F158086 for ; Fri, 31 Dec 2021 10:08:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D02542BC015; Fri, 31 Dec 2021 10:08:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 1724D2BC013 for ; Fri, 31 Dec 2021 10:08:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 34B58342D63 for ; Fri, 31 Dec 2021 10:08:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9A898274 for ; Fri, 31 Dec 2021 10:08:18 +0000 (UTC) From: "Haelwenn Monnier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Haelwenn Monnier" Message-ID: <1640941078.19345c8d515e52877cda263097010244bd07d2b7.lanodan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: net-misc/maestral/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-misc/maestral/maestral-1.5.2.ebuild X-VCS-Directories: net-misc/maestral/ X-VCS-Committer: lanodan X-VCS-Committer-Name: Haelwenn Monnier X-VCS-Revision: 19345c8d515e52877cda263097010244bd07d2b7 X-VCS-Branch: master Date: Fri, 31 Dec 2021 10:08:18 +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: 126f73f1-9250-409b-a84c-9193deba76f7 X-Archives-Hash: 3ca5f68aab70ee9582ce50a3af604ae6 commit: 19345c8d515e52877cda263097010244bd07d2b7 Author: Viorel Munteanu gmail com> AuthorDate: Fri Dec 31 08:57:58 2021 +0000 Commit: Haelwenn Monnier hacktivis me> CommitDate: Fri Dec 31 08:57:58 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=19345c8d net-misc/maestral: fix failing tests Closes: https://bugs.gentoo.org/830339 Signed-off-by: Viorel Munteanu gmail.com> net-misc/maestral/maestral-1.5.2.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/net-misc/maestral/maestral-1.5.2.ebuild b/net-misc/maestral/maestral-1.5.2.ebuild index 54d55b1bd..f9a6c3ad9 100644 --- a/net-misc/maestral/maestral-1.5.2.ebuild +++ b/net-misc/maestral/maestral-1.5.2.ebuild @@ -50,6 +50,11 @@ python_prepare_all() # this test requires network sed -i -e 's/test_check_for_updates/_&/' tests/offline/test_main.py || die + # this test fails on default gentoo instalation as `/usr/local/share` is missing + # so use `/usr/share` instead + # inform upstream https://github.com/samschott/maestral/issues/562 + sed -i -e 's:/local/:/:g' tests/offline/utils/test_path.py || die + distutils-r1_python_prepare_all }