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 AD6A31382C5 for ; Thu, 10 Jun 2021 06:40:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB027E087F; Thu, 10 Jun 2021 06:40:55 +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 98AE7E087F for ; Thu, 10 Jun 2021 06:40:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 57194335C7A for ; Thu, 10 Jun 2021 06:40:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D845279A for ; Thu, 10 Jun 2021 06:40:52 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1623307116.8a5d842b909384d604c3bd7d8a18178af4505c17.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-fr/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-dicts/myspell-fr/myspell-fr-5.7-r1.ebuild X-VCS-Directories: app-dicts/myspell-fr/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 8a5d842b909384d604c3bd7d8a18178af4505c17 X-VCS-Branch: master Date: Thu, 10 Jun 2021 06:40:52 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f81f9b75-8778-40a5-bd39-728f8a46f127 X-Archives-Hash: 1a8a6122a58ceaf11542d7568c1c696b commit: 8a5d842b909384d604c3bd7d8a18178af4505c17 Author: Marco Scardovi scardovi com> AuthorDate: Wed Jun 9 07:59:35 2021 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Thu Jun 10 06:38:36 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a5d842b app-dicts/myspell-fr: fix naming syntax of installed files Closes: https://bugs.gentoo.org/794991 Package-Manager: Portage-3.0.19, Repoman-3.0.3 Signed-off-by: Marco Scardovi scardovi.com> Signed-off-by: Joonas Niilola gentoo.org> app-dicts/myspell-fr/myspell-fr-5.7-r1.ebuild | 44 +++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/app-dicts/myspell-fr/myspell-fr-5.7-r1.ebuild b/app-dicts/myspell-fr/myspell-fr-5.7-r1.ebuild new file mode 100644 index 00000000000..59b43539450 --- /dev/null +++ b/app-dicts/myspell-fr/myspell-fr-5.7-r1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MYSPELL_DICT=( + "fr-classique.aff" + "fr-classique.dic" + "fr-moderne.aff" + "fr-moderne.dic" + "fr-reforme1990.aff" + "fr-reforme1990.dic" + "fr_FR.aff" + "fr_FR.dic" +) + +MYSPELL_HYPH=( + "hyph_fr.dic" + "hyph_fr.iso8859-1.dic" +) + +MYSPELL_THES=( + "thes_fr.dat" + "thes_fr.idx" +) + +inherit myspell-r2 + +DESCRIPTION="French dictionaries for myspell/hunspell" +HOMEPAGE="https://extensions.libreoffice.org/extension-center/dictionnaires-francais" +SRC_URI="https://extensions.libreoffice.org/assets/downloads/z/lo-oo-ressources-linguistiques-fr-v5-7.oxt" + +LICENSE="GPL-2 LGPL-2.1 MPL-1.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x86-linux" + +DOCS=( package-description.txt README_dict_fr.txt README_hyph_fr-2.9.txt README_hyph_fr-3.0.txt README_thes_fr.txt ) + +src_prepare() { + default + mv fr-toutesvariantes.aff fr_FR.aff || die + mv fr-toutesvariantes.dic fr_FR.dic || die + rm -r french_flag_16.bmp french_flag.png || die +}