From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 63576138224 for ; Fri, 6 May 2016 01:25:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C469E07EA; Fri, 6 May 2016 01:25:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 26AD8E07E0 for ; Fri, 6 May 2016 01:25:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 42E15340815 for ; Fri, 6 May 2016 01:25:36 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 838F887B for ; Fri, 6 May 2016 01:25:33 +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: <1462497907.f2866bd046caba86b46f3bc0674934922f18cced.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/aspell/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/aspell/aspell-0.60.6.1-r2.ebuild app-text/aspell/aspell-0.60.6.1-r3.ebuild X-VCS-Directories: app-text/aspell/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: f2866bd046caba86b46f3bc0674934922f18cced X-VCS-Branch: master Date: Fri, 6 May 2016 01:25:33 +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: 1698dab7-86d0-49df-b017-cb26f6b2c637 X-Archives-Hash: 4f2bdc0a7f5668d32c001fc0e733eb98 commit: f2866bd046caba86b46f3bc0674934922f18cced Author: Ulrich Müller gentoo org> AuthorDate: Fri May 6 00:47:37 2016 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Fri May 6 01:25:07 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2866bd0 app-text/aspell: Remove exception for German. Use linguas_de_1901 for the traditional German spelling variant instead. Package-Manager: portage-2.2.28 ....60.6.1-r2.ebuild => aspell-0.60.6.1-r3.ebuild} | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/app-text/aspell/aspell-0.60.6.1-r2.ebuild b/app-text/aspell/aspell-0.60.6.1-r3.ebuild similarity index 85% rename from app-text/aspell/aspell-0.60.6.1-r2.ebuild rename to app-text/aspell/aspell-0.60.6.1-r3.ebuild index 18e0a0e..f9548f1 100644 --- a/app-text/aspell/aspell-0.60.6.1-r2.ebuild +++ b/app-text/aspell/aspell-0.60.6.1-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -16,19 +16,15 @@ KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~spar IUSE="nls" PDEPEND="app-dicts/aspell-en" -LANGS="af be bg br ca cs cy da de el en eo es et fi fo fr ga gl he hr hu hy is it la -lt nl no pl pt pt_BR ro ru sk sl sr sv uk vi" +LANGS="af be bg br ca cs cy da de de_1901 el en eo es et fi fo fr ga gl he hr +hu hy is it la lt nl no pl pt pt_BR ro ru sk sl sr sv uk vi" for lang in ${LANGS}; do - dep="linguas_${lang}? ( app-dicts/aspell-${lang/pt_BR/pt-br} )" - if [[ ${lang} == de ]] ; then - dep="linguas_${lang}? ( - || ( - app-dicts/aspell-${lang} - app-dicts/aspell-${lang}-alt - ) - )" - fi - PDEPEND+=" ${dep}" + case ${lang} in + de_1901) dep="app-dicts/aspell-de-alt" ;; + pt_BR) dep="app-dicts/aspell-pt-br" ;; + *) dep="app-dicts/aspell-${lang}" ;; + esac + PDEPEND+=" linguas_${lang}? ( ${dep} )" IUSE+=" linguas_${lang}" done unset dep