Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New packages: innernet-1.5.5 innernet-server-1.5.5
@ 2023-05-21  7:03 agausmann
  2023-05-21  7:06 ` [PR PATCH] [Updated] " agausmann
                   ` (17 more replies)
  0 siblings, 18 replies; 19+ messages in thread
From: agausmann @ 2023-05-21  7:03 UTC (permalink / raw)
  To: ml

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

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

https://github.com/agausmann/void-packages innernet
https://github.com/void-linux/void-packages/pull/43984

New packages: innernet-1.5.5 innernet-server-1.5.5
<!-- 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
- 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/43984.patch is attached

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

From 92fd7ffdf4661797c688738f867b5a0ae378c52d Mon Sep 17 00:00:00 2001
From: Adam Gausmann <adam@gaussian.dev>
Date: Sun, 21 May 2023 01:08:33 -0500
Subject: [PATCH 1/2] New package: innernet-1.5.5

---
 srcpkgs/innernet/files/innernet/run |  3 +++
 srcpkgs/innernet/template           | 19 +++++++++++++++++++
 2 files changed, 22 insertions(+)
 create mode 100755 srcpkgs/innernet/files/innernet/run
 create mode 100644 srcpkgs/innernet/template

diff --git a/srcpkgs/innernet/files/innernet/run b/srcpkgs/innernet/files/innernet/run
new file mode 100755
index 000000000000..74a3f85f02ab
--- /dev/null
+++ b/srcpkgs/innernet/files/innernet/run
@@ -0,0 +1,3 @@
+#!/bin/sh
+[ -r ./conf ] && . ./conf
+exec innernet up "$INNERNET_INTERFACE" --daemon --interval 60
diff --git a/srcpkgs/innernet/template b/srcpkgs/innernet/template
new file mode 100644
index 000000000000..696d055147de
--- /dev/null
+++ b/srcpkgs/innernet/template
@@ -0,0 +1,19 @@
+# Template file for 'innernet'
+pkgname=innernet
+version=1.5.5
+revision=1
+build_style=cargo
+make_install_args="--path client"
+makedepends="libclang sqlite-devel"
+short_desc="Private network system using WireGuard"
+maintainer="Adam Gausmann <adam@gaussian.dev>"
+license="MIT"
+homepage="https://github.com/tonarino/innernet"
+changelog="https://github.com/tonarino/innernet/releases"
+distfiles="https://github.com/tonarino/innernet/archive/refs/tags/v${version}.tar.gz"
+checksum=b4b7f89658b3c8b77d6482e7a7d21362037fb1f332b9db53bebda6fd8f6b91ad
+
+post_install() {
+    vlicense LICENSE
+    vsv innernet
+}

From aefb120a0753303d21c108b4c77972b56d66c37a Mon Sep 17 00:00:00 2001
From: Adam Gausmann <adam@gaussian.dev>
Date: Sun, 21 May 2023 01:09:12 -0500
Subject: [PATCH 2/2] New package: innernet-server-1.5.5

---
 .../innernet-server/files/innernet-server/run |  3 +++
 srcpkgs/innernet-server/template              | 19 +++++++++++++++++++
 2 files changed, 22 insertions(+)
 create mode 100644 srcpkgs/innernet-server/files/innernet-server/run
 create mode 100644 srcpkgs/innernet-server/template

diff --git a/srcpkgs/innernet-server/files/innernet-server/run b/srcpkgs/innernet-server/files/innernet-server/run
new file mode 100644
index 000000000000..f7ff7304fdac
--- /dev/null
+++ b/srcpkgs/innernet-server/files/innernet-server/run
@@ -0,0 +1,3 @@
+#!/bin/sh
+[ -r ./conf ] && . ./conf
+exec innernet-server serve "$INNERNET_INTERFACE"
diff --git a/srcpkgs/innernet-server/template b/srcpkgs/innernet-server/template
new file mode 100644
index 000000000000..c2af4bc22a76
--- /dev/null
+++ b/srcpkgs/innernet-server/template
@@ -0,0 +1,19 @@
+# Template file for 'innernet-server'
+pkgname=innernet-server
+version=1.5.5
+revision=1
+build_style=cargo
+make_install_args="--path server"
+makedepends="libclang sqlite-devel"
+short_desc="Private network system using WireGuard - server daemon"
+maintainer="Adam Gausmann <adam@gaussian.dev>"
+license="MIT"
+homepage="https://github.com/tonarino/innernet"
+changelog="https://github.com/tonarino/innernet/releases"
+distfiles="https://github.com/tonarino/innernet/archive/refs/tags/v${version}.tar.gz"
+checksum=b4b7f89658b3c8b77d6482e7a7d21362037fb1f332b9db53bebda6fd8f6b91ad
+
+post_install() {
+    vlicense LICENSE
+    vsv innernet-server
+}

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

* Re: [PR PATCH] [Updated] New packages: innernet-1.5.5 innernet-server-1.5.5
  2023-05-21  7:03 [PR PATCH] New packages: innernet-1.5.5 innernet-server-1.5.5 agausmann
@ 2023-05-21  7:06 ` agausmann
  2023-05-21  7:22 ` agausmann
                   ` (16 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: agausmann @ 2023-05-21  7:06 UTC (permalink / raw)
  To: ml

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

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

https://github.com/agausmann/void-packages innernet
https://github.com/void-linux/void-packages/pull/43984

New packages: innernet-1.5.5 innernet-server-1.5.5
<!-- 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
- 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/43984.patch is attached

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

From bab4d21b8abb1a8db73dafd3a8ece740054d000a Mon Sep 17 00:00:00 2001
From: Adam Gausmann <adam@gaussian.dev>
Date: Sun, 21 May 2023 01:08:33 -0500
Subject: [PATCH 1/2] New package: innernet-1.5.5

---
 srcpkgs/innernet/files/innernet/run |  3 +++
 srcpkgs/innernet/template           | 19 +++++++++++++++++++
 2 files changed, 22 insertions(+)
 create mode 100755 srcpkgs/innernet/files/innernet/run
 create mode 100644 srcpkgs/innernet/template

diff --git a/srcpkgs/innernet/files/innernet/run b/srcpkgs/innernet/files/innernet/run
new file mode 100755
index 000000000000..74a3f85f02ab
--- /dev/null
+++ b/srcpkgs/innernet/files/innernet/run
@@ -0,0 +1,3 @@
+#!/bin/sh
+[ -r ./conf ] && . ./conf
+exec innernet up "$INNERNET_INTERFACE" --daemon --interval 60
diff --git a/srcpkgs/innernet/template b/srcpkgs/innernet/template
new file mode 100644
index 000000000000..7fea9f94065b
--- /dev/null
+++ b/srcpkgs/innernet/template
@@ -0,0 +1,19 @@
+# Template file for 'innernet'
+pkgname=innernet
+version=1.5.5
+revision=1
+build_style=cargo
+make_install_args="--path client"
+makedepends="libclang sqlite-devel"
+short_desc="Private network system using WireGuard"
+maintainer="Adam Gausmann <adam@gaussian.dev>"
+license="MIT"
+homepage="https://github.com/tonarino/innernet"
+changelog="https://github.com/tonarino/innernet/releases"
+distfiles="https://github.com/tonarino/innernet/archive/refs/tags/v${version}.tar.gz"
+checksum=b4b7f89658b3c8b77d6482e7a7d21362037fb1f332b9db53bebda6fd8f6b91ad
+
+post_install() {
+	vlicense LICENSE
+	vsv innernet
+}

From 849a781de77e3f62a9c72f5ff82f427be25f99e8 Mon Sep 17 00:00:00 2001
From: Adam Gausmann <adam@gaussian.dev>
Date: Sun, 21 May 2023 01:09:12 -0500
Subject: [PATCH 2/2] New package: innernet-server-1.5.5

---
 .../innernet-server/files/innernet-server/run |  3 +++
 srcpkgs/innernet-server/template              | 19 +++++++++++++++++++
 2 files changed, 22 insertions(+)
 create mode 100644 srcpkgs/innernet-server/files/innernet-server/run
 create mode 100644 srcpkgs/innernet-server/template

diff --git a/srcpkgs/innernet-server/files/innernet-server/run b/srcpkgs/innernet-server/files/innernet-server/run
new file mode 100644
index 000000000000..f7ff7304fdac
--- /dev/null
+++ b/srcpkgs/innernet-server/files/innernet-server/run
@@ -0,0 +1,3 @@
+#!/bin/sh
+[ -r ./conf ] && . ./conf
+exec innernet-server serve "$INNERNET_INTERFACE"
diff --git a/srcpkgs/innernet-server/template b/srcpkgs/innernet-server/template
new file mode 100644
index 000000000000..efdae6a7456a
--- /dev/null
+++ b/srcpkgs/innernet-server/template
@@ -0,0 +1,19 @@
+# Template file for 'innernet-server'
+pkgname=innernet-server
+version=1.5.5
+revision=1
+build_style=cargo
+make_install_args="--path server"
+makedepends="libclang sqlite-devel"
+short_desc="Private network system using WireGuard - server daemon"
+maintainer="Adam Gausmann <adam@gaussian.dev>"
+license="MIT"
+homepage="https://github.com/tonarino/innernet"
+changelog="https://github.com/tonarino/innernet/releases"
+distfiles="https://github.com/tonarino/innernet/archive/refs/tags/v${version}.tar.gz"
+checksum=b4b7f89658b3c8b77d6482e7a7d21362037fb1f332b9db53bebda6fd8f6b91ad
+
+post_install() {
+	vlicense LICENSE
+	vsv innernet-server
+}

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

* Re: New packages: innernet-1.5.5 innernet-server-1.5.5
  2023-05-21  7:03 [PR PATCH] New packages: innernet-1.5.5 innernet-server-1.5.5 agausmann
  2023-05-21  7:06 ` [PR PATCH] [Updated] " agausmann
@ 2023-05-21  7:22 ` agausmann
  2023-05-21  7:31 ` agausmann
                   ` (15 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: agausmann @ 2023-05-21  7:22 UTC (permalink / raw)
  To: ml

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

New comment by agausmann on void-packages repository

https://github.com/void-linux/void-packages/pull/43984#issuecomment-1556105558

Comment:
I tried making these subpackages, but I'm not sure how to tell Cargo to install multiple local crates without multiple `cargo install` commands. I tried multiple `--path` arguments but it rejects that.

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

* Re: New packages: innernet-1.5.5 innernet-server-1.5.5
  2023-05-21  7:03 [PR PATCH] New packages: innernet-1.5.5 innernet-server-1.5.5 agausmann
  2023-05-21  7:06 ` [PR PATCH] [Updated] " agausmann
  2023-05-21  7:22 ` agausmann
@ 2023-05-21  7:31 ` agausmann
  2023-05-21  7:31 ` agausmann
                   ` (14 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: agausmann @ 2023-05-21  7:31 UTC (permalink / raw)
  To: ml

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

New comment by agausmann on void-packages repository

https://github.com/void-linux/void-packages/pull/43984#issuecomment-1556107055

Comment:
I can't reproduce this test failure, running `./xbps-src check` locally on x86_64 and in a fresh container

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

* Re: New packages: innernet-1.5.5 innernet-server-1.5.5
  2023-05-21  7:03 [PR PATCH] New packages: innernet-1.5.5 innernet-server-1.5.5 agausmann
                   ` (2 preceding siblings ...)
  2023-05-21  7:31 ` agausmann
@ 2023-05-21  7:31 ` agausmann
  2023-05-21  7:51 ` agausmann
                   ` (13 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: agausmann @ 2023-05-21  7:31 UTC (permalink / raw)
  To: ml

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

New comment by agausmann on void-packages repository

https://github.com/void-linux/void-packages/pull/43984#issuecomment-1556107055

Comment:
I can't reproduce this test failure, tried running `./xbps-src check` locally on x86_64 and in a fresh container

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

* Re: New packages: innernet-1.5.5 innernet-server-1.5.5
  2023-05-21  7:03 [PR PATCH] New packages: innernet-1.5.5 innernet-server-1.5.5 agausmann
                   ` (3 preceding siblings ...)
  2023-05-21  7:31 ` agausmann
@ 2023-05-21  7:51 ` agausmann
  2023-05-21  7:56 ` icp1994
                   ` (12 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: agausmann @ 2023-05-21  7:51 UTC (permalink / raw)
  To: ml

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

New comment by agausmann on void-packages repository

https://github.com/void-linux/void-packages/pull/43984#issuecomment-1556110472

Comment:
This might be able to run as non-root with CAP_NET_ADMIN (tonarino/innernet#41). I haven't tested that yet.

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

* Re: New packages: innernet-1.5.5 innernet-server-1.5.5
  2023-05-21  7:03 [PR PATCH] New packages: innernet-1.5.5 innernet-server-1.5.5 agausmann
                   ` (4 preceding siblings ...)
  2023-05-21  7:51 ` agausmann
@ 2023-05-21  7:56 ` icp1994
  2023-05-21 17:49 ` agausmann
                   ` (11 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: icp1994 @ 2023-05-21  7:56 UTC (permalink / raw)
  To: ml

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

New comment by icp1994 on void-packages repository

https://github.com/void-linux/void-packages/pull/43984#issuecomment-1556111305

Comment:
Looks like that test does not work in containers https://github.com/tonarino/innernet/blob/v1.5.5/rpm/Dockerfile#L18

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

* Re: New packages: innernet-1.5.5 innernet-server-1.5.5
  2023-05-21  7:03 [PR PATCH] New packages: innernet-1.5.5 innernet-server-1.5.5 agausmann
                   ` (5 preceding siblings ...)
  2023-05-21  7:56 ` icp1994
@ 2023-05-21 17:49 ` agausmann
  2023-05-21 17:50 ` [PR PATCH] [Updated] " agausmann
                   ` (10 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: agausmann @ 2023-05-21 17:49 UTC (permalink / raw)
  To: ml

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

New comment by agausmann on void-packages repository

https://github.com/void-linux/void-packages/pull/43984#issuecomment-1556239521

Comment:
Oh, I was running it in an LXD container, I guess Docker has some different privileges

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

* Re: [PR PATCH] [Updated] New packages: innernet-1.5.5 innernet-server-1.5.5
  2023-05-21  7:03 [PR PATCH] New packages: innernet-1.5.5 innernet-server-1.5.5 agausmann
                   ` (6 preceding siblings ...)
  2023-05-21 17:49 ` agausmann
@ 2023-05-21 17:50 ` agausmann
  2023-05-21 17:58 ` agausmann
                   ` (9 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: agausmann @ 2023-05-21 17:50 UTC (permalink / raw)
  To: ml

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

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

https://github.com/agausmann/void-packages innernet
https://github.com/void-linux/void-packages/pull/43984

New packages: innernet-1.5.5 innernet-server-1.5.5
<!-- 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
- 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/43984.patch is attached

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

From 7a24e8095e9841eb92c98851cba82fb2053ec115 Mon Sep 17 00:00:00 2001
From: Adam Gausmann <adam@gaussian.dev>
Date: Sun, 21 May 2023 01:08:33 -0500
Subject: [PATCH 1/2] New package: innernet-1.5.5

---
 srcpkgs/innernet/files/innernet/run |  3 +++
 srcpkgs/innernet/template           | 20 ++++++++++++++++++++
 2 files changed, 23 insertions(+)
 create mode 100755 srcpkgs/innernet/files/innernet/run
 create mode 100644 srcpkgs/innernet/template

diff --git a/srcpkgs/innernet/files/innernet/run b/srcpkgs/innernet/files/innernet/run
new file mode 100755
index 000000000000..74a3f85f02ab
--- /dev/null
+++ b/srcpkgs/innernet/files/innernet/run
@@ -0,0 +1,3 @@
+#!/bin/sh
+[ -r ./conf ] && . ./conf
+exec innernet up "$INNERNET_INTERFACE" --daemon --interval 60
diff --git a/srcpkgs/innernet/template b/srcpkgs/innernet/template
new file mode 100644
index 000000000000..ec4a4d2ebdb3
--- /dev/null
+++ b/srcpkgs/innernet/template
@@ -0,0 +1,20 @@
+# Template file for 'innernet'
+pkgname=innernet
+version=1.5.5
+revision=1
+build_style=cargo
+make_check_args="--skip device::tests::test_add_peers"
+make_install_args="--path client"
+makedepends="libclang sqlite-devel"
+short_desc="Private network system using WireGuard"
+maintainer="Adam Gausmann <adam@gaussian.dev>"
+license="MIT"
+homepage="https://github.com/tonarino/innernet"
+changelog="https://github.com/tonarino/innernet/releases"
+distfiles="https://github.com/tonarino/innernet/archive/refs/tags/v${version}.tar.gz"
+checksum=b4b7f89658b3c8b77d6482e7a7d21362037fb1f332b9db53bebda6fd8f6b91ad
+
+post_install() {
+	vlicense LICENSE
+	vsv innernet
+}

From fc3934c8e76e404bdff2a831e7b0c20a235cd947 Mon Sep 17 00:00:00 2001
From: Adam Gausmann <adam@gaussian.dev>
Date: Sun, 21 May 2023 01:09:12 -0500
Subject: [PATCH 2/2] New package: innernet-server-1.5.5

---
 .../innernet-server/files/innernet-server/run |  3 +++
 srcpkgs/innernet-server/template              | 20 +++++++++++++++++++
 2 files changed, 23 insertions(+)
 create mode 100644 srcpkgs/innernet-server/files/innernet-server/run
 create mode 100644 srcpkgs/innernet-server/template

diff --git a/srcpkgs/innernet-server/files/innernet-server/run b/srcpkgs/innernet-server/files/innernet-server/run
new file mode 100644
index 000000000000..f7ff7304fdac
--- /dev/null
+++ b/srcpkgs/innernet-server/files/innernet-server/run
@@ -0,0 +1,3 @@
+#!/bin/sh
+[ -r ./conf ] && . ./conf
+exec innernet-server serve "$INNERNET_INTERFACE"
diff --git a/srcpkgs/innernet-server/template b/srcpkgs/innernet-server/template
new file mode 100644
index 000000000000..918265c9073d
--- /dev/null
+++ b/srcpkgs/innernet-server/template
@@ -0,0 +1,20 @@
+# Template file for 'innernet-server'
+pkgname=innernet-server
+version=1.5.5
+revision=1
+build_style=cargo
+make_check_args="--skip device::tests::test_add_peers"
+make_install_args="--path server"
+makedepends="libclang sqlite-devel"
+short_desc="Private network system using WireGuard - server daemon"
+maintainer="Adam Gausmann <adam@gaussian.dev>"
+license="MIT"
+homepage="https://github.com/tonarino/innernet"
+changelog="https://github.com/tonarino/innernet/releases"
+distfiles="https://github.com/tonarino/innernet/archive/refs/tags/v${version}.tar.gz"
+checksum=b4b7f89658b3c8b77d6482e7a7d21362037fb1f332b9db53bebda6fd8f6b91ad
+
+post_install() {
+	vlicense LICENSE
+	vsv innernet-server
+}

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

* Re: [PR PATCH] [Updated] New packages: innernet-1.5.5 innernet-server-1.5.5
  2023-05-21  7:03 [PR PATCH] New packages: innernet-1.5.5 innernet-server-1.5.5 agausmann
                   ` (7 preceding siblings ...)
  2023-05-21 17:50 ` [PR PATCH] [Updated] " agausmann
@ 2023-05-21 17:58 ` agausmann
  2023-05-22 19:40 ` agausmann
                   ` (8 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: agausmann @ 2023-05-21 17:58 UTC (permalink / raw)
  To: ml

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

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

https://github.com/agausmann/void-packages innernet
https://github.com/void-linux/void-packages/pull/43984

New packages: innernet-1.5.5 innernet-server-1.5.5
<!-- 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
- 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/43984.patch is attached

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

From e31087ab83ea7a71da31b068dd3ce3f9b5ea9d69 Mon Sep 17 00:00:00 2001
From: Adam Gausmann <adam@gaussian.dev>
Date: Sun, 21 May 2023 01:08:33 -0500
Subject: [PATCH 1/2] New package: innernet-1.5.5

---
 srcpkgs/innernet/files/innernet/run |  3 +++
 srcpkgs/innernet/template           | 21 +++++++++++++++++++++
 2 files changed, 24 insertions(+)
 create mode 100755 srcpkgs/innernet/files/innernet/run
 create mode 100644 srcpkgs/innernet/template

diff --git a/srcpkgs/innernet/files/innernet/run b/srcpkgs/innernet/files/innernet/run
new file mode 100755
index 000000000000..74a3f85f02ab
--- /dev/null
+++ b/srcpkgs/innernet/files/innernet/run
@@ -0,0 +1,3 @@
+#!/bin/sh
+[ -r ./conf ] && . ./conf
+exec innernet up "$INNERNET_INTERFACE" --daemon --interval 60
diff --git a/srcpkgs/innernet/template b/srcpkgs/innernet/template
new file mode 100644
index 000000000000..91c138d33071
--- /dev/null
+++ b/srcpkgs/innernet/template
@@ -0,0 +1,21 @@
+# Template file for 'innernet'
+pkgname=innernet
+version=1.5.5
+revision=1
+build_style=cargo
+# test_add_peers does not work in containers
+make_check_args="-- --skip device::tests::test_add_peers"
+make_install_args="--path client"
+makedepends="libclang sqlite-devel"
+short_desc="Private network system using WireGuard"
+maintainer="Adam Gausmann <adam@gaussian.dev>"
+license="MIT"
+homepage="https://github.com/tonarino/innernet"
+changelog="https://github.com/tonarino/innernet/releases"
+distfiles="https://github.com/tonarino/innernet/archive/refs/tags/v${version}.tar.gz"
+checksum=b4b7f89658b3c8b77d6482e7a7d21362037fb1f332b9db53bebda6fd8f6b91ad
+
+post_install() {
+	vlicense LICENSE
+	vsv innernet
+}

From fb0b46da8bdfaa5123cbed028d8cd089373d7e05 Mon Sep 17 00:00:00 2001
From: Adam Gausmann <adam@gaussian.dev>
Date: Sun, 21 May 2023 01:09:12 -0500
Subject: [PATCH 2/2] New package: innernet-server-1.5.5

---
 .../innernet-server/files/innernet-server/run |  3 +++
 srcpkgs/innernet-server/template              | 21 +++++++++++++++++++
 2 files changed, 24 insertions(+)
 create mode 100644 srcpkgs/innernet-server/files/innernet-server/run
 create mode 100644 srcpkgs/innernet-server/template

diff --git a/srcpkgs/innernet-server/files/innernet-server/run b/srcpkgs/innernet-server/files/innernet-server/run
new file mode 100644
index 000000000000..f7ff7304fdac
--- /dev/null
+++ b/srcpkgs/innernet-server/files/innernet-server/run
@@ -0,0 +1,3 @@
+#!/bin/sh
+[ -r ./conf ] && . ./conf
+exec innernet-server serve "$INNERNET_INTERFACE"
diff --git a/srcpkgs/innernet-server/template b/srcpkgs/innernet-server/template
new file mode 100644
index 000000000000..e4e79225cc89
--- /dev/null
+++ b/srcpkgs/innernet-server/template
@@ -0,0 +1,21 @@
+# Template file for 'innernet-server'
+pkgname=innernet-server
+version=1.5.5
+revision=1
+build_style=cargo
+# test_add_peers does not work in containers
+make_check_args="-- --skip device::tests::test_add_peers"
+make_install_args="--path server"
+makedepends="libclang sqlite-devel"
+short_desc="Private network system using WireGuard - server daemon"
+maintainer="Adam Gausmann <adam@gaussian.dev>"
+license="MIT"
+homepage="https://github.com/tonarino/innernet"
+changelog="https://github.com/tonarino/innernet/releases"
+distfiles="https://github.com/tonarino/innernet/archive/refs/tags/v${version}.tar.gz"
+checksum=b4b7f89658b3c8b77d6482e7a7d21362037fb1f332b9db53bebda6fd8f6b91ad
+
+post_install() {
+	vlicense LICENSE
+	vsv innernet-server
+}

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

* Re: [PR PATCH] [Updated] New packages: innernet-1.5.5 innernet-server-1.5.5
  2023-05-21  7:03 [PR PATCH] New packages: innernet-1.5.5 innernet-server-1.5.5 agausmann
                   ` (8 preceding siblings ...)
  2023-05-21 17:58 ` agausmann
@ 2023-05-22 19:40 ` agausmann
  2023-05-22 19:59 ` agausmann
                   ` (7 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: agausmann @ 2023-05-22 19:40 UTC (permalink / raw)
  To: ml

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

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

https://github.com/agausmann/void-packages innernet
https://github.com/void-linux/void-packages/pull/43984

New packages: innernet-1.5.5 innernet-server-1.5.5
<!-- 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
- 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/43984.patch is attached

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

From 3a5b56964d5762659c515575b7893562198922ed Mon Sep 17 00:00:00 2001
From: Adam Gausmann <adam@gaussian.dev>
Date: Sun, 21 May 2023 01:08:33 -0500
Subject: [PATCH 1/2] New package: innernet-1.5.5

---
 srcpkgs/innernet/files/innernet/conf   |  2 ++
 srcpkgs/innernet/files/innernet/finish |  3 +++
 srcpkgs/innernet/files/innernet/run    |  3 +++
 srcpkgs/innernet/template              | 21 +++++++++++++++++++++
 4 files changed, 29 insertions(+)
 create mode 100644 srcpkgs/innernet/files/innernet/conf
 create mode 100755 srcpkgs/innernet/files/innernet/finish
 create mode 100755 srcpkgs/innernet/files/innernet/run
 create mode 100644 srcpkgs/innernet/template

diff --git a/srcpkgs/innernet/files/innernet/conf b/srcpkgs/innernet/files/innernet/conf
new file mode 100644
index 000000000000..033a789bef2b
--- /dev/null
+++ b/srcpkgs/innernet/files/innernet/conf
@@ -0,0 +1,2 @@
+#INTERFACE=innernet
+#OPTS=
diff --git a/srcpkgs/innernet/files/innernet/finish b/srcpkgs/innernet/files/innernet/finish
new file mode 100755
index 000000000000..eca811f800b5
--- /dev/null
+++ b/srcpkgs/innernet/files/innernet/finish
@@ -0,0 +1,3 @@
+#!/bin/sh
+[ -r ./conf ] && . ./conf
+innernet down "$INTERFACE"
diff --git a/srcpkgs/innernet/files/innernet/run b/srcpkgs/innernet/files/innernet/run
new file mode 100755
index 000000000000..cc87dcda1e3e
--- /dev/null
+++ b/srcpkgs/innernet/files/innernet/run
@@ -0,0 +1,3 @@
+#!/bin/sh
+[ -r ./conf ] && . ./conf
+exec innernet up "$INTERFACE" --daemon ${OPTS}
diff --git a/srcpkgs/innernet/template b/srcpkgs/innernet/template
new file mode 100644
index 000000000000..91c138d33071
--- /dev/null
+++ b/srcpkgs/innernet/template
@@ -0,0 +1,21 @@
+# Template file for 'innernet'
+pkgname=innernet
+version=1.5.5
+revision=1
+build_style=cargo
+# test_add_peers does not work in containers
+make_check_args="-- --skip device::tests::test_add_peers"
+make_install_args="--path client"
+makedepends="libclang sqlite-devel"
+short_desc="Private network system using WireGuard"
+maintainer="Adam Gausmann <adam@gaussian.dev>"
+license="MIT"
+homepage="https://github.com/tonarino/innernet"
+changelog="https://github.com/tonarino/innernet/releases"
+distfiles="https://github.com/tonarino/innernet/archive/refs/tags/v${version}.tar.gz"
+checksum=b4b7f89658b3c8b77d6482e7a7d21362037fb1f332b9db53bebda6fd8f6b91ad
+
+post_install() {
+	vlicense LICENSE
+	vsv innernet
+}

From 652d675c54c4caa01f4c06d4aa85967de74fb911 Mon Sep 17 00:00:00 2001
From: Adam Gausmann <adam@gaussian.dev>
Date: Sun, 21 May 2023 01:09:12 -0500
Subject: [PATCH 2/2] New package: innernet-server-1.5.5

---
 .../files/innernet-server/conf                |  2 ++
 .../innernet-server/files/innernet-server/run |  3 +++
 srcpkgs/innernet-server/template              | 21 +++++++++++++++++++
 3 files changed, 26 insertions(+)
 create mode 100644 srcpkgs/innernet-server/files/innernet-server/conf
 create mode 100644 srcpkgs/innernet-server/files/innernet-server/run
 create mode 100644 srcpkgs/innernet-server/template

diff --git a/srcpkgs/innernet-server/files/innernet-server/conf b/srcpkgs/innernet-server/files/innernet-server/conf
new file mode 100644
index 000000000000..033a789bef2b
--- /dev/null
+++ b/srcpkgs/innernet-server/files/innernet-server/conf
@@ -0,0 +1,2 @@
+#INTERFACE=innernet
+#OPTS=
diff --git a/srcpkgs/innernet-server/files/innernet-server/run b/srcpkgs/innernet-server/files/innernet-server/run
new file mode 100644
index 000000000000..e2bbf6d5c777
--- /dev/null
+++ b/srcpkgs/innernet-server/files/innernet-server/run
@@ -0,0 +1,3 @@
+#!/bin/sh
+[ -r ./conf ] && . ./conf
+exec innernet-server serve "$INNERNET_INTERFACE" ${OPTS}
diff --git a/srcpkgs/innernet-server/template b/srcpkgs/innernet-server/template
new file mode 100644
index 000000000000..e4e79225cc89
--- /dev/null
+++ b/srcpkgs/innernet-server/template
@@ -0,0 +1,21 @@
+# Template file for 'innernet-server'
+pkgname=innernet-server
+version=1.5.5
+revision=1
+build_style=cargo
+# test_add_peers does not work in containers
+make_check_args="-- --skip device::tests::test_add_peers"
+make_install_args="--path server"
+makedepends="libclang sqlite-devel"
+short_desc="Private network system using WireGuard - server daemon"
+maintainer="Adam Gausmann <adam@gaussian.dev>"
+license="MIT"
+homepage="https://github.com/tonarino/innernet"
+changelog="https://github.com/tonarino/innernet/releases"
+distfiles="https://github.com/tonarino/innernet/archive/refs/tags/v${version}.tar.gz"
+checksum=b4b7f89658b3c8b77d6482e7a7d21362037fb1f332b9db53bebda6fd8f6b91ad
+
+post_install() {
+	vlicense LICENSE
+	vsv innernet-server
+}

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

* Re: [PR PATCH] [Updated] New packages: innernet-1.5.5 innernet-server-1.5.5
  2023-05-21  7:03 [PR PATCH] New packages: innernet-1.5.5 innernet-server-1.5.5 agausmann
                   ` (9 preceding siblings ...)
  2023-05-22 19:40 ` agausmann
@ 2023-05-22 19:59 ` agausmann
  2023-05-23  2:57 ` agausmann
                   ` (6 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: agausmann @ 2023-05-22 19:59 UTC (permalink / raw)
  To: ml

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

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

https://github.com/agausmann/void-packages innernet
https://github.com/void-linux/void-packages/pull/43984

New packages: innernet-1.5.5 innernet-server-1.5.5
<!-- 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
- 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/43984.patch is attached

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

From 3a5b56964d5762659c515575b7893562198922ed Mon Sep 17 00:00:00 2001
From: Adam Gausmann <adam@gaussian.dev>
Date: Sun, 21 May 2023 01:08:33 -0500
Subject: [PATCH 1/2] New package: innernet-1.5.5

---
 srcpkgs/innernet/files/innernet/conf   |  2 ++
 srcpkgs/innernet/files/innernet/finish |  3 +++
 srcpkgs/innernet/files/innernet/run    |  3 +++
 srcpkgs/innernet/template              | 21 +++++++++++++++++++++
 4 files changed, 29 insertions(+)
 create mode 100644 srcpkgs/innernet/files/innernet/conf
 create mode 100755 srcpkgs/innernet/files/innernet/finish
 create mode 100755 srcpkgs/innernet/files/innernet/run
 create mode 100644 srcpkgs/innernet/template

diff --git a/srcpkgs/innernet/files/innernet/conf b/srcpkgs/innernet/files/innernet/conf
new file mode 100644
index 000000000000..033a789bef2b
--- /dev/null
+++ b/srcpkgs/innernet/files/innernet/conf
@@ -0,0 +1,2 @@
+#INTERFACE=innernet
+#OPTS=
diff --git a/srcpkgs/innernet/files/innernet/finish b/srcpkgs/innernet/files/innernet/finish
new file mode 100755
index 000000000000..eca811f800b5
--- /dev/null
+++ b/srcpkgs/innernet/files/innernet/finish
@@ -0,0 +1,3 @@
+#!/bin/sh
+[ -r ./conf ] && . ./conf
+innernet down "$INTERFACE"
diff --git a/srcpkgs/innernet/files/innernet/run b/srcpkgs/innernet/files/innernet/run
new file mode 100755
index 000000000000..cc87dcda1e3e
--- /dev/null
+++ b/srcpkgs/innernet/files/innernet/run
@@ -0,0 +1,3 @@
+#!/bin/sh
+[ -r ./conf ] && . ./conf
+exec innernet up "$INTERFACE" --daemon ${OPTS}
diff --git a/srcpkgs/innernet/template b/srcpkgs/innernet/template
new file mode 100644
index 000000000000..91c138d33071
--- /dev/null
+++ b/srcpkgs/innernet/template
@@ -0,0 +1,21 @@
+# Template file for 'innernet'
+pkgname=innernet
+version=1.5.5
+revision=1
+build_style=cargo
+# test_add_peers does not work in containers
+make_check_args="-- --skip device::tests::test_add_peers"
+make_install_args="--path client"
+makedepends="libclang sqlite-devel"
+short_desc="Private network system using WireGuard"
+maintainer="Adam Gausmann <adam@gaussian.dev>"
+license="MIT"
+homepage="https://github.com/tonarino/innernet"
+changelog="https://github.com/tonarino/innernet/releases"
+distfiles="https://github.com/tonarino/innernet/archive/refs/tags/v${version}.tar.gz"
+checksum=b4b7f89658b3c8b77d6482e7a7d21362037fb1f332b9db53bebda6fd8f6b91ad
+
+post_install() {
+	vlicense LICENSE
+	vsv innernet
+}

From e0e8b1d29fce240d81ce72e6889f3c2c86b9ac70 Mon Sep 17 00:00:00 2001
From: Adam Gausmann <adam@gaussian.dev>
Date: Sun, 21 May 2023 01:09:12 -0500
Subject: [PATCH 2/2] New package: innernet-server-1.5.5

---
 .../files/innernet-server/conf                |  2 ++
 .../innernet-server/files/innernet-server/run |  3 +++
 srcpkgs/innernet-server/template              | 21 +++++++++++++++++++
 3 files changed, 26 insertions(+)
 create mode 100644 srcpkgs/innernet-server/files/innernet-server/conf
 create mode 100644 srcpkgs/innernet-server/files/innernet-server/run
 create mode 100644 srcpkgs/innernet-server/template

diff --git a/srcpkgs/innernet-server/files/innernet-server/conf b/srcpkgs/innernet-server/files/innernet-server/conf
new file mode 100644
index 000000000000..033a789bef2b
--- /dev/null
+++ b/srcpkgs/innernet-server/files/innernet-server/conf
@@ -0,0 +1,2 @@
+#INTERFACE=innernet
+#OPTS=
diff --git a/srcpkgs/innernet-server/files/innernet-server/run b/srcpkgs/innernet-server/files/innernet-server/run
new file mode 100644
index 000000000000..7c25b471ddc6
--- /dev/null
+++ b/srcpkgs/innernet-server/files/innernet-server/run
@@ -0,0 +1,3 @@
+#!/bin/sh
+[ -r ./conf ] && . ./conf
+exec innernet-server serve "$INTERFACE" ${OPTS}
diff --git a/srcpkgs/innernet-server/template b/srcpkgs/innernet-server/template
new file mode 100644
index 000000000000..e4e79225cc89
--- /dev/null
+++ b/srcpkgs/innernet-server/template
@@ -0,0 +1,21 @@
+# Template file for 'innernet-server'
+pkgname=innernet-server
+version=1.5.5
+revision=1
+build_style=cargo
+# test_add_peers does not work in containers
+make_check_args="-- --skip device::tests::test_add_peers"
+make_install_args="--path server"
+makedepends="libclang sqlite-devel"
+short_desc="Private network system using WireGuard - server daemon"
+maintainer="Adam Gausmann <adam@gaussian.dev>"
+license="MIT"
+homepage="https://github.com/tonarino/innernet"
+changelog="https://github.com/tonarino/innernet/releases"
+distfiles="https://github.com/tonarino/innernet/archive/refs/tags/v${version}.tar.gz"
+checksum=b4b7f89658b3c8b77d6482e7a7d21362037fb1f332b9db53bebda6fd8f6b91ad
+
+post_install() {
+	vlicense LICENSE
+	vsv innernet-server
+}

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

* Re: [PR PATCH] [Updated] New packages: innernet-1.5.5 innernet-server-1.5.5
  2023-05-21  7:03 [PR PATCH] New packages: innernet-1.5.5 innernet-server-1.5.5 agausmann
                   ` (10 preceding siblings ...)
  2023-05-22 19:59 ` agausmann
@ 2023-05-23  2:57 ` agausmann
  2023-08-22  1:44 ` github-actions
                   ` (5 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: agausmann @ 2023-05-23  2:57 UTC (permalink / raw)
  To: ml

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

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

https://github.com/agausmann/void-packages innernet
https://github.com/void-linux/void-packages/pull/43984

New packages: innernet-1.5.5 innernet-server-1.5.5
<!-- 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
- 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/43984.patch is attached

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

From f656eab70e132e418652fdbdea6609afc4914163 Mon Sep 17 00:00:00 2001
From: Adam Gausmann <adam@gaussian.dev>
Date: Sun, 21 May 2023 01:08:33 -0500
Subject: [PATCH 1/2] New package: innernet-1.5.5

---
 srcpkgs/innernet/files/innernet/conf   |  2 ++
 srcpkgs/innernet/files/innernet/finish |  3 +++
 srcpkgs/innernet/files/innernet/run    |  4 ++++
 srcpkgs/innernet/template              | 21 +++++++++++++++++++++
 4 files changed, 30 insertions(+)
 create mode 100644 srcpkgs/innernet/files/innernet/conf
 create mode 100755 srcpkgs/innernet/files/innernet/finish
 create mode 100755 srcpkgs/innernet/files/innernet/run
 create mode 100644 srcpkgs/innernet/template

diff --git a/srcpkgs/innernet/files/innernet/conf b/srcpkgs/innernet/files/innernet/conf
new file mode 100644
index 000000000000..033a789bef2b
--- /dev/null
+++ b/srcpkgs/innernet/files/innernet/conf
@@ -0,0 +1,2 @@
+#INTERFACE=innernet
+#OPTS=
diff --git a/srcpkgs/innernet/files/innernet/finish b/srcpkgs/innernet/files/innernet/finish
new file mode 100755
index 000000000000..eca811f800b5
--- /dev/null
+++ b/srcpkgs/innernet/files/innernet/finish
@@ -0,0 +1,3 @@
+#!/bin/sh
+[ -r ./conf ] && . ./conf
+innernet down "$INTERFACE"
diff --git a/srcpkgs/innernet/files/innernet/run b/srcpkgs/innernet/files/innernet/run
new file mode 100755
index 000000000000..da299d79c4f7
--- /dev/null
+++ b/srcpkgs/innernet/files/innernet/run
@@ -0,0 +1,4 @@
+#!/bin/sh
+exec 2>&1
+[ -r ./conf ] && . ./conf
+exec innernet up "$INTERFACE" --daemon ${OPTS}
diff --git a/srcpkgs/innernet/template b/srcpkgs/innernet/template
new file mode 100644
index 000000000000..91c138d33071
--- /dev/null
+++ b/srcpkgs/innernet/template
@@ -0,0 +1,21 @@
+# Template file for 'innernet'
+pkgname=innernet
+version=1.5.5
+revision=1
+build_style=cargo
+# test_add_peers does not work in containers
+make_check_args="-- --skip device::tests::test_add_peers"
+make_install_args="--path client"
+makedepends="libclang sqlite-devel"
+short_desc="Private network system using WireGuard"
+maintainer="Adam Gausmann <adam@gaussian.dev>"
+license="MIT"
+homepage="https://github.com/tonarino/innernet"
+changelog="https://github.com/tonarino/innernet/releases"
+distfiles="https://github.com/tonarino/innernet/archive/refs/tags/v${version}.tar.gz"
+checksum=b4b7f89658b3c8b77d6482e7a7d21362037fb1f332b9db53bebda6fd8f6b91ad
+
+post_install() {
+	vlicense LICENSE
+	vsv innernet
+}

From b76da4e0fe3f5f58cf75c99ac07e48cb9ad123f2 Mon Sep 17 00:00:00 2001
From: Adam Gausmann <adam@gaussian.dev>
Date: Sun, 21 May 2023 01:09:12 -0500
Subject: [PATCH 2/2] New package: innernet-server-1.5.5

---
 .../files/innernet-server/conf                |  2 ++
 .../innernet-server/files/innernet-server/run |  4 ++++
 srcpkgs/innernet-server/template              | 21 +++++++++++++++++++
 3 files changed, 27 insertions(+)
 create mode 100644 srcpkgs/innernet-server/files/innernet-server/conf
 create mode 100644 srcpkgs/innernet-server/files/innernet-server/run
 create mode 100644 srcpkgs/innernet-server/template

diff --git a/srcpkgs/innernet-server/files/innernet-server/conf b/srcpkgs/innernet-server/files/innernet-server/conf
new file mode 100644
index 000000000000..033a789bef2b
--- /dev/null
+++ b/srcpkgs/innernet-server/files/innernet-server/conf
@@ -0,0 +1,2 @@
+#INTERFACE=innernet
+#OPTS=
diff --git a/srcpkgs/innernet-server/files/innernet-server/run b/srcpkgs/innernet-server/files/innernet-server/run
new file mode 100644
index 000000000000..8abfc8951707
--- /dev/null
+++ b/srcpkgs/innernet-server/files/innernet-server/run
@@ -0,0 +1,4 @@
+#!/bin/sh
+exec 2>&1
+[ -r ./conf ] && . ./conf
+exec innernet-server serve "$INTERFACE" ${OPTS}
diff --git a/srcpkgs/innernet-server/template b/srcpkgs/innernet-server/template
new file mode 100644
index 000000000000..e4e79225cc89
--- /dev/null
+++ b/srcpkgs/innernet-server/template
@@ -0,0 +1,21 @@
+# Template file for 'innernet-server'
+pkgname=innernet-server
+version=1.5.5
+revision=1
+build_style=cargo
+# test_add_peers does not work in containers
+make_check_args="-- --skip device::tests::test_add_peers"
+make_install_args="--path server"
+makedepends="libclang sqlite-devel"
+short_desc="Private network system using WireGuard - server daemon"
+maintainer="Adam Gausmann <adam@gaussian.dev>"
+license="MIT"
+homepage="https://github.com/tonarino/innernet"
+changelog="https://github.com/tonarino/innernet/releases"
+distfiles="https://github.com/tonarino/innernet/archive/refs/tags/v${version}.tar.gz"
+checksum=b4b7f89658b3c8b77d6482e7a7d21362037fb1f332b9db53bebda6fd8f6b91ad
+
+post_install() {
+	vlicense LICENSE
+	vsv innernet-server
+}

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

* Re: New packages: innernet-1.5.5 innernet-server-1.5.5
  2023-05-21  7:03 [PR PATCH] New packages: innernet-1.5.5 innernet-server-1.5.5 agausmann
                   ` (11 preceding siblings ...)
  2023-05-23  2:57 ` agausmann
@ 2023-08-22  1:44 ` github-actions
  2023-08-22 16:54 ` agausmann
                   ` (4 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: github-actions @ 2023-08-22  1:44 UTC (permalink / raw)
  To: ml

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

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/43984#issuecomment-1687288456

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

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

* Re: New packages: innernet-1.5.5 innernet-server-1.5.5
  2023-05-21  7:03 [PR PATCH] New packages: innernet-1.5.5 innernet-server-1.5.5 agausmann
                   ` (12 preceding siblings ...)
  2023-08-22  1:44 ` github-actions
@ 2023-08-22 16:54 ` agausmann
  2023-11-21  1:48 ` github-actions
                   ` (3 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: agausmann @ 2023-08-22 16:54 UTC (permalink / raw)
  To: ml

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

New comment by agausmann on void-packages repository

https://github.com/void-linux/void-packages/pull/43984#issuecomment-1688580511

Comment:
Still using these, still hoping to merge

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

* Re: New packages: innernet-1.5.5 innernet-server-1.5.5
  2023-05-21  7:03 [PR PATCH] New packages: innernet-1.5.5 innernet-server-1.5.5 agausmann
                   ` (13 preceding siblings ...)
  2023-08-22 16:54 ` agausmann
@ 2023-11-21  1:48 ` github-actions
  2023-11-28 20:39 ` agausmann
                   ` (2 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: github-actions @ 2023-11-21  1:48 UTC (permalink / raw)
  To: ml

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

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/43984#issuecomment-1820083455

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

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

* Re: New packages: innernet-1.5.5 innernet-server-1.5.5
  2023-05-21  7:03 [PR PATCH] New packages: innernet-1.5.5 innernet-server-1.5.5 agausmann
                   ` (14 preceding siblings ...)
  2023-11-21  1:48 ` github-actions
@ 2023-11-28 20:39 ` agausmann
  2024-02-28  1:44 ` github-actions
  2024-03-13  1:45 ` [PR PATCH] [Closed]: " github-actions
  17 siblings, 0 replies; 19+ messages in thread
From: agausmann @ 2023-11-28 20:39 UTC (permalink / raw)
  To: ml

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

New comment by agausmann on void-packages repository

https://github.com/void-linux/void-packages/pull/43984#issuecomment-1830698472

Comment:
bump.

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

* Re: New packages: innernet-1.5.5 innernet-server-1.5.5
  2023-05-21  7:03 [PR PATCH] New packages: innernet-1.5.5 innernet-server-1.5.5 agausmann
                   ` (15 preceding siblings ...)
  2023-11-28 20:39 ` agausmann
@ 2024-02-28  1:44 ` github-actions
  2024-03-13  1:45 ` [PR PATCH] [Closed]: " github-actions
  17 siblings, 0 replies; 19+ messages in thread
From: github-actions @ 2024-02-28  1:44 UTC (permalink / raw)
  To: ml

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

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/43984#issuecomment-1968035982

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

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

* Re: [PR PATCH] [Closed]: New packages: innernet-1.5.5 innernet-server-1.5.5
  2023-05-21  7:03 [PR PATCH] New packages: innernet-1.5.5 innernet-server-1.5.5 agausmann
                   ` (16 preceding siblings ...)
  2024-02-28  1:44 ` github-actions
@ 2024-03-13  1:45 ` github-actions
  17 siblings, 0 replies; 19+ messages in thread
From: github-actions @ 2024-03-13  1:45 UTC (permalink / raw)
  To: ml

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

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

New packages: innernet-1.5.5 innernet-server-1.5.5
https://github.com/void-linux/void-packages/pull/43984

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
- 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] 19+ messages in thread

end of thread, other threads:[~2024-03-13  1:45 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-21  7:03 [PR PATCH] New packages: innernet-1.5.5 innernet-server-1.5.5 agausmann
2023-05-21  7:06 ` [PR PATCH] [Updated] " agausmann
2023-05-21  7:22 ` agausmann
2023-05-21  7:31 ` agausmann
2023-05-21  7:31 ` agausmann
2023-05-21  7:51 ` agausmann
2023-05-21  7:56 ` icp1994
2023-05-21 17:49 ` agausmann
2023-05-21 17:50 ` [PR PATCH] [Updated] " agausmann
2023-05-21 17:58 ` agausmann
2023-05-22 19:40 ` agausmann
2023-05-22 19:59 ` agausmann
2023-05-23  2:57 ` agausmann
2023-08-22  1:44 ` github-actions
2023-08-22 16:54 ` agausmann
2023-11-21  1:48 ` github-actions
2023-11-28 20:39 ` agausmann
2024-02-28  1:44 ` github-actions
2024-03-13  1:45 ` [PR PATCH] [Closed]: " github-actions

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