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 4CE9E15803E for ; Sat, 6 Jan 2024 15:02:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8421C2BC01D; Sat, 6 Jan 2024 15:02:09 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 37FF02BC01D for ; Sat, 6 Jan 2024 15:02:09 +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 32743343140 for ; Sat, 6 Jan 2024 15:02:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6F5EF13A0 for ; Sat, 6 Jan 2024 15:02:06 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1704553297.09bbbd97f23da947036f49cf8b819807129dacac.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/arcconf/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-block/arcconf/arcconf-4.14.00.26064.ebuild X-VCS-Directories: sys-block/arcconf/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 09bbbd97f23da947036f49cf8b819807129dacac X-VCS-Branch: master Date: Sat, 6 Jan 2024 15:02:06 +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: bf8cd14e-acce-48cd-82ac-a66a7ed7bf36 X-Archives-Hash: 87a089671b2bfb7bda5e6ec883fb28ca commit: 09bbbd97f23da947036f49cf8b819807129dacac Author: Conrad Kostecki gentoo org> AuthorDate: Sat Jan 6 14:36:25 2024 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Jan 6 15:01:37 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09bbbd97 sys-block/arcconf: drop CONFIG_LEGACY_VSYSCALL_NONE check Checking for 'CONFIG_LEGACY_VSYSCALL_NONE' is not needed anymore, as current version just runs fine. Signed-off-by: Conrad Kostecki gentoo.org> sys-block/arcconf/arcconf-4.14.00.26064.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sys-block/arcconf/arcconf-4.14.00.26064.ebuild b/sys-block/arcconf/arcconf-4.14.00.26064.ebuild index 928b7834f604..168924984f94 100644 --- a/sys-block/arcconf/arcconf-4.14.00.26064.ebuild +++ b/sys-block/arcconf/arcconf-4.14.00.26064.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -24,9 +24,8 @@ QA_PREBUILT="usr/bin/arcconf" pkg_setup() { # CONFIG_HARDENED_USERCOPY_PAGESPAN makes ARCCONF segault - # LEGACY_VSYSCALL_NONE makes ARCCONF segaultmakes ARCCONF segault if linux-info_get_any_version && linux_config_src_exists; then - CONFIG_CHECK="!HARDENED_USERCOPY_PAGESPAN !LEGACY_VSYSCALL_NONE" + CONFIG_CHECK="!HARDENED_USERCOPY_PAGESPAN" check_extra_config fi }