public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sebastian Pipping" <sping@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/nuspell/
Date: Sat, 13 Nov 2021 15:24:43 +0000 (UTC)	[thread overview]
Message-ID: <1636817043.1829f0b44ffa8cc28b3fbbe94fa67b36b82553cb.sping@gentoo> (raw)

commit:     1829f0b44ffa8cc28b3fbbe94fa67b36b82553cb
Author:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 13 15:24:03 2021 +0000
Commit:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Sat Nov 13 15:24:03 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1829f0b4

app-text/nuspell: 5.0.1

Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
Package-Manager: Portage-3.0.28, Repoman-3.0.3

 app-text/nuspell/Manifest             |  1 +
 app-text/nuspell/nuspell-5.0.1.ebuild | 51 +++++++++++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/app-text/nuspell/Manifest b/app-text/nuspell/Manifest
index a3212369e1b..36441ef368c 100644
--- a/app-text/nuspell/Manifest
+++ b/app-text/nuspell/Manifest
@@ -4,3 +4,4 @@ DIST nuspell-4.0.1.tar.gz 379342 BLAKE2B be52797ddd737c523a6141fc1c2683690cfcd1a
 DIST nuspell-4.1.0.tar.gz 380814 BLAKE2B 500da0797e4f0d1939afd8451b734f309b5c58e66532150614dd3463eda95ab421094e6c0485396b7ef1dd4b7fc03cadf10316d9cfdb1390b2769ddcc963d8b3 SHA512 d0c01dd73fefd8b9c800e6419fe916e55a53b8b19f5848d3766cdcb50383fdcd9e9bb49362b5cea4d9d2d7fda21aed055f28cb47b006e2049b2a904355f7f9ed
 DIST nuspell-4.2.0.tar.gz 382635 BLAKE2B cc141e764ce4e649a7a10f213c392973eb98eb21adddc7d2cd46c01f3cc9a6c85432bfb13ce178fba387a01aa1661e7c9b6a4717fca18fb3bfa220732daf53eb SHA512 ae9157e9753868c002ed69a765fb705d29d993f3940e11efbc2699778a8b1abee2eb7daa0ff51187b899d6935a215a24662e5b52ec1ef5c644e90a0245f7583d
 DIST nuspell-5.0.0.tar.gz 372940 BLAKE2B 67e3b9b73f79d39c7cdb371ae7699fdaf8323db15dacd17907642f3d799eeb3e3303678d4a9ee4c5a88a5f61d7f1778745590fbac880625dc08c78e94752da6b SHA512 92605c5f0d413b86711fea3b993d656552d5e72440303d3e71907a503d060ead032dfeb0dd8dbb790f35599b8cca8854bdd8650f0560793d9c62a11aebccc2e5
+DIST nuspell-5.0.1.tar.gz 372917 BLAKE2B 30743620035fa49b9d2d190673de1b3de4be0978633eeead1775586c5ab4f0912e4f778867b5839105d1b4f4597e8a2ece33ddbb3290b6447755bfe4a742ea5c SHA512 f883d8c8a3a722a62d411d7b0973dd409c6d09d08ea678c577cef68ec8b5c7e4a4e4cb8a1323e632114414fc17137d1add996a72fbd522ab4de8c6f70fc77073

diff --git a/app-text/nuspell/nuspell-5.0.1.ebuild b/app-text/nuspell/nuspell-5.0.1.ebuild
new file mode 100644
index 00000000000..5645809c40f
--- /dev/null
+++ b/app-text/nuspell/nuspell-5.0.1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="Spell checker library and CLI for complex natural languages"
+HOMEPAGE="https://nuspell.github.io/ https://github.com/nuspell/nuspell"
+SRC_URI="https://github.com/nuspell/nuspell/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-3+"
+SLOT="0/5"  # due to libnuspell.so.5
+KEYWORDS="~amd64 ~x86"
+IUSE="doc test"
+
+RDEPEND=">=dev-libs/icu-60"
+DEPEND="${RDEPEND}
+	doc? ( app-text/pandoc )
+	test? ( >=dev-cpp/catch-2.3.0:0 )
+	"
+
+DOCS=( CHANGELOG.md )
+
+RESTRICT="!test? ( test )"
+
+src_prepare() {
+	rm -R external/Catch2/ || die
+	if ! use test ; then
+		rm -R external/hunspell/ || die
+	fi
+	cmake_src_prepare
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DBUILD_TESTING=$(usex test)
+	)
+
+	cmake_src_configure
+}
+
+pkg_postinst() {
+	einfo
+	einfo 'Nuspell needs language packs and/or dictionaries to be of use'
+	einfo 'e.g. package app-dicts/myspell-en or one of its siblings.'
+	einfo
+	einfo 'Besides MySpell dictionaries, for other options please'
+	einfo 'see https://nuspell.github.io/#languages-and-users .'
+	einfo
+}


             reply	other threads:[~2021-11-13 15:24 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-13 15:24 Sebastian Pipping [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-09 13:12 [gentoo-commits] repo/gentoo:master commit in: app-text/nuspell/ Sebastian Pipping
2024-10-09  2:53 Jakov Smolić
2024-10-09  2:53 Jakov Smolić
2024-07-06 23:59 Sebastian Pipping
2023-11-08 15:40 Sebastian Pipping
2023-09-06 13:22 Sebastian Pipping
2023-09-06  6:47 Sam James
2023-09-06  6:47 Sam James
2023-08-27 16:59 Sebastian Pipping
2023-06-08 22:35 Sam James
2023-02-18 13:55 Andreas Sturmlechner
2023-01-26 21:49 Sam James
2023-01-26 21:49 Sam James
2022-12-02 18:44 WANG Xuerui
2022-11-28 21:30 Sebastian Pipping
2022-09-29 14:49 Sebastian Pipping
2022-09-09 18:22 Sebastian Pipping
2022-06-05  2:32 Matt Turner
2022-05-16  8:32 Yixun Lan
2022-05-13 14:15 Jakov Smolić
2022-05-13  7:26 Jakov Smolić
2022-02-15 20:15 Sebastian Pipping
2022-01-28  7:24 Sam James
2021-06-12 14:08 Sebastian Pipping
2020-12-13  1:30 Sebastian Pipping
2020-11-19 11:38 Sebastian Pipping
2020-11-02 17:49 Sebastian Pipping
2020-11-02 12:53 Sebastian Pipping
2020-10-20 16:50 Sebastian Pipping
2020-10-20 16:50 Sebastian Pipping
2020-07-01 12:20 Sebastian Pipping
2020-05-06 14:34 Sebastian Pipping
2020-04-07 19:34 Sebastian Pipping
2020-02-06 18:20 Sebastian Pipping
2020-02-06 17:58 Sebastian Pipping
2020-02-06 17:28 Sebastian Pipping
2020-02-06  0:41 Sebastian Pipping

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1636817043.1829f0b44ffa8cc28b3fbbe94fa67b36b82553cb.sping@gentoo \
    --to=sping@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox