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 95048138222 for ; Fri, 6 May 2016 01:25:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0CD8A21C074; Fri, 6 May 2016 01:25:39 +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 81C18E07E0 for ; Fri, 6 May 2016 01:25:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 6ED32340831 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 7267B856 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.2309df23993b5cb3f32d64d585efea206acf81c8.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/hunspell/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/hunspell/hunspell-1.3.3.ebuild X-VCS-Directories: app-text/hunspell/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 2309df23993b5cb3f32d64d585efea206acf81c8 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: 3bdfaab4-6341-43fc-a9df-821ef5a92cb7 X-Archives-Hash: 12d1005c91b55c1c8e7da991a548a022 commit: 2309df23993b5cb3f32d64d585efea206acf81c8 Author: Ulrich Müller gentoo org> AuthorDate: Fri May 6 00:18:15 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=2309df23 app-text/hunspell: Update dependency on app-dicts/myspell-de_1901. Also remove exception for German. Use linguas_de_1901 for the traditional spelling variant instead. Package-Manager: portage-2.2.28 app-text/hunspell/hunspell-1.3.3.ebuild | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/app-text/hunspell/hunspell-1.3.3.ebuild b/app-text/hunspell/hunspell-1.3.3.ebuild index a83d9e4..8326165 100644 --- a/app-text/hunspell/hunspell-1.3.3.ebuild +++ b/app-text/hunspell/hunspell-1.3.3.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$ @@ -23,21 +23,12 @@ DEPEND="${RDEPEND} sys-devel/gettext" # describe properly mi -LANGS="af bg ca cs cy da de el en eo es et fo fr ga gl he hr hu ia id is it km -ku lt lv mk ms nb nl nn pl pt pt_BR ro ru sk sl sq sv sw tn uk zu" +LANGS="af bg ca cs cy da de de_1901 el en eo es et fo fr ga gl he hr hu ia id +is it km ku lt lv mk ms nb nl nn pl pt pt_BR ro ru sk sl sq sv sw tn uk zu" DICT_DEP="app-dicts/myspell-en" for lang in ${LANGS}; do - if [[ ${lang} == de ]] ; then - DICT_DEP+=" linguas_de? ( - || ( - app-dicts/myspell-de - app-dicts/myspell-de-alt - ) - )" - else - DICT_DEP+=" linguas_${lang}? ( app-dicts/myspell-${lang/pt_BR/pt-br} )" - fi + DICT_DEP+=" linguas_${lang}? ( app-dicts/myspell-${lang/pt_BR/pt-br} )" IUSE+=" linguas_${lang}" done PDEPEND="${DICT_DEP}"