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 5B8181382C5 for ; Fri, 29 Jan 2021 12:58:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A2519E0C41; Fri, 29 Jan 2021 12:58:06 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 87D09E0C41 for ; Fri, 29 Jan 2021 12:58:06 +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 3812D340F2C for ; Fri, 29 Jan 2021 12:58:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 53FF3476 for ; Fri, 29 Jan 2021 12:58:03 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1611925068.13139e37b007d32a4715b77dc7213459a75d33a5.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/sane-backends/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/sane-backends/sane-backends-1.0.31.ebuild X-VCS-Directories: media-gfx/sane-backends/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 13139e37b007d32a4715b77dc7213459a75d33a5 X-VCS-Branch: master Date: Fri, 29 Jan 2021 12:58:03 +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: 4fb0b477-afb3-443f-a3b5-e625190001cd X-Archives-Hash: 0f2f532643332eedcef0fe896240763a commit: 13139e37b007d32a4715b77dc7213459a75d33a5 Author: Michael Cook mackal net> AuthorDate: Fri Jan 29 12:57:23 2021 +0000 Commit: Lars Wendler gentoo org> CommitDate: Fri Jan 29 12:57:48 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13139e37 media-gfx/sane-backends: Don't enable escl backend for non-native ABI Closes: https://bugs.gentoo.org/765379 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Lars Wendler gentoo.org> media-gfx/sane-backends/sane-backends-1.0.31.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/media-gfx/sane-backends/sane-backends-1.0.31.ebuild b/media-gfx/sane-backends/sane-backends-1.0.31.ebuild index acb6d8ba149..c8b16df1f93 100644 --- a/media-gfx/sane-backends/sane-backends-1.0.31.ebuild +++ b/media-gfx/sane-backends/sane-backends-1.0.31.ebuild @@ -231,9 +231,10 @@ multilib_src_configure() { use gphoto2 && lbackends="gphoto2" use v4l && lbackends+=" v4l" + use sane_backends_escl && multilib_is_native_abi && lbackends+=" escl" local backend for backend in ${IUSE_SANE_BACKENDS[@]} ; do - if use "sane_backends_${backend}" && [[ "${backend}" != pnm ]] ; then + if use "sane_backends_${backend}" && [[ "${backend}" != pnm ]] && [[ "${backend}" != escl ]] ; then lbackends+=" ${backend}" fi done