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 3ECC8138330 for ; Sun, 7 Jan 2018 23:07:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 574D4E082B; Sun, 7 Jan 2018 23:07:43 +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 26A1AE082B for ; Sun, 7 Jan 2018 23:07:42 +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 8FFF6340E85 for ; Sun, 7 Jan 2018 23:07:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D77512D for ; Sun, 7 Jan 2018 23:07:40 +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: <1515366452.4ea3b65775d183a39fc8e561fe9c121d0ed4ed06.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/debhelper/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/debhelper/debhelper-10.10.9.ebuild dev-util/debhelper/debhelper-11.ebuild dev-util/debhelper/debhelper-9.20160814.ebuild X-VCS-Directories: dev-util/debhelper/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 4ea3b65775d183a39fc8e561fe9c121d0ed4ed06 X-VCS-Branch: master Date: Sun, 7 Jan 2018 23:07:40 +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: f271c7cd-ad61-47bc-ad2e-b24b0e88ad1b X-Archives-Hash: cff76480b740a40eeed01d18495855f5 commit: 4ea3b65775d183a39fc8e561fe9c121d0ed4ed06 Author: Ulrich Müller gentoo org> AuthorDate: Sun Jan 7 23:03:30 2018 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sun Jan 7 23:07:32 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ea3b657 dev-util/debhelper: Migrate from LINGUAS to L10N. Package-Manager: Portage-2.3.19, Repoman-2.3.6 dev-util/debhelper/debhelper-10.10.9.ebuild | 28 +++++++++++++------------- dev-util/debhelper/debhelper-11.ebuild | 28 +++++++++++++------------- dev-util/debhelper/debhelper-9.20160814.ebuild | 28 +++++++++++++------------- 3 files changed, 42 insertions(+), 42 deletions(-) diff --git a/dev-util/debhelper/debhelper-10.10.9.ebuild b/dev-util/debhelper/debhelper-10.10.9.ebuild index c4f2a7b166c..f485cb5d4c2 100644 --- a/dev-util/debhelper/debhelper-10.10.9.ebuild +++ b/dev-util/debhelper/debhelper-10.10.9.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 @@ -12,11 +12,11 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux" IUSE="test" -DH_LINGUAS=( de es fr ) -IUSE+=" ${DH_LINGUAS[@]/#/linguas_}" +DH_LANGS=( de es fr ) +IUSE+=" ${DH_LANGS[@]/#/l10n_}" NLS_DEPEND=$( - printf "linguas_%s? ( >=app-text/po4a-0.24 )\n" ${DH_LINGUAS[@]} + printf "l10n_%s? ( >=app-text/po4a-0.24 )\n" ${DH_LANGS[@]} ) RDEPEND=" @@ -39,10 +39,10 @@ S=${WORKDIR}/${PN} src_compile() { tc-export CC - local LANGS="" USE_NLS=no lingua - for lingua in ${DH_LINGUAS[@]}; do - if use linguas_${lingua}; then - LANGS+=" ${lingua}" + local LANGS="" USE_NLS=no lang + for lang in ${DH_LANGS[@]}; do + if use l10n_${lang}; then + LANGS+=" ${lang}" USE_NLS=yes fi done @@ -55,14 +55,14 @@ src_install() { dodoc doc/* debian/changelog docinto examples dodoc examples/* - local lingua + local lang for manfile in *.1 *.7 ; do - for lingua in ${DH_LINGUAS[@]}; do + for lang in ${DH_LANGS[@]}; do case ${manfile} in - *.${lingua}.?) - use linguas_${lingua} \ - && cp ${manfile} "${T}"/${manfile/.${lingua}/} \ - && doman -i18n=${lingua} "${T}"/${manfile/.${lingua}/} + *.${lang}.?) + use l10n_${lang} \ + && cp ${manfile} "${T}"/${manfile/.${lang}/} \ + && doman -i18n=${lang} "${T}"/${manfile/.${lang}/} ;; *) doman ${manfile} diff --git a/dev-util/debhelper/debhelper-11.ebuild b/dev-util/debhelper/debhelper-11.ebuild index 526db42385e..eb7e5fa626c 100644 --- a/dev-util/debhelper/debhelper-11.ebuild +++ b/dev-util/debhelper/debhelper-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 @@ -12,11 +12,11 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux" IUSE="test" -DH_LINGUAS=( de es fr ) -IUSE+=" ${DH_LINGUAS[@]/#/linguas_}" +DH_LANGS=( de es fr ) +IUSE+=" ${DH_LANGS[@]/#/l10n_}" NLS_DEPEND=$( - printf "linguas_%s? ( >=app-text/po4a-0.24 )\n" ${DH_LINGUAS[@]} + printf "l10n_%s? ( >=app-text/po4a-0.24 )\n" ${DH_LANGS[@]} ) RDEPEND=" @@ -39,10 +39,10 @@ S=${WORKDIR}/${PN} src_compile() { tc-export CC - local LANGS="" USE_NLS=no lingua - for lingua in ${DH_LINGUAS[@]}; do - if use linguas_${lingua}; then - LANGS+=" ${lingua}" + local LANGS="" USE_NLS=no lang + for lang in ${DH_LANGS[@]}; do + if use l10n_${lang}; then + LANGS+=" ${lang}" USE_NLS=yes fi done @@ -55,14 +55,14 @@ src_install() { dodoc doc/* debian/changelog docinto examples dodoc examples/* - local lingua + local lang for manfile in *.1 *.7 ; do - for lingua in ${DH_LINGUAS[@]}; do + for lang in ${DH_LANGS[@]}; do case ${manfile} in - *.${lingua}.?) - use linguas_${lingua} \ - && cp ${manfile} "${T}"/${manfile/.${lingua}/} \ - && doman -i18n=${lingua} "${T}"/${manfile/.${lingua}/} + *.${lang}.?) + use l10n_${lang} \ + && cp ${manfile} "${T}"/${manfile/.${lang}/} \ + && doman -i18n=${lang} "${T}"/${manfile/.${lang}/} ;; *) doman ${manfile} diff --git a/dev-util/debhelper/debhelper-9.20160814.ebuild b/dev-util/debhelper/debhelper-9.20160814.ebuild index 3333a21a303..10f0449075e 100644 --- a/dev-util/debhelper/debhelper-9.20160814.ebuild +++ b/dev-util/debhelper/debhelper-9.20160814.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 @@ -12,11 +12,11 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux" IUSE="test" -DH_LINGUAS=( de es fr ) -IUSE+=" ${DH_LINGUAS[@]/#/linguas_}" +DH_LANGS=( de es fr ) +IUSE+=" ${DH_LANGS[@]/#/l10n_}" NLS_DEPEND=$( - printf "linguas_%s? ( >=app-text/po4a-0.24 )\n" ${DH_LINGUAS[@]} + printf "l10n_%s? ( >=app-text/po4a-0.24 )\n" ${DH_LANGS[@]} ) RDEPEND=" @@ -39,10 +39,10 @@ S=${WORKDIR}/${PN} src_compile() { tc-export CC - local LANGS="" USE_NLS=no lingua - for lingua in ${DH_LINGUAS[@]}; do - if use linguas_${lingua}; then - LANGS+=" ${lingua}" + local LANGS="" USE_NLS=no lang + for lang in ${DH_LANGS[@]}; do + if use l10n_${lang}; then + LANGS+=" ${lang}" USE_NLS=yes fi done @@ -55,14 +55,14 @@ src_install() { dodoc doc/* debian/changelog docinto examples dodoc examples/* - local lingua + local lang for manfile in *.1 *.7 ; do - for lingua in ${DH_LINGUAS[@]}; do + for lang in ${DH_LANGS[@]}; do case ${manfile} in - *.${lingua}.?) - use linguas_${lingua} \ - && cp ${manfile} "${T}"/${manfile/.${lingua}/} \ - && doman -i18n=${lingua} "${T}"/${manfile/.${lingua}/} + *.${lang}.?) + use l10n_${lang} \ + && cp ${manfile} "${T}"/${manfile/.${lang}/} \ + && doman -i18n=${lang} "${T}"/${manfile/.${lang}/} ;; *) doman ${manfile}