Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/aspell/
Date: Fri, 06 May 2016 01:25:41
Message-Id: 1462497907.f2866bd046caba86b46f3bc0674934922f18cced.ulm@gentoo
1 commit: f2866bd046caba86b46f3bc0674934922f18cced
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 6 00:47:37 2016 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Fri May 6 01:25:07 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2866bd0
7
8 app-text/aspell: Remove exception for German.
9
10 Use linguas_de_1901 for the traditional German spelling variant instead.
11
12 Package-Manager: portage-2.2.28
13
14 ....60.6.1-r2.ebuild => aspell-0.60.6.1-r3.ebuild} | 22 +++++++++-------------
15 1 file changed, 9 insertions(+), 13 deletions(-)
16
17 diff --git a/app-text/aspell/aspell-0.60.6.1-r2.ebuild b/app-text/aspell/aspell-0.60.6.1-r3.ebuild
18 similarity index 85%
19 rename from app-text/aspell/aspell-0.60.6.1-r2.ebuild
20 rename to app-text/aspell/aspell-0.60.6.1-r3.ebuild
21 index 18e0a0e..f9548f1 100644
22 --- a/app-text/aspell/aspell-0.60.6.1-r2.ebuild
23 +++ b/app-text/aspell/aspell-0.60.6.1-r3.ebuild
24 @@ -1,4 +1,4 @@
25 -# Copyright 1999-2015 Gentoo Foundation
26 +# Copyright 1999-2016 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 # $Id$
29
30 @@ -16,19 +16,15 @@ KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~spar
31 IUSE="nls"
32
33 PDEPEND="app-dicts/aspell-en"
34 -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
35 -lt nl no pl pt pt_BR ro ru sk sl sr sv uk vi"
36 +LANGS="af be bg br ca cs cy da de de_1901 el en eo es et fi fo fr ga gl he hr
37 +hu hy is it la lt nl no pl pt pt_BR ro ru sk sl sr sv uk vi"
38 for lang in ${LANGS}; do
39 - dep="linguas_${lang}? ( app-dicts/aspell-${lang/pt_BR/pt-br} )"
40 - if [[ ${lang} == de ]] ; then
41 - dep="linguas_${lang}? (
42 - || (
43 - app-dicts/aspell-${lang}
44 - app-dicts/aspell-${lang}-alt
45 - )
46 - )"
47 - fi
48 - PDEPEND+=" ${dep}"
49 + case ${lang} in
50 + de_1901) dep="app-dicts/aspell-de-alt" ;;
51 + pt_BR) dep="app-dicts/aspell-pt-br" ;;
52 + *) dep="app-dicts/aspell-${lang}" ;;
53 + esac
54 + PDEPEND+=" linguas_${lang}? ( ${dep} )"
55 IUSE+=" linguas_${lang}"
56 done
57 unset dep