Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] Add nats
@ 2022-07-10 17:42 TeddyDD
  2022-07-10 17:43 ` [PR PATCH] [Updated] " TeddyDD
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: TeddyDD @ 2022-07-10 17:42 UTC (permalink / raw)
  To: ml

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

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

https://github.com/TeddyDD/void-packages-1 add-nats
https://github.com/void-linux/void-packages/pull/37982

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

Added nats-cli and nats-server

#### Testing the changes
- I tested the changes in this PR: **YES**
<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- 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
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From e14e3381612096bd8f36a0bdc17f44ab9d50d95c Mon Sep 17 00:00:00 2001
From: Daniel Lewan <vision360.daniel@gmail.com>
Date: Sun, 10 Jul 2022 14:37:50 +0200
Subject: [PATCH 1/2] New package: nats-0.0.33

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

diff --git a/srcpkgs/nats/template b/srcpkgs/nats/template
new file mode 100644
index 000000000000..4b9f6e044755
--- /dev/null
+++ b/srcpkgs/nats/template
@@ -0,0 +1,22 @@
+# Template file for 'nats'
+pkgname=nats
+version=0.0.33
+revision=1
+wrksrc="natscli-${version}"
+build_style=go
+build_helper=qemu
+go_import_path=github.com/nats-io/natscli/nats
+short_desc="Command line utility to interact with and manage NATS"
+maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
+license="Apache-2.0"
+homepage="https://nats.io/"
+distfiles="https://github.com/nats-io/natscli/archive/refs/tags/v${version}.tar.gz"
+checksum=7aa0d09eeb7a411bcdd6958a2957baec6bcac1faadb7477d5d2adf47c9c5819c
+
+post_install() {
+	for shell in bash zsh
+	do
+		vtargetrun $GOPATH/bin/nats --completion-script-$shell >completion.$shell
+		vcompletion completion.$shell $shell
+	done
+}

From f9de445a15d729258d49f19c2380c4a4d80ce4c2 Mon Sep 17 00:00:00 2001
From: Daniel Lewan <vision360.daniel@gmail.com>
Date: Sun, 10 Jul 2022 14:37:52 +0200
Subject: [PATCH 2/2] New package: nats-server-2.8.4

---
 srcpkgs/nats-server/template | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 srcpkgs/nats-server/template

diff --git a/srcpkgs/nats-server/template b/srcpkgs/nats-server/template
new file mode 100644
index 000000000000..691dc9b0527b
--- /dev/null
+++ b/srcpkgs/nats-server/template
@@ -0,0 +1,12 @@
+# Template file for 'nats-server'
+pkgname=nats-server
+version=2.8.4
+revision=1
+build_style=go
+go_import_path=github.com/nats-io/nats-server/v2
+short_desc="Server for NATS messaging system"
+maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
+license="Apache-2.0"
+homepage="https://nats.io/"
+distfiles="https://github.com/nats-io/nats-server/archive/v${version}.tar.gz"
+checksum=172c5d04c3867adcb6b2322d87d7f7029b63e9465fffffcf99d4ca652820635f

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

* Re: [PR PATCH] [Updated] Add nats
  2022-07-10 17:42 [PR PATCH] Add nats TeddyDD
@ 2022-07-10 17:43 ` TeddyDD
  2022-07-10 17:50 ` [PR PATCH] [Updated] New package: nats and nats-server TeddyDD
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: TeddyDD @ 2022-07-10 17:43 UTC (permalink / raw)
  To: ml

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

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

https://github.com/TeddyDD/void-packages-1 add-nats
https://github.com/void-linux/void-packages/pull/37982

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

Added nats-cli and nats-server

#### Testing the changes
- I tested the changes in this PR: **YES**
<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- 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
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From e14e3381612096bd8f36a0bdc17f44ab9d50d95c Mon Sep 17 00:00:00 2001
From: Daniel Lewan <vision360.daniel@gmail.com>
Date: Sun, 10 Jul 2022 14:37:50 +0200
Subject: [PATCH 1/2] New package: nats-0.0.33

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

diff --git a/srcpkgs/nats/template b/srcpkgs/nats/template
new file mode 100644
index 000000000000..4b9f6e044755
--- /dev/null
+++ b/srcpkgs/nats/template
@@ -0,0 +1,22 @@
+# Template file for 'nats'
+pkgname=nats
+version=0.0.33
+revision=1
+wrksrc="natscli-${version}"
+build_style=go
+build_helper=qemu
+go_import_path=github.com/nats-io/natscli/nats
+short_desc="Command line utility to interact with and manage NATS"
+maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
+license="Apache-2.0"
+homepage="https://nats.io/"
+distfiles="https://github.com/nats-io/natscli/archive/refs/tags/v${version}.tar.gz"
+checksum=7aa0d09eeb7a411bcdd6958a2957baec6bcac1faadb7477d5d2adf47c9c5819c
+
+post_install() {
+	for shell in bash zsh
+	do
+		vtargetrun $GOPATH/bin/nats --completion-script-$shell >completion.$shell
+		vcompletion completion.$shell $shell
+	done
+}

From 86b3b643a364c1d93425a02f77052a6112cf8e5b Mon Sep 17 00:00:00 2001
From: Daniel Lewan <vision360.daniel@gmail.com>
Date: Sun, 10 Jul 2022 14:37:52 +0200
Subject: [PATCH 2/2] New package: nats-server-2.8.4

---
 srcpkgs/nats-server/template | 12 ++++++++++++
 srcpkgs/nats/template        |  2 +-
 2 files changed, 13 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/nats-server/template

diff --git a/srcpkgs/nats-server/template b/srcpkgs/nats-server/template
new file mode 100644
index 000000000000..691dc9b0527b
--- /dev/null
+++ b/srcpkgs/nats-server/template
@@ -0,0 +1,12 @@
+# Template file for 'nats-server'
+pkgname=nats-server
+version=2.8.4
+revision=1
+build_style=go
+go_import_path=github.com/nats-io/nats-server/v2
+short_desc="Server for NATS messaging system"
+maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
+license="Apache-2.0"
+homepage="https://nats.io/"
+distfiles="https://github.com/nats-io/nats-server/archive/v${version}.tar.gz"
+checksum=172c5d04c3867adcb6b2322d87d7f7029b63e9465fffffcf99d4ca652820635f
diff --git a/srcpkgs/nats/template b/srcpkgs/nats/template
index 4b9f6e044755..b10cc7cc9927 100644
--- a/srcpkgs/nats/template
+++ b/srcpkgs/nats/template
@@ -10,7 +10,7 @@ short_desc="Command line utility to interact with and manage NATS"
 maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
 license="Apache-2.0"
 homepage="https://nats.io/"
-distfiles="https://github.com/nats-io/natscli/archive/refs/tags/v${version}.tar.gz"
+distfiles="https://github.com/nats-io/natscli/archive/v${version}.tar.gz"
 checksum=7aa0d09eeb7a411bcdd6958a2957baec6bcac1faadb7477d5d2adf47c9c5819c
 
 post_install() {

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

* Re: [PR PATCH] [Updated] New package: nats and nats-server
  2022-07-10 17:42 [PR PATCH] Add nats TeddyDD
  2022-07-10 17:43 ` [PR PATCH] [Updated] " TeddyDD
@ 2022-07-10 17:50 ` TeddyDD
  2022-07-10 19:14 ` TeddyDD
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: TeddyDD @ 2022-07-10 17:50 UTC (permalink / raw)
  To: ml

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

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

https://github.com/TeddyDD/void-packages-1 add-nats
https://github.com/void-linux/void-packages/pull/37982

New package: nats and nats-server
<!-- Uncomment relevant sections and delete options which are not applicable -->

Added nats-cli and nats-server

#### Testing the changes
- I tested the changes in this PR: **YES**
<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- 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
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From e14e3381612096bd8f36a0bdc17f44ab9d50d95c Mon Sep 17 00:00:00 2001
From: Daniel Lewan <vision360.daniel@gmail.com>
Date: Sun, 10 Jul 2022 14:37:50 +0200
Subject: [PATCH 1/2] New package: nats-0.0.33

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

diff --git a/srcpkgs/nats/template b/srcpkgs/nats/template
new file mode 100644
index 000000000000..4b9f6e044755
--- /dev/null
+++ b/srcpkgs/nats/template
@@ -0,0 +1,22 @@
+# Template file for 'nats'
+pkgname=nats
+version=0.0.33
+revision=1
+wrksrc="natscli-${version}"
+build_style=go
+build_helper=qemu
+go_import_path=github.com/nats-io/natscli/nats
+short_desc="Command line utility to interact with and manage NATS"
+maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
+license="Apache-2.0"
+homepage="https://nats.io/"
+distfiles="https://github.com/nats-io/natscli/archive/refs/tags/v${version}.tar.gz"
+checksum=7aa0d09eeb7a411bcdd6958a2957baec6bcac1faadb7477d5d2adf47c9c5819c
+
+post_install() {
+	for shell in bash zsh
+	do
+		vtargetrun $GOPATH/bin/nats --completion-script-$shell >completion.$shell
+		vcompletion completion.$shell $shell
+	done
+}

From 11dc7ae7e873adc12c981a0188dbb75f022fa41c Mon Sep 17 00:00:00 2001
From: Daniel Lewan <vision360.daniel@gmail.com>
Date: Sun, 10 Jul 2022 14:37:52 +0200
Subject: [PATCH 2/2] New package: nats-server-2.8.4

---
 srcpkgs/nats-server/template | 12 ++++++++++++
 srcpkgs/nats/template        |  3 ++-
 2 files changed, 14 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/nats-server/template

diff --git a/srcpkgs/nats-server/template b/srcpkgs/nats-server/template
new file mode 100644
index 000000000000..691dc9b0527b
--- /dev/null
+++ b/srcpkgs/nats-server/template
@@ -0,0 +1,12 @@
+# Template file for 'nats-server'
+pkgname=nats-server
+version=2.8.4
+revision=1
+build_style=go
+go_import_path=github.com/nats-io/nats-server/v2
+short_desc="Server for NATS messaging system"
+maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
+license="Apache-2.0"
+homepage="https://nats.io/"
+distfiles="https://github.com/nats-io/nats-server/archive/v${version}.tar.gz"
+checksum=172c5d04c3867adcb6b2322d87d7f7029b63e9465fffffcf99d4ca652820635f
diff --git a/srcpkgs/nats/template b/srcpkgs/nats/template
index 4b9f6e044755..dcb64b436097 100644
--- a/srcpkgs/nats/template
+++ b/srcpkgs/nats/template
@@ -6,11 +6,12 @@ wrksrc="natscli-${version}"
 build_style=go
 build_helper=qemu
 go_import_path=github.com/nats-io/natscli/nats
+go_ldflags="-X main.version=v${version}"
 short_desc="Command line utility to interact with and manage NATS"
 maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
 license="Apache-2.0"
 homepage="https://nats.io/"
-distfiles="https://github.com/nats-io/natscli/archive/refs/tags/v${version}.tar.gz"
+distfiles="https://github.com/nats-io/natscli/archive/v${version}.tar.gz"
 checksum=7aa0d09eeb7a411bcdd6958a2957baec6bcac1faadb7477d5d2adf47c9c5819c
 
 post_install() {

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

* Re: [PR PATCH] [Updated] New package: nats and nats-server
  2022-07-10 17:42 [PR PATCH] Add nats TeddyDD
  2022-07-10 17:43 ` [PR PATCH] [Updated] " TeddyDD
  2022-07-10 17:50 ` [PR PATCH] [Updated] New package: nats and nats-server TeddyDD
@ 2022-07-10 19:14 ` TeddyDD
  2022-07-10 19:20 ` TeddyDD
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: TeddyDD @ 2022-07-10 19:14 UTC (permalink / raw)
  To: ml

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

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

https://github.com/TeddyDD/void-packages-1 add-nats
https://github.com/void-linux/void-packages/pull/37982

New package: nats and nats-server
<!-- Uncomment relevant sections and delete options which are not applicable -->

Added nats-cli and nats-server

#### Testing the changes
- I tested the changes in this PR: **YES**
<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- 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
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From e14e3381612096bd8f36a0bdc17f44ab9d50d95c Mon Sep 17 00:00:00 2001
From: Daniel Lewan <vision360.daniel@gmail.com>
Date: Sun, 10 Jul 2022 14:37:50 +0200
Subject: [PATCH 1/2] New package: nats-0.0.33

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

diff --git a/srcpkgs/nats/template b/srcpkgs/nats/template
new file mode 100644
index 000000000000..4b9f6e044755
--- /dev/null
+++ b/srcpkgs/nats/template
@@ -0,0 +1,22 @@
+# Template file for 'nats'
+pkgname=nats
+version=0.0.33
+revision=1
+wrksrc="natscli-${version}"
+build_style=go
+build_helper=qemu
+go_import_path=github.com/nats-io/natscli/nats
+short_desc="Command line utility to interact with and manage NATS"
+maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
+license="Apache-2.0"
+homepage="https://nats.io/"
+distfiles="https://github.com/nats-io/natscli/archive/refs/tags/v${version}.tar.gz"
+checksum=7aa0d09eeb7a411bcdd6958a2957baec6bcac1faadb7477d5d2adf47c9c5819c
+
+post_install() {
+	for shell in bash zsh
+	do
+		vtargetrun $GOPATH/bin/nats --completion-script-$shell >completion.$shell
+		vcompletion completion.$shell $shell
+	done
+}

From a51728acbe097ea4e3afca813fc17ac3ddd08ea4 Mon Sep 17 00:00:00 2001
From: Daniel Lewan <vision360.daniel@gmail.com>
Date: Sun, 10 Jul 2022 14:37:52 +0200
Subject: [PATCH 2/2] New package: nats-server-2.8.4

---
 srcpkgs/nats-server/template | 12 ++++++++++++
 srcpkgs/nats/template        | 12 +++++++++---
 2 files changed, 21 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/nats-server/template

diff --git a/srcpkgs/nats-server/template b/srcpkgs/nats-server/template
new file mode 100644
index 000000000000..691dc9b0527b
--- /dev/null
+++ b/srcpkgs/nats-server/template
@@ -0,0 +1,12 @@
+# Template file for 'nats-server'
+pkgname=nats-server
+version=2.8.4
+revision=1
+build_style=go
+go_import_path=github.com/nats-io/nats-server/v2
+short_desc="Server for NATS messaging system"
+maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
+license="Apache-2.0"
+homepage="https://nats.io/"
+distfiles="https://github.com/nats-io/nats-server/archive/v${version}.tar.gz"
+checksum=172c5d04c3867adcb6b2322d87d7f7029b63e9465fffffcf99d4ca652820635f
diff --git a/srcpkgs/nats/template b/srcpkgs/nats/template
index 4b9f6e044755..291e40eaf08b 100644
--- a/srcpkgs/nats/template
+++ b/srcpkgs/nats/template
@@ -4,19 +4,25 @@ version=0.0.33
 revision=1
 wrksrc="natscli-${version}"
 build_style=go
-build_helper=qemu
 go_import_path=github.com/nats-io/natscli/nats
+go_ldflags="-X main.version=v${version}"
 short_desc="Command line utility to interact with and manage NATS"
 maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
 license="Apache-2.0"
 homepage="https://nats.io/"
-distfiles="https://github.com/nats-io/natscli/archive/refs/tags/v${version}.tar.gz"
+distfiles="https://github.com/nats-io/natscli/archive/v${version}.tar.gz"
 checksum=7aa0d09eeb7a411bcdd6958a2957baec6bcac1faadb7477d5d2adf47c9c5819c
 
+post_build() {
+	for shell in bash zsh
+	do
+		CGO_ENABLED=0 GOARCH='' go run nats/main.go --completion-script-$shell >completion.$shell
+	done
+}
+
 post_install() {
 	for shell in bash zsh
 	do
-		vtargetrun $GOPATH/bin/nats --completion-script-$shell >completion.$shell
 		vcompletion completion.$shell $shell
 	done
 }

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

* Re: [PR PATCH] [Updated] New package: nats and nats-server
  2022-07-10 17:42 [PR PATCH] Add nats TeddyDD
                   ` (2 preceding siblings ...)
  2022-07-10 19:14 ` TeddyDD
@ 2022-07-10 19:20 ` TeddyDD
  2022-09-29 12:32 ` TeddyDD
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: TeddyDD @ 2022-07-10 19:20 UTC (permalink / raw)
  To: ml

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

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

https://github.com/TeddyDD/void-packages-1 add-nats
https://github.com/void-linux/void-packages/pull/37982

New package: nats and nats-server
<!-- Uncomment relevant sections and delete options which are not applicable -->

Added nats-cli and nats-server

#### Testing the changes
- I tested the changes in this PR: **YES**
<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- 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
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From 78ae3051d7f5ff224b2fbe925612842041b96b04 Mon Sep 17 00:00:00 2001
From: Daniel Lewan <vision360.daniel@gmail.com>
Date: Sun, 10 Jul 2022 14:37:50 +0200
Subject: [PATCH 1/2] New package: nats-0.0.33

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

diff --git a/srcpkgs/nats/template b/srcpkgs/nats/template
new file mode 100644
index 000000000000..bd7ed5519553
--- /dev/null
+++ b/srcpkgs/nats/template
@@ -0,0 +1,28 @@
+# Template file for 'nats'
+pkgname=nats
+version=0.0.33
+revision=1
+wrksrc="natscli-${version}"
+build_style=go
+go_import_path=github.com/nats-io/natscli/nats
+go_ldflags="-X main.version=v${version}"
+short_desc="Command line utility to interact with and manage NATS"
+maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
+license="Apache-2.0"
+homepage="https://nats.io/"
+distfiles="https://github.com/nats-io/natscli/archive/v${version}.tar.gz"
+checksum=7aa0d09eeb7a411bcdd6958a2957baec6bcac1faadb7477d5d2adf47c9c5819c
+
+pre_build() {
+	for shell in bash zsh
+	do
+		CGO_ENABLED=0 GOARCH='' go run nats/main.go --completion-script-$shell >completion.$shell
+	done
+}
+
+post_install() {
+	for shell in bash zsh
+	do
+		vcompletion completion.$shell $shell
+	done
+}

From 66893709ed6629ffe8f3dc72feb7916cb22b0933 Mon Sep 17 00:00:00 2001
From: Daniel Lewan <vision360.daniel@gmail.com>
Date: Sun, 10 Jul 2022 14:37:52 +0200
Subject: [PATCH 2/2] New package: nats-server-2.8.4

---
 srcpkgs/nats-server/template | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 srcpkgs/nats-server/template

diff --git a/srcpkgs/nats-server/template b/srcpkgs/nats-server/template
new file mode 100644
index 000000000000..691dc9b0527b
--- /dev/null
+++ b/srcpkgs/nats-server/template
@@ -0,0 +1,12 @@
+# Template file for 'nats-server'
+pkgname=nats-server
+version=2.8.4
+revision=1
+build_style=go
+go_import_path=github.com/nats-io/nats-server/v2
+short_desc="Server for NATS messaging system"
+maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
+license="Apache-2.0"
+homepage="https://nats.io/"
+distfiles="https://github.com/nats-io/nats-server/archive/v${version}.tar.gz"
+checksum=172c5d04c3867adcb6b2322d87d7f7029b63e9465fffffcf99d4ca652820635f

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

* Re: [PR PATCH] [Updated] New package: nats and nats-server
  2022-07-10 17:42 [PR PATCH] Add nats TeddyDD
                   ` (3 preceding siblings ...)
  2022-07-10 19:20 ` TeddyDD
@ 2022-09-29 12:32 ` TeddyDD
  2022-11-29 17:46 ` TeddyDD
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: TeddyDD @ 2022-09-29 12:32 UTC (permalink / raw)
  To: ml

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

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

https://github.com/TeddyDD/void-packages-1 add-nats
https://github.com/void-linux/void-packages/pull/37982

New package: nats and nats-server
<!-- Uncomment relevant sections and delete options which are not applicable -->

Added nats-cli and nats-server

#### Testing the changes
- I tested the changes in this PR: **YES**
<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- 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
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From e769e19c5c4a2ac80d4488c1065f90dde55ea924 Mon Sep 17 00:00:00 2001
From: Daniel Lewan <vision360.daniel@gmail.com>
Date: Sun, 10 Jul 2022 14:37:50 +0200
Subject: [PATCH 1/2] New package: nats-0.0.34

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

diff --git a/srcpkgs/nats/template b/srcpkgs/nats/template
new file mode 100644
index 000000000000..85bc4cc091b4
--- /dev/null
+++ b/srcpkgs/nats/template
@@ -0,0 +1,28 @@
+# Template file for 'nats'
+pkgname=nats
+version=0.0.34
+revision=1
+wrksrc="natscli-${version}"
+build_style=go
+go_import_path=github.com/nats-io/natscli/nats
+go_ldflags="-X main.version=v${version}"
+short_desc="Command line utility to interact with and manage NATS"
+maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
+license="Apache-2.0"
+homepage="https://nats.io/"
+distfiles="https://github.com/nats-io/natscli/archive/v${version}.tar.gz"
+checksum=9fdfd14c093e1ef4c4cd0398d17f8eba2b26c25334fd63160c2fcd644c9d8bfd
+
+pre_build() {
+	for shell in bash zsh
+	do
+		CGO_ENABLED=0 GOARCH='' go run nats/main.go --completion-script-$shell >completion.$shell
+	done
+}
+
+post_install() {
+	for shell in bash zsh
+	do
+		vcompletion completion.$shell $shell
+	done
+}

From 365ee26a61d8a3db6bfe35627ef63f3a92cd8516 Mon Sep 17 00:00:00 2001
From: Daniel Lewan <vision360.daniel@gmail.com>
Date: Sun, 10 Jul 2022 14:37:52 +0200
Subject: [PATCH 2/2] New package: nats-server-2.9.1

---
 srcpkgs/nats-server/template | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 srcpkgs/nats-server/template

diff --git a/srcpkgs/nats-server/template b/srcpkgs/nats-server/template
new file mode 100644
index 000000000000..c5612d679f8c
--- /dev/null
+++ b/srcpkgs/nats-server/template
@@ -0,0 +1,12 @@
+# Template file for 'nats-server'
+pkgname=nats-server
+version=2.9.1
+revision=1
+build_style=go
+go_import_path=github.com/nats-io/nats-server/v2
+short_desc="Server for NATS messaging system"
+maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
+license="Apache-2.0"
+homepage="https://nats.io/"
+distfiles="https://github.com/nats-io/nats-server/archive/v${version}.tar.gz"
+checksum=e6287f1d038a2df3ec37d00d936e967ca7f5eec9de37558d79e87a49d153d3ae

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

* Re: [PR PATCH] [Updated] New package: nats and nats-server
  2022-07-10 17:42 [PR PATCH] Add nats TeddyDD
                   ` (4 preceding siblings ...)
  2022-09-29 12:32 ` TeddyDD
@ 2022-11-29 17:46 ` TeddyDD
  2022-11-29 17:59 ` TeddyDD
  2023-01-13  9:35 ` [PR PATCH] [Closed]: " TeddyDD
  7 siblings, 0 replies; 9+ messages in thread
From: TeddyDD @ 2022-11-29 17:46 UTC (permalink / raw)
  To: ml

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

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

https://github.com/TeddyDD/void-packages-1 add-nats
https://github.com/void-linux/void-packages/pull/37982

New package: nats and nats-server
<!-- Uncomment relevant sections and delete options which are not applicable -->

Added nats-cli and nats-server

#### Testing the changes
- I tested the changes in this PR: **YES**
<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- 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
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From 3a22b9d9e0a0825aaf9e968ed39e890a7ea1484b Mon Sep 17 00:00:00 2001
From: Daniel Lewan <vision360.daniel@gmail.com>
Date: Sun, 10 Jul 2022 14:37:50 +0200
Subject: [PATCH 1/2] New package: nats-0.0.35

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

diff --git a/srcpkgs/nats/template b/srcpkgs/nats/template
new file mode 100644
index 000000000000..2d629f07bfd0
--- /dev/null
+++ b/srcpkgs/nats/template
@@ -0,0 +1,28 @@
+# Template file for 'nats'
+pkgname=nats
+version=0.0.35
+revision=1
+wrksrc="natscli-${version}"
+build_style=go
+go_import_path=github.com/nats-io/natscli/nats
+go_ldflags="-X main.version=v${version}"
+short_desc="Command line utility to interact with and manage NATS"
+maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
+license="Apache-2.0"
+homepage="https://nats.io/"
+distfiles="https://github.com/nats-io/natscli/archive/v${version}.tar.gz"
+checksum=7a5f8b9fc37726bf9e446bc05dc8680852e9dd5c7364f59b53676abb3509b94b
+
+pre_build() {
+	for shell in bash zsh
+	do
+		CGO_ENABLED=0 GOARCH='' go run nats/main.go --completion-script-$shell >completion.$shell
+	done
+}
+
+post_install() {
+	for shell in bash zsh
+	do
+		vcompletion completion.$shell $shell
+	done
+}

From 89b9740fa37a1de80c9f816736be3525e8eb35e1 Mon Sep 17 00:00:00 2001
From: Daniel Lewan <vision360.daniel@gmail.com>
Date: Sun, 10 Jul 2022 14:37:52 +0200
Subject: [PATCH 2/2] New package: nats-server-2.9.8

---
 srcpkgs/nats-server/template | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 srcpkgs/nats-server/template

diff --git a/srcpkgs/nats-server/template b/srcpkgs/nats-server/template
new file mode 100644
index 000000000000..9a1e5b73e6f3
--- /dev/null
+++ b/srcpkgs/nats-server/template
@@ -0,0 +1,12 @@
+# Template file for 'nats-server'
+pkgname=nats-server
+version=2.9.8
+revision=1
+build_style=go
+go_import_path=github.com/nats-io/nats-server/v2
+short_desc="Server for NATS messaging system"
+maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
+license="Apache-2.0"
+homepage="https://nats.io/"
+distfiles="https://github.com/nats-io/nats-server/archive/v${version}.tar.gz"
+checksum=31ad53e46a3dafdd9dfe52ce751b7fd5eaf838810c42d002b11477ee8d6e3471

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

* Re: [PR PATCH] [Updated] New package: nats and nats-server
  2022-07-10 17:42 [PR PATCH] Add nats TeddyDD
                   ` (5 preceding siblings ...)
  2022-11-29 17:46 ` TeddyDD
@ 2022-11-29 17:59 ` TeddyDD
  2023-01-13  9:35 ` [PR PATCH] [Closed]: " TeddyDD
  7 siblings, 0 replies; 9+ messages in thread
From: TeddyDD @ 2022-11-29 17:59 UTC (permalink / raw)
  To: ml

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

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

https://github.com/TeddyDD/void-packages-1 add-nats
https://github.com/void-linux/void-packages/pull/37982

New package: nats and nats-server
<!-- Uncomment relevant sections and delete options which are not applicable -->

Added nats-cli and nats-server

#### Testing the changes
- I tested the changes in this PR: **YES**
<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- 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
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From e0028035d93407adb8f028e4f04a35b6c4bd50ad Mon Sep 17 00:00:00 2001
From: Daniel Lewan <vision360.daniel@gmail.com>
Date: Sun, 10 Jul 2022 14:37:50 +0200
Subject: [PATCH 1/2] New package: nats-0.0.35

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

diff --git a/srcpkgs/nats/template b/srcpkgs/nats/template
new file mode 100644
index 000000000000..ecdcf729ede4
--- /dev/null
+++ b/srcpkgs/nats/template
@@ -0,0 +1,27 @@
+# Template file for 'nats'
+pkgname=nats
+version=0.0.35
+revision=1
+build_style=go
+go_import_path=github.com/nats-io/natscli/nats
+go_ldflags="-X main.version=v${version}"
+short_desc="Command line utility to interact with and manage NATS"
+maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
+license="Apache-2.0"
+homepage="https://nats.io/"
+distfiles="https://github.com/nats-io/natscli/archive/v${version}.tar.gz"
+checksum=7a5f8b9fc37726bf9e446bc05dc8680852e9dd5c7364f59b53676abb3509b94b
+
+pre_build() {
+	for shell in bash zsh
+	do
+		CGO_ENABLED=0 GOARCH='' go run nats/main.go --completion-script-$shell >completion.$shell
+	done
+}
+
+post_install() {
+	for shell in bash zsh
+	do
+		vcompletion completion.$shell $shell
+	done
+}

From c7d93cbba9092f0d15d4a28616aaaf8c58d51645 Mon Sep 17 00:00:00 2001
From: Daniel Lewan <vision360.daniel@gmail.com>
Date: Sun, 10 Jul 2022 14:37:52 +0200
Subject: [PATCH 2/2] New package: nats-server-2.9.8

---
 srcpkgs/nats-server/template | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 srcpkgs/nats-server/template

diff --git a/srcpkgs/nats-server/template b/srcpkgs/nats-server/template
new file mode 100644
index 000000000000..9a1e5b73e6f3
--- /dev/null
+++ b/srcpkgs/nats-server/template
@@ -0,0 +1,12 @@
+# Template file for 'nats-server'
+pkgname=nats-server
+version=2.9.8
+revision=1
+build_style=go
+go_import_path=github.com/nats-io/nats-server/v2
+short_desc="Server for NATS messaging system"
+maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
+license="Apache-2.0"
+homepage="https://nats.io/"
+distfiles="https://github.com/nats-io/nats-server/archive/v${version}.tar.gz"
+checksum=31ad53e46a3dafdd9dfe52ce751b7fd5eaf838810c42d002b11477ee8d6e3471

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

* Re: [PR PATCH] [Closed]: New package: nats and nats-server
  2022-07-10 17:42 [PR PATCH] Add nats TeddyDD
                   ` (6 preceding siblings ...)
  2022-11-29 17:59 ` TeddyDD
@ 2023-01-13  9:35 ` TeddyDD
  7 siblings, 0 replies; 9+ messages in thread
From: TeddyDD @ 2023-01-13  9:35 UTC (permalink / raw)
  To: ml

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

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

New package: nats and nats-server
https://github.com/void-linux/void-packages/pull/37982

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

Added nats-cli and nats-server

#### Testing the changes
- I tested the changes in this PR: **YES**
<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- 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
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

end of thread, other threads:[~2023-01-13  9:35 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-10 17:42 [PR PATCH] Add nats TeddyDD
2022-07-10 17:43 ` [PR PATCH] [Updated] " TeddyDD
2022-07-10 17:50 ` [PR PATCH] [Updated] New package: nats and nats-server TeddyDD
2022-07-10 19:14 ` TeddyDD
2022-07-10 19:20 ` TeddyDD
2022-09-29 12:32 ` TeddyDD
2022-11-29 17:46 ` TeddyDD
2022-11-29 17:59 ` TeddyDD
2023-01-13  9:35 ` [PR PATCH] [Closed]: " TeddyDD

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