Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: languagetool-4.8
@ 2020-01-09 22:29 voidlinux-github
  2020-01-09 22:29 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (19 more replies)
  0 siblings, 20 replies; 21+ messages in thread
From: voidlinux-github @ 2020-01-09 22:29 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 321 bytes --]

There is a new pull request by Eluminae against master on the void-packages repository

https://github.com/Eluminae/void-packages languagetool
https://github.com/void-linux/void-packages/pull/18154

New package: languagetool-4.8


A patch file from https://github.com/void-linux/void-packages/pull/18154.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-languagetool-18154.patch --]
[-- Type: text/x-diff, Size: 3578 bytes --]

From 5623d4dd0b1abcd2d83bbe9f1ebeff05b32dd5d2 Mon Sep 17 00:00:00 2001
From: Reed Wade <reedwade@misterbanal.net>
Date: Thu, 9 Jan 2020 23:30:17 +0100
Subject: [PATCH] New package: languagetool-4.8

---
 srcpkgs/languagetool/files/languagetool | 71 +++++++++++++++++++++++++
 srcpkgs/languagetool/template           | 30 +++++++++++
 2 files changed, 101 insertions(+)
 create mode 100644 srcpkgs/languagetool/files/languagetool
 create mode 100644 srcpkgs/languagetool/template

diff --git a/srcpkgs/languagetool/files/languagetool b/srcpkgs/languagetool/files/languagetool
new file mode 100644
index 00000000000..a2e22c9be8a
--- /dev/null
+++ b/srcpkgs/languagetool/files/languagetool
@@ -0,0 +1,71 @@
+#!/bin/bash
+
+file_present=false
+asked_for_help=false
+start_server=false
+http_server=false
+
+declare -a argv=("$@")
+
+i=0
+for arg in "$@"; do
+  if [[ $arg != -* ]]; then
+    file_present=true
+  fi
+  if [[ $arg == --config* ]]; then
+    start_server=true
+  fi
+  if [[ $arg == --http ]]; then
+    start_server=true
+    http_server=true
+    unset argv[$i]
+  fi
+  if [[ $arg == -h ]]; then
+    asked_for_help=true
+    unset argv[$i]
+  fi
+  if [[ $arg == --help ]]; then
+    asked_for_help=true
+    unset argv[$i]
+  fi
+  ((i++))
+done
+
+CP=/usr/share/languagetool
+for name in /usr/share/java/languagetool/*.jar ; do
+  CP=$CP:$name
+done
+
+CLI_command='org.languagetool.commandline.Main'
+GUI_command='org.languagetool.gui.Main'
+NSRV_command='org.languagetool.server.HTTPServer'
+SSRV_command='org.languagetool.server.HTTPSServer'
+
+if $asked_for_help; then
+  echo "Command-line interface (CLI) help:"
+  "$JAVA_HOME/bin/java" -cp $CP $CLI_command -h | sed "s/java -jar languagetool-commandline.jar/languagetool/"
+  echo
+  echo "Graphical user interface (GUI) help:"
+  "$JAVA_HOME/bin/java" -cp $CP $GUI_command -h | sed "s/java org.languagetool.gui.Main/languagetool/"
+  echo
+  echo "HTTP server help:"
+  "$JAVA_HOME/bin/java" -cp $CP $NSRV_command -h | sed "s/HTTPServer/languagetool --http/"
+  echo
+  echo "HTTPS server help:"
+  "$JAVA_HOME/bin/java" -cp $CP $SSRV_command -h | sed "s/HTTPSServer/languagetool/"
+else
+  if $start_server; then
+    if $http_server; then
+      "$JAVA_HOME/bin/java" -cp $CP $NSRV_command "${argv[@]}"
+    else
+      "$JAVA_HOME/bin/java" -cp $CP $SSRV_command "${argv[@]}"
+    fi
+  else
+    if $file_present; then
+      "$JAVA_HOME/bin/java" -cp $CP $CLI_command "${argv[@]}"
+    else
+      "$JAVA_HOME/bin/java" -cp $CP $GUI_command "${argv[@]}"
+    fi
+  fi
+fi
+
diff --git a/srcpkgs/languagetool/template b/srcpkgs/languagetool/template
new file mode 100644
index 00000000000..e07393c7e03
--- /dev/null
+++ b/srcpkgs/languagetool/template
@@ -0,0 +1,30 @@
+# Template file for 'languagetool'
+pkgname=languagetool
+version=4.8
+revision=4
+archs=noarch
+wrksrc="LanguageTool-${version}"
+makedepends="unzip rsync"
+depends="virtual?java-environment"
+short_desc="Checks your writing in more than 20 languages"
+maintainer="Stacy Harper <contact@stacyhaper.net>"
+license="LGPL"
+homepage="https://www.languagetool.org/"
+distfiles="https://www.languagetool.org/download/LanguageTool-${version}.zip"
+checksum=b4775e88fd90d6389f86023600c4c0e16a9cc00cfe8f093bf1f0c2bbf2a1904d
+
+do_install() {
+	cd "$wrksrc"
+	vmkdir /usr/bin
+	vmkdir /usr/share/java/$pkgname
+	vcopy *.jar /usr/share/java/$pkgname;
+	vcopy libs/*.jar /usr/share/java/$pkgname;
+	rm -rf *.jar libs
+	vcopy "$wrksrc" /usr/share/$pkgname/
+	vbin "$FILESDIR"/languagetool
+
+}
+
+post_install() {
+	vlicense COPYING.txt
+}

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

* Re: [PR PATCH] [Updated] New package: languagetool-4.8
  2020-01-09 22:29 [PR PATCH] New package: languagetool-4.8 voidlinux-github
@ 2020-01-09 22:29 ` voidlinux-github
  2020-01-09 22:38 ` voidlinux-github
                   ` (18 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: voidlinux-github @ 2020-01-09 22:29 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 326 bytes --]

There is an updated pull request by Eluminae against master on the void-packages repository

https://github.com/Eluminae/void-packages languagetool
https://github.com/void-linux/void-packages/pull/18154

New package: languagetool-4.8


A patch file from https://github.com/void-linux/void-packages/pull/18154.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-languagetool-18154.patch --]
[-- Type: text/x-diff, Size: 3575 bytes --]

From 24e1946a5a8d9608400d1b15a7c123225f6492b8 Mon Sep 17 00:00:00 2001
From: Reed Wade <reedwade@misterbanal.net>
Date: Thu, 9 Jan 2020 23:30:17 +0100
Subject: [PATCH] New package: languagetool-4.8

---
 srcpkgs/languagetool/files/languagetool | 71 +++++++++++++++++++++++++
 srcpkgs/languagetool/template           | 29 ++++++++++
 2 files changed, 100 insertions(+)
 create mode 100644 srcpkgs/languagetool/files/languagetool
 create mode 100644 srcpkgs/languagetool/template

diff --git a/srcpkgs/languagetool/files/languagetool b/srcpkgs/languagetool/files/languagetool
new file mode 100644
index 00000000000..a2e22c9be8a
--- /dev/null
+++ b/srcpkgs/languagetool/files/languagetool
@@ -0,0 +1,71 @@
+#!/bin/bash
+
+file_present=false
+asked_for_help=false
+start_server=false
+http_server=false
+
+declare -a argv=("$@")
+
+i=0
+for arg in "$@"; do
+  if [[ $arg != -* ]]; then
+    file_present=true
+  fi
+  if [[ $arg == --config* ]]; then
+    start_server=true
+  fi
+  if [[ $arg == --http ]]; then
+    start_server=true
+    http_server=true
+    unset argv[$i]
+  fi
+  if [[ $arg == -h ]]; then
+    asked_for_help=true
+    unset argv[$i]
+  fi
+  if [[ $arg == --help ]]; then
+    asked_for_help=true
+    unset argv[$i]
+  fi
+  ((i++))
+done
+
+CP=/usr/share/languagetool
+for name in /usr/share/java/languagetool/*.jar ; do
+  CP=$CP:$name
+done
+
+CLI_command='org.languagetool.commandline.Main'
+GUI_command='org.languagetool.gui.Main'
+NSRV_command='org.languagetool.server.HTTPServer'
+SSRV_command='org.languagetool.server.HTTPSServer'
+
+if $asked_for_help; then
+  echo "Command-line interface (CLI) help:"
+  "$JAVA_HOME/bin/java" -cp $CP $CLI_command -h | sed "s/java -jar languagetool-commandline.jar/languagetool/"
+  echo
+  echo "Graphical user interface (GUI) help:"
+  "$JAVA_HOME/bin/java" -cp $CP $GUI_command -h | sed "s/java org.languagetool.gui.Main/languagetool/"
+  echo
+  echo "HTTP server help:"
+  "$JAVA_HOME/bin/java" -cp $CP $NSRV_command -h | sed "s/HTTPServer/languagetool --http/"
+  echo
+  echo "HTTPS server help:"
+  "$JAVA_HOME/bin/java" -cp $CP $SSRV_command -h | sed "s/HTTPSServer/languagetool/"
+else
+  if $start_server; then
+    if $http_server; then
+      "$JAVA_HOME/bin/java" -cp $CP $NSRV_command "${argv[@]}"
+    else
+      "$JAVA_HOME/bin/java" -cp $CP $SSRV_command "${argv[@]}"
+    fi
+  else
+    if $file_present; then
+      "$JAVA_HOME/bin/java" -cp $CP $CLI_command "${argv[@]}"
+    else
+      "$JAVA_HOME/bin/java" -cp $CP $GUI_command "${argv[@]}"
+    fi
+  fi
+fi
+
diff --git a/srcpkgs/languagetool/template b/srcpkgs/languagetool/template
new file mode 100644
index 00000000000..6a29b4b3658
--- /dev/null
+++ b/srcpkgs/languagetool/template
@@ -0,0 +1,29 @@
+# Template file for 'languagetool'
+pkgname=languagetool
+version=4.8
+revision=4
+archs=noarch
+wrksrc="LanguageTool-${version}"
+makedepends="unzip rsync"
+depends="virtual?java-environment"
+short_desc="Checks your writing in more than 20 languages"
+maintainer="Stacy Harper <contact@stacyhaper.net>"
+license="LGPL"
+homepage="https://www.languagetool.org/"
+distfiles="https://www.languagetool.org/download/LanguageTool-${version}.zip"
+checksum=b4775e88fd90d6389f86023600c4c0e16a9cc00cfe8f093bf1f0c2bbf2a1904d
+
+do_install() {
+	cd "$wrksrc"
+	vmkdir /usr/bin
+	vmkdir /usr/share/java/$pkgname
+	vcopy *.jar /usr/share/java/$pkgname;
+	vcopy libs/*.jar /usr/share/java/$pkgname;
+	rm -rf *.jar libs
+	vcopy "$wrksrc" /usr/share/$pkgname/
+	vbin "$FILESDIR"/languagetool
+}
+
+post_install() {
+	vlicense COPYING.txt
+}

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

* Re: [PR PATCH] [Updated] New package: languagetool-4.8
  2020-01-09 22:29 [PR PATCH] New package: languagetool-4.8 voidlinux-github
  2020-01-09 22:29 ` [PR PATCH] [Updated] " voidlinux-github
@ 2020-01-09 22:38 ` voidlinux-github
  2020-01-10  9:02 ` voidlinux-github
                   ` (17 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: voidlinux-github @ 2020-01-09 22:38 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 326 bytes --]

There is an updated pull request by Eluminae against master on the void-packages repository

https://github.com/Eluminae/void-packages languagetool
https://github.com/void-linux/void-packages/pull/18154

New package: languagetool-4.8


A patch file from https://github.com/void-linux/void-packages/pull/18154.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-languagetool-18154.patch --]
[-- Type: text/x-diff, Size: 3575 bytes --]

From 5e34e3313d7edf320fac9bca87f1e79db128faa5 Mon Sep 17 00:00:00 2001
From: Reed Wade <reedwade@misterbanal.net>
Date: Thu, 9 Jan 2020 23:30:17 +0100
Subject: [PATCH] New package: languagetool-4.8

---
 srcpkgs/languagetool/files/languagetool | 71 +++++++++++++++++++++++++
 srcpkgs/languagetool/template           | 29 ++++++++++
 2 files changed, 100 insertions(+)
 create mode 100644 srcpkgs/languagetool/files/languagetool
 create mode 100644 srcpkgs/languagetool/template

diff --git a/srcpkgs/languagetool/files/languagetool b/srcpkgs/languagetool/files/languagetool
new file mode 100644
index 00000000000..a2e22c9be8a
--- /dev/null
+++ b/srcpkgs/languagetool/files/languagetool
@@ -0,0 +1,71 @@
+#!/bin/bash
+
+file_present=false
+asked_for_help=false
+start_server=false
+http_server=false
+
+declare -a argv=("$@")
+
+i=0
+for arg in "$@"; do
+  if [[ $arg != -* ]]; then
+    file_present=true
+  fi
+  if [[ $arg == --config* ]]; then
+    start_server=true
+  fi
+  if [[ $arg == --http ]]; then
+    start_server=true
+    http_server=true
+    unset argv[$i]
+  fi
+  if [[ $arg == -h ]]; then
+    asked_for_help=true
+    unset argv[$i]
+  fi
+  if [[ $arg == --help ]]; then
+    asked_for_help=true
+    unset argv[$i]
+  fi
+  ((i++))
+done
+
+CP=/usr/share/languagetool
+for name in /usr/share/java/languagetool/*.jar ; do
+  CP=$CP:$name
+done
+
+CLI_command='org.languagetool.commandline.Main'
+GUI_command='org.languagetool.gui.Main'
+NSRV_command='org.languagetool.server.HTTPServer'
+SSRV_command='org.languagetool.server.HTTPSServer'
+
+if $asked_for_help; then
+  echo "Command-line interface (CLI) help:"
+  "$JAVA_HOME/bin/java" -cp $CP $CLI_command -h | sed "s/java -jar languagetool-commandline.jar/languagetool/"
+  echo
+  echo "Graphical user interface (GUI) help:"
+  "$JAVA_HOME/bin/java" -cp $CP $GUI_command -h | sed "s/java org.languagetool.gui.Main/languagetool/"
+  echo
+  echo "HTTP server help:"
+  "$JAVA_HOME/bin/java" -cp $CP $NSRV_command -h | sed "s/HTTPServer/languagetool --http/"
+  echo
+  echo "HTTPS server help:"
+  "$JAVA_HOME/bin/java" -cp $CP $SSRV_command -h | sed "s/HTTPSServer/languagetool/"
+else
+  if $start_server; then
+    if $http_server; then
+      "$JAVA_HOME/bin/java" -cp $CP $NSRV_command "${argv[@]}"
+    else
+      "$JAVA_HOME/bin/java" -cp $CP $SSRV_command "${argv[@]}"
+    fi
+  else
+    if $file_present; then
+      "$JAVA_HOME/bin/java" -cp $CP $CLI_command "${argv[@]}"
+    else
+      "$JAVA_HOME/bin/java" -cp $CP $GUI_command "${argv[@]}"
+    fi
+  fi
+fi
+
diff --git a/srcpkgs/languagetool/template b/srcpkgs/languagetool/template
new file mode 100644
index 00000000000..a6816ee9a9d
--- /dev/null
+++ b/srcpkgs/languagetool/template
@@ -0,0 +1,29 @@
+# Template file for 'languagetool'
+pkgname=languagetool
+version=4.8
+revision=1
+archs=noarch
+wrksrc="LanguageTool-${version}"
+makedepends="unzip rsync"
+depends="virtual?java-environment"
+short_desc="Checks your writing in more than 20 languages"
+maintainer="Stacy Harper <contact@stacyhaper.net>"
+license="LGPL"
+homepage="https://www.languagetool.org/"
+distfiles="https://www.languagetool.org/download/LanguageTool-${version}.zip"
+checksum=b4775e88fd90d6389f86023600c4c0e16a9cc00cfe8f093bf1f0c2bbf2a1904d
+
+do_install() {
+	cd "$wrksrc"
+	vmkdir /usr/bin
+	vmkdir /usr/share/java/$pkgname
+	vcopy *.jar /usr/share/java/$pkgname;
+	vcopy libs/*.jar /usr/share/java/$pkgname;
+	rm -rf *.jar libs
+	vcopy "$wrksrc" /usr/share/$pkgname/
+	vbin "$FILESDIR"/languagetool
+}
+
+post_install() {
+	vlicense COPYING.txt
+}

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

* Re: [PR PATCH] [Updated] New package: languagetool-4.8
  2020-01-09 22:29 [PR PATCH] New package: languagetool-4.8 voidlinux-github
  2020-01-09 22:29 ` [PR PATCH] [Updated] " voidlinux-github
  2020-01-09 22:38 ` voidlinux-github
@ 2020-01-10  9:02 ` voidlinux-github
  2020-01-10  9:08 ` voidlinux-github
                   ` (16 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: voidlinux-github @ 2020-01-10  9:02 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 326 bytes --]

There is an updated pull request by Eluminae against master on the void-packages repository

https://github.com/Eluminae/void-packages languagetool
https://github.com/void-linux/void-packages/pull/18154

New package: languagetool-4.8


A patch file from https://github.com/void-linux/void-packages/pull/18154.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-languagetool-18154.patch --]
[-- Type: text/x-diff, Size: 3625 bytes --]

From 2d2d4f763ead0796367bfeb13d060e3547a84710 Mon Sep 17 00:00:00 2001
From: Reed Wade <reedwade@misterbanal.net>
Date: Thu, 9 Jan 2020 23:30:17 +0100
Subject: [PATCH] New package: LanguageTool-4.8

---
 srcpkgs/LanguageTool/files/languagetool | 71 +++++++++++++++++++++++++
 srcpkgs/LanguageTool/template           | 26 +++++++++
 2 files changed, 97 insertions(+)
 create mode 100644 srcpkgs/LanguageTool/files/languagetool
 create mode 100644 srcpkgs/LanguageTool/template

diff --git a/srcpkgs/LanguageTool/files/languagetool b/srcpkgs/LanguageTool/files/languagetool
new file mode 100644
index 00000000000..a2e22c9be8a
--- /dev/null
+++ b/srcpkgs/LanguageTool/files/languagetool
@@ -0,0 +1,71 @@
+#!/bin/bash
+
+file_present=false
+asked_for_help=false
+start_server=false
+http_server=false
+
+declare -a argv=("$@")
+
+i=0
+for arg in "$@"; do
+  if [[ $arg != -* ]]; then
+    file_present=true
+  fi
+  if [[ $arg == --config* ]]; then
+    start_server=true
+  fi
+  if [[ $arg == --http ]]; then
+    start_server=true
+    http_server=true
+    unset argv[$i]
+  fi
+  if [[ $arg == -h ]]; then
+    asked_for_help=true
+    unset argv[$i]
+  fi
+  if [[ $arg == --help ]]; then
+    asked_for_help=true
+    unset argv[$i]
+  fi
+  ((i++))
+done
+
+CP=/usr/share/languagetool
+for name in /usr/share/java/languagetool/*.jar ; do
+  CP=$CP:$name
+done
+
+CLI_command='org.languagetool.commandline.Main'
+GUI_command='org.languagetool.gui.Main'
+NSRV_command='org.languagetool.server.HTTPServer'
+SSRV_command='org.languagetool.server.HTTPSServer'
+
+if $asked_for_help; then
+  echo "Command-line interface (CLI) help:"
+  "$JAVA_HOME/bin/java" -cp $CP $CLI_command -h | sed "s/java -jar languagetool-commandline.jar/languagetool/"
+  echo
+  echo "Graphical user interface (GUI) help:"
+  "$JAVA_HOME/bin/java" -cp $CP $GUI_command -h | sed "s/java org.languagetool.gui.Main/languagetool/"
+  echo
+  echo "HTTP server help:"
+  "$JAVA_HOME/bin/java" -cp $CP $NSRV_command -h | sed "s/HTTPServer/languagetool --http/"
+  echo
+  echo "HTTPS server help:"
+  "$JAVA_HOME/bin/java" -cp $CP $SSRV_command -h | sed "s/HTTPSServer/languagetool/"
+else
+  if $start_server; then
+    if $http_server; then
+      "$JAVA_HOME/bin/java" -cp $CP $NSRV_command "${argv[@]}"
+    else
+      "$JAVA_HOME/bin/java" -cp $CP $SSRV_command "${argv[@]}"
+    fi
+  else
+    if $file_present; then
+      "$JAVA_HOME/bin/java" -cp $CP $CLI_command "${argv[@]}"
+    else
+      "$JAVA_HOME/bin/java" -cp $CP $GUI_command "${argv[@]}"
+    fi
+  fi
+fi
+
diff --git a/srcpkgs/LanguageTool/template b/srcpkgs/LanguageTool/template
new file mode 100644
index 00000000000..c9611762302
--- /dev/null
+++ b/srcpkgs/LanguageTool/template
@@ -0,0 +1,26 @@
+# Template file for 'LanguageTool'
+pkgname=LanguageTool
+version=4.8
+revision=1
+archs=noarch
+wrksrc="LanguageTool-${version}"
+makedepends="unzip curl"
+depends="virtual?java-environment"
+short_desc="Checks your writing in more than 20 languages"
+maintainer="Stacy Harper <contact@stacyhaper.net>"
+license="LGPL"
+homepage="https://www.languagetool.org/"
+distfiles="https://www.languagetool.org/download/LanguageTool-${version}.zip"
+checksum=b4775e88fd90d6389f86023600c4c0e16a9cc00cfe8f093bf1f0c2bbf2a1904d
+
+do_install() {
+	vmkdir /usr/bin
+	vmkdir /usr/share/java/$pkgname
+	vcopy *.jar /usr/share/java/$pkgname;
+	vcopy libs/*.jar /usr/share/java/$pkgname;
+	rm -rf *.jar libs
+	vcopy "$wrksrc" /usr/share/$pkgname/
+
+	curl -o languagetool https://git.archlinux.org/svntogit/community.git/plain/trunk/languagetool.sh?h=packages/languagetool
+	vbin languagetool
+}

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

* Re: [PR PATCH] [Updated] New package: languagetool-4.8
  2020-01-09 22:29 [PR PATCH] New package: languagetool-4.8 voidlinux-github
                   ` (2 preceding siblings ...)
  2020-01-10  9:02 ` voidlinux-github
@ 2020-01-10  9:08 ` voidlinux-github
  2020-01-10  9:20 ` voidlinux-github
                   ` (15 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: voidlinux-github @ 2020-01-10  9:08 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 326 bytes --]

There is an updated pull request by Eluminae against master on the void-packages repository

https://github.com/Eluminae/void-packages languagetool
https://github.com/void-linux/void-packages/pull/18154

New package: languagetool-4.8


A patch file from https://github.com/void-linux/void-packages/pull/18154.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-languagetool-18154.patch --]
[-- Type: text/x-diff, Size: 1425 bytes --]

From c50dae565119f6df5dfe89e2c0b8946243f36826 Mon Sep 17 00:00:00 2001
From: Reed Wade <reedwade@misterbanal.net>
Date: Thu, 9 Jan 2020 23:30:17 +0100
Subject: [PATCH] New package: LanguageTool-4.8

---
 srcpkgs/LanguageTool/template | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 srcpkgs/LanguageTool/template

diff --git a/srcpkgs/LanguageTool/template b/srcpkgs/LanguageTool/template
new file mode 100644
index 00000000000..c9611762302
--- /dev/null
+++ b/srcpkgs/LanguageTool/template
@@ -0,0 +1,26 @@
+# Template file for 'LanguageTool'
+pkgname=LanguageTool
+version=4.8
+revision=1
+archs=noarch
+wrksrc="LanguageTool-${version}"
+makedepends="unzip curl"
+depends="virtual?java-environment"
+short_desc="Checks your writing in more than 20 languages"
+maintainer="Stacy Harper <contact@stacyhaper.net>"
+license="LGPL"
+homepage="https://www.languagetool.org/"
+distfiles="https://www.languagetool.org/download/LanguageTool-${version}.zip"
+checksum=b4775e88fd90d6389f86023600c4c0e16a9cc00cfe8f093bf1f0c2bbf2a1904d
+
+do_install() {
+	vmkdir /usr/bin
+	vmkdir /usr/share/java/$pkgname
+	vcopy *.jar /usr/share/java/$pkgname;
+	vcopy libs/*.jar /usr/share/java/$pkgname;
+	rm -rf *.jar libs
+	vcopy "$wrksrc" /usr/share/$pkgname/
+
+	curl -o languagetool https://git.archlinux.org/svntogit/community.git/plain/trunk/languagetool.sh?h=packages/languagetool
+	vbin languagetool
+}

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

* Re: [PR PATCH] [Updated] New package: languagetool-4.8
  2020-01-09 22:29 [PR PATCH] New package: languagetool-4.8 voidlinux-github
                   ` (3 preceding siblings ...)
  2020-01-10  9:08 ` voidlinux-github
@ 2020-01-10  9:20 ` voidlinux-github
  2020-01-10  9:21 ` voidlinux-github
                   ` (14 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: voidlinux-github @ 2020-01-10  9:20 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 326 bytes --]

There is an updated pull request by Eluminae against master on the void-packages repository

https://github.com/Eluminae/void-packages languagetool
https://github.com/void-linux/void-packages/pull/18154

New package: languagetool-4.8


A patch file from https://github.com/void-linux/void-packages/pull/18154.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-languagetool-18154.patch --]
[-- Type: text/x-diff, Size: 1419 bytes --]

From a11ef95e5b0f0fb2b7bfd9a223bba32f599eb2d7 Mon Sep 17 00:00:00 2001
From: Reed Wade <reedwade@misterbanal.net>
Date: Thu, 9 Jan 2020 23:30:17 +0100
Subject: [PATCH] New package: LanguageTool-4.8

---
 srcpkgs/LanguageTool/template | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 srcpkgs/LanguageTool/template

diff --git a/srcpkgs/LanguageTool/template b/srcpkgs/LanguageTool/template
new file mode 100644
index 00000000000..caec7736f3a
--- /dev/null
+++ b/srcpkgs/LanguageTool/template
@@ -0,0 +1,26 @@
+# Template file for 'LanguageTool'
+pkgname=LanguageTool
+version=4.8
+revision=1
+archs=noarch
+wrksrc="LanguageTool-${version}"
+makedepends="curl"
+depends="virtual?java-environment"
+short_desc="Checks your writing in more than 20 languages"
+maintainer="Stacy Harper <contact@stacyhaper.net>"
+license="SPDX"
+homepage="https://www.languagetool.org/"
+distfiles="https://www.languagetool.org/download/LanguageTool-${version}.zip"
+checksum=b4775e88fd90d6389f86023600c4c0e16a9cc00cfe8f093bf1f0c2bbf2a1904d
+
+do_install() {
+	vmkdir /usr/bin
+	vmkdir /usr/share/java/$pkgname
+	vcopy *.jar /usr/share/java/$pkgname;
+	vcopy libs/*.jar /usr/share/java/$pkgname;
+	rm -rf *.jar libs
+	vcopy "$wrksrc" /usr/share/$pkgname/
+
+	curl -o languagetool https://git.archlinux.org/svntogit/community.git/plain/trunk/languagetool.sh?h=packages/languagetool
+	vbin languagetool
+}

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

* Re: [PR PATCH] [Updated] New package: languagetool-4.8
  2020-01-09 22:29 [PR PATCH] New package: languagetool-4.8 voidlinux-github
                   ` (4 preceding siblings ...)
  2020-01-10  9:20 ` voidlinux-github
@ 2020-01-10  9:21 ` voidlinux-github
  2020-01-10 10:40 ` voidlinux-github
                   ` (13 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: voidlinux-github @ 2020-01-10  9:21 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 326 bytes --]

There is an updated pull request by Eluminae against master on the void-packages repository

https://github.com/Eluminae/void-packages languagetool
https://github.com/void-linux/void-packages/pull/18154

New package: languagetool-4.8


A patch file from https://github.com/void-linux/void-packages/pull/18154.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-languagetool-18154.patch --]
[-- Type: text/x-diff, Size: 1445 bytes --]

From 21b9da01bf6aaf6207d7b1ae78ab4abda36d13a7 Mon Sep 17 00:00:00 2001
From: Reed Wade <reedwade@misterbanal.net>
Date: Thu, 9 Jan 2020 23:30:17 +0100
Subject: [PATCH] New package: LanguageTool-4.8

---
 srcpkgs/LanguageTool/template | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)
 create mode 100644 srcpkgs/LanguageTool/template

diff --git a/srcpkgs/LanguageTool/template b/srcpkgs/LanguageTool/template
new file mode 100644
index 00000000000..43727e9a78c
--- /dev/null
+++ b/srcpkgs/LanguageTool/template
@@ -0,0 +1,27 @@
+# Template file for 'LanguageTool'
+pkgname=LanguageTool
+version=4.8
+revision=1
+archs=noarch
+wrksrc="LanguageTool-${version}"
+hostmakedepends="unzip"
+makedepends="curl"
+depends="virtual?java-environment"
+short_desc="Checks your writing in more than 20 languages"
+maintainer="Stacy Harper <contact@stacyhaper.net>"
+license="SPDX"
+homepage="https://www.languagetool.org/"
+distfiles="https://www.languagetool.org/download/LanguageTool-${version}.zip"
+checksum=b4775e88fd90d6389f86023600c4c0e16a9cc00cfe8f093bf1f0c2bbf2a1904d
+
+do_install() {
+	vmkdir /usr/bin
+	vmkdir /usr/share/java/$pkgname
+	vcopy *.jar /usr/share/java/$pkgname;
+	vcopy libs/*.jar /usr/share/java/$pkgname;
+	rm -rf *.jar libs
+	vcopy "$wrksrc" /usr/share/$pkgname/
+
+	curl -o languagetool https://git.archlinux.org/svntogit/community.git/plain/trunk/languagetool.sh?h=packages/languagetool
+	vbin languagetool
+}

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

* Re: [PR PATCH] [Updated] New package: languagetool-4.8
  2020-01-09 22:29 [PR PATCH] New package: languagetool-4.8 voidlinux-github
                   ` (5 preceding siblings ...)
  2020-01-10  9:21 ` voidlinux-github
@ 2020-01-10 10:40 ` voidlinux-github
  2020-01-10 12:20 ` voidlinux-github
                   ` (12 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: voidlinux-github @ 2020-01-10 10:40 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 326 bytes --]

There is an updated pull request by Eluminae against master on the void-packages repository

https://github.com/Eluminae/void-packages languagetool
https://github.com/void-linux/void-packages/pull/18154

New package: languagetool-4.8


A patch file from https://github.com/void-linux/void-packages/pull/18154.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-languagetool-18154.patch --]
[-- Type: text/x-diff, Size: 1429 bytes --]

From 5fc50a18354056499fccd9c5fd6000d8e92b3ff7 Mon Sep 17 00:00:00 2001
From: Reed Wade <reedwade@misterbanal.net>
Date: Thu, 9 Jan 2020 23:30:17 +0100
Subject: [PATCH] New package: LanguageTool-4.8

---
 srcpkgs/LanguageTool/template | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 srcpkgs/LanguageTool/template

diff --git a/srcpkgs/LanguageTool/template b/srcpkgs/LanguageTool/template
new file mode 100644
index 00000000000..70b62119801
--- /dev/null
+++ b/srcpkgs/LanguageTool/template
@@ -0,0 +1,26 @@
+# Template file for 'LanguageTool'
+pkgname=LanguageTool
+version=4.8
+revision=1
+archs=noarch
+wrksrc="LanguageTool-${version}"
+hostmakedepends="unzip curl"
+depends="virtual?java-environment"
+short_desc="Checks your writing in more than 20 languages"
+maintainer="Stacy Harper <contact@stacyhaper.net>"
+license="SPDX"
+homepage="https://www.languagetool.org/"
+distfiles="https://www.languagetool.org/download/LanguageTool-${version}.zip"
+checksum=b4775e88fd90d6389f86023600c4c0e16a9cc00cfe8f093bf1f0c2bbf2a1904d
+
+do_install() {
+	vmkdir /usr/bin
+	vmkdir /usr/share/java/$pkgname
+	vcopy *.jar /usr/share/java/$pkgname;
+	vcopy libs/*.jar /usr/share/java/$pkgname;
+	rm -rf *.jar libs
+	vcopy "$wrksrc" /usr/share/$pkgname/
+
+	curl -o languagetool https://git.archlinux.org/svntogit/community.git/plain/trunk/languagetool.sh?h=packages/languagetool
+	vbin languagetool
+}

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

* Re: [PR PATCH] [Updated] New package: languagetool-4.8
  2020-01-09 22:29 [PR PATCH] New package: languagetool-4.8 voidlinux-github
                   ` (6 preceding siblings ...)
  2020-01-10 10:40 ` voidlinux-github
@ 2020-01-10 12:20 ` voidlinux-github
  2020-01-10 12:21 ` voidlinux-github
                   ` (11 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: voidlinux-github @ 2020-01-10 12:20 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 326 bytes --]

There is an updated pull request by Eluminae against master on the void-packages repository

https://github.com/Eluminae/void-packages languagetool
https://github.com/void-linux/void-packages/pull/18154

New package: languagetool-4.8


A patch file from https://github.com/void-linux/void-packages/pull/18154.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-languagetool-18154.patch --]
[-- Type: text/x-diff, Size: 1438 bytes --]

From 99d9621b54c2b0239651300a121c1264bbfb286c Mon Sep 17 00:00:00 2001
From: Reed Wade <reedwade@misterbanal.net>
Date: Thu, 9 Jan 2020 23:30:17 +0100
Subject: [PATCH] New package: LanguageTool-4.8

---
 srcpkgs/LanguageTool/template | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 srcpkgs/LanguageTool/template

diff --git a/srcpkgs/LanguageTool/template b/srcpkgs/LanguageTool/template
new file mode 100644
index 00000000000..ea9b7c71552
--- /dev/null
+++ b/srcpkgs/LanguageTool/template
@@ -0,0 +1,26 @@
+# Template file for 'LanguageTool'
+pkgname=LanguageTool
+version=4.8
+revision=1
+archs=noarch
+wrksrc="LanguageTool-${version}"
+hostmakedepends="unzip curl"
+depends="virtual?java-environment"
+short_desc="Checks your writing in more than 20 languages"
+maintainer="Stacy Harper <contact@stacyhaper.net>"
+license="LGPL-3.0-only"
+homepage="https://www.languagetool.org/"
+distfiles="https://www.languagetool.org/download/LanguageTool-${version}.zip"
+checksum=b4775e88fd90d6389f86023600c4c0e16a9cc00cfe8f093bf1f0c2bbf2a1904d
+
+do_install() {
+	vmkdir /usr/bin
+	vmkdir /usr/share/java/$pkgname
+	vcopy *.jar /usr/share/java/$pkgname;
+	vcopy libs/*.jar /usr/share/java/$pkgname;
+	rm -rf *.jar libs
+	vcopy "$wrksrc" /usr/share/$pkgname/
+
+	curl -o languagetool https://git.archlinux.org/svntogit/community.git/plain/trunk/languagetool.sh?h=packages/languagetool
+	vbin languagetool
+}

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

* Re: [PR PATCH] [Updated] New package: languagetool-4.8
  2020-01-09 22:29 [PR PATCH] New package: languagetool-4.8 voidlinux-github
                   ` (7 preceding siblings ...)
  2020-01-10 12:20 ` voidlinux-github
@ 2020-01-10 12:21 ` voidlinux-github
  2020-01-11 11:04 ` voidlinux-github
                   ` (10 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: voidlinux-github @ 2020-01-10 12:21 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 326 bytes --]

There is an updated pull request by Eluminae against master on the void-packages repository

https://github.com/Eluminae/void-packages languagetool
https://github.com/void-linux/void-packages/pull/18154

New package: languagetool-4.8


A patch file from https://github.com/void-linux/void-packages/pull/18154.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-languagetool-18154.patch --]
[-- Type: text/x-diff, Size: 1442 bytes --]

From ab46b30b701fb3461fe038e7bb80683ca1f07c29 Mon Sep 17 00:00:00 2001
From: Reed Wade <reedwade@misterbanal.net>
Date: Thu, 9 Jan 2020 23:30:17 +0100
Subject: [PATCH] New package: LanguageTool-4.8

---
 srcpkgs/LanguageTool/template | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 srcpkgs/LanguageTool/template

diff --git a/srcpkgs/LanguageTool/template b/srcpkgs/LanguageTool/template
new file mode 100644
index 00000000000..0e15a8d4a71
--- /dev/null
+++ b/srcpkgs/LanguageTool/template
@@ -0,0 +1,26 @@
+# Template file for 'LanguageTool'
+pkgname=LanguageTool
+version=4.8
+revision=1
+archs=noarch
+wrksrc="LanguageTool-${version}"
+hostmakedepends="unzip curl"
+depends="virtual?java-environment"
+short_desc="Checks your writing in more than 20 languages"
+maintainer="Stacy Harper <contact@stacyhaper.net>"
+license="LGPL-2.1-or-later"
+homepage="https://www.languagetool.org/"
+distfiles="https://www.languagetool.org/download/LanguageTool-${version}.zip"
+checksum=b4775e88fd90d6389f86023600c4c0e16a9cc00cfe8f093bf1f0c2bbf2a1904d
+
+do_install() {
+	vmkdir /usr/bin
+	vmkdir /usr/share/java/$pkgname
+	vcopy *.jar /usr/share/java/$pkgname;
+	vcopy libs/*.jar /usr/share/java/$pkgname;
+	rm -rf *.jar libs
+	vcopy "$wrksrc" /usr/share/$pkgname/
+
+	curl -o languagetool https://git.archlinux.org/svntogit/community.git/plain/trunk/languagetool.sh?h=packages/languagetool
+	vbin languagetool
+}

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

* Re: [PR PATCH] [Updated] New package: languagetool-4.8
  2020-01-09 22:29 [PR PATCH] New package: languagetool-4.8 voidlinux-github
                   ` (8 preceding siblings ...)
  2020-01-10 12:21 ` voidlinux-github
@ 2020-01-11 11:04 ` voidlinux-github
  2020-01-11 14:25 ` voidlinux-github
                   ` (9 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: voidlinux-github @ 2020-01-11 11:04 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 326 bytes --]

There is an updated pull request by Eluminae against master on the void-packages repository

https://github.com/Eluminae/void-packages languagetool
https://github.com/void-linux/void-packages/pull/18154

New package: languagetool-4.8


A patch file from https://github.com/void-linux/void-packages/pull/18154.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-languagetool-18154.patch --]
[-- Type: text/x-diff, Size: 1524 bytes --]

From 48f5774f44a280f03e7b067ebb731d821315eb83 Mon Sep 17 00:00:00 2001
From: Reed Wade <reedwade@misterbanal.net>
Date: Thu, 9 Jan 2020 23:30:17 +0100
Subject: [PATCH] New package: LanguageTool-4.8

---
 srcpkgs/LanguageTool/template | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 srcpkgs/LanguageTool/template

diff --git a/srcpkgs/LanguageTool/template b/srcpkgs/LanguageTool/template
new file mode 100644
index 00000000000..6fb3a280eab
--- /dev/null
+++ b/srcpkgs/LanguageTool/template
@@ -0,0 +1,26 @@
+# Template file for 'LanguageTool'
+pkgname=LanguageTool
+version=4.8
+revision=1
+archs=noarch
+hostmakedepends="unzip"
+depends="virtual?java-environment"
+short_desc="Checks your writing in more than 20 languages"
+maintainer="Stacy Harper <contact@stacyhaper.net>"
+license="LGPL-2.1-or-later"
+homepage="https://www.languagetool.org/"
+distfiles="https://www.languagetool.org/download/LanguageTool-${version}.zip
+  https://git.archlinux.org/svntogit/community.git/plain/trunk/languagetool.sh?h=packages/languagetool"
+checksum="b4775e88fd90d6389f86023600c4c0e16a9cc00cfe8f093bf1f0c2bbf2a1904d
+  009c0a65a978ad11ac097edd4be64688a2c80281b201495eff9ab667c5b0f0fe"
+skip_extraction="languagetool"
+
+do_install() {
+	vmkdir /usr/bin
+	vmkdir /usr/share/java/$pkgname
+	vcopy *.jar /usr/share/java/$pkgname;
+	vcopy libs/*.jar /usr/share/java/$pkgname;
+	rm -rf *.jar libs
+	vcopy "$wrksrc" /usr/share/$pkgname/
+	vbin ${XBPS_SRCDISTDIR}/${pkgname}-${version}/languagetool
+}

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

* Re: [PR PATCH] [Updated] New package: languagetool-4.8
  2020-01-09 22:29 [PR PATCH] New package: languagetool-4.8 voidlinux-github
                   ` (9 preceding siblings ...)
  2020-01-11 11:04 ` voidlinux-github
@ 2020-01-11 14:25 ` voidlinux-github
  2020-01-11 21:57 ` voidlinux-github
                   ` (8 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: voidlinux-github @ 2020-01-11 14:25 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 326 bytes --]

There is an updated pull request by Eluminae against master on the void-packages repository

https://github.com/Eluminae/void-packages languagetool
https://github.com/void-linux/void-packages/pull/18154

New package: languagetool-4.8


A patch file from https://github.com/void-linux/void-packages/pull/18154.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-languagetool-18154.patch --]
[-- Type: text/x-diff, Size: 1522 bytes --]

From b5c9185c14907ed4466f6fc6126eacb785cc67b7 Mon Sep 17 00:00:00 2001
From: Reed Wade <reedwade@misterbanal.net>
Date: Thu, 9 Jan 2020 23:30:17 +0100
Subject: [PATCH] New package: LanguageTool-4.8

---
 srcpkgs/LanguageTool/template | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 srcpkgs/LanguageTool/template

diff --git a/srcpkgs/LanguageTool/template b/srcpkgs/LanguageTool/template
new file mode 100644
index 00000000000..c6a551154bd
--- /dev/null
+++ b/srcpkgs/LanguageTool/template
@@ -0,0 +1,26 @@
+# Template file for 'LanguageTool'
+pkgname=LanguageTool
+version=4.8
+revision=1
+archs=noarch
+hostmakedepends="unzip"
+depends="virtual?java-environment"
+short_desc="Checks your writing in more than 20 languages"
+maintainer="Stacy Harper <contact@stacyhaper.net>"
+license="LGPL-2.1-or-later"
+homepage="https://www.languagetool.org/"
+distfiles="https://www.languagetool.org/download/LanguageTool-${version}.zip
+ https://git.archlinux.org/svntogit/community.git/plain/trunk/languagetool.sh?h=packages/languagetool"
+checksum="b4775e88fd90d6389f86023600c4c0e16a9cc00cfe8f093bf1f0c2bbf2a1904d
+ 009c0a65a978ad11ac097edd4be64688a2c80281b201495eff9ab667c5b0f0fe"
+skip_extraction="languagetool"
+
+do_install() {
+	vmkdir /usr/bin
+	vmkdir /usr/share/java/$pkgname
+	vcopy *.jar /usr/share/java/$pkgname;
+	vcopy libs/*.jar /usr/share/java/$pkgname;
+	rm -rf *.jar libs
+	vcopy "$wrksrc" /usr/share/$pkgname/
+	vbin ${XBPS_SRCDISTDIR}/${pkgname}-${version}/languagetool
+}

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

* Re: [PR PATCH] [Updated] New package: languagetool-4.8
  2020-01-09 22:29 [PR PATCH] New package: languagetool-4.8 voidlinux-github
                   ` (10 preceding siblings ...)
  2020-01-11 14:25 ` voidlinux-github
@ 2020-01-11 21:57 ` voidlinux-github
  2020-01-11 21:57 ` voidlinux-github
                   ` (7 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: voidlinux-github @ 2020-01-11 21:57 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 326 bytes --]

There is an updated pull request by Eluminae against master on the void-packages repository

https://github.com/Eluminae/void-packages languagetool
https://github.com/void-linux/void-packages/pull/18154

New package: languagetool-4.8


A patch file from https://github.com/void-linux/void-packages/pull/18154.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-languagetool-18154.patch --]
[-- Type: text/x-diff, Size: 3486 bytes --]

From 44eab86b02be5eb3999dab4e21b30164c9c8595d Mon Sep 17 00:00:00 2001
From: Reed Wade <reedwade@misterbanal.net>
Date: Sat, 11 Jan 2020 13:03:34 +0100
Subject: [PATCH 1/3] New package: python3-xdg2-4.0.1

---
 srcpkgs/python3-xdg2/template | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 srcpkgs/python3-xdg2/template

diff --git a/srcpkgs/python3-xdg2/template b/srcpkgs/python3-xdg2/template
new file mode 100644
index 00000000000..87f16d63f59
--- /dev/null
+++ b/srcpkgs/python3-xdg2/template
@@ -0,0 +1,19 @@
+# Template file for 'python3-xdg2'
+pkgname=python3-xdg2
+version=4.0.1
+revision=1
+archs=noarch
+wrksrc="xdg-${version}"
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3-inotify python3-aionotify"
+short_desc="Provide variables defined by the XDG Base Directory Specification"
+maintainer="Stacy Harper <contact@stacyharper.net>"
+license="ISC"
+homepage="https://github.com/srstevenson/xdg"
+distfiles="${PYPI_SITE}/x/xdg/xdg-${version}.tar.gz"
+checksum=c939c99def394cbaf765a3ee55efd6ea7e4c5eaed8d9ebc2d03af84ba35dec57
+
+post_install() {
+	vlicense LICENCE
+}

From afe6ce598c88b2a5566240ea9064550ba5b89558 Mon Sep 17 00:00:00 2001
From: Reed Wade <reedwade@misterbanal.net>
Date: Sat, 11 Jan 2020 13:03:46 +0100
Subject: [PATCH 2/3] New package: python3-aionotify-0.2.0

---
 srcpkgs/python3-aionotify/template | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 srcpkgs/python3-aionotify/template

diff --git a/srcpkgs/python3-aionotify/template b/srcpkgs/python3-aionotify/template
new file mode 100644
index 00000000000..254d8c36500
--- /dev/null
+++ b/srcpkgs/python3-aionotify/template
@@ -0,0 +1,18 @@
+# Template file for 'python3-aionotify'
+pkgname=python3-aionotify
+version=0.2.0
+revision=1
+archs=noarch
+wrksrc="aionotify-${version}"
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+short_desc="A simple, asyncio-based inotify library"
+maintainer="Stacy Harper <contact@stacyharper.net>"
+license="BSD"
+homepage="https://github.com/rbarrois/aionotify"
+distfiles="${PYPI_SITE}/a/aionotify/aionotify-${version}.tar.gz"
+checksum=64b702ad0eb115034533f9f62730a9253b79f5ff0fbf3d100c392124cdf12507
+
+post_install() {
+	vlicense LICENSE
+}

From 84cc96e654d16ce63d6b812f0ea4b3908d8ff38f Mon Sep 17 00:00:00 2001
From: Reed Wade <reedwade@misterbanal.net>
Date: Wed, 8 Jan 2020 13:54:11 +0100
Subject: [PATCH 3/3] New package: remhind-0.1.1

---
 srcpkgs/remhind/template | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 srcpkgs/remhind/template

diff --git a/srcpkgs/remhind/template b/srcpkgs/remhind/template
new file mode 100644
index 00000000000..d51a05b4cdc
--- /dev/null
+++ b/srcpkgs/remhind/template
@@ -0,0 +1,19 @@
+# Template file for 'remhind'
+pkgname=remhind
+version=0.1.1
+revision=1
+archs=noarch
+build_style=python3-module
+hostmakedepends="python3-setuptools python3-gobject-devel python3-cairo-devel"
+depends="python3-icalendar python3-dateutil python3-gobject python3-toml 
+ python3-tzlocal python3-xdg2"
+short_desc="Notification daemon of events stored in directories"
+maintainer="Stacy Harper <contact@stacyharper.net>"
+license="GPL-3.0-only"
+homepage="https://github.com/nicoe/remhind"
+distfiles="${PYPI_SITE}/${pkgname::1}/${pkgname}/${pkgname}-${version}.tar.gz"
+checksum=e4fa563cabfba6811ca0bc5be1ea61f5611705f056a846af87f9256a0e140eac
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: languagetool-4.8
  2020-01-09 22:29 [PR PATCH] New package: languagetool-4.8 voidlinux-github
                   ` (11 preceding siblings ...)
  2020-01-11 21:57 ` voidlinux-github
@ 2020-01-11 21:57 ` voidlinux-github
  2020-01-11 21:58 ` voidlinux-github
                   ` (6 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: voidlinux-github @ 2020-01-11 21:57 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 326 bytes --]

There is an updated pull request by Eluminae against master on the void-packages repository

https://github.com/Eluminae/void-packages languagetool
https://github.com/void-linux/void-packages/pull/18154

New package: languagetool-4.8


A patch file from https://github.com/void-linux/void-packages/pull/18154.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-languagetool-18154.patch --]
[-- Type: text/x-diff, Size: 3440 bytes --]

From 44eab86b02be5eb3999dab4e21b30164c9c8595d Mon Sep 17 00:00:00 2001
From: Reed Wade <reedwade@misterbanal.net>
Date: Sat, 11 Jan 2020 13:03:34 +0100
Subject: [PATCH 1/3] New package: python3-xdg2-4.0.1

---
 srcpkgs/python3-xdg2/template | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 srcpkgs/python3-xdg2/template

diff --git a/srcpkgs/python3-xdg2/template b/srcpkgs/python3-xdg2/template
new file mode 100644
index 00000000000..87f16d63f59
--- /dev/null
+++ b/srcpkgs/python3-xdg2/template
@@ -0,0 +1,19 @@
+# Template file for 'python3-xdg2'
+pkgname=python3-xdg2
+version=4.0.1
+revision=1
+archs=noarch
+wrksrc="xdg-${version}"
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3-inotify python3-aionotify"
+short_desc="Provide variables defined by the XDG Base Directory Specification"
+maintainer="Stacy Harper <contact@stacyharper.net>"
+license="ISC"
+homepage="https://github.com/srstevenson/xdg"
+distfiles="${PYPI_SITE}/x/xdg/xdg-${version}.tar.gz"
+checksum=c939c99def394cbaf765a3ee55efd6ea7e4c5eaed8d9ebc2d03af84ba35dec57
+
+post_install() {
+	vlicense LICENCE
+}

From afe6ce598c88b2a5566240ea9064550ba5b89558 Mon Sep 17 00:00:00 2001
From: Reed Wade <reedwade@misterbanal.net>
Date: Sat, 11 Jan 2020 13:03:46 +0100
Subject: [PATCH 2/3] New package: python3-aionotify-0.2.0

---
 srcpkgs/python3-aionotify/template | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 srcpkgs/python3-aionotify/template

diff --git a/srcpkgs/python3-aionotify/template b/srcpkgs/python3-aionotify/template
new file mode 100644
index 00000000000..254d8c36500
--- /dev/null
+++ b/srcpkgs/python3-aionotify/template
@@ -0,0 +1,18 @@
+# Template file for 'python3-aionotify'
+pkgname=python3-aionotify
+version=0.2.0
+revision=1
+archs=noarch
+wrksrc="aionotify-${version}"
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+short_desc="A simple, asyncio-based inotify library"
+maintainer="Stacy Harper <contact@stacyharper.net>"
+license="BSD"
+homepage="https://github.com/rbarrois/aionotify"
+distfiles="${PYPI_SITE}/a/aionotify/aionotify-${version}.tar.gz"
+checksum=64b702ad0eb115034533f9f62730a9253b79f5ff0fbf3d100c392124cdf12507
+
+post_install() {
+	vlicense LICENSE
+}

From 0a8164adfddba76d295fecebaf92abcf481bd2af Mon Sep 17 00:00:00 2001
From: Reed Wade <reedwade@misterbanal.net>
Date: Wed, 8 Jan 2020 13:54:11 +0100
Subject: [PATCH 3/3] New package: remhind-0.1.1

---
 srcpkgs/remhind/template | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 srcpkgs/remhind/template

diff --git a/srcpkgs/remhind/template b/srcpkgs/remhind/template
new file mode 100644
index 00000000000..1b52a28f473
--- /dev/null
+++ b/srcpkgs/remhind/template
@@ -0,0 +1,15 @@
+# Template file for 'remhind'
+pkgname=remhind
+version=0.1.1
+revision=1
+archs=noarch
+build_style=python3-module
+hostmakedepends="python3-setuptools python3-gobject-devel python3-cairo-devel"
+depends="python3-icalendar python3-dateutil python3-gobject python3-toml 
+ python3-tzlocal python3-xdg2"
+short_desc="Notification daemon of events stored in directories"
+maintainer="Stacy Harper <contact@stacyharper.net>"
+license="GPL-3.0-only"
+homepage="https://github.com/nicoe/remhind"
+distfiles="${PYPI_SITE}/${pkgname::1}/${pkgname}/${pkgname}-${version}.tar.gz"
+checksum=e4fa563cabfba6811ca0bc5be1ea61f5611705f056a846af87f9256a0e140eac

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

* Re: [PR PATCH] [Updated] New package: languagetool-4.8
  2020-01-09 22:29 [PR PATCH] New package: languagetool-4.8 voidlinux-github
                   ` (12 preceding siblings ...)
  2020-01-11 21:57 ` voidlinux-github
@ 2020-01-11 21:58 ` voidlinux-github
  2020-01-13 19:54 ` voidlinux-github
                   ` (5 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: voidlinux-github @ 2020-01-11 21:58 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 326 bytes --]

There is an updated pull request by Eluminae against master on the void-packages repository

https://github.com/Eluminae/void-packages languagetool
https://github.com/void-linux/void-packages/pull/18154

New package: languagetool-4.8


A patch file from https://github.com/void-linux/void-packages/pull/18154.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-languagetool-18154.patch --]
[-- Type: text/x-diff, Size: 1522 bytes --]

From 6f4d7c0087613de715b642d7133054762615eec4 Mon Sep 17 00:00:00 2001
From: Reed Wade <reedwade@misterbanal.net>
Date: Thu, 9 Jan 2020 23:30:17 +0100
Subject: [PATCH] New package: LanguageTool-4.8

---
 srcpkgs/LanguageTool/template | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 srcpkgs/LanguageTool/template

diff --git a/srcpkgs/LanguageTool/template b/srcpkgs/LanguageTool/template
new file mode 100644
index 00000000000..c6a551154bd
--- /dev/null
+++ b/srcpkgs/LanguageTool/template
@@ -0,0 +1,26 @@
+# Template file for 'LanguageTool'
+pkgname=LanguageTool
+version=4.8
+revision=1
+archs=noarch
+hostmakedepends="unzip"
+depends="virtual?java-environment"
+short_desc="Checks your writing in more than 20 languages"
+maintainer="Stacy Harper <contact@stacyhaper.net>"
+license="LGPL-2.1-or-later"
+homepage="https://www.languagetool.org/"
+distfiles="https://www.languagetool.org/download/LanguageTool-${version}.zip
+ https://git.archlinux.org/svntogit/community.git/plain/trunk/languagetool.sh?h=packages/languagetool"
+checksum="b4775e88fd90d6389f86023600c4c0e16a9cc00cfe8f093bf1f0c2bbf2a1904d
+ 009c0a65a978ad11ac097edd4be64688a2c80281b201495eff9ab667c5b0f0fe"
+skip_extraction="languagetool"
+
+do_install() {
+	vmkdir /usr/bin
+	vmkdir /usr/share/java/$pkgname
+	vcopy *.jar /usr/share/java/$pkgname;
+	vcopy libs/*.jar /usr/share/java/$pkgname;
+	rm -rf *.jar libs
+	vcopy "$wrksrc" /usr/share/$pkgname/
+	vbin ${XBPS_SRCDISTDIR}/${pkgname}-${version}/languagetool
+}

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

* Re: New package: languagetool-4.8
  2020-01-09 22:29 [PR PATCH] New package: languagetool-4.8 voidlinux-github
                   ` (13 preceding siblings ...)
  2020-01-11 21:58 ` voidlinux-github
@ 2020-01-13 19:54 ` voidlinux-github
  2020-01-13 21:28 ` voidlinux-github
                   ` (4 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: voidlinux-github @ 2020-01-13 19:54 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 236 bytes --]

New comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/18154#issuecomment-573841230

Comment:
Either installation path or starting script need to be adjusted to other one to make it work.

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

* Re: New package: languagetool-4.8
  2020-01-09 22:29 [PR PATCH] New package: languagetool-4.8 voidlinux-github
                   ` (14 preceding siblings ...)
  2020-01-13 19:54 ` voidlinux-github
@ 2020-01-13 21:28 ` voidlinux-github
  2020-01-13 21:30 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (3 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: voidlinux-github @ 2020-01-13 21:28 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 246 bytes --]

New comment by Eluminae on void-packages repository

https://github.com/void-linux/void-packages/pull/18154#issuecomment-573879570

Comment:
Shit. I guess the renaming from "languagetool" to "LanguageTool" breaked the folder structure. I'm on it

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

* Re: [PR PATCH] [Updated] New package: languagetool-4.8
  2020-01-09 22:29 [PR PATCH] New package: languagetool-4.8 voidlinux-github
                   ` (15 preceding siblings ...)
  2020-01-13 21:28 ` voidlinux-github
@ 2020-01-13 21:30 ` voidlinux-github
  2020-01-13 21:31 ` voidlinux-github
                   ` (2 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: voidlinux-github @ 2020-01-13 21:30 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 326 bytes --]

There is an updated pull request by Eluminae against master on the void-packages repository

https://github.com/Eluminae/void-packages languagetool
https://github.com/void-linux/void-packages/pull/18154

New package: languagetool-4.8


A patch file from https://github.com/void-linux/void-packages/pull/18154.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-languagetool-18154.patch --]
[-- Type: text/x-diff, Size: 1538 bytes --]

From e440af32eb077e1a8a37f6a69a553ace22cfab51 Mon Sep 17 00:00:00 2001
From: Reed Wade <reedwade@misterbanal.net>
Date: Thu, 9 Jan 2020 23:30:17 +0100
Subject: [PATCH] New package: LanguageTool-4.8

---
 srcpkgs/LanguageTool/template | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 srcpkgs/LanguageTool/template

diff --git a/srcpkgs/LanguageTool/template b/srcpkgs/LanguageTool/template
new file mode 100644
index 00000000000..3840d5e1fff
--- /dev/null
+++ b/srcpkgs/LanguageTool/template
@@ -0,0 +1,26 @@
+# Template file for 'LanguageTool'
+pkgname=LanguageTool
+version=4.8
+revision=1
+archs=noarch
+hostmakedepends="unzip"
+depends="virtual?java-environment"
+short_desc="Checks your writing in more than 20 languages"
+maintainer="Stacy Harper <contact@stacyhaper.net>"
+license="LGPL-2.1-or-later"
+homepage="https://www.languagetool.org/"
+distfiles="https://www.languagetool.org/download/LanguageTool-${version}.zip
+ https://git.archlinux.org/svntogit/community.git/plain/trunk/languagetool.sh?h=packages/languagetool"
+checksum="b4775e88fd90d6389f86023600c4c0e16a9cc00cfe8f093bf1f0c2bbf2a1904d
+ 009c0a65a978ad11ac097edd4be64688a2c80281b201495eff9ab667c5b0f0fe"
+skip_extraction="languagetool"
+
+do_install() {
+	vmkdir /usr/bin
+	vmkdir /usr/share/java/languagetool
+	vcopy *.jar /usr/share/java/languagetool;
+	vcopy libs/*.jar /usr/share/java/languagetool;
+	rm -rf *.jar libs
+	vcopy "$wrksrc" /usr/share/languagetool/
+	vbin ${XBPS_SRCDISTDIR}/${pkgname}-${version}/languagetool
+}

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

* Re: [PR PATCH] [Updated] New package: languagetool-4.8
  2020-01-09 22:29 [PR PATCH] New package: languagetool-4.8 voidlinux-github
                   ` (16 preceding siblings ...)
  2020-01-13 21:30 ` [PR PATCH] [Updated] " voidlinux-github
@ 2020-01-13 21:31 ` voidlinux-github
  2020-01-13 21:33 ` voidlinux-github
  2020-01-17 20:00 ` [PR PATCH] [Merged]: " voidlinux-github
  19 siblings, 0 replies; 21+ messages in thread
From: voidlinux-github @ 2020-01-13 21:31 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 326 bytes --]

There is an updated pull request by Eluminae against master on the void-packages repository

https://github.com/Eluminae/void-packages languagetool
https://github.com/void-linux/void-packages/pull/18154

New package: languagetool-4.8


A patch file from https://github.com/void-linux/void-packages/pull/18154.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-languagetool-18154.patch --]
[-- Type: text/x-diff, Size: 1536 bytes --]

From 848c190d77cc7f8a09334bf08d53d0069b928041 Mon Sep 17 00:00:00 2001
From: Reed Wade <reedwade@misterbanal.net>
Date: Thu, 9 Jan 2020 23:30:17 +0100
Subject: [PATCH] New package: LanguageTool-4.8

---
 srcpkgs/LanguageTool/template | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 srcpkgs/LanguageTool/template

diff --git a/srcpkgs/LanguageTool/template b/srcpkgs/LanguageTool/template
new file mode 100644
index 00000000000..a73cc80c9e5
--- /dev/null
+++ b/srcpkgs/LanguageTool/template
@@ -0,0 +1,26 @@
+# Template file for 'LanguageTool'
+pkgname=LanguageTool
+version=4.8
+revision=1
+archs=noarch
+hostmakedepends="unzip"
+depends="virtual?java-environment"
+short_desc="Checks your writing in more than 20 languages"
+maintainer="Stacy Harper <contact@stacyhaper.net>"
+license="LGPL-2.1-or-later"
+homepage="https://www.languagetool.org/"
+distfiles="https://www.languagetool.org/download/LanguageTool-${version}.zip
+ https://git.archlinux.org/svntogit/community.git/plain/trunk/languagetool.sh?h=packages/languagetool"
+checksum="b4775e88fd90d6389f86023600c4c0e16a9cc00cfe8f093bf1f0c2bbf2a1904d
+ 009c0a65a978ad11ac097edd4be64688a2c80281b201495eff9ab667c5b0f0fe"
+skip_extraction="languagetool"
+
+do_install() {
+	vmkdir /usr/bin
+	vmkdir /usr/share/java/languagetool
+	vcopy *.jar /usr/share/java/languagetool
+	vcopy libs/*.jar /usr/share/java/languagetool
+	rm -rf *.jar libs
+	vcopy "$wrksrc" /usr/share/languagetool/
+	vbin ${XBPS_SRCDISTDIR}/${pkgname}-${version}/languagetool
+}

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

* Re: New package: languagetool-4.8
  2020-01-09 22:29 [PR PATCH] New package: languagetool-4.8 voidlinux-github
                   ` (17 preceding siblings ...)
  2020-01-13 21:31 ` voidlinux-github
@ 2020-01-13 21:33 ` voidlinux-github
  2020-01-17 20:00 ` [PR PATCH] [Merged]: " voidlinux-github
  19 siblings, 0 replies; 21+ messages in thread
From: voidlinux-github @ 2020-01-13 21:33 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 171 bytes --]

New comment by Eluminae on void-packages repository

https://github.com/void-linux/void-packages/pull/18154#issuecomment-573881132

Comment:
This was it. It is now fixed.

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

* Re: [PR PATCH] [Merged]: New package: languagetool-4.8
  2020-01-09 22:29 [PR PATCH] New package: languagetool-4.8 voidlinux-github
                   ` (18 preceding siblings ...)
  2020-01-13 21:33 ` voidlinux-github
@ 2020-01-17 20:00 ` voidlinux-github
  19 siblings, 0 replies; 21+ messages in thread
From: voidlinux-github @ 2020-01-17 20:00 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 163 bytes --]

There's a merged pull request on the void-packages repository

New package: languagetool-4.8
https://github.com/void-linux/void-packages/pull/18154

Description:


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

end of thread, other threads:[~2020-01-17 20:00 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-09 22:29 [PR PATCH] New package: languagetool-4.8 voidlinux-github
2020-01-09 22:29 ` [PR PATCH] [Updated] " voidlinux-github
2020-01-09 22:38 ` voidlinux-github
2020-01-10  9:02 ` voidlinux-github
2020-01-10  9:08 ` voidlinux-github
2020-01-10  9:20 ` voidlinux-github
2020-01-10  9:21 ` voidlinux-github
2020-01-10 10:40 ` voidlinux-github
2020-01-10 12:20 ` voidlinux-github
2020-01-10 12:21 ` voidlinux-github
2020-01-11 11:04 ` voidlinux-github
2020-01-11 14:25 ` voidlinux-github
2020-01-11 21:57 ` voidlinux-github
2020-01-11 21:57 ` voidlinux-github
2020-01-11 21:58 ` voidlinux-github
2020-01-13 19:54 ` voidlinux-github
2020-01-13 21:28 ` voidlinux-github
2020-01-13 21:30 ` [PR PATCH] [Updated] " voidlinux-github
2020-01-13 21:31 ` voidlinux-github
2020-01-13 21:33 ` voidlinux-github
2020-01-17 20:00 ` [PR PATCH] [Merged]: " voidlinux-github

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).