public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: dev-R/hunspell/
@ 2021-05-31 22:04 Alessandro Barbieri
  0 siblings, 0 replies; 2+ messages in thread
From: Alessandro Barbieri @ 2021-05-31 22:04 UTC (permalink / raw
  To: gentoo-commits

commit:     70cfa42da1e75b51193b7b60330325ea93a68103
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Mon May 31 21:34:34 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Mon May 31 22:04:40 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=70cfa42d

dev-R/hunspell: new

Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-R/hunspell/Manifest              |  1 +
 dev-R/hunspell/hunspell-3.0.1.ebuild | 20 ++++++++++++++++++++
 dev-R/hunspell/metadata.xml          | 14 ++++++++++++++
 3 files changed, 35 insertions(+)

diff --git a/dev-R/hunspell/Manifest b/dev-R/hunspell/Manifest
new file mode 100644
index 000000000..14435287a
--- /dev/null
+++ b/dev-R/hunspell/Manifest
@@ -0,0 +1 @@
+DIST hunspell_3.0.1.tar.gz 3283317 BLAKE2B efc4aab61a0f8c26ddab32294b96ed7a4612ba228bc19dc92d81ce2a6343890e6cc4566cff24d68ebb67a705b5155bd81cadd6d6d84414d23baf3f5bdb4c78d4 SHA512 8e305bd773bd3428aee95c371f8261252d241f9760dd2595d664bfcf375fa52376acc767ea851992b06bf9863d71ad4ae9d81d6a709d7e01f1d83c3e7f44338b

diff --git a/dev-R/hunspell/hunspell-3.0.1.ebuild b/dev-R/hunspell/hunspell-3.0.1.ebuild
new file mode 100644
index 000000000..e28e606ef
--- /dev/null
+++ b/dev-R/hunspell/hunspell-3.0.1.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit R-packages
+
+DESCRIPTION='High-Performance Stemmer, Tokenizer and Spell Checker'
+KEYWORDS="~amd64"
+LICENSE="GPL-2 LGPL-2.1 MPL-1.1"
+
+DEPEND="
+	>=dev-lang/R-3.0.2
+	dev-R/Rcpp
+	dev-R/digest
+"
+RDEPEND="
+	${DEPEND}
+	>=dev-R/Rcpp-0.12.12
+"

diff --git a/dev-R/hunspell/metadata.xml b/dev-R/hunspell/metadata.xml
new file mode 100644
index 000000000..c4c97701f
--- /dev/null
+++ b/dev-R/hunspell/metadata.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<longdescription>
+		High-Performance Stemmer, Tokenizer, and Spell Checker // Low
+		level spell checker and morphological analyzer based on the
+		famous 'hunspell' library https://hunspell.github.io. The
+		package can analyze or check individual words as well as parse
+		text, latex, html or xml documents. For a more user-friendly
+		interface use the 'spelling' package which builds on this
+		package to automate checking of files, documentation and
+		vignettes in all common formats.
+	</longdescription>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-R/hunspell/
@ 2021-09-04 22:51 Alessandro Barbieri
  0 siblings, 0 replies; 2+ messages in thread
From: Alessandro Barbieri @ 2021-09-04 22:51 UTC (permalink / raw
  To: gentoo-commits

commit:     22af122398d091ebd0a3eee73cfc801668dc4aba
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sat Sep  4 22:44:58 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sat Sep  4 22:51:02 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=22af1223

dev-R/hunspell: respect AR

Closes: https://bugs.gentoo.org/794103
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-R/hunspell/hunspell-3.0.1.ebuild |  6 +++++-
 dev-R/hunspell/metadata.xml          | 10 ++++++++++
 2 files changed, 15 insertions(+), 1 deletion(-)

diff --git a/dev-R/hunspell/hunspell-3.0.1.ebuild b/dev-R/hunspell/hunspell-3.0.1.ebuild
index 8f3a101c9..2c06c116e 100644
--- a/dev-R/hunspell/hunspell-3.0.1.ebuild
+++ b/dev-R/hunspell/hunspell-3.0.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit R-packages
+inherit R-packages toolchain-funcs
 
 DESCRIPTION='High-Performance Stemmer, Tokenizer and Spell Checker'
 KEYWORDS="~amd64"
@@ -20,3 +20,7 @@ RDEPEND="
 "
 
 #bundling status: https://github.com/ropensci/hunspell/issues/34
+src_prepare() {
+	tc-export AR
+	R-packages_src_prepare
+}

diff --git a/dev-R/hunspell/metadata.xml b/dev-R/hunspell/metadata.xml
index c511c6ca3..23cc54c3d 100644
--- a/dev-R/hunspell/metadata.xml
+++ b/dev-R/hunspell/metadata.xml
@@ -16,4 +16,14 @@
 		package to automate checking of files, documentation and
 		vignettes in all common formats.
 	</longdescription>
+	<upstream>
+		<bugs-to>https://github.com/ropensci/hunspell/issues</bugs-to>
+		<doc lang="en">https://cran.r-project.org/web/packages/hunspell/hunspell.pdf</doc>
+		<changelog>https://cran.r-project.org/web/packages/hunspell/NEWS</changelog>
+		<maintainer>
+			<name>Jeroen Ooms</name>
+			<email>jeroen@berkeley.edu</email>
+		</maintainer>
+		<remote-id type="github">ropensci/hunspell</remote-id>
+	</upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-09-04 22:51 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-09-04 22:51 [gentoo-commits] repo/proj/guru:dev commit in: dev-R/hunspell/ Alessandro Barbieri
  -- strict thread matches above, loose matches on Subject: below --
2021-05-31 22:04 Alessandro Barbieri

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox