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 8BD3F138330 for ; Fri, 5 Jan 2018 18:30:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9E55DE087C; Fri, 5 Jan 2018 18:30:29 +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 7B489E087C for ; Fri, 5 Jan 2018 18:30:29 +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 7D32D335C30 for ; Fri, 5 Jan 2018 18:30:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C7FFB1A1 for ; Fri, 5 Jan 2018 18:30:26 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1515177009.2c3014f6a6dc7ab31520e65680eb5def3e18cd11.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/iso-codes/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/iso-codes/iso-codes-3.75.ebuild app-text/iso-codes/iso-codes-3.76.ebuild X-VCS-Directories: app-text/iso-codes/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 2c3014f6a6dc7ab31520e65680eb5def3e18cd11 X-VCS-Branch: master Date: Fri, 5 Jan 2018 18:30:26 +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-Archives-Salt: 7e774477-dacb-4565-aa1d-f0d71bc7f9d2 X-Archives-Hash: 69539e88c94aec6140f7abc8c85ee806 commit: 2c3014f6a6dc7ab31520e65680eb5def3e18cd11 Author: Ulrich Müller gentoo org> AuthorDate: Fri Jan 5 18:29:38 2018 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Fri Jan 5 18:30:09 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c3014f6 app-text/iso-codes: Test LINGUAS rather than linguas_* USE flags. Closes: https://bugs.gentoo.org/643594 Package-Manager: Portage-2.3.19, Repoman-2.3.6 app-text/iso-codes/iso-codes-3.75.ebuild | 4 ++-- app-text/iso-codes/iso-codes-3.76.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app-text/iso-codes/iso-codes-3.75.ebuild b/app-text/iso-codes/iso-codes-3.75.ebuild index 7b19bfc4b0e..b5a8f0e064c 100644 --- a/app-text/iso-codes/iso-codes-3.75.ebuild +++ b/app-text/iso-codes/iso-codes-3.75.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -64,7 +64,7 @@ src_prepare() { pushd "${std}" >/dev/null || die mylinguas=() for loc in *.po; do - if use "linguas_${loc%.po}"; then + if has ${loc%.po} ${LINGUAS-${loc%.po}}; then mylinguas+=( "${loc}" ) fi done diff --git a/app-text/iso-codes/iso-codes-3.76.ebuild b/app-text/iso-codes/iso-codes-3.76.ebuild index 64c8a46ae42..c2b56244931 100644 --- a/app-text/iso-codes/iso-codes-3.76.ebuild +++ b/app-text/iso-codes/iso-codes-3.76.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -64,7 +64,7 @@ src_prepare() { pushd "${std}" >/dev/null || die mylinguas=() for loc in *.po; do - if use "linguas_${loc%.po}"; then + if has ${loc%.po} ${LINGUAS-${loc%.po}}; then mylinguas+=( "${loc}" ) fi done