Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-fr/
Date: Thu, 10 Jun 2021 06:40:56
Message-Id: 1623307116.8a5d842b909384d604c3bd7d8a18178af4505c17.juippis@gentoo
1 commit: 8a5d842b909384d604c3bd7d8a18178af4505c17
2 Author: Marco Scardovi <marco <AT> scardovi <DOT> com>
3 AuthorDate: Wed Jun 9 07:59:35 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 10 06:38:36 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a5d842b
7
8 app-dicts/myspell-fr: fix naming syntax of installed files
9
10 Closes: https://bugs.gentoo.org/794991
11 Package-Manager: Portage-3.0.19, Repoman-3.0.3
12 Signed-off-by: Marco Scardovi <marco <AT> scardovi.com>
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 app-dicts/myspell-fr/myspell-fr-5.7-r1.ebuild | 44 +++++++++++++++++++++++++++
16 1 file changed, 44 insertions(+)
17
18 diff --git a/app-dicts/myspell-fr/myspell-fr-5.7-r1.ebuild b/app-dicts/myspell-fr/myspell-fr-5.7-r1.ebuild
19 new file mode 100644
20 index 00000000000..59b43539450
21 --- /dev/null
22 +++ b/app-dicts/myspell-fr/myspell-fr-5.7-r1.ebuild
23 @@ -0,0 +1,44 @@
24 +# Copyright 1999-2021 Gentoo Authors
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=7
28 +
29 +MYSPELL_DICT=(
30 + "fr-classique.aff"
31 + "fr-classique.dic"
32 + "fr-moderne.aff"
33 + "fr-moderne.dic"
34 + "fr-reforme1990.aff"
35 + "fr-reforme1990.dic"
36 + "fr_FR.aff"
37 + "fr_FR.dic"
38 +)
39 +
40 +MYSPELL_HYPH=(
41 + "hyph_fr.dic"
42 + "hyph_fr.iso8859-1.dic"
43 +)
44 +
45 +MYSPELL_THES=(
46 + "thes_fr.dat"
47 + "thes_fr.idx"
48 +)
49 +
50 +inherit myspell-r2
51 +
52 +DESCRIPTION="French dictionaries for myspell/hunspell"
53 +HOMEPAGE="https://extensions.libreoffice.org/extension-center/dictionnaires-francais"
54 +SRC_URI="https://extensions.libreoffice.org/assets/downloads/z/lo-oo-ressources-linguistiques-fr-v5-7.oxt"
55 +
56 +LICENSE="GPL-2 LGPL-2.1 MPL-1.1"
57 +SLOT="0"
58 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x86-linux"
59 +
60 +DOCS=( package-description.txt README_dict_fr.txt README_hyph_fr-2.9.txt README_hyph_fr-3.0.txt README_thes_fr.txt )
61 +
62 +src_prepare() {
63 + default
64 + mv fr-toutesvariantes.aff fr_FR.aff || die
65 + mv fr-toutesvariantes.dic fr_FR.dic || die
66 + rm -r french_flag_16.bmp french_flag.png || die
67 +}