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 400181382C5 for ; Fri, 5 Jan 2018 19:21:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4B845E083B; Fri, 5 Jan 2018 19:21:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 28B95E0831 for ; Fri, 5 Jan 2018 19:21:13 +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 06AC7335C0C for ; Fri, 5 Jan 2018 19:21:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 88F5A1A4 for ; Fri, 5 Jan 2018 19:21:10 +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: <1515180063.d75b5e62e9cade693e743e1138345e7c4da31e97.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/vym/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/vym/vym-2.6.11.ebuild x11-misc/vym/vym-2.6.8.ebuild X-VCS-Directories: x11-misc/vym/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: d75b5e62e9cade693e743e1138345e7c4da31e97 X-VCS-Branch: master Date: Fri, 5 Jan 2018 19:21:10 +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: 72945056-c4e2-46db-8737-568ae11e991e X-Archives-Hash: 3e2469ba1d1fa37e5e9526d60e7cab8b commit: d75b5e62e9cade693e743e1138345e7c4da31e97 Author: Ulrich Müller gentoo org> AuthorDate: Fri Jan 5 19:11:38 2018 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Fri Jan 5 19:21:03 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d75b5e62 x11-misc/vym: Test LINGUAS rather than linguas_* USE flags. This is only a quick fix for now. On the long term, consider migrating from LINGUAS to L10N. Package-Manager: Portage-2.3.19, Repoman-2.3.6 x11-misc/vym/vym-2.6.11.ebuild | 6 +++--- x11-misc/vym/vym-2.6.8.ebuild | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/x11-misc/vym/vym-2.6.11.ebuild b/x11-misc/vym/vym-2.6.11.ebuild index 6fabe03a5ff..5a672108999 100644 --- a/x11-misc/vym/vym-2.6.11.ebuild +++ b/x11-misc/vym/vym-2.6.11.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 @@ -34,10 +34,10 @@ DOCS=( README.md doc/vym.pdf ) src_prepare() { default - if use linguas_es ; then + if has es ${LINGUAS-es} ; then DOCS+=( doc/vym_es.pdf ) fi - if use linguas_fr ; then + if has fr ${LINGUAS-fr} ; then DOCS+=( doc/vym_fr.pdf ) fi diff --git a/x11-misc/vym/vym-2.6.8.ebuild b/x11-misc/vym/vym-2.6.8.ebuild index 6fabe03a5ff..5a672108999 100644 --- a/x11-misc/vym/vym-2.6.8.ebuild +++ b/x11-misc/vym/vym-2.6.8.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 @@ -34,10 +34,10 @@ DOCS=( README.md doc/vym.pdf ) src_prepare() { default - if use linguas_es ; then + if has es ${LINGUAS-es} ; then DOCS+=( doc/vym_es.pdf ) fi - if use linguas_fr ; then + if has fr ${LINGUAS-fr} ; then DOCS+=( doc/vym_fr.pdf ) fi