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 62A7A138359 for ; Fri, 16 Oct 2020 03:46:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9DF5BE083E; Fri, 16 Oct 2020 03:46:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 52AE0E083E for ; Fri, 16 Oct 2020 03:46:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 06541340FA5 for ; Fri, 16 Oct 2020 03:46:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6D8312EE for ; Fri, 16 Oct 2020 03:45:59 +0000 (UTC) From: "Joshua Kinard" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joshua Kinard" Message-ID: <1602819920.4b140c170702c113f07a587b21724ba3be44c6ba.kumba@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libseccomp/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/libseccomp/libseccomp-2.5.0.ebuild X-VCS-Directories: sys-libs/libseccomp/ X-VCS-Committer: kumba X-VCS-Committer-Name: Joshua Kinard X-VCS-Revision: 4b140c170702c113f07a587b21724ba3be44c6ba X-VCS-Branch: master Date: Fri, 16 Oct 2020 03:45:59 +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: 079870c7-09fa-439f-bd12-92f80586feef X-Archives-Hash: 3bd088db7fed98e13a68fefd6227df88 commit: 4b140c170702c113f07a587b21724ba3be44c6ba Author: Joshua Kinard gentoo org> AuthorDate: Fri Oct 16 03:45:20 2020 +0000 Commit: Joshua Kinard gentoo org> CommitDate: Fri Oct 16 03:45:20 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b140c17 sys-libs/libseccomp: Negate the MIPS keyword on 2.5.0 There is a compile failure on the MIPS architecture for libseccomp-2.5.0 that is fixed in upstream and will be in libseccomp-2.5.1. We can hold at v2.4.4 for now until the next version comes out. Bug: https://bugs.gentoo.org/749378 Signed-off-by: Joshua Kinard gentoo.org> Package-Manager: Portage-3.0.8, Repoman-3.0.1 sys-libs/libseccomp/libseccomp-2.5.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-libs/libseccomp/libseccomp-2.5.0.ebuild b/sys-libs/libseccomp/libseccomp-2.5.0.ebuild index 1375d590f41..f45cbfa00a4 100644 --- a/sys-libs/libseccomp/libseccomp-2.5.0.ebuild +++ b/sys-libs/libseccomp/libseccomp-2.5.0.ebuild @@ -17,7 +17,7 @@ if [[ ${PV} == *9999 ]] ; then inherit autotools git-r3 else SRC_URI="https://github.com/seccomp/libseccomp/releases/download/v${PV}/${P}.tar.gz" - KEYWORDS="-* ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~x86 ~amd64-linux ~x86-linux" + KEYWORDS="-* ~amd64 ~arm ~arm64 ~hppa -mips ~ppc ~ppc64 ~riscv ~s390 ~x86 ~amd64-linux ~x86-linux" fi LICENSE="LGPL-2.1"