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 64BDE158090 for ; Tue, 10 May 2022 17:26:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7D092E08CE; Tue, 10 May 2022 17:26:44 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 42A02E08CE for ; Tue, 10 May 2022 17:26:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 95B473418C4 for ; Tue, 10 May 2022 17:26:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9E48B2F9 for ; Tue, 10 May 2022 17:26:40 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1652203586.2d93fd3ddb707cc07c8a1545616c055ed59c9ddb.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/openssh/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/openssh/openssh-8.9_p1-r2.ebuild net-misc/openssh/openssh-9.0_p1.ebuild X-VCS-Directories: net-misc/openssh/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 2d93fd3ddb707cc07c8a1545616c055ed59c9ddb X-VCS-Branch: master Date: Tue, 10 May 2022 17:26:40 +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: bdb0e53b-7cd5-45a1-ad03-544bc4066b55 X-Archives-Hash: 3e690c1ffcbc8bc30780699f85a3d2b7 commit: 2d93fd3ddb707cc07c8a1545616c055ed59c9ddb Author: Mike Gilbert gentoo org> AuthorDate: Tue May 10 17:25:35 2022 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Tue May 10 17:26:26 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d93fd3d net-misc/openssh: use seccomp sandbox on x32 Closes: https://bugs.gentoo.org/842624 Signed-off-by: Mike Gilbert gentoo.org> net-misc/openssh/openssh-8.9_p1-r2.ebuild | 3 --- net-misc/openssh/openssh-9.0_p1.ebuild | 3 --- 2 files changed, 6 deletions(-) diff --git a/net-misc/openssh/openssh-8.9_p1-r2.ebuild b/net-misc/openssh/openssh-8.9_p1-r2.ebuild index 80ddf5b632ba..7cc0b4d2528a 100644 --- a/net-misc/openssh/openssh-8.9_p1-r2.ebuild +++ b/net-misc/openssh/openssh-8.9_p1-r2.ebuild @@ -323,9 +323,6 @@ src_configure() { myconf+=( --disable-utmp --disable-wtmp ) fi - # The seccomp sandbox is broken on x32, so use the older method for now. #553748 - use amd64 && [[ ${ABI} == "x32" ]] && myconf+=( --with-sandbox=rlimit ) - econf "${myconf[@]}" } diff --git a/net-misc/openssh/openssh-9.0_p1.ebuild b/net-misc/openssh/openssh-9.0_p1.ebuild index 1b77b70031c9..13c0bb4fa5c5 100644 --- a/net-misc/openssh/openssh-9.0_p1.ebuild +++ b/net-misc/openssh/openssh-9.0_p1.ebuild @@ -322,9 +322,6 @@ src_configure() { myconf+=( --disable-utmp --disable-wtmp ) fi - # The seccomp sandbox is broken on x32, so use the older method for now. #553748 - use amd64 && [[ ${ABI} == "x32" ]] && myconf+=( --with-sandbox=rlimit ) - econf "${myconf[@]}" }