Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] Dutchhunspell
@ 2023-02-06  0:44 numerys
  2023-02-06  0:48 ` Dutchhunspell abenson
                   ` (26 more replies)
  0 siblings, 27 replies; 28+ messages in thread
From: numerys @ 2023-02-06  0:44 UTC (permalink / raw)
  To: ml

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

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

https://github.com/numerys/void-packages dutchhunspell
https://github.com/void-linux/void-packages/pull/42103

Dutchhunspell
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: YES

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): YES

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
No architecture dependency

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

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

From 26a01da8b1267006f3da0e879d73e58a760b076c Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Sun, 5 Feb 2023 22:48:39 +0100
Subject: [PATCH 1/7] Added dutch dict for hunspell

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

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
new file mode 100644
index 000000000000..b5f34ce205b8
--- /dev/null
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -0,0 +1,15 @@
+# Template file for 'hunspell-nl_NL'
+pkgname=hunspell-nl_NL
+version=2.20.19
+revision=2
+short_desc="Dutch nl_NL dictionary for hunspell"
+maintainer="Goran Vukoman <g@numerys.net>"
+license="Revised BSD License and/or CC BY 3.0"
+homepage="https://www.opentaal.org/"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
+
+do_install() {
+	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+}

From 7db0895b8fa0310aa71dc604ac6adbe323db0d8d Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 00:49:49 +0100
Subject: [PATCH 2/7] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 1 -
 1 file changed, 1 deletion(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index b5f34ce205b8..139aa1c38805 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -1,7 +1,6 @@
 # Template file for 'hunspell-nl_NL'
 pkgname=hunspell-nl_NL
 version=2.20.19
-revision=2
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
 license="Revised BSD License and/or CC BY 3.0"

From c328cdb4c68057f6cba5803a58134ddf213656bb Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 00:53:49 +0100
Subject: [PATCH 3/7] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 139aa1c38805..592e878b5f84 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -1,6 +1,7 @@
 # Template file for 'hunspell-nl_NL'
 pkgname=hunspell-nl_NL
 version=2.20.19
+revision=0
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
 license="Revised BSD License and/or CC BY 3.0"
@@ -9,6 +10,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall opentaal-hunspell-2.20.19_0/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-2.20.19_0/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From 4ec7941f1fa633a4b6f12294c965c1ac5f50d6c4 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 01:00:52 +0100
Subject: [PATCH 4/7] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 592e878b5f84..73409bead55e 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -2,6 +2,7 @@
 pkgname=hunspell-nl_NL
 version=2.20.19
 revision=0
+create_wrksrc=yes
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
 license="Revised BSD License and/or CC BY 3.0"
@@ -10,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall opentaal-hunspell-2.20.19_0/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall opentaal-hunspell-2.20.19_0/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall ${wrksrc}/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall ${wrksrc}/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From 4e1a9d5d07ed6f1ccfc28112f0251dd127d885a1 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 01:10:11 +0100
Subject: [PATCH 5/7] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 73409bead55e..47bf536b8ed1 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -11,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall ${wrksrc}/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall ${wrksrc}/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall ${wrksrc}/dutch-2.20.19/hunspell/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall ${wrksrc}/dutch-2.20.19/hunspell/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From 00cb5a9f42d992d40444a642350d1f24fdf07531 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 01:20:09 +0100
Subject: [PATCH 6/7] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 47bf536b8ed1..c0e300a8b2a4 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -11,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall ${wrksrc}/dutch-2.20.19/hunspell/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall ${wrksrc}/dutch-2.20.19/hunspell/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From e2cfe6a094b5dfa573572250e1a75f25670b0e42 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 01:31:25 +0100
Subject: [PATCH 7/7] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index c0e300a8b2a4..aaa30c0fcc43 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -11,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell nl_NL.aff
+	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell nl_NL.dic
 }

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

* Re: Dutchhunspell
  2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
@ 2023-02-06  0:48 ` abenson
  2023-02-06  0:54 ` [PR REVIEW] Dutchhunspell classabbyamp
                   ` (25 subsequent siblings)
  26 siblings, 0 replies; 28+ messages in thread
From: abenson @ 2023-02-06  0:48 UTC (permalink / raw)
  To: ml

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

New comment by abenson on void-packages repository

https://github.com/void-linux/void-packages/pull/42103#issuecomment-1418330222

Comment:
Please [squash the commits](https://www.git-tower.com/learn/git/faq/git-squash) down a single commit.  Use the conventions in [CONTRIBUTING.md](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#committing-your-changes) for the commit message (i.e. "New package: hunspell-nl_NL-2.20.19.").

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

* Re: [PR REVIEW] Dutchhunspell
  2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
  2023-02-06  0:48 ` Dutchhunspell abenson
@ 2023-02-06  0:54 ` classabbyamp
  2023-02-06  0:54 ` classabbyamp
                   ` (24 subsequent siblings)
  26 siblings, 0 replies; 28+ messages in thread
From: classabbyamp @ 2023-02-06  0:54 UTC (permalink / raw)
  To: ml

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

New review comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/42103#discussion_r1096847985

Comment:
```suggestion
	vinstall nl.aff 644 /usr/share/hunspell nl_NL.aff
	vinstall nl.dic 644 /usr/share/hunspell nl_NL.dic
```

vinstall works from $wrksrc by default

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

* Re: [PR REVIEW] Dutchhunspell
  2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
                   ` (2 preceding siblings ...)
  2023-02-06  0:54 ` classabbyamp
@ 2023-02-06  0:54 ` classabbyamp
  2023-02-06  0:54 ` classabbyamp
                   ` (22 subsequent siblings)
  26 siblings, 0 replies; 28+ messages in thread
From: classabbyamp @ 2023-02-06  0:54 UTC (permalink / raw)
  To: ml

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

New review comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/42103#discussion_r1096849705

Comment:
```suggestion
license="BSD-3-Clause, CC-BY-3.0"
```
use the [spdx identifiers](https://spdx.org/licenses/)

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

* Re: [PR REVIEW] Dutchhunspell
  2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
                   ` (3 preceding siblings ...)
  2023-02-06  0:54 ` classabbyamp
@ 2023-02-06  0:54 ` classabbyamp
  2023-02-06  0:54 ` classabbyamp
                   ` (21 subsequent siblings)
  26 siblings, 0 replies; 28+ messages in thread
From: classabbyamp @ 2023-02-06  0:54 UTC (permalink / raw)
  To: ml

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

New review comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/42103#discussion_r1096848319

Comment:
```suggestion
```
shouldn't be needed here

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

* Re: [PR REVIEW] Dutchhunspell
  2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
  2023-02-06  0:48 ` Dutchhunspell abenson
  2023-02-06  0:54 ` [PR REVIEW] Dutchhunspell classabbyamp
@ 2023-02-06  0:54 ` classabbyamp
  2023-02-06  0:54 ` classabbyamp
                   ` (23 subsequent siblings)
  26 siblings, 0 replies; 28+ messages in thread
From: classabbyamp @ 2023-02-06  0:54 UTC (permalink / raw)
  To: ml

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

New review comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/42103#discussion_r1096848275

Comment:
```suggestion
revision=1
```
revision always starts at 1

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

* Re: [PR REVIEW] Dutchhunspell
  2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
                   ` (4 preceding siblings ...)
  2023-02-06  0:54 ` classabbyamp
@ 2023-02-06  0:54 ` classabbyamp
  2023-02-06  1:10 ` [PR PATCH] [Updated] Dutchhunspell numerys
                   ` (20 subsequent siblings)
  26 siblings, 0 replies; 28+ messages in thread
From: classabbyamp @ 2023-02-06  0:54 UTC (permalink / raw)
  To: ml

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

New review comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/42103#discussion_r1096848041

Comment:
```suggestion
distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/${version}.tar.gz"
```
makes updating easier

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

* Re: [PR PATCH] [Updated] Dutchhunspell
  2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
                   ` (5 preceding siblings ...)
  2023-02-06  0:54 ` classabbyamp
@ 2023-02-06  1:10 ` numerys
  2023-02-06  1:11 ` numerys
                   ` (19 subsequent siblings)
  26 siblings, 0 replies; 28+ messages in thread
From: numerys @ 2023-02-06  1:10 UTC (permalink / raw)
  To: ml

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

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

https://github.com/numerys/void-packages dutchhunspell
https://github.com/void-linux/void-packages/pull/42103

Dutchhunspell
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: YES

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): YES

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
No architecture dependency

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

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

From 26a01da8b1267006f3da0e879d73e58a760b076c Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Sun, 5 Feb 2023 22:48:39 +0100
Subject: [PATCH 1/8] Added dutch dict for hunspell

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

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
new file mode 100644
index 000000000000..b5f34ce205b8
--- /dev/null
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -0,0 +1,15 @@
+# Template file for 'hunspell-nl_NL'
+pkgname=hunspell-nl_NL
+version=2.20.19
+revision=2
+short_desc="Dutch nl_NL dictionary for hunspell"
+maintainer="Goran Vukoman <g@numerys.net>"
+license="Revised BSD License and/or CC BY 3.0"
+homepage="https://www.opentaal.org/"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
+
+do_install() {
+	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+}

From 7db0895b8fa0310aa71dc604ac6adbe323db0d8d Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 00:49:49 +0100
Subject: [PATCH 2/8] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 1 -
 1 file changed, 1 deletion(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index b5f34ce205b8..139aa1c38805 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -1,7 +1,6 @@
 # Template file for 'hunspell-nl_NL'
 pkgname=hunspell-nl_NL
 version=2.20.19
-revision=2
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
 license="Revised BSD License and/or CC BY 3.0"

From c328cdb4c68057f6cba5803a58134ddf213656bb Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 00:53:49 +0100
Subject: [PATCH 3/8] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 139aa1c38805..592e878b5f84 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -1,6 +1,7 @@
 # Template file for 'hunspell-nl_NL'
 pkgname=hunspell-nl_NL
 version=2.20.19
+revision=0
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
 license="Revised BSD License and/or CC BY 3.0"
@@ -9,6 +10,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall opentaal-hunspell-2.20.19_0/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-2.20.19_0/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From 4ec7941f1fa633a4b6f12294c965c1ac5f50d6c4 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 01:00:52 +0100
Subject: [PATCH 4/8] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 592e878b5f84..73409bead55e 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -2,6 +2,7 @@
 pkgname=hunspell-nl_NL
 version=2.20.19
 revision=0
+create_wrksrc=yes
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
 license="Revised BSD License and/or CC BY 3.0"
@@ -10,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall opentaal-hunspell-2.20.19_0/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall opentaal-hunspell-2.20.19_0/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall ${wrksrc}/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall ${wrksrc}/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From 4e1a9d5d07ed6f1ccfc28112f0251dd127d885a1 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 01:10:11 +0100
Subject: [PATCH 5/8] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 73409bead55e..47bf536b8ed1 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -11,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall ${wrksrc}/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall ${wrksrc}/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall ${wrksrc}/dutch-2.20.19/hunspell/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall ${wrksrc}/dutch-2.20.19/hunspell/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From 00cb5a9f42d992d40444a642350d1f24fdf07531 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 01:20:09 +0100
Subject: [PATCH 6/8] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 47bf536b8ed1..c0e300a8b2a4 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -11,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall ${wrksrc}/dutch-2.20.19/hunspell/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall ${wrksrc}/dutch-2.20.19/hunspell/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From e2cfe6a094b5dfa573572250e1a75f25670b0e42 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 01:31:25 +0100
Subject: [PATCH 7/8] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index c0e300a8b2a4..aaa30c0fcc43 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -11,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell nl_NL.aff
+	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell nl_NL.dic
 }

From 95abb556b9caa2a6edba0024d1a3be12434e31f2 Mon Sep 17 00:00:00 2001
From: numerys <g@numerys.net>
Date: Mon, 6 Feb 2023 02:10:35 +0100
Subject: [PATCH 8/8] Update srcpkgs/hunspell-nl_NL/template

Co-authored-by: classabbyamp <5366828+classabbyamp@users.noreply.github.com>
---
 srcpkgs/hunspell-nl_NL/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index aaa30c0fcc43..a6830858bb44 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -11,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell nl_NL.aff
-	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell nl_NL.dic
+	vinstall nl.aff 644 /usr/share/hunspell nl_NL.aff
+	vinstall nl.dic 644 /usr/share/hunspell nl_NL.dic
 }

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

* Re: [PR PATCH] [Updated] Dutchhunspell
  2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
                   ` (6 preceding siblings ...)
  2023-02-06  1:10 ` [PR PATCH] [Updated] Dutchhunspell numerys
@ 2023-02-06  1:11 ` numerys
  2023-02-06  1:11 ` numerys
                   ` (18 subsequent siblings)
  26 siblings, 0 replies; 28+ messages in thread
From: numerys @ 2023-02-06  1:11 UTC (permalink / raw)
  To: ml

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

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

https://github.com/numerys/void-packages dutchhunspell
https://github.com/void-linux/void-packages/pull/42103

Dutchhunspell
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: YES

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): YES

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
No architecture dependency

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

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

From 26a01da8b1267006f3da0e879d73e58a760b076c Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Sun, 5 Feb 2023 22:48:39 +0100
Subject: [PATCH 1/9] Added dutch dict for hunspell

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

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
new file mode 100644
index 000000000000..b5f34ce205b8
--- /dev/null
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -0,0 +1,15 @@
+# Template file for 'hunspell-nl_NL'
+pkgname=hunspell-nl_NL
+version=2.20.19
+revision=2
+short_desc="Dutch nl_NL dictionary for hunspell"
+maintainer="Goran Vukoman <g@numerys.net>"
+license="Revised BSD License and/or CC BY 3.0"
+homepage="https://www.opentaal.org/"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
+
+do_install() {
+	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+}

From 7db0895b8fa0310aa71dc604ac6adbe323db0d8d Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 00:49:49 +0100
Subject: [PATCH 2/9] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 1 -
 1 file changed, 1 deletion(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index b5f34ce205b8..139aa1c38805 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -1,7 +1,6 @@
 # Template file for 'hunspell-nl_NL'
 pkgname=hunspell-nl_NL
 version=2.20.19
-revision=2
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
 license="Revised BSD License and/or CC BY 3.0"

From c328cdb4c68057f6cba5803a58134ddf213656bb Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 00:53:49 +0100
Subject: [PATCH 3/9] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 139aa1c38805..592e878b5f84 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -1,6 +1,7 @@
 # Template file for 'hunspell-nl_NL'
 pkgname=hunspell-nl_NL
 version=2.20.19
+revision=0
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
 license="Revised BSD License and/or CC BY 3.0"
@@ -9,6 +10,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall opentaal-hunspell-2.20.19_0/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-2.20.19_0/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From 4ec7941f1fa633a4b6f12294c965c1ac5f50d6c4 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 01:00:52 +0100
Subject: [PATCH 4/9] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 592e878b5f84..73409bead55e 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -2,6 +2,7 @@
 pkgname=hunspell-nl_NL
 version=2.20.19
 revision=0
+create_wrksrc=yes
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
 license="Revised BSD License and/or CC BY 3.0"
@@ -10,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall opentaal-hunspell-2.20.19_0/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall opentaal-hunspell-2.20.19_0/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall ${wrksrc}/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall ${wrksrc}/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From 4e1a9d5d07ed6f1ccfc28112f0251dd127d885a1 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 01:10:11 +0100
Subject: [PATCH 5/9] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 73409bead55e..47bf536b8ed1 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -11,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall ${wrksrc}/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall ${wrksrc}/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall ${wrksrc}/dutch-2.20.19/hunspell/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall ${wrksrc}/dutch-2.20.19/hunspell/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From 00cb5a9f42d992d40444a642350d1f24fdf07531 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 01:20:09 +0100
Subject: [PATCH 6/9] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 47bf536b8ed1..c0e300a8b2a4 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -11,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall ${wrksrc}/dutch-2.20.19/hunspell/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall ${wrksrc}/dutch-2.20.19/hunspell/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From e2cfe6a094b5dfa573572250e1a75f25670b0e42 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 01:31:25 +0100
Subject: [PATCH 7/9] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index c0e300a8b2a4..aaa30c0fcc43 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -11,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell nl_NL.aff
+	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell nl_NL.dic
 }

From 95abb556b9caa2a6edba0024d1a3be12434e31f2 Mon Sep 17 00:00:00 2001
From: numerys <g@numerys.net>
Date: Mon, 6 Feb 2023 02:10:35 +0100
Subject: [PATCH 8/9] Update srcpkgs/hunspell-nl_NL/template

Co-authored-by: classabbyamp <5366828+classabbyamp@users.noreply.github.com>
---
 srcpkgs/hunspell-nl_NL/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index aaa30c0fcc43..a6830858bb44 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -11,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell nl_NL.aff
-	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell nl_NL.dic
+	vinstall nl.aff 644 /usr/share/hunspell nl_NL.aff
+	vinstall nl.dic 644 /usr/share/hunspell nl_NL.dic
 }

From a5636bee0d13275bddf45e5acae3bc5bae42cb86 Mon Sep 17 00:00:00 2001
From: numerys <g@numerys.net>
Date: Mon, 6 Feb 2023 02:11:15 +0100
Subject: [PATCH 9/9] Update srcpkgs/hunspell-nl_NL/template

Co-authored-by: classabbyamp <5366828+classabbyamp@users.noreply.github.com>
---
 srcpkgs/hunspell-nl_NL/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index a6830858bb44..0ab603143d04 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -7,7 +7,7 @@ short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
 license="Revised BSD License and/or CC BY 3.0"
 homepage="https://www.opentaal.org/"
-distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/${version}.tar.gz"
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {

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

* Re: [PR PATCH] [Updated] Dutchhunspell
  2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
                   ` (7 preceding siblings ...)
  2023-02-06  1:11 ` numerys
@ 2023-02-06  1:11 ` numerys
  2023-02-06  1:11 ` numerys
                   ` (17 subsequent siblings)
  26 siblings, 0 replies; 28+ messages in thread
From: numerys @ 2023-02-06  1:11 UTC (permalink / raw)
  To: ml

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

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

https://github.com/numerys/void-packages dutchhunspell
https://github.com/void-linux/void-packages/pull/42103

Dutchhunspell
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: YES

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): YES

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
No architecture dependency

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

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

From 26a01da8b1267006f3da0e879d73e58a760b076c Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Sun, 5 Feb 2023 22:48:39 +0100
Subject: [PATCH 01/10] Added dutch dict for hunspell

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

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
new file mode 100644
index 000000000000..b5f34ce205b8
--- /dev/null
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -0,0 +1,15 @@
+# Template file for 'hunspell-nl_NL'
+pkgname=hunspell-nl_NL
+version=2.20.19
+revision=2
+short_desc="Dutch nl_NL dictionary for hunspell"
+maintainer="Goran Vukoman <g@numerys.net>"
+license="Revised BSD License and/or CC BY 3.0"
+homepage="https://www.opentaal.org/"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
+
+do_install() {
+	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+}

From 7db0895b8fa0310aa71dc604ac6adbe323db0d8d Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 00:49:49 +0100
Subject: [PATCH 02/10] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 1 -
 1 file changed, 1 deletion(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index b5f34ce205b8..139aa1c38805 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -1,7 +1,6 @@
 # Template file for 'hunspell-nl_NL'
 pkgname=hunspell-nl_NL
 version=2.20.19
-revision=2
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
 license="Revised BSD License and/or CC BY 3.0"

From c328cdb4c68057f6cba5803a58134ddf213656bb Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 00:53:49 +0100
Subject: [PATCH 03/10] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 139aa1c38805..592e878b5f84 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -1,6 +1,7 @@
 # Template file for 'hunspell-nl_NL'
 pkgname=hunspell-nl_NL
 version=2.20.19
+revision=0
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
 license="Revised BSD License and/or CC BY 3.0"
@@ -9,6 +10,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall opentaal-hunspell-2.20.19_0/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-2.20.19_0/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From 4ec7941f1fa633a4b6f12294c965c1ac5f50d6c4 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 01:00:52 +0100
Subject: [PATCH 04/10] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 592e878b5f84..73409bead55e 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -2,6 +2,7 @@
 pkgname=hunspell-nl_NL
 version=2.20.19
 revision=0
+create_wrksrc=yes
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
 license="Revised BSD License and/or CC BY 3.0"
@@ -10,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall opentaal-hunspell-2.20.19_0/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall opentaal-hunspell-2.20.19_0/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall ${wrksrc}/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall ${wrksrc}/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From 4e1a9d5d07ed6f1ccfc28112f0251dd127d885a1 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 01:10:11 +0100
Subject: [PATCH 05/10] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 73409bead55e..47bf536b8ed1 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -11,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall ${wrksrc}/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall ${wrksrc}/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall ${wrksrc}/dutch-2.20.19/hunspell/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall ${wrksrc}/dutch-2.20.19/hunspell/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From 00cb5a9f42d992d40444a642350d1f24fdf07531 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 01:20:09 +0100
Subject: [PATCH 06/10] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 47bf536b8ed1..c0e300a8b2a4 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -11,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall ${wrksrc}/dutch-2.20.19/hunspell/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall ${wrksrc}/dutch-2.20.19/hunspell/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From e2cfe6a094b5dfa573572250e1a75f25670b0e42 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 01:31:25 +0100
Subject: [PATCH 07/10] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index c0e300a8b2a4..aaa30c0fcc43 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -11,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell nl_NL.aff
+	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell nl_NL.dic
 }

From 95abb556b9caa2a6edba0024d1a3be12434e31f2 Mon Sep 17 00:00:00 2001
From: numerys <g@numerys.net>
Date: Mon, 6 Feb 2023 02:10:35 +0100
Subject: [PATCH 08/10] Update srcpkgs/hunspell-nl_NL/template

Co-authored-by: classabbyamp <5366828+classabbyamp@users.noreply.github.com>
---
 srcpkgs/hunspell-nl_NL/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index aaa30c0fcc43..a6830858bb44 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -11,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell nl_NL.aff
-	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell nl_NL.dic
+	vinstall nl.aff 644 /usr/share/hunspell nl_NL.aff
+	vinstall nl.dic 644 /usr/share/hunspell nl_NL.dic
 }

From a5636bee0d13275bddf45e5acae3bc5bae42cb86 Mon Sep 17 00:00:00 2001
From: numerys <g@numerys.net>
Date: Mon, 6 Feb 2023 02:11:15 +0100
Subject: [PATCH 09/10] Update srcpkgs/hunspell-nl_NL/template

Co-authored-by: classabbyamp <5366828+classabbyamp@users.noreply.github.com>
---
 srcpkgs/hunspell-nl_NL/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index a6830858bb44..0ab603143d04 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -7,7 +7,7 @@ short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
 license="Revised BSD License and/or CC BY 3.0"
 homepage="https://www.opentaal.org/"
-distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/${version}.tar.gz"
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {

From 4a380d7213b730345a8816705445d792efa7df2c Mon Sep 17 00:00:00 2001
From: numerys <g@numerys.net>
Date: Mon, 6 Feb 2023 02:11:36 +0100
Subject: [PATCH 10/10] Update srcpkgs/hunspell-nl_NL/template

Co-authored-by: classabbyamp <5366828+classabbyamp@users.noreply.github.com>
---
 srcpkgs/hunspell-nl_NL/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 0ab603143d04..db188883c430 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -1,7 +1,7 @@
 # Template file for 'hunspell-nl_NL'
 pkgname=hunspell-nl_NL
 version=2.20.19
-revision=0
+revision=1
 create_wrksrc=yes
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"

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

* Re: [PR PATCH] [Updated] Dutchhunspell
  2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
                   ` (8 preceding siblings ...)
  2023-02-06  1:11 ` numerys
@ 2023-02-06  1:11 ` numerys
  2023-02-06  1:12 ` numerys
                   ` (16 subsequent siblings)
  26 siblings, 0 replies; 28+ messages in thread
From: numerys @ 2023-02-06  1:11 UTC (permalink / raw)
  To: ml

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

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

https://github.com/numerys/void-packages dutchhunspell
https://github.com/void-linux/void-packages/pull/42103

Dutchhunspell
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: YES

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): YES

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
No architecture dependency

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

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

From 26a01da8b1267006f3da0e879d73e58a760b076c Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Sun, 5 Feb 2023 22:48:39 +0100
Subject: [PATCH 01/11] Added dutch dict for hunspell

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

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
new file mode 100644
index 000000000000..b5f34ce205b8
--- /dev/null
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -0,0 +1,15 @@
+# Template file for 'hunspell-nl_NL'
+pkgname=hunspell-nl_NL
+version=2.20.19
+revision=2
+short_desc="Dutch nl_NL dictionary for hunspell"
+maintainer="Goran Vukoman <g@numerys.net>"
+license="Revised BSD License and/or CC BY 3.0"
+homepage="https://www.opentaal.org/"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
+
+do_install() {
+	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+}

From 7db0895b8fa0310aa71dc604ac6adbe323db0d8d Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 00:49:49 +0100
Subject: [PATCH 02/11] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 1 -
 1 file changed, 1 deletion(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index b5f34ce205b8..139aa1c38805 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -1,7 +1,6 @@
 # Template file for 'hunspell-nl_NL'
 pkgname=hunspell-nl_NL
 version=2.20.19
-revision=2
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
 license="Revised BSD License and/or CC BY 3.0"

From c328cdb4c68057f6cba5803a58134ddf213656bb Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 00:53:49 +0100
Subject: [PATCH 03/11] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 139aa1c38805..592e878b5f84 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -1,6 +1,7 @@
 # Template file for 'hunspell-nl_NL'
 pkgname=hunspell-nl_NL
 version=2.20.19
+revision=0
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
 license="Revised BSD License and/or CC BY 3.0"
@@ -9,6 +10,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall opentaal-hunspell-2.20.19_0/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-2.20.19_0/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From 4ec7941f1fa633a4b6f12294c965c1ac5f50d6c4 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 01:00:52 +0100
Subject: [PATCH 04/11] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 592e878b5f84..73409bead55e 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -2,6 +2,7 @@
 pkgname=hunspell-nl_NL
 version=2.20.19
 revision=0
+create_wrksrc=yes
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
 license="Revised BSD License and/or CC BY 3.0"
@@ -10,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall opentaal-hunspell-2.20.19_0/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall opentaal-hunspell-2.20.19_0/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall ${wrksrc}/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall ${wrksrc}/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From 4e1a9d5d07ed6f1ccfc28112f0251dd127d885a1 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 01:10:11 +0100
Subject: [PATCH 05/11] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 73409bead55e..47bf536b8ed1 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -11,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall ${wrksrc}/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall ${wrksrc}/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall ${wrksrc}/dutch-2.20.19/hunspell/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall ${wrksrc}/dutch-2.20.19/hunspell/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From 00cb5a9f42d992d40444a642350d1f24fdf07531 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 01:20:09 +0100
Subject: [PATCH 06/11] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 47bf536b8ed1..c0e300a8b2a4 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -11,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall ${wrksrc}/dutch-2.20.19/hunspell/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall ${wrksrc}/dutch-2.20.19/hunspell/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From e2cfe6a094b5dfa573572250e1a75f25670b0e42 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 01:31:25 +0100
Subject: [PATCH 07/11] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index c0e300a8b2a4..aaa30c0fcc43 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -11,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell nl_NL.aff
+	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell nl_NL.dic
 }

From 95abb556b9caa2a6edba0024d1a3be12434e31f2 Mon Sep 17 00:00:00 2001
From: numerys <g@numerys.net>
Date: Mon, 6 Feb 2023 02:10:35 +0100
Subject: [PATCH 08/11] Update srcpkgs/hunspell-nl_NL/template

Co-authored-by: classabbyamp <5366828+classabbyamp@users.noreply.github.com>
---
 srcpkgs/hunspell-nl_NL/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index aaa30c0fcc43..a6830858bb44 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -11,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell nl_NL.aff
-	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell nl_NL.dic
+	vinstall nl.aff 644 /usr/share/hunspell nl_NL.aff
+	vinstall nl.dic 644 /usr/share/hunspell nl_NL.dic
 }

From a5636bee0d13275bddf45e5acae3bc5bae42cb86 Mon Sep 17 00:00:00 2001
From: numerys <g@numerys.net>
Date: Mon, 6 Feb 2023 02:11:15 +0100
Subject: [PATCH 09/11] Update srcpkgs/hunspell-nl_NL/template

Co-authored-by: classabbyamp <5366828+classabbyamp@users.noreply.github.com>
---
 srcpkgs/hunspell-nl_NL/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index a6830858bb44..0ab603143d04 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -7,7 +7,7 @@ short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
 license="Revised BSD License and/or CC BY 3.0"
 homepage="https://www.opentaal.org/"
-distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/${version}.tar.gz"
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {

From 4a380d7213b730345a8816705445d792efa7df2c Mon Sep 17 00:00:00 2001
From: numerys <g@numerys.net>
Date: Mon, 6 Feb 2023 02:11:36 +0100
Subject: [PATCH 10/11] Update srcpkgs/hunspell-nl_NL/template

Co-authored-by: classabbyamp <5366828+classabbyamp@users.noreply.github.com>
---
 srcpkgs/hunspell-nl_NL/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 0ab603143d04..db188883c430 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -1,7 +1,7 @@
 # Template file for 'hunspell-nl_NL'
 pkgname=hunspell-nl_NL
 version=2.20.19
-revision=0
+revision=1
 create_wrksrc=yes
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"

From 0917023822a2877855cb90433974a7407325a3e7 Mon Sep 17 00:00:00 2001
From: numerys <g@numerys.net>
Date: Mon, 6 Feb 2023 02:11:52 +0100
Subject: [PATCH 11/11] Update srcpkgs/hunspell-nl_NL/template

Co-authored-by: classabbyamp <5366828+classabbyamp@users.noreply.github.com>
---
 srcpkgs/hunspell-nl_NL/template | 1 -
 1 file changed, 1 deletion(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index db188883c430..ccd30ce25b36 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-nl_NL
 version=2.20.19
 revision=1
-create_wrksrc=yes
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
 license="Revised BSD License and/or CC BY 3.0"

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

* Re: [PR PATCH] [Updated] Dutchhunspell
  2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
                   ` (9 preceding siblings ...)
  2023-02-06  1:11 ` numerys
@ 2023-02-06  1:12 ` numerys
  2023-02-06  1:39 ` numerys
                   ` (15 subsequent siblings)
  26 siblings, 0 replies; 28+ messages in thread
From: numerys @ 2023-02-06  1:12 UTC (permalink / raw)
  To: ml

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

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

https://github.com/numerys/void-packages dutchhunspell
https://github.com/void-linux/void-packages/pull/42103

Dutchhunspell
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: YES

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): YES

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
No architecture dependency

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

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

From 26a01da8b1267006f3da0e879d73e58a760b076c Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Sun, 5 Feb 2023 22:48:39 +0100
Subject: [PATCH 01/12] Added dutch dict for hunspell

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

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
new file mode 100644
index 000000000000..b5f34ce205b8
--- /dev/null
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -0,0 +1,15 @@
+# Template file for 'hunspell-nl_NL'
+pkgname=hunspell-nl_NL
+version=2.20.19
+revision=2
+short_desc="Dutch nl_NL dictionary for hunspell"
+maintainer="Goran Vukoman <g@numerys.net>"
+license="Revised BSD License and/or CC BY 3.0"
+homepage="https://www.opentaal.org/"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
+
+do_install() {
+	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+}

From 7db0895b8fa0310aa71dc604ac6adbe323db0d8d Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 00:49:49 +0100
Subject: [PATCH 02/12] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 1 -
 1 file changed, 1 deletion(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index b5f34ce205b8..139aa1c38805 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -1,7 +1,6 @@
 # Template file for 'hunspell-nl_NL'
 pkgname=hunspell-nl_NL
 version=2.20.19
-revision=2
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
 license="Revised BSD License and/or CC BY 3.0"

From c328cdb4c68057f6cba5803a58134ddf213656bb Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 00:53:49 +0100
Subject: [PATCH 03/12] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 139aa1c38805..592e878b5f84 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -1,6 +1,7 @@
 # Template file for 'hunspell-nl_NL'
 pkgname=hunspell-nl_NL
 version=2.20.19
+revision=0
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
 license="Revised BSD License and/or CC BY 3.0"
@@ -9,6 +10,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall opentaal-hunspell-2.20.19_0/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-2.20.19_0/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From 4ec7941f1fa633a4b6f12294c965c1ac5f50d6c4 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 01:00:52 +0100
Subject: [PATCH 04/12] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 592e878b5f84..73409bead55e 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -2,6 +2,7 @@
 pkgname=hunspell-nl_NL
 version=2.20.19
 revision=0
+create_wrksrc=yes
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
 license="Revised BSD License and/or CC BY 3.0"
@@ -10,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall opentaal-hunspell-2.20.19_0/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall opentaal-hunspell-2.20.19_0/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall ${wrksrc}/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall ${wrksrc}/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From 4e1a9d5d07ed6f1ccfc28112f0251dd127d885a1 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 01:10:11 +0100
Subject: [PATCH 05/12] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 73409bead55e..47bf536b8ed1 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -11,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall ${wrksrc}/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall ${wrksrc}/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall ${wrksrc}/dutch-2.20.19/hunspell/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall ${wrksrc}/dutch-2.20.19/hunspell/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From 00cb5a9f42d992d40444a642350d1f24fdf07531 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 01:20:09 +0100
Subject: [PATCH 06/12] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 47bf536b8ed1..c0e300a8b2a4 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -11,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall ${wrksrc}/dutch-2.20.19/hunspell/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall ${wrksrc}/dutch-2.20.19/hunspell/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From e2cfe6a094b5dfa573572250e1a75f25670b0e42 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 01:31:25 +0100
Subject: [PATCH 07/12] Fixed a bug in template

---
 srcpkgs/hunspell-nl_NL/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index c0e300a8b2a4..aaa30c0fcc43 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -11,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell nl_NL.aff
+	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell nl_NL.dic
 }

From 95abb556b9caa2a6edba0024d1a3be12434e31f2 Mon Sep 17 00:00:00 2001
From: numerys <g@numerys.net>
Date: Mon, 6 Feb 2023 02:10:35 +0100
Subject: [PATCH 08/12] Update srcpkgs/hunspell-nl_NL/template

Co-authored-by: classabbyamp <5366828+classabbyamp@users.noreply.github.com>
---
 srcpkgs/hunspell-nl_NL/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index aaa30c0fcc43..a6830858bb44 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -11,6 +11,6 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell nl_NL.aff
-	vinstall ${wrksrc}/opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell nl_NL.dic
+	vinstall nl.aff 644 /usr/share/hunspell nl_NL.aff
+	vinstall nl.dic 644 /usr/share/hunspell nl_NL.dic
 }

From a5636bee0d13275bddf45e5acae3bc5bae42cb86 Mon Sep 17 00:00:00 2001
From: numerys <g@numerys.net>
Date: Mon, 6 Feb 2023 02:11:15 +0100
Subject: [PATCH 09/12] Update srcpkgs/hunspell-nl_NL/template

Co-authored-by: classabbyamp <5366828+classabbyamp@users.noreply.github.com>
---
 srcpkgs/hunspell-nl_NL/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index a6830858bb44..0ab603143d04 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -7,7 +7,7 @@ short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
 license="Revised BSD License and/or CC BY 3.0"
 homepage="https://www.opentaal.org/"
-distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/${version}.tar.gz"
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {

From 4a380d7213b730345a8816705445d792efa7df2c Mon Sep 17 00:00:00 2001
From: numerys <g@numerys.net>
Date: Mon, 6 Feb 2023 02:11:36 +0100
Subject: [PATCH 10/12] Update srcpkgs/hunspell-nl_NL/template

Co-authored-by: classabbyamp <5366828+classabbyamp@users.noreply.github.com>
---
 srcpkgs/hunspell-nl_NL/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 0ab603143d04..db188883c430 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -1,7 +1,7 @@
 # Template file for 'hunspell-nl_NL'
 pkgname=hunspell-nl_NL
 version=2.20.19
-revision=0
+revision=1
 create_wrksrc=yes
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"

From 0917023822a2877855cb90433974a7407325a3e7 Mon Sep 17 00:00:00 2001
From: numerys <g@numerys.net>
Date: Mon, 6 Feb 2023 02:11:52 +0100
Subject: [PATCH 11/12] Update srcpkgs/hunspell-nl_NL/template

Co-authored-by: classabbyamp <5366828+classabbyamp@users.noreply.github.com>
---
 srcpkgs/hunspell-nl_NL/template | 1 -
 1 file changed, 1 deletion(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index db188883c430..ccd30ce25b36 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-nl_NL
 version=2.20.19
 revision=1
-create_wrksrc=yes
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
 license="Revised BSD License and/or CC BY 3.0"

From 42524ba2d9cd02f6d548fd7a74bcbc62be79fbf0 Mon Sep 17 00:00:00 2001
From: numerys <g@numerys.net>
Date: Mon, 6 Feb 2023 02:12:10 +0100
Subject: [PATCH 12/12] Update srcpkgs/hunspell-nl_NL/template

Co-authored-by: classabbyamp <5366828+classabbyamp@users.noreply.github.com>
---
 srcpkgs/hunspell-nl_NL/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index ccd30ce25b36..7cec00aa7fbe 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -4,7 +4,7 @@ version=2.20.19
 revision=1
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
-license="Revised BSD License and/or CC BY 3.0"
+license="BSD-3-Clause, CC-BY-3.0"
 homepage="https://www.opentaal.org/"
 distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/${version}.tar.gz"
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87

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

* Re: [PR PATCH] [Updated] Dutchhunspell
  2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
                   ` (10 preceding siblings ...)
  2023-02-06  1:12 ` numerys
@ 2023-02-06  1:39 ` numerys
  2023-02-06  1:53 ` numerys
                   ` (14 subsequent siblings)
  26 siblings, 0 replies; 28+ messages in thread
From: numerys @ 2023-02-06  1:39 UTC (permalink / raw)
  To: ml

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

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

https://github.com/numerys/void-packages dutchhunspell
https://github.com/void-linux/void-packages/pull/42103

Dutchhunspell
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: YES

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): YES

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
No architecture dependency

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

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

From 26a01da8b1267006f3da0e879d73e58a760b076c Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Sun, 5 Feb 2023 22:48:39 +0100
Subject: [PATCH] Added dutch dict for hunspell

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

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
new file mode 100644
index 000000000000..b5f34ce205b8
--- /dev/null
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -0,0 +1,15 @@
+# Template file for 'hunspell-nl_NL'
+pkgname=hunspell-nl_NL
+version=2.20.19
+revision=2
+short_desc="Dutch nl_NL dictionary for hunspell"
+maintainer="Goran Vukoman <g@numerys.net>"
+license="Revised BSD License and/or CC BY 3.0"
+homepage="https://www.opentaal.org/"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
+
+do_install() {
+	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+}

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

* Re: [PR PATCH] [Updated] Dutchhunspell
  2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
                   ` (11 preceding siblings ...)
  2023-02-06  1:39 ` numerys
@ 2023-02-06  1:53 ` numerys
  2023-02-06  2:02 ` numerys
                   ` (13 subsequent siblings)
  26 siblings, 0 replies; 28+ messages in thread
From: numerys @ 2023-02-06  1:53 UTC (permalink / raw)
  To: ml

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

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

https://github.com/numerys/void-packages dutchhunspell
https://github.com/void-linux/void-packages/pull/42103

Dutchhunspell
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: YES

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): YES

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
No architecture dependency

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

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

From e3ac9a2140797d512414ebf0a851229a3d227842 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Sun, 5 Feb 2023 22:48:39 +0100
Subject: [PATCH] New package: hunspell-nl_NL-2.20.19.

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

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
new file mode 100644
index 000000000000..b5f34ce205b8
--- /dev/null
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -0,0 +1,15 @@
+# Template file for 'hunspell-nl_NL'
+pkgname=hunspell-nl_NL
+version=2.20.19
+revision=2
+short_desc="Dutch nl_NL dictionary for hunspell"
+maintainer="Goran Vukoman <g@numerys.net>"
+license="Revised BSD License and/or CC BY 3.0"
+homepage="https://www.opentaal.org/"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
+
+do_install() {
+	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+}

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

* Re: [PR PATCH] [Updated] Dutchhunspell
  2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
                   ` (12 preceding siblings ...)
  2023-02-06  1:53 ` numerys
@ 2023-02-06  2:02 ` numerys
  2023-02-06  2:09 ` numerys
                   ` (12 subsequent siblings)
  26 siblings, 0 replies; 28+ messages in thread
From: numerys @ 2023-02-06  2:02 UTC (permalink / raw)
  To: ml

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

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

https://github.com/numerys/void-packages dutchhunspell
https://github.com/void-linux/void-packages/pull/42103

Dutchhunspell
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: YES

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): YES

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
No architecture dependency

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

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

From e3ac9a2140797d512414ebf0a851229a3d227842 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Sun, 5 Feb 2023 22:48:39 +0100
Subject: [PATCH 1/2] New package: hunspell-nl_NL-2.20.19.

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

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
new file mode 100644
index 000000000000..b5f34ce205b8
--- /dev/null
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -0,0 +1,15 @@
+# Template file for 'hunspell-nl_NL'
+pkgname=hunspell-nl_NL
+version=2.20.19
+revision=2
+short_desc="Dutch nl_NL dictionary for hunspell"
+maintainer="Goran Vukoman <g@numerys.net>"
+license="Revised BSD License and/or CC BY 3.0"
+homepage="https://www.opentaal.org/"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
+
+do_install() {
+	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+}

From baeeab0d02b59374d128d1fc7b3a417116c747b4 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 03:03:47 +0100
Subject: [PATCH 2/2] New package: hunspell-nl_NL-2.20.19.

---
 srcpkgs/hunspell-nl_NL/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index b5f34ce205b8..82bf20f3d392 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -1,15 +1,15 @@
 # Template file for 'hunspell-nl_NL'
 pkgname=hunspell-nl_NL
 version=2.20.19
-revision=2
+revision=1
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
-license="Revised BSD License and/or CC BY 3.0"
+license="BSD-3-Clause, CC-BY-3.0"
 homepage="https://www.opentaal.org/"
-distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/${version}.tar.gz"
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

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

* Re: [PR PATCH] [Updated] Dutchhunspell
  2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
                   ` (13 preceding siblings ...)
  2023-02-06  2:02 ` numerys
@ 2023-02-06  2:09 ` numerys
  2023-02-06 13:22 ` numerys
                   ` (11 subsequent siblings)
  26 siblings, 0 replies; 28+ messages in thread
From: numerys @ 2023-02-06  2:09 UTC (permalink / raw)
  To: ml

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

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

https://github.com/numerys/void-packages dutchhunspell
https://github.com/void-linux/void-packages/pull/42103

Dutchhunspell
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: YES

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): YES

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
No architecture dependency

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

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

From fcc73f871ac4266caf31978ec28907235ba1a6c1 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Sun, 5 Feb 2023 22:48:39 +0100
Subject: [PATCH] New package: hunspell-nl_NL-2.20.19.

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

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
new file mode 100644
index 000000000000..b5f34ce205b8
--- /dev/null
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -0,0 +1,15 @@
+# Template file for 'hunspell-nl_NL'
+pkgname=hunspell-nl_NL
+version=2.20.19
+revision=2
+short_desc="Dutch nl_NL dictionary for hunspell"
+maintainer="Goran Vukoman <g@numerys.net>"
+license="Revised BSD License and/or CC BY 3.0"
+homepage="https://www.opentaal.org/"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
+
+do_install() {
+	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+}

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

* Re: [PR PATCH] [Updated] Dutchhunspell
  2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
                   ` (14 preceding siblings ...)
  2023-02-06  2:09 ` numerys
@ 2023-02-06 13:22 ` numerys
  2023-02-06 13:49 ` numerys
                   ` (10 subsequent siblings)
  26 siblings, 0 replies; 28+ messages in thread
From: numerys @ 2023-02-06 13:22 UTC (permalink / raw)
  To: ml

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

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

https://github.com/numerys/void-packages dutchhunspell
https://github.com/void-linux/void-packages/pull/42103

Dutchhunspell
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: YES

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): YES

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
No architecture dependency

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

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

From fcc73f871ac4266caf31978ec28907235ba1a6c1 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Sun, 5 Feb 2023 22:48:39 +0100
Subject: [PATCH 1/2] New package: hunspell-nl_NL-2.20.19.

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

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
new file mode 100644
index 000000000000..b5f34ce205b8
--- /dev/null
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -0,0 +1,15 @@
+# Template file for 'hunspell-nl_NL'
+pkgname=hunspell-nl_NL
+version=2.20.19
+revision=2
+short_desc="Dutch nl_NL dictionary for hunspell"
+maintainer="Goran Vukoman <g@numerys.net>"
+license="Revised BSD License and/or CC BY 3.0"
+homepage="https://www.opentaal.org/"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
+
+do_install() {
+	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+}

From b64c715dedf3e47c4efc5744c5f747ef583ac3f3 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 14:23:53 +0100
Subject: [PATCH 2/2] New package: hunspell-nl_NL-2.20.19.

---
 srcpkgs/hunspell-nl_NL/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index b5f34ce205b8..142b8891fc95 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -1,15 +1,15 @@
 # Template file for 'hunspell-nl_NL'
 pkgname=hunspell-nl_NL
 version=2.20.19
-revision=2
+revision=1
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
-license="Revised BSD License and/or CC BY 3.0"
+license="BSD-3-Clause, CC-BY-3.0"
 homepage="https://www.opentaal.org/"
-distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/${version}tar.gz"
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall opentaal-hunspell-${version}/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-${version}/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

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

* Re: [PR PATCH] [Updated] Dutchhunspell
  2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
                   ` (15 preceding siblings ...)
  2023-02-06 13:22 ` numerys
@ 2023-02-06 13:49 ` numerys
  2023-02-06 13:50 ` numerys
                   ` (9 subsequent siblings)
  26 siblings, 0 replies; 28+ messages in thread
From: numerys @ 2023-02-06 13:49 UTC (permalink / raw)
  To: ml

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

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

https://github.com/numerys/void-packages dutchhunspell
https://github.com/void-linux/void-packages/pull/42103

Dutchhunspell
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: YES

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): YES

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
No architecture dependency

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

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

From fcc73f871ac4266caf31978ec28907235ba1a6c1 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Sun, 5 Feb 2023 22:48:39 +0100
Subject: [PATCH 1/3] New package: hunspell-nl_NL-2.20.19.

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

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
new file mode 100644
index 000000000000..b5f34ce205b8
--- /dev/null
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -0,0 +1,15 @@
+# Template file for 'hunspell-nl_NL'
+pkgname=hunspell-nl_NL
+version=2.20.19
+revision=2
+short_desc="Dutch nl_NL dictionary for hunspell"
+maintainer="Goran Vukoman <g@numerys.net>"
+license="Revised BSD License and/or CC BY 3.0"
+homepage="https://www.opentaal.org/"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
+
+do_install() {
+	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+}

From b64c715dedf3e47c4efc5744c5f747ef583ac3f3 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 14:23:53 +0100
Subject: [PATCH 2/3] New package: hunspell-nl_NL-2.20.19.

---
 srcpkgs/hunspell-nl_NL/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index b5f34ce205b8..142b8891fc95 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -1,15 +1,15 @@
 # Template file for 'hunspell-nl_NL'
 pkgname=hunspell-nl_NL
 version=2.20.19
-revision=2
+revision=1
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
-license="Revised BSD License and/or CC BY 3.0"
+license="BSD-3-Clause, CC-BY-3.0"
 homepage="https://www.opentaal.org/"
-distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/${version}tar.gz"
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall opentaal-hunspell-${version}/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-${version}/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From dd75c4522ae1a2a51cea91b5da77a78ddacb34b2 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 14:50:56 +0100
Subject: [PATCH 3/3] New package: hunspell-nl_NL-2.20.19.

---
 srcpkgs/hunspell-nl_NL/template | 1 +
 1 file changed, 1 insertion(+)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 142b8891fc95..c16169eab2e2 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -12,4 +12,5 @@ checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 do_install() {
 	vinstall opentaal-hunspell-${version}/nl.aff 644 /usr/share/hunspell/nl_NL.aff
 	vinstall opentaal-hunspell-${version}/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vlicense opentaal-hunspell-${version}/LICENSE.txt
 }

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

* Re: [PR PATCH] [Updated] Dutchhunspell
  2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
                   ` (16 preceding siblings ...)
  2023-02-06 13:49 ` numerys
@ 2023-02-06 13:50 ` numerys
  2023-02-06 13:54 ` numerys
                   ` (8 subsequent siblings)
  26 siblings, 0 replies; 28+ messages in thread
From: numerys @ 2023-02-06 13:50 UTC (permalink / raw)
  To: ml

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

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

https://github.com/numerys/void-packages dutchhunspell
https://github.com/void-linux/void-packages/pull/42103

Dutchhunspell
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: YES

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): YES

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
No architecture dependency

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

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

From fcc73f871ac4266caf31978ec28907235ba1a6c1 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Sun, 5 Feb 2023 22:48:39 +0100
Subject: [PATCH 1/4] New package: hunspell-nl_NL-2.20.19.

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

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
new file mode 100644
index 000000000000..b5f34ce205b8
--- /dev/null
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -0,0 +1,15 @@
+# Template file for 'hunspell-nl_NL'
+pkgname=hunspell-nl_NL
+version=2.20.19
+revision=2
+short_desc="Dutch nl_NL dictionary for hunspell"
+maintainer="Goran Vukoman <g@numerys.net>"
+license="Revised BSD License and/or CC BY 3.0"
+homepage="https://www.opentaal.org/"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
+
+do_install() {
+	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+}

From b64c715dedf3e47c4efc5744c5f747ef583ac3f3 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 14:23:53 +0100
Subject: [PATCH 2/4] New package: hunspell-nl_NL-2.20.19.

---
 srcpkgs/hunspell-nl_NL/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index b5f34ce205b8..142b8891fc95 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -1,15 +1,15 @@
 # Template file for 'hunspell-nl_NL'
 pkgname=hunspell-nl_NL
 version=2.20.19
-revision=2
+revision=1
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
-license="Revised BSD License and/or CC BY 3.0"
+license="BSD-3-Clause, CC-BY-3.0"
 homepage="https://www.opentaal.org/"
-distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/${version}tar.gz"
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall opentaal-hunspell-${version}/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-${version}/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From dd75c4522ae1a2a51cea91b5da77a78ddacb34b2 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 14:50:56 +0100
Subject: [PATCH 3/4] New package: hunspell-nl_NL-2.20.19.

---
 srcpkgs/hunspell-nl_NL/template | 1 +
 1 file changed, 1 insertion(+)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 142b8891fc95..c16169eab2e2 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -12,4 +12,5 @@ checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 do_install() {
 	vinstall opentaal-hunspell-${version}/nl.aff 644 /usr/share/hunspell/nl_NL.aff
 	vinstall opentaal-hunspell-${version}/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vlicense opentaal-hunspell-${version}/LICENSE.txt
 }

From 0a81d91f8de4c6e58792b0b77d7086395babbada Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 14:52:35 +0100
Subject: [PATCH 4/4] New package: hunspell-nl_NL-2.20.19.

---
 srcpkgs/hunspell-nl_NL/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index c16169eab2e2..540a67a2bf9e 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -6,7 +6,7 @@ short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
 license="BSD-3-Clause, CC-BY-3.0"
 homepage="https://www.opentaal.org/"
-distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/${version}tar.gz"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/${version}.tar.gz"
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {

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

* Re: [PR PATCH] [Updated] Dutchhunspell
  2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
                   ` (17 preceding siblings ...)
  2023-02-06 13:50 ` numerys
@ 2023-02-06 13:54 ` numerys
  2023-02-06 14:29 ` numerys
                   ` (7 subsequent siblings)
  26 siblings, 0 replies; 28+ messages in thread
From: numerys @ 2023-02-06 13:54 UTC (permalink / raw)
  To: ml

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

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

https://github.com/numerys/void-packages dutchhunspell
https://github.com/void-linux/void-packages/pull/42103

Dutchhunspell
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: YES

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): YES

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
No architecture dependency

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

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

From fcc73f871ac4266caf31978ec28907235ba1a6c1 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Sun, 5 Feb 2023 22:48:39 +0100
Subject: [PATCH 1/5] New package: hunspell-nl_NL-2.20.19.

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

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
new file mode 100644
index 000000000000..b5f34ce205b8
--- /dev/null
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -0,0 +1,15 @@
+# Template file for 'hunspell-nl_NL'
+pkgname=hunspell-nl_NL
+version=2.20.19
+revision=2
+short_desc="Dutch nl_NL dictionary for hunspell"
+maintainer="Goran Vukoman <g@numerys.net>"
+license="Revised BSD License and/or CC BY 3.0"
+homepage="https://www.opentaal.org/"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
+
+do_install() {
+	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+}

From b64c715dedf3e47c4efc5744c5f747ef583ac3f3 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 14:23:53 +0100
Subject: [PATCH 2/5] New package: hunspell-nl_NL-2.20.19.

---
 srcpkgs/hunspell-nl_NL/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index b5f34ce205b8..142b8891fc95 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -1,15 +1,15 @@
 # Template file for 'hunspell-nl_NL'
 pkgname=hunspell-nl_NL
 version=2.20.19
-revision=2
+revision=1
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
-license="Revised BSD License and/or CC BY 3.0"
+license="BSD-3-Clause, CC-BY-3.0"
 homepage="https://www.opentaal.org/"
-distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/${version}tar.gz"
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall opentaal-hunspell-${version}/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-${version}/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From dd75c4522ae1a2a51cea91b5da77a78ddacb34b2 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 14:50:56 +0100
Subject: [PATCH 3/5] New package: hunspell-nl_NL-2.20.19.

---
 srcpkgs/hunspell-nl_NL/template | 1 +
 1 file changed, 1 insertion(+)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 142b8891fc95..c16169eab2e2 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -12,4 +12,5 @@ checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 do_install() {
 	vinstall opentaal-hunspell-${version}/nl.aff 644 /usr/share/hunspell/nl_NL.aff
 	vinstall opentaal-hunspell-${version}/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vlicense opentaal-hunspell-${version}/LICENSE.txt
 }

From 0a81d91f8de4c6e58792b0b77d7086395babbada Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 14:52:35 +0100
Subject: [PATCH 4/5] New package: hunspell-nl_NL-2.20.19.

---
 srcpkgs/hunspell-nl_NL/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index c16169eab2e2..540a67a2bf9e 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -6,7 +6,7 @@ short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
 license="BSD-3-Clause, CC-BY-3.0"
 homepage="https://www.opentaal.org/"
-distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/${version}tar.gz"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/${version}.tar.gz"
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {

From edfe038f6d3469f57da9143710b436ba9cd1ac98 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 14:56:16 +0100
Subject: [PATCH 5/5] New package: hunspell-nl_NL-2.20.19.

---
 srcpkgs/hunspell-nl_NL/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 540a67a2bf9e..8bed0ecf30c4 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -10,7 +10,7 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/${ver
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall opentaal-hunspell-${version}/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall opentaal-hunspell-${version}/nl.dic 644 /usr/share/hunspell/nl_NL.dic
-	vlicense opentaal-hunspell-${version}/LICENSE.txt
+	vinstall ${pkgname}-${version}/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall ${pkgname}-${version}/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vlicense ${pkgname}-${version}/LICENSE.txt
 }

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

* Re: [PR PATCH] [Updated] Dutchhunspell
  2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
                   ` (18 preceding siblings ...)
  2023-02-06 13:54 ` numerys
@ 2023-02-06 14:29 ` numerys
  2023-02-06 14:35 ` numerys
                   ` (6 subsequent siblings)
  26 siblings, 0 replies; 28+ messages in thread
From: numerys @ 2023-02-06 14:29 UTC (permalink / raw)
  To: ml

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

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

https://github.com/numerys/void-packages dutchhunspell
https://github.com/void-linux/void-packages/pull/42103

Dutchhunspell
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: YES

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): YES

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
No architecture dependency

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

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

From fcc73f871ac4266caf31978ec28907235ba1a6c1 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Sun, 5 Feb 2023 22:48:39 +0100
Subject: [PATCH 1/6] New package: hunspell-nl_NL-2.20.19.

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

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
new file mode 100644
index 000000000000..b5f34ce205b8
--- /dev/null
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -0,0 +1,15 @@
+# Template file for 'hunspell-nl_NL'
+pkgname=hunspell-nl_NL
+version=2.20.19
+revision=2
+short_desc="Dutch nl_NL dictionary for hunspell"
+maintainer="Goran Vukoman <g@numerys.net>"
+license="Revised BSD License and/or CC BY 3.0"
+homepage="https://www.opentaal.org/"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
+
+do_install() {
+	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+}

From b64c715dedf3e47c4efc5744c5f747ef583ac3f3 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 14:23:53 +0100
Subject: [PATCH 2/6] New package: hunspell-nl_NL-2.20.19.

---
 srcpkgs/hunspell-nl_NL/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index b5f34ce205b8..142b8891fc95 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -1,15 +1,15 @@
 # Template file for 'hunspell-nl_NL'
 pkgname=hunspell-nl_NL
 version=2.20.19
-revision=2
+revision=1
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
-license="Revised BSD License and/or CC BY 3.0"
+license="BSD-3-Clause, CC-BY-3.0"
 homepage="https://www.opentaal.org/"
-distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/${version}tar.gz"
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall opentaal-hunspell-${version}/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-${version}/nl.dic 644 /usr/share/hunspell/nl_NL.dic
 }

From dd75c4522ae1a2a51cea91b5da77a78ddacb34b2 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 14:50:56 +0100
Subject: [PATCH 3/6] New package: hunspell-nl_NL-2.20.19.

---
 srcpkgs/hunspell-nl_NL/template | 1 +
 1 file changed, 1 insertion(+)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 142b8891fc95..c16169eab2e2 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -12,4 +12,5 @@ checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 do_install() {
 	vinstall opentaal-hunspell-${version}/nl.aff 644 /usr/share/hunspell/nl_NL.aff
 	vinstall opentaal-hunspell-${version}/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vlicense opentaal-hunspell-${version}/LICENSE.txt
 }

From 0a81d91f8de4c6e58792b0b77d7086395babbada Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 14:52:35 +0100
Subject: [PATCH 4/6] New package: hunspell-nl_NL-2.20.19.

---
 srcpkgs/hunspell-nl_NL/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index c16169eab2e2..540a67a2bf9e 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -6,7 +6,7 @@ short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
 license="BSD-3-Clause, CC-BY-3.0"
 homepage="https://www.opentaal.org/"
-distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/${version}tar.gz"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/${version}.tar.gz"
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {

From edfe038f6d3469f57da9143710b436ba9cd1ac98 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 14:56:16 +0100
Subject: [PATCH 5/6] New package: hunspell-nl_NL-2.20.19.

---
 srcpkgs/hunspell-nl_NL/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 540a67a2bf9e..8bed0ecf30c4 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -10,7 +10,7 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/${ver
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall opentaal-hunspell-${version}/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall opentaal-hunspell-${version}/nl.dic 644 /usr/share/hunspell/nl_NL.dic
-	vlicense opentaal-hunspell-${version}/LICENSE.txt
+	vinstall ${pkgname}-${version}/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall ${pkgname}-${version}/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vlicense ${pkgname}-${version}/LICENSE.txt
 }

From d5f8914575cfbaf3d0189d6b495763d7e2c34a3a Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 15:31:23 +0100
Subject: [PATCH 6/6] New package: hunspell-nl_NL-2.20.19.

---
 srcpkgs/hunspell-nl_NL/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index 8bed0ecf30c4..4dfe04804032 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -10,7 +10,7 @@ distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/${ver
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall ${pkgname}-${version}/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall ${pkgname}-${version}/nl.dic 644 /usr/share/hunspell/nl_NL.dic
-	vlicense ${pkgname}-${version}/LICENSE.txt
+	vinstall nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vlicense LICENSE.txt
 }

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

* Re: [PR PATCH] [Updated] Dutchhunspell
  2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
                   ` (19 preceding siblings ...)
  2023-02-06 14:29 ` numerys
@ 2023-02-06 14:35 ` numerys
  2023-02-06 14:46 ` numerys
                   ` (5 subsequent siblings)
  26 siblings, 0 replies; 28+ messages in thread
From: numerys @ 2023-02-06 14:35 UTC (permalink / raw)
  To: ml

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

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

https://github.com/numerys/void-packages dutchhunspell
https://github.com/void-linux/void-packages/pull/42103

Dutchhunspell
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: YES

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): YES

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
No architecture dependency

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

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

From fcc73f871ac4266caf31978ec28907235ba1a6c1 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Sun, 5 Feb 2023 22:48:39 +0100
Subject: [PATCH] New package: hunspell-nl_NL-2.20.19.

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

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
new file mode 100644
index 000000000000..b5f34ce205b8
--- /dev/null
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -0,0 +1,15 @@
+# Template file for 'hunspell-nl_NL'
+pkgname=hunspell-nl_NL
+version=2.20.19
+revision=2
+short_desc="Dutch nl_NL dictionary for hunspell"
+maintainer="Goran Vukoman <g@numerys.net>"
+license="Revised BSD License and/or CC BY 3.0"
+homepage="https://www.opentaal.org/"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
+
+do_install() {
+	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+}

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

* Re: [PR PATCH] [Updated] Dutchhunspell
  2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
                   ` (20 preceding siblings ...)
  2023-02-06 14:35 ` numerys
@ 2023-02-06 14:46 ` numerys
  2023-02-06 15:18 ` [PR REVIEW] Dutchhunspell classabbyamp
                   ` (4 subsequent siblings)
  26 siblings, 0 replies; 28+ messages in thread
From: numerys @ 2023-02-06 14:46 UTC (permalink / raw)
  To: ml

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

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

https://github.com/numerys/void-packages dutchhunspell
https://github.com/void-linux/void-packages/pull/42103

Dutchhunspell
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: YES

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): YES

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
No architecture dependency

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

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

From fcc73f871ac4266caf31978ec28907235ba1a6c1 Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Sun, 5 Feb 2023 22:48:39 +0100
Subject: [PATCH 1/2] New package: hunspell-nl_NL-2.20.19.

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

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
new file mode 100644
index 000000000000..b5f34ce205b8
--- /dev/null
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -0,0 +1,15 @@
+# Template file for 'hunspell-nl_NL'
+pkgname=hunspell-nl_NL
+version=2.20.19
+revision=2
+short_desc="Dutch nl_NL dictionary for hunspell"
+maintainer="Goran Vukoman <g@numerys.net>"
+license="Revised BSD License and/or CC BY 3.0"
+homepage="https://www.opentaal.org/"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
+
+do_install() {
+	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+}

From 942b81a3269784e4c304f63d179b69fd7e7637ba Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Mon, 6 Feb 2023 15:48:18 +0100
Subject: [PATCH 2/2] New package: hunspell-nl_NL-2.20.19.

---
 srcpkgs/hunspell-nl_NL/template | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
index b5f34ce205b8..4dfe04804032 100644
--- a/srcpkgs/hunspell-nl_NL/template
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -1,15 +1,16 @@
 # Template file for 'hunspell-nl_NL'
 pkgname=hunspell-nl_NL
 version=2.20.19
-revision=2
+revision=1
 short_desc="Dutch nl_NL dictionary for hunspell"
 maintainer="Goran Vukoman <g@numerys.net>"
-license="Revised BSD License and/or CC BY 3.0"
+license="BSD-3-Clause, CC-BY-3.0"
 homepage="https://www.opentaal.org/"
-distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/2.20.19.tar.gz"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/${version}.tar.gz"
 checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
 
 do_install() {
-	vinstall opentaal-hunspell-2.20.19/nl.aff 644 /usr/share/hunspell/nl_NL.aff
-	vinstall opentaal-hunspell-2.20.19/nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vinstall nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vlicense LICENSE.txt
 }

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

* Re: [PR REVIEW] Dutchhunspell
  2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
                   ` (21 preceding siblings ...)
  2023-02-06 14:46 ` numerys
@ 2023-02-06 15:18 ` classabbyamp
  2023-02-06 16:51 ` [PR PATCH] [Updated] Dutchhunspell numerys
                   ` (3 subsequent siblings)
  26 siblings, 0 replies; 28+ messages in thread
From: classabbyamp @ 2023-02-06 15:18 UTC (permalink / raw)
  To: ml

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

New review comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/42103#discussion_r1097523323

Comment:
```suggestion
	vinstall nl.aff 644 /usr/share/hunspell nl_NL.aff
	vinstall nl.dic 644 /usr/share/hunspell nl_NL.dic
```

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

* Re: [PR PATCH] [Updated] Dutchhunspell
  2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
                   ` (22 preceding siblings ...)
  2023-02-06 15:18 ` [PR REVIEW] Dutchhunspell classabbyamp
@ 2023-02-06 16:51 ` numerys
  2023-02-06 16:53 ` numerys
                   ` (2 subsequent siblings)
  26 siblings, 0 replies; 28+ messages in thread
From: numerys @ 2023-02-06 16:51 UTC (permalink / raw)
  To: ml

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

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

https://github.com/numerys/void-packages dutchhunspell
https://github.com/void-linux/void-packages/pull/42103

Dutchhunspell
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: YES

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): YES

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
No architecture dependency

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

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

From 6b45a0fbbc7b874d70dfd2fb25ef59ed1dce274d Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Sun, 5 Feb 2023 22:48:39 +0100
Subject: [PATCH] New package: hunspell-nl_NL-2.20.19.

---
 srcpkgs/hunspell-nl_NL/template | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 srcpkgs/hunspell-nl_NL/template

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
new file mode 100644
index 000000000000..4dfe04804032
--- /dev/null
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -0,0 +1,16 @@
+# Template file for 'hunspell-nl_NL'
+pkgname=hunspell-nl_NL
+version=2.20.19
+revision=1
+short_desc="Dutch nl_NL dictionary for hunspell"
+maintainer="Goran Vukoman <g@numerys.net>"
+license="BSD-3-Clause, CC-BY-3.0"
+homepage="https://www.opentaal.org/"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/${version}.tar.gz"
+checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
+
+do_install() {
+	vinstall nl.aff 644 /usr/share/hunspell/nl_NL.aff
+	vinstall nl.dic 644 /usr/share/hunspell/nl_NL.dic
+	vlicense LICENSE.txt
+}

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

* Re: [PR PATCH] [Updated] Dutchhunspell
  2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
                   ` (23 preceding siblings ...)
  2023-02-06 16:51 ` [PR PATCH] [Updated] Dutchhunspell numerys
@ 2023-02-06 16:53 ` numerys
  2023-02-06 17:07 ` [PR REVIEW] Dutchhunspell numerys
  2023-02-07  3:38 ` [PR PATCH] [Merged]: Dutchhunspell classabbyamp
  26 siblings, 0 replies; 28+ messages in thread
From: numerys @ 2023-02-06 16:53 UTC (permalink / raw)
  To: ml

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

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

https://github.com/numerys/void-packages dutchhunspell
https://github.com/void-linux/void-packages/pull/42103

Dutchhunspell
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: YES

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): YES

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
No architecture dependency

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

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

From c9625a5bf88818c1525b53dcd5b5cfba349c473a Mon Sep 17 00:00:00 2001
From: Goran Vukoman <g@numerys.net>
Date: Sun, 5 Feb 2023 22:48:39 +0100
Subject: [PATCH] New package: hunspell-nl_NL-2.20.19.

---
 srcpkgs/hunspell-nl_NL/template | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 srcpkgs/hunspell-nl_NL/template

diff --git a/srcpkgs/hunspell-nl_NL/template b/srcpkgs/hunspell-nl_NL/template
new file mode 100644
index 000000000000..e3d6a0dd93f1
--- /dev/null
+++ b/srcpkgs/hunspell-nl_NL/template
@@ -0,0 +1,16 @@
+# Template file for 'hunspell-nl_NL'
+pkgname=hunspell-nl_NL
+version=2.20.19
+revision=1
+short_desc="Dutch nl_NL dictionary for hunspell"
+maintainer="Goran Vukoman <g@numerys.net>"
+license="BSD-3-Clause, CC-BY-3.0"
+homepage="https://www.opentaal.org/"
+distfiles="https://github.com/OpenTaal/opentaal-hunspell/archive/refs/tags/${version}.tar.gz"
+checksum=0a86ec393450d7070bd69ee83f69c37ff27dbbc5fe684803375f113d7128bd87
+
+do_install() {
+	vinstall nl.aff 644 /usr/share/hunspell nl_NL.aff
+	vinstall nl.dic 644 /usr/share/hunspell nl_NL.dic
+	vlicense LICENSE.txt
+}

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

* Re: [PR REVIEW] Dutchhunspell
  2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
                   ` (24 preceding siblings ...)
  2023-02-06 16:53 ` numerys
@ 2023-02-06 17:07 ` numerys
  2023-02-07  3:38 ` [PR PATCH] [Merged]: Dutchhunspell classabbyamp
  26 siblings, 0 replies; 28+ messages in thread
From: numerys @ 2023-02-06 17:07 UTC (permalink / raw)
  To: ml

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

New review comment by numerys on void-packages repository

https://github.com/void-linux/void-packages/pull/42103#discussion_r1097669237

Comment:
Ok.

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

* Re: [PR PATCH] [Merged]: Dutchhunspell
  2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
                   ` (25 preceding siblings ...)
  2023-02-06 17:07 ` [PR REVIEW] Dutchhunspell numerys
@ 2023-02-07  3:38 ` classabbyamp
  26 siblings, 0 replies; 28+ messages in thread
From: classabbyamp @ 2023-02-07  3:38 UTC (permalink / raw)
  To: ml

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

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

Dutchhunspell
https://github.com/void-linux/void-packages/pull/42103

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: YES

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): YES

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
No architecture dependency

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

end of thread, other threads:[~2023-02-07  3:38 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-06  0:44 [PR PATCH] Dutchhunspell numerys
2023-02-06  0:48 ` Dutchhunspell abenson
2023-02-06  0:54 ` [PR REVIEW] Dutchhunspell classabbyamp
2023-02-06  0:54 ` classabbyamp
2023-02-06  0:54 ` classabbyamp
2023-02-06  0:54 ` classabbyamp
2023-02-06  0:54 ` classabbyamp
2023-02-06  1:10 ` [PR PATCH] [Updated] Dutchhunspell numerys
2023-02-06  1:11 ` numerys
2023-02-06  1:11 ` numerys
2023-02-06  1:11 ` numerys
2023-02-06  1:12 ` numerys
2023-02-06  1:39 ` numerys
2023-02-06  1:53 ` numerys
2023-02-06  2:02 ` numerys
2023-02-06  2:09 ` numerys
2023-02-06 13:22 ` numerys
2023-02-06 13:49 ` numerys
2023-02-06 13:50 ` numerys
2023-02-06 13:54 ` numerys
2023-02-06 14:29 ` numerys
2023-02-06 14:35 ` numerys
2023-02-06 14:46 ` numerys
2023-02-06 15:18 ` [PR REVIEW] Dutchhunspell classabbyamp
2023-02-06 16:51 ` [PR PATCH] [Updated] Dutchhunspell numerys
2023-02-06 16:53 ` numerys
2023-02-06 17:07 ` [PR REVIEW] Dutchhunspell numerys
2023-02-07  3:38 ` [PR PATCH] [Merged]: Dutchhunspell classabbyamp

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).