From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-996103-garchives=archives.gentoo.org@lists.gentoo.org>
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 F1BCA138330
	for <garchives@archives.gentoo.org>; Sun,  7 Jan 2018 14:58:58 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 3E283E0825;
	Sun,  7 Jan 2018 14:58:58 +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 05BD1E0825
	for <gentoo-commits@lists.gentoo.org>; Sun,  7 Jan 2018 14:58:57 +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 13B61340C54
	for <gentoo-commits@lists.gentoo.org>; Sun,  7 Jan 2018 14:58:57 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id CB3C1147
	for <gentoo-commits@lists.gentoo.org>; Sun,  7 Jan 2018 14:58:55 +0000 (UTC)
From: "Ulrich Müller" <ulm@gentoo.org>
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" <ulm@gentoo.org>
Message-ID: <1515337130.0e4050ae682ce93f82c29e8d358766f98aba2962.ulm@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/mcabber/
X-VCS-Repository: repo/gentoo
X-VCS-Files: net-im/mcabber/mcabber-1.0.5.ebuild net-im/mcabber/mcabber-1.1.0.ebuild net-im/mcabber/mcabber-9999.ebuild
X-VCS-Directories: net-im/mcabber/
X-VCS-Committer: ulm
X-VCS-Committer-Name: Ulrich Müller
X-VCS-Revision: 0e4050ae682ce93f82c29e8d358766f98aba2962
X-VCS-Branch: master
Date: Sun,  7 Jan 2018 14:58:55 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: c8043fd0-9036-4dfa-b4cb-87ec687f3a6b
X-Archives-Hash: e5cd94140ec16a75d785a914af5367a8

commit:     0e4050ae682ce93f82c29e8d358766f98aba2962
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Jan  7 14:58:12 2018 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sun Jan  7 14:58:50 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e4050ae

net-im/mcabber: Migrate from LINGUAS to L10N.

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 net-im/mcabber/mcabber-1.0.5.ebuild | 8 ++++----
 net-im/mcabber/mcabber-1.1.0.ebuild | 8 ++++----
 net-im/mcabber/mcabber-9999.ebuild  | 8 ++++----
 3 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/net-im/mcabber/mcabber-1.0.5.ebuild b/net-im/mcabber/mcabber-1.0.5.ebuild
index f7eb3aa298a..b91ae75262f 100644
--- a/net-im/mcabber/mcabber-1.0.5.ebuild
+++ b/net-im/mcabber/mcabber-1.0.5.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
@@ -20,9 +20,9 @@ KEYWORDS="~alpha amd64 ~arm ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux
 IUSE="aspell crypt idn modules otr spell ssl vim-syntax"
 
 LANGS="cs de fr it nl pl ru uk"
-# localized help versions are installed only, when LINGUAS var is set
+# localized help versions are installed only, when L10N var is set
 for i in ${LANGS}; do
-	IUSE="${IUSE} linguas_${i}"
+	IUSE="${IUSE} l10n_${i}"
 done;
 
 RDEPEND="crypt? ( >=app-crypt/gpgme-1.0.0 )
@@ -65,7 +65,7 @@ src_install() {
 
 	# clean unneeded language documentation
 	for i in ${LANGS}; do
-		use linguas_${i} || rm -rf "${ED}"/usr/share/${PN}/help/${i}
+		use l10n_${i} || rm -rf "${ED}"/usr/share/${PN}/help/${i}
 	done
 
 	# contrib themes

diff --git a/net-im/mcabber/mcabber-1.1.0.ebuild b/net-im/mcabber/mcabber-1.1.0.ebuild
index b3b5e4471f5..3ae33728009 100644
--- a/net-im/mcabber/mcabber-1.1.0.ebuild
+++ b/net-im/mcabber/mcabber-1.1.0.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
@@ -20,9 +20,9 @@ KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-lin
 IUSE="aspell crypt idn modules otr spell ssl vim-syntax"
 
 LANGS="cs de fr it nl pl ru uk"
-# localized help versions are installed only, when LINGUAS var is set
+# localized help versions are installed only, when L10N var is set
 for i in ${LANGS}; do
-	IUSE="${IUSE} linguas_${i}"
+	IUSE="${IUSE} l10n_${i}"
 done;
 
 RDEPEND="crypt? ( >=app-crypt/gpgme-1.0.0 )
@@ -65,7 +65,7 @@ src_install() {
 
 	# clean unneeded language documentation
 	for i in ${LANGS}; do
-		use linguas_${i} || rm -rf "${ED}"/usr/share/${PN}/help/${i}
+		use l10n_${i} || rm -rf "${ED}"/usr/share/${PN}/help/${i}
 	done
 
 	# contrib themes

diff --git a/net-im/mcabber/mcabber-9999.ebuild b/net-im/mcabber/mcabber-9999.ebuild
index 647f3fe81bb..f008dcf76c7 100644
--- a/net-im/mcabber/mcabber-9999.ebuild
+++ b/net-im/mcabber/mcabber-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -19,9 +19,9 @@ KEYWORDS=""
 IUSE="aspell crypt idn modules otr spell ssl vim-syntax"
 
 LANGS="cs de fr it nl pl ru uk"
-# localized help versions are installed only, when LINGUAS var is set
+# localized help versions are installed only, when L10N var is set
 for i in ${LANGS}; do
-	IUSE="${IUSE} linguas_${i}"
+	IUSE="${IUSE} l10n_${i}"
 done;
 
 RDEPEND="crypt? ( >=app-crypt/gpgme-1.0.0 )
@@ -64,7 +64,7 @@ src_install() {
 
 	# clean unneeded language documentation
 	for i in ${LANGS}; do
-		use linguas_${i} || rm -rf "${ED}"/usr/share/${PN}/help/${i}
+		use l10n_${i} || rm -rf "${ED}"/usr/share/${PN}/help/${i}
 	done
 
 	# contrib themes