Github messages for voidlinux
 help / color / mirror / Atom feed
From: agausmann <agausmann@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] New packages: innernet-1.5.5 innernet-server-1.5.5
Date: Sun, 21 May 2023 19:58:54 +0200	[thread overview]
Message-ID: <20230521175854.U95FiymYa7sFULFqiLrkRlFOGfzReZMrTLKppaN75KA@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-43984@inbox.vuxu.org>

[-- 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
+}

  parent reply	other threads:[~2023-05-21 17:58 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-21  7:03 [PR PATCH] " 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 [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230521175854.U95FiymYa7sFULFqiLrkRlFOGfzReZMrTLKppaN75KA@z \
    --to=agausmann@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).