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

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