Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: parprouted-0.7.
@ 2020-10-01 22:50 fosslinux
  2020-10-05  5:07 ` fosslinux
                   ` (9 more replies)
  0 siblings, 10 replies; 12+ messages in thread
From: fosslinux @ 2020-10-01 22:50 UTC (permalink / raw)
  To: ml

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

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

https://github.com/fosslinux/void-packages paraprouted-new
https://github.com/void-linux/void-packages/pull/25250

New package: parprouted-0.7.


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

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

From 57ec1804a72b47f5edfce7b825c5f864462797e6 Mon Sep 17 00:00:00 2001
From: fosslinux <fosslinux@aussies.space>
Date: Thu, 1 Oct 2020 09:42:15 +1000
Subject: [PATCH] New package: parprouted-0.7.

---
 srcpkgs/parprouted/files/parprouted/conf |  2 ++
 srcpkgs/parprouted/files/parprouted/run  | 14 ++++++++++++++
 srcpkgs/parprouted/template              | 18 ++++++++++++++++++
 3 files changed, 34 insertions(+)
 create mode 100644 srcpkgs/parprouted/files/parprouted/conf
 create mode 100644 srcpkgs/parprouted/files/parprouted/run
 create mode 100644 srcpkgs/parprouted/template

diff --git a/srcpkgs/parprouted/files/parprouted/conf b/srcpkgs/parprouted/files/parprouted/conf
new file mode 100644
index 00000000000..933a132bc72
--- /dev/null
+++ b/srcpkgs/parprouted/files/parprouted/conf
@@ -0,0 +1,2 @@
+#EXIT_IF=wlan0
+#IN_IF=eth0
diff --git a/srcpkgs/parprouted/files/parprouted/run b/srcpkgs/parprouted/files/parprouted/run
new file mode 100644
index 00000000000..2a84bc947b2
--- /dev/null
+++ b/srcpkgs/parprouted/files/parprouted/run
@@ -0,0 +1,14 @@
+#!/bin/sh
+if [ -r ./conf ]; then
+    . ./conf
+else
+    echo "Add conf file!"
+    exit 1
+fi
+
+if [ -z "${EXIT_IF}" ] || [ -z "${IN_IF}" ]; then
+    echo "Add data in conf file!"
+    exit 1
+fi
+
+exec parprouted ${EXIT_IF} ${IN_IF}
diff --git a/srcpkgs/parprouted/template b/srcpkgs/parprouted/template
new file mode 100644
index 00000000000..2d477346b85
--- /dev/null
+++ b/srcpkgs/parprouted/template
@@ -0,0 +1,18 @@
+# Template file for 'parprouted'
+pkgname=parprouted
+version=0.7
+revision=1
+build_style=gnu-makefile
+depends="iproute2"
+short_desc="Daemon for transparent IP (Layer 3) proxy ARP bridging"
+maintainer="fosslinux <fosslinux@aussies.space>"
+license="GPL-2.0-or-later"
+homepage="http://freecode.com/projects/parprouted"
+distfiles="http://www.hazard.maks.net/parprouted/parprouted-${version}.tar.gz"
+checksum=d63643c95d4149a3d71112da5892f459433456bf0279bfa304625f109178defc
+
+do_install() {
+	vbin "${pkgname}"
+	vman "${pkgname}.8"
+	vsv "${pkgname}"
+}

^ permalink raw reply	[flat|nested] 12+ messages in thread
* [PR PATCH] New package: parprouted-0.7
@ 2020-04-21  6:33 pfpulux
  0 siblings, 0 replies; 12+ messages in thread
From: pfpulux @ 2020-04-21  6:33 UTC (permalink / raw)
  To: ml

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

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

https://github.com/pfpulux/void-packages parprouted
https://github.com/void-linux/void-packages/pull/21196

New package: parprouted-0.7


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

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

From 9f3a9db354f4102f68ff79ab20d80ad7b4591d5f Mon Sep 17 00:00:00 2001
From: Pulux <pulux@pf4sh.de>
Date: Tue, 21 Apr 2020 08:29:19 +0200
Subject: [PATCH] New package: parprouted-0.7

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

diff --git a/srcpkgs/parprouted/template b/srcpkgs/parprouted/template
new file mode 100644
index 00000000000..34289661036
--- /dev/null
+++ b/srcpkgs/parprouted/template
@@ -0,0 +1,16 @@
+# Template file for 'parprouted'
+pkgname=parprouted
+version=0.7
+revision=1
+build_style=gnu-makefile
+short_desc="Proxy ARP IP bridging daemon"
+maintainer="Pulux <pulux@pf4sh.de>"
+license="GPL-2.0-or-later"
+homepage="http://www.hazard.maks.net/parprouted/"
+distfiles="http://www.hazard.maks.net/parprouted/${pkgname}-${version}.tar.gz"
+checksum=d63643c95d4149a3d71112da5892f459433456bf0279bfa304625f109178defc
+
+do_install() {
+	vbin parprouted
+	vman parprouted.8
+}

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

end of thread, other threads:[~2020-11-23  8:03 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-01 22:50 [PR PATCH] New package: parprouted-0.7 fosslinux
2020-10-05  5:07 ` fosslinux
2020-10-25 17:02 ` [PR REVIEW] " Duncaen
2020-10-25 17:05 ` Duncaen
2020-10-25 17:05 ` Duncaen
2020-10-26  0:19 ` fosslinux
2020-10-30 23:39 ` [PR PATCH] [Updated] " fosslinux
2020-10-30 23:40 ` fosslinux
2020-10-31 23:32 ` [PR PATCH] [Updated] " fosslinux
2020-11-23  8:03 ` fosslinux
2020-11-23  8:03 ` [PR PATCH] [Closed]: " fosslinux
  -- strict thread matches above, loose matches on Subject: below --
2020-04-21  6:33 [PR PATCH] " pfpulux

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