From: "Ferenc Erki" <erkiferenc@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-text/vale/
Date: Mon, 22 Jul 2024 12:49:46 +0000 (UTC) [thread overview]
Message-ID: <1721651951.6e9710204c36d71368e62fc69bebc2ef751bb295.erkiferenc@gentoo> (raw)
commit: 6e9710204c36d71368e62fc69bebc2ef751bb295
Author: Ferenc Erki <erkiferenc <AT> gmail <DOT> com>
AuthorDate: Mon Jul 22 12:39:11 2024 +0000
Commit: Ferenc Erki <erkiferenc <AT> gmail <DOT> com>
CommitDate: Mon Jul 22 12:39:11 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6e971020
app-text/vale: add 3.7.0
Signed-off-by: Ferenc Erki <erkiferenc <AT> gmail.com>
app-text/vale/Manifest | 2 ++
app-text/vale/vale-3.7.0.ebuild | 45 +++++++++++++++++++++++++++++++++++++++++
2 files changed, 47 insertions(+)
diff --git a/app-text/vale/Manifest b/app-text/vale/Manifest
index a9a6c199b..be98b7181 100644
--- a/app-text/vale/Manifest
+++ b/app-text/vale/Manifest
@@ -10,3 +10,5 @@ DIST vale-3.6.0-gentoo-deps.tar.xz 162279280 BLAKE2B 4d18fbfc6d5d1aac0790c7ca707
DIST vale-3.6.0.tar.gz 10535190 BLAKE2B 4d8baf8c10e8cf7a261caff85e82858d938790487ad8e57cc38af33a0f7ee4f10eb5e1a8de9b9e971be28e58068b04804b9d0578527c646bd3debff4b47f687a SHA512 deaaf76bc829b34ca343fc78890c650bcdfe894d46460e61c8cc7d6aba2bc935ebcc2993b1f91d33c53ec861831d79471d2a11481dd707746da2afb24fa2c16f
DIST vale-3.6.1-gentoo-deps.tar.xz 162274372 BLAKE2B c6db735787e439f2eac06fcf829e41ec45e0d34d0da9a16a08f9e562c9221588fb1cb0b2786663cec3f149c7c27d2965c14b60375f7da85f22a0e72d122fd440 SHA512 2d26fd9d4b09a393933472fa25f3fc6299a42666360177a23efd4f4fef5e5ffba44f62b8cd025c929ea78d53e1efdec972a9c79daac53aff4a1763810df289e3
DIST vale-3.6.1.tar.gz 10534500 BLAKE2B 23dba19ea464b9b1c1175bcf01a76b40a7caf74cff7091f5f9223bca5adbe209b18c49029f42d3793a07ba545381b333a32388c7ac6f6e62c9e8646cda481278 SHA512 3651799d1dd617ad2e3adcab28ca855dff8e8e0b052f38994c677293fca11ec4f9002f7701406df3aa53f364a9734e380043045008929c16f76281682dcd1e24
+DIST vale-3.7.0-gentoo-deps.tar.xz 162284224 BLAKE2B 90ce7ac3938f2e78575938506f4174e4f72ae65e8894497e90f0855c58f39cd49d24f08cc17161552e7fc66351a1461b5f358892789fad9a6eee7c5d2c25cea3 SHA512 e0c02325687ab651476b4d809129c9239f3990a2184cb9827ebb0ea856257b6efb4ee47b552cc0a507dc12664763a7916477cab1468996b5a86353af34dab7cd
+DIST vale-3.7.0.tar.gz 10537281 BLAKE2B 3d66ba28edbbcf5cd0b52d876b2fd05804a033f29e58d643b1c8b44253bcaac6c97e1ceec9ab41c936e225ab81ff9376e38142e8581fea39e60112cf443ef6d5 SHA512 da7bcf9ba6dd470d2047081193ee1f91f585d29dbd0fcaf4bbab7eef24f80946264db38ba9d1250a7aed1396aaa4a0818056244cdecaeb0b01d3e8e57a3bdc57
diff --git a/app-text/vale/vale-3.7.0.ebuild b/app-text/vale/vale-3.7.0.ebuild
new file mode 100644
index 000000000..47410dd3e
--- /dev/null
+++ b/app-text/vale/vale-3.7.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 2021-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-module optfeature
+
+DESCRIPTION="A syntax-aware linter for prose built with speed and extensibility in mind"
+HOMEPAGE="https://vale.sh/docs/"
+
+SRC_URI="
+ https://github.com/errata-ai/vale/archive/v${PV}.tar.gz -> ${P}.tar.gz
+ https://github.com/ferki/${PN}/releases/download/v${PV}-gentoo-deps/${P}-gentoo-deps.tar.xz
+"
+
+LICENSE="Apache-2.0 BSD BSD-2 MIT public-domain"
+SLOT="0"
+KEYWORDS="~amd64"
+
+# tests require:
+# - various ruby gems: see testdata/Gemfile
+# - packaged optional runtime dependencies: asciidoctor, rst2html, xsltproc
+# - unpackaged optional runtime dependency: dita (may be removed in a patch)
+# - network access: sync subcommand tests (may be removed in a patch)
+RESTRICT="test"
+
+src_prepare() {
+ sed -i "s/\$(LAST_TAG)/v${PV}/" Makefile || die 'sed failed'
+ default
+}
+
+src_compile() {
+ emake build os=linux
+}
+
+src_install() {
+ dobin bin/vale
+ default_src_install
+}
+
+pkg_postinst() {
+ optfeature "AsciiDoc support" dev-ruby/asciidoctor
+ optfeature "reStructuredText support" dev-python/docutils
+ optfeature "XML support" dev-libs/libxslt
+}
next reply other threads:[~2024-07-22 12:49 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-22 12:49 Ferenc Erki [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-12-13 12:14 [gentoo-commits] repo/proj/guru:dev commit in: app-text/vale/ Ferenc Erki
2024-12-13 12:14 Ferenc Erki
2024-08-25 14:58 Ferenc Erki
2024-08-25 14:58 Ferenc Erki
2024-07-22 12:49 Ferenc Erki
2024-07-22 12:49 Ferenc Erki
2024-07-22 12:49 Ferenc Erki
2024-07-22 12:49 Ferenc Erki
2024-07-22 12:49 Ferenc Erki
2024-07-09 11:07 Ferenc Erki
2024-06-20 12:09 Ferenc Erki
2024-06-14 22:56 Julien Roy
2024-05-01 19:40 Ferenc Erki
2024-04-30 21:11 Julien Roy
2023-09-07 16:16 Ferenc Erki
2023-06-22 17:32 Ferenc Erki
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=1721651951.6e9710204c36d71368e62fc69bebc2ef751bb295.erkiferenc@gentoo \
--to=erkiferenc@gmail.com \
--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