Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] openvpn: add a service file.
@ 2019-06-25  5:01 voidlinux-github
  2019-06-25  5:43 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: voidlinux-github @ 2019-06-25  5:01 UTC (permalink / raw)
  To: ml

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

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

https://github.com/travankor/void-packages openvpn
https://github.com/void-linux/void-packages/pull/12663

openvpn: add a service file.
None

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

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

From ca218272b58682c18e43a25311034453e7c8e79f Mon Sep 17 00:00:00 2001
From: travankor <travankor@tuta.io>
Date: Mon, 24 Jun 2019 21:59:36 -0700
Subject: [PATCH] openvpn: add a service file.

---
 srcpkgs/openvpn/files/openvpn/run | 3 +++
 srcpkgs/openvpn/template          | 1 +
 2 files changed, 4 insertions(+)
 create mode 100644 srcpkgs/openvpn/files/openvpn/run

diff --git a/srcpkgs/openvpn/files/openvpn/run b/srcpkgs/openvpn/files/openvpn/run
new file mode 100644
index 00000000000..6bdf95e03dd
--- /dev/null
+++ b/srcpkgs/openvpn/files/openvpn/run
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+exec openvpn --config /etc/openvpn/openvpn.conf
diff --git a/srcpkgs/openvpn/template b/srcpkgs/openvpn/template
index 9c07d62f95d..c21c45e65f5 100644
--- a/srcpkgs/openvpn/template
+++ b/srcpkgs/openvpn/template
@@ -20,4 +20,5 @@ post_install() {
 	cp -r sample/sample-config-files/* ${DESTDIR}/usr/share/examples/${pkgname}
 
 	rm -rf ${DESTDIR}/usr/include
+	vsv openvpn
 }

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

* Re: [PR PATCH] [Updated] openvpn: add a service file.
  2019-06-25  5:01 [PR PATCH] openvpn: add a service file voidlinux-github
@ 2019-06-25  5:43 ` voidlinux-github
  2019-06-25  5:43 ` voidlinux-github
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: voidlinux-github @ 2019-06-25  5:43 UTC (permalink / raw)
  To: ml

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

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

https://github.com/travankor/void-packages openvpn
https://github.com/void-linux/void-packages/pull/12663

openvpn: add a service file.
None

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

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

From 86dcb95f55e04c9c1b822284885594cc00f1e09f Mon Sep 17 00:00:00 2001
From: travankor <travankor@tuta.io>
Date: Mon, 24 Jun 2019 21:59:36 -0700
Subject: [PATCH] openvpn: add a service file.

---
 srcpkgs/openvpn/files/openvpn/run | 2 ++
 srcpkgs/openvpn/template          | 5 +++--
 2 files changed, 5 insertions(+), 2 deletions(-)
 create mode 100644 srcpkgs/openvpn/files/openvpn/run

diff --git a/srcpkgs/openvpn/files/openvpn/run b/srcpkgs/openvpn/files/openvpn/run
new file mode 100644
index 00000000000..8173deff4af
--- /dev/null
+++ b/srcpkgs/openvpn/files/openvpn/run
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec openvpn --config /etc/openvpn/openvpn.conf
diff --git a/srcpkgs/openvpn/template b/srcpkgs/openvpn/template
index 9c07d62f95d..0c735d6a752 100644
--- a/srcpkgs/openvpn/template
+++ b/srcpkgs/openvpn/template
@@ -8,11 +8,11 @@ hostmakedepends="iproute2 pkg-config"
 makedepends="libressl-devel lzo-devel pam-devel pkcs11-helper-devel
  cmocka-devel"
 depends="iproute2"
-short_desc="An easy-to-use, robust, and highly configurable VPN"
+short_desc="Easy-to-use, robust, and highly configurable VPN"
 maintainer="Juan RP <xtraeme@voidlinux.org>"
 license="GPL-2.0-only"
 homepage="https://www.openvpn.net"
-distfiles="http://build.openvpn.net/downloads/releases/${pkgname}-${version}.tar.xz"
+distfiles="https://build.openvpn.net/downloads/releases/${pkgname}-${version}.tar.xz"
 checksum=a42f53570f669eaf10af68e98d65b531015ff9e12be7a62d9269ea684652f648
 
 post_install() {
@@ -20,4 +20,5 @@ post_install() {
 	cp -r sample/sample-config-files/* ${DESTDIR}/usr/share/examples/${pkgname}
 
 	rm -rf ${DESTDIR}/usr/include
+	vsv openvpn
 }

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

* Re: [PR PATCH] [Updated] openvpn: add a service file.
  2019-06-25  5:01 [PR PATCH] openvpn: add a service file voidlinux-github
  2019-06-25  5:43 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-06-25  5:43 ` voidlinux-github
  2019-06-25  5:45 ` voidlinux-github
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: voidlinux-github @ 2019-06-25  5:43 UTC (permalink / raw)
  To: ml

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

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

https://github.com/travankor/void-packages openvpn
https://github.com/void-linux/void-packages/pull/12663

openvpn: add a service file.
None

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

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

From 86dcb95f55e04c9c1b822284885594cc00f1e09f Mon Sep 17 00:00:00 2001
From: travankor <travankor@tuta.io>
Date: Mon, 24 Jun 2019 21:59:36 -0700
Subject: [PATCH] openvpn: add a service file.

---
 srcpkgs/openvpn/files/openvpn/run | 2 ++
 srcpkgs/openvpn/template          | 5 +++--
 2 files changed, 5 insertions(+), 2 deletions(-)
 create mode 100644 srcpkgs/openvpn/files/openvpn/run

diff --git a/srcpkgs/openvpn/files/openvpn/run b/srcpkgs/openvpn/files/openvpn/run
new file mode 100644
index 00000000000..8173deff4af
--- /dev/null
+++ b/srcpkgs/openvpn/files/openvpn/run
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec openvpn --config /etc/openvpn/openvpn.conf
diff --git a/srcpkgs/openvpn/template b/srcpkgs/openvpn/template
index 9c07d62f95d..0c735d6a752 100644
--- a/srcpkgs/openvpn/template
+++ b/srcpkgs/openvpn/template
@@ -8,11 +8,11 @@ hostmakedepends="iproute2 pkg-config"
 makedepends="libressl-devel lzo-devel pam-devel pkcs11-helper-devel
  cmocka-devel"
 depends="iproute2"
-short_desc="An easy-to-use, robust, and highly configurable VPN"
+short_desc="Easy-to-use, robust, and highly configurable VPN"
 maintainer="Juan RP <xtraeme@voidlinux.org>"
 license="GPL-2.0-only"
 homepage="https://www.openvpn.net"
-distfiles="http://build.openvpn.net/downloads/releases/${pkgname}-${version}.tar.xz"
+distfiles="https://build.openvpn.net/downloads/releases/${pkgname}-${version}.tar.xz"
 checksum=a42f53570f669eaf10af68e98d65b531015ff9e12be7a62d9269ea684652f648
 
 post_install() {
@@ -20,4 +20,5 @@ post_install() {
 	cp -r sample/sample-config-files/* ${DESTDIR}/usr/share/examples/${pkgname}
 
 	rm -rf ${DESTDIR}/usr/include
+	vsv openvpn
 }

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

* Re: [PR PATCH] [Updated] openvpn: add a service file.
  2019-06-25  5:01 [PR PATCH] openvpn: add a service file voidlinux-github
                   ` (2 preceding siblings ...)
  2019-06-25  5:45 ` voidlinux-github
@ 2019-06-25  5:45 ` voidlinux-github
  2019-06-25  6:29 ` voidlinux-github
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: voidlinux-github @ 2019-06-25  5:45 UTC (permalink / raw)
  To: ml

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

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

https://github.com/travankor/void-packages openvpn
https://github.com/void-linux/void-packages/pull/12663

openvpn: add a service file.
None

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

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

From b409e8d2bd5dac8ea664a98d6918cb0bfbbc4b21 Mon Sep 17 00:00:00 2001
From: travankor <travankor@tuta.io>
Date: Mon, 24 Jun 2019 21:59:36 -0700
Subject: [PATCH] openvpn: add a service file.

---
 srcpkgs/openvpn/files/openvpn/run | 2 ++
 srcpkgs/openvpn/template          | 7 ++++---
 2 files changed, 6 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/openvpn/files/openvpn/run

diff --git a/srcpkgs/openvpn/files/openvpn/run b/srcpkgs/openvpn/files/openvpn/run
new file mode 100644
index 00000000000..8173deff4af
--- /dev/null
+++ b/srcpkgs/openvpn/files/openvpn/run
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec openvpn --config /etc/openvpn/openvpn.conf
diff --git a/srcpkgs/openvpn/template b/srcpkgs/openvpn/template
index 9c07d62f95d..bd192f35351 100644
--- a/srcpkgs/openvpn/template
+++ b/srcpkgs/openvpn/template
@@ -1,18 +1,18 @@
 # Template file for 'openvpn'
 pkgname=openvpn
 version=2.4.7
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-pkcs11 --enable-iproute2 --disable-systemd"
 hostmakedepends="iproute2 pkg-config"
 makedepends="libressl-devel lzo-devel pam-devel pkcs11-helper-devel
  cmocka-devel"
 depends="iproute2"
-short_desc="An easy-to-use, robust, and highly configurable VPN"
+short_desc="Easy-to-use, robust, and highly configurable VPN"
 maintainer="Juan RP <xtraeme@voidlinux.org>"
 license="GPL-2.0-only"
 homepage="https://www.openvpn.net"
-distfiles="http://build.openvpn.net/downloads/releases/${pkgname}-${version}.tar.xz"
+distfiles="https://build.openvpn.net/downloads/releases/${pkgname}-${version}.tar.xz"
 checksum=a42f53570f669eaf10af68e98d65b531015ff9e12be7a62d9269ea684652f648
 
 post_install() {
@@ -20,4 +20,5 @@ post_install() {
 	cp -r sample/sample-config-files/* ${DESTDIR}/usr/share/examples/${pkgname}
 
 	rm -rf ${DESTDIR}/usr/include
+	vsv openvpn
 }

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

* Re: [PR PATCH] [Updated] openvpn: add a service file.
  2019-06-25  5:01 [PR PATCH] openvpn: add a service file voidlinux-github
  2019-06-25  5:43 ` [PR PATCH] [Updated] " voidlinux-github
  2019-06-25  5:43 ` voidlinux-github
@ 2019-06-25  5:45 ` voidlinux-github
  2019-06-25  5:45 ` voidlinux-github
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: voidlinux-github @ 2019-06-25  5:45 UTC (permalink / raw)
  To: ml

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

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

https://github.com/travankor/void-packages openvpn
https://github.com/void-linux/void-packages/pull/12663

openvpn: add a service file.
None

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

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

From b409e8d2bd5dac8ea664a98d6918cb0bfbbc4b21 Mon Sep 17 00:00:00 2001
From: travankor <travankor@tuta.io>
Date: Mon, 24 Jun 2019 21:59:36 -0700
Subject: [PATCH] openvpn: add a service file.

---
 srcpkgs/openvpn/files/openvpn/run | 2 ++
 srcpkgs/openvpn/template          | 7 ++++---
 2 files changed, 6 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/openvpn/files/openvpn/run

diff --git a/srcpkgs/openvpn/files/openvpn/run b/srcpkgs/openvpn/files/openvpn/run
new file mode 100644
index 00000000000..8173deff4af
--- /dev/null
+++ b/srcpkgs/openvpn/files/openvpn/run
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec openvpn --config /etc/openvpn/openvpn.conf
diff --git a/srcpkgs/openvpn/template b/srcpkgs/openvpn/template
index 9c07d62f95d..bd192f35351 100644
--- a/srcpkgs/openvpn/template
+++ b/srcpkgs/openvpn/template
@@ -1,18 +1,18 @@
 # Template file for 'openvpn'
 pkgname=openvpn
 version=2.4.7
-revision=2
+revision=3
 build_style=gnu-configure
 configure_args="--enable-pkcs11 --enable-iproute2 --disable-systemd"
 hostmakedepends="iproute2 pkg-config"
 makedepends="libressl-devel lzo-devel pam-devel pkcs11-helper-devel
  cmocka-devel"
 depends="iproute2"
-short_desc="An easy-to-use, robust, and highly configurable VPN"
+short_desc="Easy-to-use, robust, and highly configurable VPN"
 maintainer="Juan RP <xtraeme@voidlinux.org>"
 license="GPL-2.0-only"
 homepage="https://www.openvpn.net"
-distfiles="http://build.openvpn.net/downloads/releases/${pkgname}-${version}.tar.xz"
+distfiles="https://build.openvpn.net/downloads/releases/${pkgname}-${version}.tar.xz"
 checksum=a42f53570f669eaf10af68e98d65b531015ff9e12be7a62d9269ea684652f648
 
 post_install() {
@@ -20,4 +20,5 @@ post_install() {
 	cp -r sample/sample-config-files/* ${DESTDIR}/usr/share/examples/${pkgname}
 
 	rm -rf ${DESTDIR}/usr/include
+	vsv openvpn
 }

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

* Re: openvpn: add a service file.
  2019-06-25  5:01 [PR PATCH] openvpn: add a service file voidlinux-github
                   ` (3 preceding siblings ...)
  2019-06-25  5:45 ` voidlinux-github
@ 2019-06-25  6:29 ` voidlinux-github
  2019-06-26  4:49 ` voidlinux-github
  2019-06-26  4:49 ` [PR PATCH] [Closed]: " voidlinux-github
  6 siblings, 0 replies; 8+ messages in thread
From: voidlinux-github @ 2019-06-25  6:29 UTC (permalink / raw)
  To: ml

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

New comment by Hoshpak on void-packages repository

https://github.com/void-linux/void-packages/pull/12663#issuecomment-505304527
Comment:
This has been proposed and denied before. I think it was on the old organization so the discussion is gone but the general consensus as far as I remember was that setting up the service should be left to the individual user.

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

* Re: openvpn: add a service file.
  2019-06-25  5:01 [PR PATCH] openvpn: add a service file voidlinux-github
                   ` (4 preceding siblings ...)
  2019-06-25  6:29 ` voidlinux-github
@ 2019-06-26  4:49 ` voidlinux-github
  2019-06-26  4:49 ` [PR PATCH] [Closed]: " voidlinux-github
  6 siblings, 0 replies; 8+ messages in thread
From: voidlinux-github @ 2019-06-26  4:49 UTC (permalink / raw)
  To: ml

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

New comment by travankor on void-packages repository

https://github.com/void-linux/void-packages/pull/12663#issuecomment-505716787
Comment:
> This has been proposed and denied before. I think it was on the old organization so the discussion is gone but the general consensus as far as I remember was that setting up the service should be left to the individual user.

Fair, enough. I ran into this while setting up a new machine on Void, so this explains why.  I would still prefer a stub implementation to nothing, but guess it does not matter too much.

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

* Re: [PR PATCH] [Closed]: openvpn: add a service file.
  2019-06-25  5:01 [PR PATCH] openvpn: add a service file voidlinux-github
                   ` (5 preceding siblings ...)
  2019-06-26  4:49 ` voidlinux-github
@ 2019-06-26  4:49 ` voidlinux-github
  6 siblings, 0 replies; 8+ messages in thread
From: voidlinux-github @ 2019-06-26  4:49 UTC (permalink / raw)
  To: ml

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

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

openvpn: add a service file.
https://github.com/void-linux/void-packages/pull/12663
Description: None

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

end of thread, other threads:[~2019-06-26  4:49 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-25  5:01 [PR PATCH] openvpn: add a service file voidlinux-github
2019-06-25  5:43 ` [PR PATCH] [Updated] " voidlinux-github
2019-06-25  5:43 ` voidlinux-github
2019-06-25  5:45 ` voidlinux-github
2019-06-25  5:45 ` voidlinux-github
2019-06-25  6:29 ` voidlinux-github
2019-06-26  4:49 ` voidlinux-github
2019-06-26  4:49 ` [PR PATCH] [Closed]: " voidlinux-github

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