summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Franzmann2021-06-03 16:37:12 +0200
committerFlorian Franzmann2021-06-03 16:37:12 +0200
commite448e851f6358f375467c6be9248b553c92c97ba (patch)
treef02f4fd4e71bb4d6ad89352fc3b9ec7cc69fae40
parent4697674e2ac2a7cebd0ccaf54b428617ccd28a12 (diff)
doc/vale: new spell, a syntax checker for prose
-rw-r--r--ChangeLog1
-rwxr-xr-xdoc/vale/BUILD1
-rwxr-xr-xdoc/vale/DEPENDS4
-rwxr-xr-xdoc/vale/DETAILS19
-rw-r--r--doc/vale/HISTORY3
-rwxr-xr-xdoc/vale/INSTALL1
6 files changed, 29 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index a2fd1e3dd1..06ef18518f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,6 @@
2021-06-03 Florian Franzmann <bwlf@bandrate.org>
* net/isc.gpg: import 750F3C87723E4012
+ * doc/vale: new spell, a syntax checker for prose
2021-06-02 Treeve Jelbert <treeve@sourcemage.org>
* FUNCTIONS: cmake_build - fix libdir
diff --git a/doc/vale/BUILD b/doc/vale/BUILD
new file mode 100755
index 0000000000..add6fd440c
--- /dev/null
+++ b/doc/vale/BUILD
@@ -0,0 +1 @@
+make build os=linux exe=vale
diff --git a/doc/vale/DEPENDS b/doc/vale/DEPENDS
new file mode 100755
index 0000000000..cc1e5ec694
--- /dev/null
+++ b/doc/vale/DEPENDS
@@ -0,0 +1,4 @@
+depends go &&
+depends python-sphinx &&
+depends asciidoctor &&
+depends libxslt
diff --git a/doc/vale/DETAILS b/doc/vale/DETAILS
new file mode 100755
index 0000000000..256cf0245c
--- /dev/null
+++ b/doc/vale/DETAILS
@@ -0,0 +1,19 @@
+ SPELL=vale
+ VERSION=2.10.3
+ SOURCE="$SPELL-$VERSION.tar.gz"
+ SOURCE_URL[0]=https://github.com/errata-ai/${SPELL}/archive/refs/tags/v${VERSION}.tar.gz
+ SOURCE_HASH=sha512:e43076ce4ec39f72a36a12e85f52a2b4f19f688722523c851a1e56f42043fe4146de0c292a921ba064f86e39a567e4ea7905adbdc4c5832b255993d9826b792d
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+ WEB_SITE="https://docs.errata.ai/vale/about"
+ LICENSE[0]=MIT
+ ENTERED=20210603
+ SHORT="a command-line tool that brings code-like linting to prose"
+cat << EOF
+Vale is a command-line tool that brings code-like linting to prose. It's
+open-source, fast, and highly customizable.
+
+Vale differs from most writing-related software in a significant way: it
+doesn't attempt to teach you how to write; it's a tool for writers. In other
+words, Vale focuses on allowing its users to create their own collections
+of rules (known as styles) rather providing its own advice.
+EOF
diff --git a/doc/vale/HISTORY b/doc/vale/HISTORY
new file mode 100644
index 0000000000..4406bfbcbf
--- /dev/null
+++ b/doc/vale/HISTORY
@@ -0,0 +1,3 @@
+2021-06-03 Florian Franzmann <siflfran@hawo.stw.uni-erlangen.de>
+ * BUILD, DEPENDS, DETAILS, INSTALL: spell created
+
diff --git a/doc/vale/INSTALL b/doc/vale/INSTALL
new file mode 100755
index 0000000000..053110dde8
--- /dev/null
+++ b/doc/vale/INSTALL
@@ -0,0 +1 @@
+install -m 755 -o root -g root "$SOURCE_DIRECTORY/bin/vale" "$INSTALL_ROOT/usr/bin/"