Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New Package: ivpn-3.4.5
@ 2021-12-09  6:00 b-l-a-i-n-e
  2021-12-12 17:53 ` [PR REVIEW] " NeelChotai
                   ` (19 more replies)
  0 siblings, 20 replies; 21+ messages in thread
From: b-l-a-i-n-e @ 2021-12-09  6:00 UTC (permalink / raw)
  To: ml

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

There is a new pull request by b-l-a-i-n-e against master on the void-packages repository

https://github.com/b-l-a-i-n-e/void-packages ivpn
https://github.com/void-linux/void-packages/pull/34435

New Package: ivpn-3.4.5
#### Testing the changes
- I tested the changes in this PR: YES

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): YES

#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)

Based off of aur
https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=ivpn


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

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

From cff7cf55c0e25957d449f8b7dd97846817837930 Mon Sep 17 00:00:00 2001
From: b-l-a-i-n-e <blaine.gilbreth@gmail.com>
Date: Wed, 8 Dec 2021 21:43:37 -0800
Subject: [PATCH] New Package: ivpn-3.4.5

---
 srcpkgs/ivpn/INSTALL.msg            |  3 ++
 srcpkgs/ivpn/files/ivpn-service/run |  3 ++
 srcpkgs/ivpn/template               | 65 +++++++++++++++++++++++++++++
 3 files changed, 71 insertions(+)
 create mode 100644 srcpkgs/ivpn/INSTALL.msg
 create mode 100644 srcpkgs/ivpn/files/ivpn-service/run
 create mode 100644 srcpkgs/ivpn/template

diff --git a/srcpkgs/ivpn/INSTALL.msg b/srcpkgs/ivpn/INSTALL.msg
new file mode 100644
index 000000000000..b472111c53ec
--- /dev/null
+++ b/srcpkgs/ivpn/INSTALL.msg
@@ -0,0 +1,3 @@
+Start ivpn-service:
+
+	$ sudo ln -s /etc/sv/ivpn-service /var/service/
diff --git a/srcpkgs/ivpn/files/ivpn-service/run b/srcpkgs/ivpn/files/ivpn-service/run
new file mode 100644
index 000000000000..82ec06923576
--- /dev/null
+++ b/srcpkgs/ivpn/files/ivpn-service/run
@@ -0,0 +1,3 @@
+#!/bin/sh
+[ -r conf ] && . ./conf
+exec ivpn-service $OPTS
diff --git a/srcpkgs/ivpn/template b/srcpkgs/ivpn/template
new file mode 100644
index 000000000000..f6a1c9ee3787
--- /dev/null
+++ b/srcpkgs/ivpn/template
@@ -0,0 +1,65 @@
+# Template file for 'ivpn'
+pkgname=ivpn
+version=3.4.5
+revision=1
+_ivpndir="desktop-app-${version}"
+archs="x86_64"
+create_wrksrc=yes
+hostmakedepends="curl w3m libcurl git go wireless_tools-devel"
+depends="openvpn wireless_tools glibc lsof"
+short_desc="IVPN Command Line Interface"
+maintainer="b-l-a-i-n-e <blaine.gilbreth@gmail.com>"
+license="custom:Proprietary"
+homepage="https://www.ivpn.net"
+distfiles="https://github.com/ivpn/desktop-app/archive/v${version}.tar.gz"
+checksum=e6837cb653dc9089afa50281bc11df5da99da0b6edd597220f50646db0c8cccd
+_license_checksum=92fd1c283e604a160a9dd3ef3d030fae302bc49c6f8c62c27e3dff358ecb2d9d
+repository=nonfree
+restricted=yes
+ostrip=yes
+nopie=yes
+
+post_extract() {
+	curl -L https://raw.githubusercontent.com/ivpn/ivpn.net/main/src/content/pages/terms-of-service.md > EULA
+	filesum="$(xbps-digest EULA)"
+	if [ "$filesum" != "$_license_checksum" ]; then
+		msg_error "SHA256 mismatch for EULA:\n$filesum\n"
+	fi
+}
+
+do_build() {
+	(cd "${_ivpndir}/daemon" && \
+		./References/Linux/scripts/build-all.sh -v "${pkgver}" -c "${pkgver}_stamped")
+
+	(cd "${_ivpndir}/cli" && \
+		./References/Linux/compile-cli.sh -v "${pkgver}" -c "${pkgver}_stamped")
+}
+
+do_install() {
+	local daemonlinuxdir="${_ivpndir}/daemon/References/Linux"
+	local clilinuxdir="${_ivpndir}/cli/References/Linux"
+
+	vmkdir usr/bin
+	vinstall "${daemonlinuxdir}/scripts/_out_bin/ivpn-service" 755 usr/bin
+	vinstall "${clilinuxdir}/_out_bin/ivpn" 755 usr/bin
+
+	vmkdir opt/ivpn
+	vmkdir opt/ivpn/etc
+	vinstall "${daemonlinuxdir}/etc/client.down" 700 opt/ivpn/etc
+	vinstall "${daemonlinuxdir}/etc/client.up" 700 opt/ivpn/etc
+	vinstall "${daemonlinuxdir}/etc/firewall.sh" 700 opt/ivpn/etc
+	vinstall "${daemonlinuxdir}/etc/servers.json" 600 opt/ivpn/etc
+	vinstall "${daemonlinuxdir}/etc/ca.crt" 400 opt/ivpn/etc
+	vinstall "${daemonlinuxdir}/etc/ta.key" 400 opt/ivpn/etc
+
+	vmkdir opt/ivpn/wireguard-tools
+	vinstall "${daemonlinuxdir}/_deps/wireguard-tools_inst/wg-quick" 755 opt/ivpn/wireguard-tools
+	vinstall "${daemonlinuxdir}/_deps/wireguard-tools_inst/wg" 755 opt/ivpn/wireguard-tools
+
+	vmkdir opt/ivpn/obfsproxy
+	vinstall "${daemonlinuxdir}/_deps/obfs4proxy_inst/obfs4proxy" 755 opt/ivpn/obfsproxy
+
+	vsv ivpn-service
+
+	vlicense EULA
+}

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

* Re: [PR REVIEW] New Package: ivpn-3.4.5
  2021-12-09  6:00 [PR PATCH] New Package: ivpn-3.4.5 b-l-a-i-n-e
@ 2021-12-12 17:53 ` NeelChotai
  2021-12-12 17:58 ` NeelChotai
                   ` (18 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: NeelChotai @ 2021-12-12 17:53 UTC (permalink / raw)
  To: ml

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

New review comment by NeelChotai on void-packages repository

https://github.com/void-linux/void-packages/pull/34435#discussion_r767307027

Comment:
This feels a little out of place for me since it's a EULA of the IVPN service rather than the software. As maintainers, we're only providing the software and in my eyes any acceptance of a service agreement is between the service provider and the user.

If you agree, this doesn't need to be in the nonfree repo since the build scripts seem to be pulling in all open source software and the licence should be changed to GPL3-only.

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

* Re: [PR REVIEW] New Package: ivpn-3.4.5
  2021-12-09  6:00 [PR PATCH] New Package: ivpn-3.4.5 b-l-a-i-n-e
  2021-12-12 17:53 ` [PR REVIEW] " NeelChotai
@ 2021-12-12 17:58 ` NeelChotai
  2021-12-13  3:44 ` b-l-a-i-n-e
                   ` (17 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: NeelChotai @ 2021-12-12 17:58 UTC (permalink / raw)
  To: ml

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

New review comment by NeelChotai on void-packages repository

https://github.com/void-linux/void-packages/pull/34435#discussion_r767307538

Comment:
Nitpick but perhaps a note indicating that the daemon is mandatory could be useful, i.e., `The ivpn-service must be running in order to use ivpn-cli:`

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

* Re: [PR REVIEW] New Package: ivpn-3.4.5
  2021-12-09  6:00 [PR PATCH] New Package: ivpn-3.4.5 b-l-a-i-n-e
  2021-12-12 17:53 ` [PR REVIEW] " NeelChotai
  2021-12-12 17:58 ` NeelChotai
@ 2021-12-13  3:44 ` b-l-a-i-n-e
  2021-12-13  3:55 ` b-l-a-i-n-e
                   ` (16 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: b-l-a-i-n-e @ 2021-12-13  3:44 UTC (permalink / raw)
  To: ml

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

New review comment by b-l-a-i-n-e on void-packages repository

https://github.com/void-linux/void-packages/pull/34435#discussion_r767394951

Comment:
@NeelChotai makes sense to me, I'll remove those eula checks and change to GPL3 license

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

* Re: [PR REVIEW] New Package: ivpn-3.4.5
  2021-12-09  6:00 [PR PATCH] New Package: ivpn-3.4.5 b-l-a-i-n-e
                   ` (2 preceding siblings ...)
  2021-12-13  3:44 ` b-l-a-i-n-e
@ 2021-12-13  3:55 ` b-l-a-i-n-e
  2021-12-13  4:07 ` [PR PATCH] [Updated] " b-l-a-i-n-e
                   ` (15 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: b-l-a-i-n-e @ 2021-12-13  3:55 UTC (permalink / raw)
  To: ml

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

New review comment by b-l-a-i-n-e on void-packages repository

https://github.com/void-linux/void-packages/pull/34435#discussion_r767394951

Comment:
@NeelChotai makes sense to me, I'll remove those eula checks and change to GPL3-only license

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

* Re: [PR PATCH] [Updated] New Package: ivpn-3.4.5
  2021-12-09  6:00 [PR PATCH] New Package: ivpn-3.4.5 b-l-a-i-n-e
                   ` (3 preceding siblings ...)
  2021-12-13  3:55 ` b-l-a-i-n-e
@ 2021-12-13  4:07 ` b-l-a-i-n-e
  2021-12-13  4:08 ` b-l-a-i-n-e
                   ` (14 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: b-l-a-i-n-e @ 2021-12-13  4:07 UTC (permalink / raw)
  To: ml

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

There is an updated pull request by b-l-a-i-n-e against master on the void-packages repository

https://github.com/b-l-a-i-n-e/void-packages ivpn
https://github.com/void-linux/void-packages/pull/34435

New Package: ivpn-3.4.5
#### Testing the changes
- I tested the changes in this PR: YES

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): YES

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-GLIBC)

Based off of aur
https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=ivpn


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

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

From f1006af37fdf989f7090a31d1887a14a1a22cdb0 Mon Sep 17 00:00:00 2001
From: b-l-a-i-n-e <blaine.gilbreth@gmail.com>
Date: Wed, 8 Dec 2021 21:43:37 -0800
Subject: [PATCH] New Package: ivpn-3.4.5

---
 srcpkgs/ivpn/INSTALL.msg            | 11 +++++++
 srcpkgs/ivpn/files/ivpn-service/run |  3 ++
 srcpkgs/ivpn/template               | 51 +++++++++++++++++++++++++++++
 3 files changed, 65 insertions(+)
 create mode 100644 srcpkgs/ivpn/INSTALL.msg
 create mode 100644 srcpkgs/ivpn/files/ivpn-service/run
 create mode 100644 srcpkgs/ivpn/template

diff --git a/srcpkgs/ivpn/INSTALL.msg b/srcpkgs/ivpn/INSTALL.msg
new file mode 100644
index 000000000000..b2863a853e44
--- /dev/null
+++ b/srcpkgs/ivpn/INSTALL.msg
@@ -0,0 +1,11 @@
+Before using the ivpn command, the ivpn-service daemon needs
+to be running.
+
+Start the ivpn-service daemon with runit:
+
+	$ sudo ln -s /etc/sv/ivpn-service /var/service/
+
+Then check the ivpn command (non root):
+
+	$ ivpn status
+
diff --git a/srcpkgs/ivpn/files/ivpn-service/run b/srcpkgs/ivpn/files/ivpn-service/run
new file mode 100644
index 000000000000..82ec06923576
--- /dev/null
+++ b/srcpkgs/ivpn/files/ivpn-service/run
@@ -0,0 +1,3 @@
+#!/bin/sh
+[ -r conf ] && . ./conf
+exec ivpn-service $OPTS
diff --git a/srcpkgs/ivpn/template b/srcpkgs/ivpn/template
new file mode 100644
index 000000000000..04a13e3b6152
--- /dev/null
+++ b/srcpkgs/ivpn/template
@@ -0,0 +1,51 @@
+# Template file for 'ivpn'
+pkgname=ivpn
+version=3.4.5
+revision=1
+_ivpndir="desktop-app-${version}"
+archs="x86_64"
+create_wrksrc=yes
+hostmakedepends="curl libcurl git go wireless_tools-devel"
+depends="openvpn wireless_tools glibc lsof"
+short_desc="IVPN Command Line Interface"
+maintainer="b-l-a-i-n-e <blaine.gilbreth@gmail.com>"
+license="GPL3-only"
+homepage="https://www.ivpn.net"
+distfiles="https://github.com/ivpn/desktop-app/archive/v${version}.tar.gz"
+checksum=e6837cb653dc9089afa50281bc11df5da99da0b6edd597220f50646db0c8cccd
+nopie=yes
+
+do_build() {
+	(cd "${_ivpndir}/daemon" && \
+		./References/Linux/scripts/build-all.sh -v "${pkgver}" -c "${pkgver}_stamped")
+
+	(cd "${_ivpndir}/cli" && \
+		./References/Linux/compile-cli.sh -v "${pkgver}" -c "${pkgver}_stamped")
+}
+
+do_install() {
+	local daemonlinuxdir="${_ivpndir}/daemon/References/Linux"
+	local clilinuxdir="${_ivpndir}/cli/References/Linux"
+
+	vmkdir usr/bin
+	vinstall "${daemonlinuxdir}/scripts/_out_bin/ivpn-service" 755 usr/bin
+	vinstall "${clilinuxdir}/_out_bin/ivpn" 755 usr/bin
+
+	vmkdir opt/ivpn
+	vmkdir opt/ivpn/etc
+	vinstall "${daemonlinuxdir}/etc/client.down" 700 opt/ivpn/etc
+	vinstall "${daemonlinuxdir}/etc/client.up" 700 opt/ivpn/etc
+	vinstall "${daemonlinuxdir}/etc/firewall.sh" 700 opt/ivpn/etc
+	vinstall "${daemonlinuxdir}/etc/servers.json" 600 opt/ivpn/etc
+	vinstall "${daemonlinuxdir}/etc/ca.crt" 400 opt/ivpn/etc
+	vinstall "${daemonlinuxdir}/etc/ta.key" 400 opt/ivpn/etc
+
+	vmkdir opt/ivpn/wireguard-tools
+	vinstall "${daemonlinuxdir}/_deps/wireguard-tools_inst/wg-quick" 755 opt/ivpn/wireguard-tools
+	vinstall "${daemonlinuxdir}/_deps/wireguard-tools_inst/wg" 755 opt/ivpn/wireguard-tools
+
+	vmkdir opt/ivpn/obfsproxy
+	vinstall "${daemonlinuxdir}/_deps/obfs4proxy_inst/obfs4proxy" 755 opt/ivpn/obfsproxy
+
+	vsv ivpn-service
+}

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

* Re: New Package: ivpn-3.4.5
  2021-12-09  6:00 [PR PATCH] New Package: ivpn-3.4.5 b-l-a-i-n-e
                   ` (4 preceding siblings ...)
  2021-12-13  4:07 ` [PR PATCH] [Updated] " b-l-a-i-n-e
@ 2021-12-13  4:08 ` b-l-a-i-n-e
  2021-12-14  2:50 ` NeelChotai
                   ` (13 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: b-l-a-i-n-e @ 2021-12-13  4:08 UTC (permalink / raw)
  To: ml

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

New comment by b-l-a-i-n-e on void-packages repository

https://github.com/void-linux/void-packages/pull/34435#issuecomment-992091430

Comment:
@NeelChotai rebased and pushed up the changes, thanks for taking a look

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

* Re: New Package: ivpn-3.4.5
  2021-12-09  6:00 [PR PATCH] New Package: ivpn-3.4.5 b-l-a-i-n-e
                   ` (5 preceding siblings ...)
  2021-12-13  4:08 ` b-l-a-i-n-e
@ 2021-12-14  2:50 ` NeelChotai
  2021-12-14  2:50 ` NeelChotai
                   ` (12 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: NeelChotai @ 2021-12-14  2:50 UTC (permalink / raw)
  To: ml

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

New comment by NeelChotai on void-packages repository

https://github.com/void-linux/void-packages/pull/34435#issuecomment-993105626

Comment:
I'm can test this locally too, excited to have IVPN in void repos.

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

* Re: New Package: ivpn-3.4.5
  2021-12-09  6:00 [PR PATCH] New Package: ivpn-3.4.5 b-l-a-i-n-e
                   ` (6 preceding siblings ...)
  2021-12-14  2:50 ` NeelChotai
@ 2021-12-14  2:50 ` NeelChotai
  2021-12-14  2:50 ` NeelChotai
                   ` (11 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: NeelChotai @ 2021-12-14  2:50 UTC (permalink / raw)
  To: ml

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

New comment by NeelChotai on void-packages repository

https://github.com/void-linux/void-packages/pull/34435#issuecomment-993105626

Comment:
I can test this locally too, excited to have IVPN in void repos.

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

* Re: New Package: ivpn-3.4.5
  2021-12-09  6:00 [PR PATCH] New Package: ivpn-3.4.5 b-l-a-i-n-e
                   ` (7 preceding siblings ...)
  2021-12-14  2:50 ` NeelChotai
@ 2021-12-14  2:50 ` NeelChotai
  2022-02-01 16:58 ` b-l-a-i-n-e
                   ` (10 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: NeelChotai @ 2021-12-14  2:50 UTC (permalink / raw)
  To: ml

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

New comment by NeelChotai on void-packages repository

https://github.com/void-linux/void-packages/pull/34435#issuecomment-993105626

Comment:
I can test this locally too, excited to have IVPN in Void repos.

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

* Re: New Package: ivpn-3.4.5
  2021-12-09  6:00 [PR PATCH] New Package: ivpn-3.4.5 b-l-a-i-n-e
                   ` (8 preceding siblings ...)
  2021-12-14  2:50 ` NeelChotai
@ 2022-02-01 16:58 ` b-l-a-i-n-e
  2022-02-01 16:58 ` [PR PATCH] [Closed]: " b-l-a-i-n-e
                   ` (9 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: b-l-a-i-n-e @ 2022-02-01 16:58 UTC (permalink / raw)
  To: ml

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

New comment by b-l-a-i-n-e on void-packages repository

https://github.com/void-linux/void-packages/pull/34435#issuecomment-1027062854

Comment:
Going to close this since it's a better experience to just use wireguard or openvpn with your own config rather than using this wrapper.

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

* Re: [PR PATCH] [Closed]: New Package: ivpn-3.4.5
  2021-12-09  6:00 [PR PATCH] New Package: ivpn-3.4.5 b-l-a-i-n-e
                   ` (9 preceding siblings ...)
  2022-02-01 16:58 ` b-l-a-i-n-e
@ 2022-02-01 16:58 ` b-l-a-i-n-e
  2023-02-24 14:01 ` niels0n
                   ` (8 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: b-l-a-i-n-e @ 2022-02-01 16:58 UTC (permalink / raw)
  To: ml

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

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

New Package: ivpn-3.4.5
https://github.com/void-linux/void-packages/pull/34435

Description:
#### Testing the changes
- I tested the changes in this PR: YES

#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): YES

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-GLIBC)

Based off of aur
https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=ivpn


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

* Re: New Package: ivpn-3.4.5
  2021-12-09  6:00 [PR PATCH] New Package: ivpn-3.4.5 b-l-a-i-n-e
                   ` (10 preceding siblings ...)
  2022-02-01 16:58 ` [PR PATCH] [Closed]: " b-l-a-i-n-e
@ 2023-02-24 14:01 ` niels0n
  2023-02-24 16:33 ` b-l-a-i-n-e
                   ` (7 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: niels0n @ 2023-02-24 14:01 UTC (permalink / raw)
  To: ml

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

New comment by niels0n on void-packages repository

https://github.com/void-linux/void-packages/pull/34435#issuecomment-1443724208

Comment:
Hi, would this template still work, at least for the daemon?

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

* Re: New Package: ivpn-3.4.5
  2021-12-09  6:00 [PR PATCH] New Package: ivpn-3.4.5 b-l-a-i-n-e
                   ` (11 preceding siblings ...)
  2023-02-24 14:01 ` niels0n
@ 2023-02-24 16:33 ` b-l-a-i-n-e
  2023-02-24 16:48 ` niels0n
                   ` (6 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: b-l-a-i-n-e @ 2023-02-24 16:33 UTC (permalink / raw)
  To: ml

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

New comment by b-l-a-i-n-e on void-packages repository

https://github.com/void-linux/void-packages/pull/34435#issuecomment-1443969907

Comment:
Hi @niels0n I think the template should still work, but I don't recommend it. I'd suggest just using the wireguard client from the terminal, something like how it is outlined here:
https://www.ivpn.net/setup/linux-wireguard

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

* Re: New Package: ivpn-3.4.5
  2021-12-09  6:00 [PR PATCH] New Package: ivpn-3.4.5 b-l-a-i-n-e
                   ` (12 preceding siblings ...)
  2023-02-24 16:33 ` b-l-a-i-n-e
@ 2023-02-24 16:48 ` niels0n
  2023-02-24 17:10 ` b-l-a-i-n-e
                   ` (5 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: niels0n @ 2023-02-24 16:48 UTC (permalink / raw)
  To: ml

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

New comment by niels0n on void-packages repository

https://github.com/void-linux/void-packages/pull/34435#issuecomment-1444000177

Comment:
hey @b-l-a-i-n-e, thanks for the reply.
just for the record, the template works indeed, but the ivpn-service, for some reason, don't. i can't start it and when i try to start ivpn it says ```ERROR: Unable to connect to service: please, ensure IVPN daemon is running (connection-info not exists)```.

why would it be better to use it through wireguard?

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

* Re: New Package: ivpn-3.4.5
  2021-12-09  6:00 [PR PATCH] New Package: ivpn-3.4.5 b-l-a-i-n-e
                   ` (13 preceding siblings ...)
  2023-02-24 16:48 ` niels0n
@ 2023-02-24 17:10 ` b-l-a-i-n-e
  2023-02-24 17:35 ` b-l-a-i-n-e
                   ` (4 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: b-l-a-i-n-e @ 2023-02-24 17:10 UTC (permalink / raw)
  To: ml

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

New comment by b-l-a-i-n-e on void-packages repository

https://github.com/void-linux/void-packages/pull/34435#issuecomment-1444053011

Comment:
@niels0n under the hood that's all this package is doing (connects using wireguard/openvpn). Better to just use the tools with more support directly in my opinion (wireguard/openvpn), and just use the ivpn configs to connect to the servers. 

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

* Re: New Package: ivpn-3.4.5
  2021-12-09  6:00 [PR PATCH] New Package: ivpn-3.4.5 b-l-a-i-n-e
                   ` (14 preceding siblings ...)
  2023-02-24 17:10 ` b-l-a-i-n-e
@ 2023-02-24 17:35 ` b-l-a-i-n-e
  2023-02-24 18:42 ` niels0n
                   ` (3 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: b-l-a-i-n-e @ 2023-02-24 17:35 UTC (permalink / raw)
  To: ml

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

New comment by b-l-a-i-n-e on void-packages repository

https://github.com/void-linux/void-packages/pull/34435#issuecomment-1444100653

Comment:
but if you wanted to use this package, then you would need to start the service if you haven't already
 
$ sudo ln -s /etc/sv/ivpn-service /var/service/

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

* Re: New Package: ivpn-3.4.5
  2021-12-09  6:00 [PR PATCH] New Package: ivpn-3.4.5 b-l-a-i-n-e
                   ` (15 preceding siblings ...)
  2023-02-24 17:35 ` b-l-a-i-n-e
@ 2023-02-24 18:42 ` niels0n
  2023-02-24 18:47 ` niels0n
                   ` (2 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: niels0n @ 2023-02-24 18:42 UTC (permalink / raw)
  To: ml

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

New comment by niels0n on void-packages repository

https://github.com/void-linux/void-packages/pull/34435#issuecomment-1444238499

Comment:
@b-l-a-i-n-e yeah I get it and probably it's better to use it with wireguard indeed, but i'd just like to try the app (then i'll probably switch to wireguard anyway).

I already linked the service to `/var/service`, but nothing happens, and if I do `sudo sv status ivpn-service` i receive `down: ivpn-service: 0s, normally up, want up; run: log: (pid 1001) 10768s`.

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

* Re: New Package: ivpn-3.4.5
  2021-12-09  6:00 [PR PATCH] New Package: ivpn-3.4.5 b-l-a-i-n-e
                   ` (16 preceding siblings ...)
  2023-02-24 18:42 ` niels0n
@ 2023-02-24 18:47 ` niels0n
  2023-02-26  8:59 ` niels0n
  2023-02-26  8:59 ` niels0n
  19 siblings, 0 replies; 21+ messages in thread
From: niels0n @ 2023-02-24 18:47 UTC (permalink / raw)
  To: ml

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

New comment by niels0n on void-packages repository

https://github.com/void-linux/void-packages/pull/34435#issuecomment-1444246396

Comment:
If I do `sudo sv up ivpn-service` nothing happens, but it doesn't start because if after that I try to `ivpn` it gives me the error above, about the daemon not running...can you help me?

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

* Re: New Package: ivpn-3.4.5
  2021-12-09  6:00 [PR PATCH] New Package: ivpn-3.4.5 b-l-a-i-n-e
                   ` (17 preceding siblings ...)
  2023-02-24 18:47 ` niels0n
@ 2023-02-26  8:59 ` niels0n
  2023-02-26  8:59 ` niels0n
  19 siblings, 0 replies; 21+ messages in thread
From: niels0n @ 2023-02-26  8:59 UTC (permalink / raw)
  To: ml

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

New comment by niels0n on void-packages repository

https://github.com/void-linux/void-packages/pull/34435#issuecomment-1444238499

Comment:
@b-l-a-i-n-e yeah I get it and probably it's better to use it with wireguard indeed, but i'd just like to try the app (then i'll probably switch to wireguard anyway).

I already linked the service to `/var/service`, but nothing happens, and if I do `sudo sv status ivpn-service` i receive `down: ivpn-service: 0s, normally up, want up; run: log: (pid 1001) 10768s`.

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

* Re: New Package: ivpn-3.4.5
  2021-12-09  6:00 [PR PATCH] New Package: ivpn-3.4.5 b-l-a-i-n-e
                   ` (18 preceding siblings ...)
  2023-02-26  8:59 ` niels0n
@ 2023-02-26  8:59 ` niels0n
  19 siblings, 0 replies; 21+ messages in thread
From: niels0n @ 2023-02-26  8:59 UTC (permalink / raw)
  To: ml

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

New comment by niels0n on void-packages repository

https://github.com/void-linux/void-packages/pull/34435#issuecomment-1444246396

Comment:
If I do `sudo sv up ivpn-service` nothing happens, but it doesn't start because if after that I try to `ivpn` it gives me the error above, about the daemon not running...can you help me?

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

end of thread, other threads:[~2023-02-26  8:59 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-09  6:00 [PR PATCH] New Package: ivpn-3.4.5 b-l-a-i-n-e
2021-12-12 17:53 ` [PR REVIEW] " NeelChotai
2021-12-12 17:58 ` NeelChotai
2021-12-13  3:44 ` b-l-a-i-n-e
2021-12-13  3:55 ` b-l-a-i-n-e
2021-12-13  4:07 ` [PR PATCH] [Updated] " b-l-a-i-n-e
2021-12-13  4:08 ` b-l-a-i-n-e
2021-12-14  2:50 ` NeelChotai
2021-12-14  2:50 ` NeelChotai
2021-12-14  2:50 ` NeelChotai
2022-02-01 16:58 ` b-l-a-i-n-e
2022-02-01 16:58 ` [PR PATCH] [Closed]: " b-l-a-i-n-e
2023-02-24 14:01 ` niels0n
2023-02-24 16:33 ` b-l-a-i-n-e
2023-02-24 16:48 ` niels0n
2023-02-24 17:10 ` b-l-a-i-n-e
2023-02-24 17:35 ` b-l-a-i-n-e
2023-02-24 18:42 ` niels0n
2023-02-24 18:47 ` niels0n
2023-02-26  8:59 ` niels0n
2023-02-26  8:59 ` niels0n

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