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 3B4A0138359 for ; Fri, 18 Sep 2020 12:33:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 460F4E0823; Fri, 18 Sep 2020 12:33:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 2E5A5E0823 for ; Fri, 18 Sep 2020 12:33:12 +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 31795340FF7 for ; Fri, 18 Sep 2020 12:33:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA2F7342 for ; Fri, 18 Sep 2020 12:33:09 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1600432384.a850195da5c24b5816359fe77cb6b6fed79bea19.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/spidermonkey/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/spidermonkey/spidermonkey-52.9.1_pre1-r2.ebuild dev-lang/spidermonkey/spidermonkey-60.5.2_p0-r4.ebuild X-VCS-Directories: dev-lang/spidermonkey/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: a850195da5c24b5816359fe77cb6b6fed79bea19 X-VCS-Branch: master Date: Fri, 18 Sep 2020 12:33:09 +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: bcdc38ca-98db-4742-a2c0-c3ba59f6fc27 X-Archives-Hash: 395ae7fcbaa6997124cb41d94e69622e commit: a850195da5c24b5816359fe77cb6b6fed79bea19 Author: Thomas Deutschmann gentoo org> AuthorDate: Fri Sep 18 12:32:36 2020 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Fri Sep 18 12:33:04 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a850195d dev-lang/spidermonkey: disabling tests in EOL versions Tests are written against bundled ICU. Once system's ICU version is newer than bundled ICU, tests are likely to fail because due to changes in newer ICU (changed locales, changed format), expected hardcoded results don't match anymore. Disabling tests because these versions are already EOL and keeping up with ICU in a rolling distribution is impossible with the limited man power we have. Bug: https://bugs.gentoo.org/737464 Package-Manager: Portage-3.0.7, Repoman-3.0.1 Signed-off-by: Thomas Deutschmann gentoo.org> dev-lang/spidermonkey/spidermonkey-52.9.1_pre1-r2.ebuild | 5 ++++- dev-lang/spidermonkey/spidermonkey-60.5.2_p0-r4.ebuild | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/dev-lang/spidermonkey/spidermonkey-52.9.1_pre1-r2.ebuild b/dev-lang/spidermonkey/spidermonkey-52.9.1_pre1-r2.ebuild index 7f328008d90..b6ca6c1760f 100644 --- a/dev-lang/spidermonkey/spidermonkey-52.9.1_pre1-r2.ebuild +++ b/dev-lang/spidermonkey/spidermonkey-52.9.1_pre1-r2.ebuild @@ -19,7 +19,10 @@ SLOT="52" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 x86" IUSE="debug minimal +system-icu test" -RESTRICT="!test? ( test ) ia64? ( test )" +# Disable tests: +# Version is dead and most issues are related to the use of +# system's ICU. +RESTRICT="test" S="${WORKDIR}/${MY_P%.rc*}" BUILDDIR="${S}/jsobj" diff --git a/dev-lang/spidermonkey/spidermonkey-60.5.2_p0-r4.ebuild b/dev-lang/spidermonkey/spidermonkey-60.5.2_p0-r4.ebuild index 663dcc95bf9..e2a81ff6576 100644 --- a/dev-lang/spidermonkey/spidermonkey-60.5.2_p0-r4.ebuild +++ b/dev-lang/spidermonkey/spidermonkey-60.5.2_p0-r4.ebuild @@ -20,7 +20,10 @@ SLOT="60" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86" IUSE="debug +jit minimal +system-icu test" -RESTRICT="!test? ( test ) ia64? ( test )" +# Disable tests: +# Version is dead and most issues are related to the use of +# system's ICU. +RESTRICT="test" S="${WORKDIR}/${MY_P%.rc*}"