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 22122158086 for ; Tue, 26 Oct 2021 06:08:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7AD55E0845; Tue, 26 Oct 2021 06:08:51 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 65D3CE0845 for ; Tue, 26 Oct 2021 06:08:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7524E343A3B for ; Tue, 26 Oct 2021 06:08:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2B870187 for ; Tue, 26 Oct 2021 06:08:47 +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: <1635227959.8038876ea58191af0ad6be25757603068f15f410.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-ru/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-dicts/myspell-ru/myspell-ru-20200606.ebuild X-VCS-Directories: app-dicts/myspell-ru/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 8038876ea58191af0ad6be25757603068f15f410 X-VCS-Branch: master Date: Tue, 26 Oct 2021 06:08:47 +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: a3be49ca-013e-4a50-8409-70efe6de340f X-Archives-Hash: a9bbac018c2380620647027e3d114ce1 commit: 8038876ea58191af0ad6be25757603068f15f410 Author: Perfect Gentleman gmail com> AuthorDate: Tue Oct 26 05:59:19 2021 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Tue Oct 26 05:59:19 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8038876e app-dicts/myspell-ru: bump to 20200606, fix incorrect filename bug Closes: https://bugs.gentoo.org/724360 Closes: https://bugs.gentoo.org/750305 Signed-off-by: Joonas Niilola gentoo.org> app-dicts/myspell-ru/myspell-ru-20200606.ebuild | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/app-dicts/myspell-ru/myspell-ru-20200606.ebuild b/app-dicts/myspell-ru/myspell-ru-20200606.ebuild index c055c318b0d..3c5c222089b 100644 --- a/app-dicts/myspell-ru/myspell-ru-20200606.ebuild +++ b/app-dicts/myspell-ru/myspell-ru-20200606.ebuild @@ -5,20 +5,27 @@ EAPI=7 MYSPELL_DICT=( ru_RU.{dic,aff} ) MYSPELL_HYPH=( hyph_ru_RU.dic ) -MYSPELL_THES=( ru_th_aot.{dat,idx} ) +MYSPELL_THES=( th_ru_RU_v2.{dat,idx} ) inherit myspell-r2 +EXT="extensions" +DICT="russian-dictionary-pack" +MY_PN="dict_pack_ru-aot" +MY_PV="0.4.5" + DESCRIPTION="Russian spellcheck dictionary based on works of AOT group for myspell/hunspell" HOMEPAGE="https://extensions.libreoffice.org/extensions/russian-dictionary-pack" -SRC_URI="https://extensions.libreoffice.org/assets/downloads/48/dict_pack_ru-aot-0.4.5.oxt" +SRC_URI="https://extensions.libreoffice.org/assets/downloads/48/${MY_PN}-${MY_PV}.oxt" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux" src_prepare() { default mv russian-aot.dic ru_RU.dic || die mv russian-aot.aff ru_RU.aff || die + mv ru_th_aot.dat th_ru_RU_v2.dat || die + mv ru_th_aot.idx th_ru_RU_v2.idx || die }