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 072B8158086 for ; Sat, 18 Dec 2021 15:41:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 576172BC039; Sat, 18 Dec 2021 15:41:17 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3F4C92BC039 for ; Sat, 18 Dec 2021 15:41:17 +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 5D685343000 for ; Sat, 18 Dec 2021 15:41:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C8D42D0 for ; Sat, 18 Dec 2021 15:41:14 +0000 (UTC) From: "Cédric Krier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Cédric Krier" Message-ID: <1639842066.23a6f9e69e4c356f05e563ed849efb6311eb7675.cedk@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/mercurial/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/mercurial/mercurial-5.8.1.ebuild dev-vcs/mercurial/mercurial-5.9.3.ebuild X-VCS-Directories: dev-vcs/mercurial/ X-VCS-Committer: cedk X-VCS-Committer-Name: Cédric Krier X-VCS-Revision: 23a6f9e69e4c356f05e563ed849efb6311eb7675 X-VCS-Branch: master Date: Sat, 18 Dec 2021 15:41:14 +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: 19b4f5e7-c7d2-4631-9e7e-cad29f360ad1 X-Archives-Hash: 94415b472693642d9f6f387926559f30 commit: 23a6f9e69e4c356f05e563ed849efb6311eb7675 Author: Cédric Krier gentoo org> AuthorDate: Sat Dec 18 15:40:42 2021 +0000 Commit: Cédric Krier gentoo org> CommitDate: Sat Dec 18 15:41:06 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23a6f9e6 dev-vcs/mercurial: remove unsupported tests on big-endian Closes: https://bugs.gentoo.org/815121 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Cédric Krier gentoo.org> dev-vcs/mercurial/mercurial-5.8.1.ebuild | 9 ++++++++- dev-vcs/mercurial/mercurial-5.9.3.ebuild | 9 ++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/dev-vcs/mercurial/mercurial-5.8.1.ebuild b/dev-vcs/mercurial/mercurial-5.8.1.ebuild index 40001869a2f6..bed3532e284f 100644 --- a/dev-vcs/mercurial/mercurial-5.8.1.ebuild +++ b/dev-vcs/mercurial/mercurial-5.8.1.ebuild @@ -127,7 +127,7 @@ zstd-safe-2.0.5+zstd.1.4.5 zstd-sys-1.4.17+zstd.1.4.5 " -inherit bash-completion-r1 cargo elisp-common distutils-r1 flag-o-matic multiprocessing +inherit bash-completion-r1 cargo elisp-common distutils-r1 flag-o-matic multiprocessing toolchain-funcs DESCRIPTION="Scalable distributed SCM" HOMEPAGE="https://www.mercurial-scm.org/" @@ -269,6 +269,13 @@ src_test() { rm -f test-convert-tla* # GNU Arch tla rm -f test-largefiles* # tends to time out rm -f test-https* # requires to support tls1.0 + if [[ $(tc-endian) == "big" ]]; then + # tests no working on big-endian + # https://bz.mercurial-scm.org/show_bug.cgi?id=6607 + rm -f test-clone-uncompressed.t + rm -f test-generaldelta.t + rm -f test-persistent-nodemap.t + fi if [[ ${EUID} -eq 0 ]]; then einfo "Removing tests which require user privileges to succeed" rm -f test-convert* diff --git a/dev-vcs/mercurial/mercurial-5.9.3.ebuild b/dev-vcs/mercurial/mercurial-5.9.3.ebuild index bcba2835a327..3f1017f98f7f 100644 --- a/dev-vcs/mercurial/mercurial-5.9.3.ebuild +++ b/dev-vcs/mercurial/mercurial-5.9.3.ebuild @@ -123,7 +123,7 @@ CRATES=" zstd-sys-1.4.17+zstd.1.4.5 " -inherit bash-completion-r1 cargo elisp-common distutils-r1 flag-o-matic multiprocessing +inherit bash-completion-r1 cargo elisp-common distutils-r1 flag-o-matic multiprocessing toolchain-funcs DESCRIPTION="Scalable distributed SCM" HOMEPAGE="https://www.mercurial-scm.org/" @@ -261,6 +261,13 @@ src_test() { rm -f test-largefiles* # tends to time out rm -f test-https* # requires to support tls1.0 rm -rf test-removeemptydirs* # requires access to access parent directories + if [[ $(tc-endian) == "big" ]]; then + # tests no working on big-endian + # https://bz.mercurial-scm.org/show_bug.cgi?id=6607 + rm -f test-clone-uncompressed.t + rm -f test-generaldelta.t + rm -f test-persistent-nodemap.t + fi if [[ ${EUID} -eq 0 ]]; then einfo "Removing tests which require user privileges to succeed" rm -f test-convert*