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 57E30138330 for ; Sat, 6 Jan 2018 15:19:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 765B2E08A4; Sat, 6 Jan 2018 15:19:18 +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 509B9E08A4 for ; Sat, 6 Jan 2018 15:19:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 D5317335C02 for ; Sat, 6 Jan 2018 15:19:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 96EA3196 for ; Sat, 6 Jan 2018 15:19:15 +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: <1515251936.9af40458b9903614781d813d558254b239c951c5.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/pv/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/pv/pv-1.6.0-r1.ebuild sys-apps/pv/pv-1.6.6.ebuild X-VCS-Directories: sys-apps/pv/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 9af40458b9903614781d813d558254b239c951c5 X-VCS-Branch: master Date: Sat, 6 Jan 2018 15:19:15 +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: 72f17803-bcbd-49cd-a213-ed12f3f56534 X-Archives-Hash: c9cd39ca9cab85b4ad715c7dda8bf0c2 commit: 9af40458b9903614781d813d558254b239c951c5 Author: Ulrich Müller gentoo org> AuthorDate: Sat Jan 6 15:18:56 2018 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Jan 6 15:18:56 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9af40458 sys-apps/pv: Remove linguas_* from IUSE. Package-Manager: Portage-2.3.19, Repoman-2.3.6 sys-apps/pv/pv-1.6.0-r1.ebuild | 5 ++--- sys-apps/pv/pv-1.6.6.ebuild | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/sys-apps/pv/pv-1.6.0-r1.ebuild b/sys-apps/pv/pv-1.6.0-r1.ebuild index 1a443a65954..03cae302ea4 100644 --- a/sys-apps/pv/pv-1.6.0-r1.ebuild +++ b/sys-apps/pv/pv-1.6.0-r1.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=5 @@ -14,7 +14,6 @@ KEYWORDS="alpha amd64 arm arm64 hppa ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86 IUSE="debug nls" PV_LINGUAS=( de fr pl pt ) -IUSE+=" ${PV_LINGUAS[@]/#/linguas_}" DOCS=( README doc/NEWS doc/TODO ) @@ -38,7 +37,7 @@ src_configure() { tc-export AR local lingua for lingua in ${PV_LINGUAS[@]}; do - if ! use linguas_${lingua}; then + if ! has ${lingua} ${LINGUAS-${lingua}}; then sed -i configure -e "/ALL_LINGUAS=/s:${lingua}::g" || die fi done diff --git a/sys-apps/pv/pv-1.6.6.ebuild b/sys-apps/pv/pv-1.6.6.ebuild index b3b8222481a..a411e2bb077 100644 --- a/sys-apps/pv/pv-1.6.6.ebuild +++ b/sys-apps/pv/pv-1.6.6.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 @@ -14,7 +14,6 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-l IUSE="debug nls" PV_LINGUAS=( de fr pl pt ) -IUSE+=" ${PV_LINGUAS[@]/#/linguas_}" DOCS=( README doc/NEWS doc/TODO ) @@ -41,7 +40,7 @@ src_configure() { tc-export AR local lingua for lingua in ${PV_LINGUAS[@]}; do - if ! use linguas_${lingua}; then + if ! has ${lingua} ${LINGUAS-${lingua}}; then sed -i configure -e "/ALL_LINGUAS=/s:${lingua}::g" || die fi done