Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: nordvpn-bin-3.7.1
@ 2020-04-17 22:08 kernle32dll
  2020-04-17 22:12 ` [PR PATCH] [Updated] " kernle32dll
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: kernle32dll @ 2020-04-17 22:08 UTC (permalink / raw)
  To: ml

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

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

https://github.com/kernle32dll/void-packages add-nordvpn
https://github.com/void-linux/void-packages/pull/21099

New package: nordvpn-bin-3.7.1
My first go at a new package.

See https://github.com/void-linux/void-packages/issues/11356

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

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

From 5071fa6c2a947e7f5d97d7cd93e46cfc4608203f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bj=C3=B6rn=20Gerdau?= <bjoerngerdau@gmx.de>
Date: Sat, 18 Apr 2020 00:07:35 +0200
Subject: [PATCH] New package: nordvpn-bin-3.7.1

---
 srcpkgs/nordvpn-bin/files/nordvpnd/run |  2 +
 srcpkgs/nordvpn-bin/template           | 60 ++++++++++++++++++++++++++
 2 files changed, 62 insertions(+)
 create mode 100644 srcpkgs/nordvpn-bin/files/nordvpnd/run
 create mode 100644 srcpkgs/nordvpn-bin/template

diff --git a/srcpkgs/nordvpn-bin/files/nordvpnd/run b/srcpkgs/nordvpn-bin/files/nordvpnd/run
new file mode 100644
index 00000000000..ab17e30c5d3
--- /dev/null
+++ b/srcpkgs/nordvpn-bin/files/nordvpnd/run
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec nordvpnd 2>&1
diff --git a/srcpkgs/nordvpn-bin/template b/srcpkgs/nordvpn-bin/template
new file mode 100644
index 00000000000..0baad81a6ea
--- /dev/null
+++ b/srcpkgs/nordvpn-bin/template
@@ -0,0 +1,60 @@
+# Template file for 'nordvpn-bin'
+pkgname=nordvpn-bin
+version=3.7.1
+revision=1
+archs="i686 x86_64 aarch64 armv7l armv6l"
+build_style=fetch
+short_desc="NordVPN CLI tool for Linux"
+maintainer="Björn Gerdau <bjoerngerdau@gmx.de>"
+license="custom"
+homepage="https://nordvpn.com"
+hostmakedepends="tar xz"
+nopie=true
+
+case "$XBPS_TARGET_MACHINE" in
+	x86_64)
+		_deb="nordvpn_${version}_amd64.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_amd64.deb"
+		checksum=2385b1361be082ae18a9d018787cd5e54943e26b9285fca115093aa16897f766
+		;;
+	i686)
+		_deb="nordvpn_${version}_i386.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_i386.deb"
+		checksum=baf90c370c42bb89fe3dee4c40d0f95adc2e3d393bccea541e9cf9d9a2dd0197
+		;;
+	aarch64)
+		_deb="nordvpn_${version}_arm64.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_arm64.deb"
+		checksum=f366e0fe973a1d41354d9908547b0a1b3f96298bb068b4ab3797439b35ae8d72
+		;;
+	armv7l)
+		_deb="nordvpn_${version}_armhf.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_armhf.deb"
+		checksum=9f7cd08edbb1d50660838b1f035aa01b5943447ad2bebe0a45e604ab8df2912a
+		;;
+	armv6l)
+		_deb="nordvpn_${version}_armel.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_armel.deb"
+		checksum=ca5fa929000b46a3ece0a36d72bb832bcf42e0886db6b09e47f3b6bfb98ab7d7
+		;;
+esac
+
+do_install() {
+	ar p "${_deb}" data.tar.xz > data.tar.xz
+	tar -xJf data.tar.xz
+	
+	# daemon and cli tool
+	vbin usr/sbin/nordvpnd
+	vbin usr/bin/nordvpn
+	
+	pwd ${DESTDIR}
+	
+	# docs
+	vdoc usr/share/doc/nordvpn/changelog.gz
+	vman usr/share/man/man1/nordvpn.1.gz
+	vinstall usr/share/bash-completion/completions/nordvpn 644 usr/share/bash-completion/completions
+	vinstall "usr/share/zsh/functions/Completion/Unix/_nordvpn_auto_complete" 644 usr/share/zsh/site-functions
+	
+	# runit service
+	vsv nordvpnd
+}

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

* Re: [PR PATCH] [Updated] New package: nordvpn-bin-3.7.1
  2020-04-17 22:08 [PR PATCH] New package: nordvpn-bin-3.7.1 kernle32dll
@ 2020-04-17 22:12 ` kernle32dll
  2020-04-17 22:22 ` kernle32dll
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: kernle32dll @ 2020-04-17 22:12 UTC (permalink / raw)
  To: ml

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

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

https://github.com/kernle32dll/void-packages add-nordvpn
https://github.com/void-linux/void-packages/pull/21099

New package: nordvpn-bin-3.7.1
My first go at a new package.

See https://github.com/void-linux/void-packages/issues/11356

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

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

From 70555ee8897d87be08ed9832f0abcc358da99fc3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bj=C3=B6rn=20Gerdau?= <bjoerngerdau@gmx.de>
Date: Sat, 18 Apr 2020 00:07:35 +0200
Subject: [PATCH] New package: nordvpn-bin-3.7.1

---
 srcpkgs/nordvpn-bin/files/nordvpnd/run |  2 +
 srcpkgs/nordvpn-bin/template           | 58 ++++++++++++++++++++++++++
 2 files changed, 60 insertions(+)
 create mode 100644 srcpkgs/nordvpn-bin/files/nordvpnd/run
 create mode 100644 srcpkgs/nordvpn-bin/template

diff --git a/srcpkgs/nordvpn-bin/files/nordvpnd/run b/srcpkgs/nordvpn-bin/files/nordvpnd/run
new file mode 100644
index 00000000000..ab17e30c5d3
--- /dev/null
+++ b/srcpkgs/nordvpn-bin/files/nordvpnd/run
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec nordvpnd 2>&1
diff --git a/srcpkgs/nordvpn-bin/template b/srcpkgs/nordvpn-bin/template
new file mode 100644
index 00000000000..7e372db66b7
--- /dev/null
+++ b/srcpkgs/nordvpn-bin/template
@@ -0,0 +1,58 @@
+# Template file for 'nordvpn-bin'
+pkgname=nordvpn-bin
+version=3.7.1
+revision=1
+archs="i686 x86_64 aarch64 armv7l armv6l"
+build_style=fetch
+short_desc="NordVPN CLI tool for Linux"
+maintainer="Björn Gerdau <bjoerngerdau@gmx.de>"
+license="custom"
+homepage="https://nordvpn.com"
+hostmakedepends="tar xz"
+nopie=true
+
+case "$XBPS_TARGET_MACHINE" in
+	x86_64)
+		_deb="nordvpn_${version}_amd64.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_amd64.deb"
+		checksum=2385b1361be082ae18a9d018787cd5e54943e26b9285fca115093aa16897f766
+		;;
+	i686)
+		_deb="nordvpn_${version}_i386.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_i386.deb"
+		checksum=baf90c370c42bb89fe3dee4c40d0f95adc2e3d393bccea541e9cf9d9a2dd0197
+		;;
+	aarch64)
+		_deb="nordvpn_${version}_arm64.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_arm64.deb"
+		checksum=f366e0fe973a1d41354d9908547b0a1b3f96298bb068b4ab3797439b35ae8d72
+		;;
+	armv7l)
+		_deb="nordvpn_${version}_armhf.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_armhf.deb"
+		checksum=9f7cd08edbb1d50660838b1f035aa01b5943447ad2bebe0a45e604ab8df2912a
+		;;
+	armv6l)
+		_deb="nordvpn_${version}_armel.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_armel.deb"
+		checksum=ca5fa929000b46a3ece0a36d72bb832bcf42e0886db6b09e47f3b6bfb98ab7d7
+		;;
+esac
+
+do_install() {
+	ar p "${_deb}" data.tar.xz > data.tar.xz
+	tar -xJf data.tar.xz
+	
+	# daemon and cli tool
+	vbin usr/sbin/nordvpnd
+	vbin usr/bin/nordvpn
+	
+	# docs
+	vdoc usr/share/doc/nordvpn/changelog.gz
+	vman usr/share/man/man1/nordvpn.1.gz
+	vinstall usr/share/bash-completion/completions/nordvpn 644 usr/share/bash-completion/completions
+	vinstall "usr/share/zsh/functions/Completion/Unix/_nordvpn_auto_complete" 644 usr/share/zsh/site-functions
+	
+	# runit service
+	vsv nordvpnd
+}

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

* Re: [PR PATCH] [Updated] New package: nordvpn-bin-3.7.1
  2020-04-17 22:08 [PR PATCH] New package: nordvpn-bin-3.7.1 kernle32dll
  2020-04-17 22:12 ` [PR PATCH] [Updated] " kernle32dll
@ 2020-04-17 22:22 ` kernle32dll
  2020-04-17 22:23 ` kernle32dll
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: kernle32dll @ 2020-04-17 22:22 UTC (permalink / raw)
  To: ml

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

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

https://github.com/kernle32dll/void-packages add-nordvpn
https://github.com/void-linux/void-packages/pull/21099

New package: nordvpn-bin-3.7.1
My first go at a new package.

See https://github.com/void-linux/void-packages/issues/11356

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

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

From 86ed1455467375f0d6610ed175701ca2eb179e1e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bj=C3=B6rn=20Gerdau?= <bjoerngerdau@gmx.de>
Date: Sat, 18 Apr 2020 00:07:35 +0200
Subject: [PATCH] New package: nordvpn-bin-3.7.1

---
 srcpkgs/nordvpn-bin/files/nordvpnd/run |  2 +
 srcpkgs/nordvpn-bin/template           | 58 ++++++++++++++++++++++++++
 2 files changed, 60 insertions(+)
 create mode 100644 srcpkgs/nordvpn-bin/files/nordvpnd/run
 create mode 100644 srcpkgs/nordvpn-bin/template

diff --git a/srcpkgs/nordvpn-bin/files/nordvpnd/run b/srcpkgs/nordvpn-bin/files/nordvpnd/run
new file mode 100644
index 00000000000..ab17e30c5d3
--- /dev/null
+++ b/srcpkgs/nordvpn-bin/files/nordvpnd/run
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec nordvpnd 2>&1
diff --git a/srcpkgs/nordvpn-bin/template b/srcpkgs/nordvpn-bin/template
new file mode 100644
index 00000000000..9992806a811
--- /dev/null
+++ b/srcpkgs/nordvpn-bin/template
@@ -0,0 +1,58 @@
+# Template file for 'nordvpn-bin'
+pkgname=nordvpn-bin
+version=3.7.1
+revision=1
+archs="i686 x86_64 aarch64 armv7l armv6l"
+build_style=fetch
+short_desc="NordVPN CLI tool for Linux"
+maintainer="Björn Gerdau <bjoerngerdau@gmx.de>"
+license="custom"
+hostmakedepends="tar xz"
+homepage="https://nordvpn.com"
+nopie=true
+
+case "$XBPS_TARGET_MACHINE" in
+	x86_64)
+		_deb="nordvpn_${version}_amd64.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_amd64.deb"
+		checksum=2385b1361be082ae18a9d018787cd5e54943e26b9285fca115093aa16897f766
+		;;
+	i686)
+		_deb="nordvpn_${version}_i386.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_i386.deb"
+		checksum=baf90c370c42bb89fe3dee4c40d0f95adc2e3d393bccea541e9cf9d9a2dd0197
+		;;
+	aarch64)
+		_deb="nordvpn_${version}_arm64.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_arm64.deb"
+		checksum=f366e0fe973a1d41354d9908547b0a1b3f96298bb068b4ab3797439b35ae8d72
+		;;
+	armv7l)
+		_deb="nordvpn_${version}_armhf.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_armhf.deb"
+		checksum=9f7cd08edbb1d50660838b1f035aa01b5943447ad2bebe0a45e604ab8df2912a
+		;;
+	armv6l)
+		_deb="nordvpn_${version}_armel.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_armel.deb"
+		checksum=ca5fa929000b46a3ece0a36d72bb832bcf42e0886db6b09e47f3b6bfb98ab7d7
+		;;
+esac
+
+do_install() {
+	ar p "${_deb}" data.tar.xz > data.tar.xz
+	tar -xJf data.tar.xz
+
+	# daemon and cli tool
+	vbin usr/sbin/nordvpnd
+	vbin usr/bin/nordvpn
+
+	# docs
+	vdoc usr/share/doc/nordvpn/changelog.gz
+	vman usr/share/man/man1/nordvpn.1.gz
+	vinstall usr/share/bash-completion/completions/nordvpn 644 usr/share/bash-completion/completions
+	vinstall "usr/share/zsh/functions/Completion/Unix/_nordvpn_auto_complete" 644 usr/share/zsh/site-functions
+
+	# runit service
+	vsv nordvpnd
+}

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

* Re: [PR PATCH] [Updated] New package: nordvpn-bin-3.7.1
  2020-04-17 22:08 [PR PATCH] New package: nordvpn-bin-3.7.1 kernle32dll
  2020-04-17 22:12 ` [PR PATCH] [Updated] " kernle32dll
  2020-04-17 22:22 ` kernle32dll
@ 2020-04-17 22:23 ` kernle32dll
  2020-04-18  9:27 ` kernle32dll
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: kernle32dll @ 2020-04-17 22:23 UTC (permalink / raw)
  To: ml

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

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

https://github.com/kernle32dll/void-packages add-nordvpn
https://github.com/void-linux/void-packages/pull/21099

New package: nordvpn-bin-3.7.1
My first go at a new package.

See https://github.com/void-linux/void-packages/issues/11356

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

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

From 9a48f533cdfd4df1e53190ad7392d9353d723d88 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bj=C3=B6rn=20Gerdau?= <bjoerngerdau@gmx.de>
Date: Sat, 18 Apr 2020 00:07:35 +0200
Subject: [PATCH] New package: nordvpn-bin-3.7.1

---
 srcpkgs/nordvpn-bin/files/nordvpnd/run |  2 +
 srcpkgs/nordvpn-bin/template           | 58 ++++++++++++++++++++++++++
 2 files changed, 60 insertions(+)
 create mode 100644 srcpkgs/nordvpn-bin/files/nordvpnd/run
 create mode 100644 srcpkgs/nordvpn-bin/template

diff --git a/srcpkgs/nordvpn-bin/files/nordvpnd/run b/srcpkgs/nordvpn-bin/files/nordvpnd/run
new file mode 100644
index 00000000000..ab17e30c5d3
--- /dev/null
+++ b/srcpkgs/nordvpn-bin/files/nordvpnd/run
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec nordvpnd 2>&1
diff --git a/srcpkgs/nordvpn-bin/template b/srcpkgs/nordvpn-bin/template
new file mode 100644
index 00000000000..823500e60ac
--- /dev/null
+++ b/srcpkgs/nordvpn-bin/template
@@ -0,0 +1,58 @@
+# Template file for 'nordvpn-bin'
+pkgname=nordvpn-bin
+version=3.7.1
+revision=1
+archs="i686 x86_64 aarch64 armv7l armv6l"
+build_style=fetch
+hostmakedepends="tar xz"
+short_desc="NordVPN CLI tool for Linux"
+maintainer="Björn Gerdau <bjoerngerdau@gmx.de>"
+license="custom"
+homepage="https://nordvpn.com"
+nopie=true
+
+case "$XBPS_TARGET_MACHINE" in
+	x86_64)
+		_deb="nordvpn_${version}_amd64.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_amd64.deb"
+		checksum=2385b1361be082ae18a9d018787cd5e54943e26b9285fca115093aa16897f766
+		;;
+	i686)
+		_deb="nordvpn_${version}_i386.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_i386.deb"
+		checksum=baf90c370c42bb89fe3dee4c40d0f95adc2e3d393bccea541e9cf9d9a2dd0197
+		;;
+	aarch64)
+		_deb="nordvpn_${version}_arm64.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_arm64.deb"
+		checksum=f366e0fe973a1d41354d9908547b0a1b3f96298bb068b4ab3797439b35ae8d72
+		;;
+	armv7l)
+		_deb="nordvpn_${version}_armhf.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_armhf.deb"
+		checksum=9f7cd08edbb1d50660838b1f035aa01b5943447ad2bebe0a45e604ab8df2912a
+		;;
+	armv6l)
+		_deb="nordvpn_${version}_armel.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_armel.deb"
+		checksum=ca5fa929000b46a3ece0a36d72bb832bcf42e0886db6b09e47f3b6bfb98ab7d7
+		;;
+esac
+
+do_install() {
+	ar p "${_deb}" data.tar.xz > data.tar.xz
+	tar -xJf data.tar.xz
+
+	# daemon and cli tool
+	vbin usr/sbin/nordvpnd
+	vbin usr/bin/nordvpn
+
+	# docs
+	vdoc usr/share/doc/nordvpn/changelog.gz
+	vman usr/share/man/man1/nordvpn.1.gz
+	vinstall usr/share/bash-completion/completions/nordvpn 644 usr/share/bash-completion/completions
+	vinstall "usr/share/zsh/functions/Completion/Unix/_nordvpn_auto_complete" 644 usr/share/zsh/site-functions
+
+	# runit service
+	vsv nordvpnd
+}

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

* Re: [PR PATCH] [Updated] New package: nordvpn-bin-3.7.1
  2020-04-17 22:08 [PR PATCH] New package: nordvpn-bin-3.7.1 kernle32dll
                   ` (2 preceding siblings ...)
  2020-04-17 22:23 ` kernle32dll
@ 2020-04-18  9:27 ` kernle32dll
  2020-04-18  9:34 ` kernle32dll
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: kernle32dll @ 2020-04-18  9:27 UTC (permalink / raw)
  To: ml

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

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

https://github.com/kernle32dll/void-packages add-nordvpn
https://github.com/void-linux/void-packages/pull/21099

New package: nordvpn-bin-3.7.1
My first go at a new package.

See https://github.com/void-linux/void-packages/issues/11356

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

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

From 69a6ca171b200f8e39d67bdac8fd2d4df8d00dc5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bj=C3=B6rn=20Gerdau?= <bjoerngerdau@gmx.de>
Date: Sat, 18 Apr 2020 00:07:35 +0200
Subject: [PATCH] New package: nordvpn-bin-3.7.1

---
 srcpkgs/nordvpn-bin/files/nordvpnd/run |  2 +
 srcpkgs/nordvpn-bin/template           | 59 ++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)
 create mode 100644 srcpkgs/nordvpn-bin/files/nordvpnd/run
 create mode 100644 srcpkgs/nordvpn-bin/template

diff --git a/srcpkgs/nordvpn-bin/files/nordvpnd/run b/srcpkgs/nordvpn-bin/files/nordvpnd/run
new file mode 100644
index 00000000000..ab17e30c5d3
--- /dev/null
+++ b/srcpkgs/nordvpn-bin/files/nordvpnd/run
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec nordvpnd 2>&1
diff --git a/srcpkgs/nordvpn-bin/template b/srcpkgs/nordvpn-bin/template
new file mode 100644
index 00000000000..ff2b3e6dcff
--- /dev/null
+++ b/srcpkgs/nordvpn-bin/template
@@ -0,0 +1,59 @@
+# Template file for 'nordvpn-bin'
+pkgname=nordvpn-bin
+version=3.7.1
+revision=1
+archs="i686 x86_64 aarch64 armv7l armv6l"
+build_style=fetch
+hostmakedepends="tar xz"
+depends="ipset"
+short_desc="NordVPN CLI tool for Linux"
+maintainer="Björn Gerdau <bjoerngerdau@gmx.de>"
+license="custom"
+homepage="https://nordvpn.com"
+nopie=true
+
+case "$XBPS_TARGET_MACHINE" in
+	x86_64)
+		_deb="nordvpn_${version}_amd64.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_amd64.deb"
+		checksum=2385b1361be082ae18a9d018787cd5e54943e26b9285fca115093aa16897f766
+		;;
+	i686)
+		_deb="nordvpn_${version}_i386.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_i386.deb"
+		checksum=baf90c370c42bb89fe3dee4c40d0f95adc2e3d393bccea541e9cf9d9a2dd0197
+		;;
+	aarch64)
+		_deb="nordvpn_${version}_arm64.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_arm64.deb"
+		checksum=f366e0fe973a1d41354d9908547b0a1b3f96298bb068b4ab3797439b35ae8d72
+		;;
+	armv7l)
+		_deb="nordvpn_${version}_armhf.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_armhf.deb"
+		checksum=9f7cd08edbb1d50660838b1f035aa01b5943447ad2bebe0a45e604ab8df2912a
+		;;
+	armv6l)
+		_deb="nordvpn_${version}_armel.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_armel.deb"
+		checksum=ca5fa929000b46a3ece0a36d72bb832bcf42e0886db6b09e47f3b6bfb98ab7d7
+		;;
+esac
+
+do_install() {
+	ar p "${_deb}" data.tar.xz > data.tar.xz
+	tar -xJf data.tar.xz
+
+	# daemon and cli tool
+	vbin usr/sbin/nordvpnd
+	vbin usr/bin/nordvpn
+
+	# docs
+	vdoc usr/share/doc/nordvpn/changelog.gz
+	vman usr/share/man/man1/nordvpn.1.gz
+	vinstall usr/share/bash-completion/completions/nordvpn 644 usr/share/bash-completion/completions
+	vinstall "usr/share/zsh/functions/Completion/Unix/_nordvpn_auto_complete" 644 usr/share/zsh/site-functions
+
+	# runit service
+	vsv nordvpnd
+}

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

* Re: [PR PATCH] [Updated] New package: nordvpn-bin-3.7.1
  2020-04-17 22:08 [PR PATCH] New package: nordvpn-bin-3.7.1 kernle32dll
                   ` (3 preceding siblings ...)
  2020-04-18  9:27 ` kernle32dll
@ 2020-04-18  9:34 ` kernle32dll
  2020-04-18  9:40 ` WIP: " kernle32dll
                   ` (5 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: kernle32dll @ 2020-04-18  9:34 UTC (permalink / raw)
  To: ml

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

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

https://github.com/kernle32dll/void-packages add-nordvpn
https://github.com/void-linux/void-packages/pull/21099

New package: nordvpn-bin-3.7.1
My first go at a new package.

See https://github.com/void-linux/void-packages/issues/11356

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

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

From baa0765f44c626c7b9f07cd3753a7fdf1065cbec Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bj=C3=B6rn=20Gerdau?= <bjoerngerdau@gmx.de>
Date: Sat, 18 Apr 2020 00:07:35 +0200
Subject: [PATCH] New package: nordvpn-bin-3.7.1

---
 srcpkgs/nordvpn-bin/files/nordvpnd/run |  2 +
 srcpkgs/nordvpn-bin/template           | 59 ++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)
 create mode 100644 srcpkgs/nordvpn-bin/files/nordvpnd/run
 create mode 100644 srcpkgs/nordvpn-bin/template

diff --git a/srcpkgs/nordvpn-bin/files/nordvpnd/run b/srcpkgs/nordvpn-bin/files/nordvpnd/run
new file mode 100644
index 00000000000..ab17e30c5d3
--- /dev/null
+++ b/srcpkgs/nordvpn-bin/files/nordvpnd/run
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec nordvpnd 2>&1
diff --git a/srcpkgs/nordvpn-bin/template b/srcpkgs/nordvpn-bin/template
new file mode 100644
index 00000000000..97c35d9c456
--- /dev/null
+++ b/srcpkgs/nordvpn-bin/template
@@ -0,0 +1,59 @@
+# Template file for 'nordvpn-bin'
+pkgname=nordvpn-bin
+version=3.7.1
+revision=1
+archs="i686 x86_64 aarch64 armv7l armv6l"
+build_style=fetch
+hostmakedepends="tar xz"
+depends="ipset iproute2"
+short_desc="NordVPN CLI tool for Linux"
+maintainer="Björn Gerdau <bjoerngerdau@gmx.de>"
+license="custom"
+homepage="https://nordvpn.com"
+nopie=true
+
+case "$XBPS_TARGET_MACHINE" in
+	x86_64)
+		_deb="nordvpn_${version}_amd64.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_amd64.deb"
+		checksum=2385b1361be082ae18a9d018787cd5e54943e26b9285fca115093aa16897f766
+		;;
+	i686)
+		_deb="nordvpn_${version}_i386.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_i386.deb"
+		checksum=baf90c370c42bb89fe3dee4c40d0f95adc2e3d393bccea541e9cf9d9a2dd0197
+		;;
+	aarch64)
+		_deb="nordvpn_${version}_arm64.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_arm64.deb"
+		checksum=f366e0fe973a1d41354d9908547b0a1b3f96298bb068b4ab3797439b35ae8d72
+		;;
+	armv7l)
+		_deb="nordvpn_${version}_armhf.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_armhf.deb"
+		checksum=9f7cd08edbb1d50660838b1f035aa01b5943447ad2bebe0a45e604ab8df2912a
+		;;
+	armv6l)
+		_deb="nordvpn_${version}_armel.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_armel.deb"
+		checksum=ca5fa929000b46a3ece0a36d72bb832bcf42e0886db6b09e47f3b6bfb98ab7d7
+		;;
+esac
+
+do_install() {
+	ar p "${_deb}" data.tar.xz > data.tar.xz
+	tar -xJf data.tar.xz
+
+	# daemon and cli tool
+	vbin usr/sbin/nordvpnd
+	vbin usr/bin/nordvpn
+
+	# docs
+	vdoc usr/share/doc/nordvpn/changelog.gz
+	vman usr/share/man/man1/nordvpn.1.gz
+	vinstall usr/share/bash-completion/completions/nordvpn 644 usr/share/bash-completion/completions
+	vinstall "usr/share/zsh/functions/Completion/Unix/_nordvpn_auto_complete" 644 usr/share/zsh/site-functions
+
+	# runit service
+	vsv nordvpnd
+}

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

* Re: WIP: New package: nordvpn-bin-3.7.1
  2020-04-17 22:08 [PR PATCH] New package: nordvpn-bin-3.7.1 kernle32dll
                   ` (4 preceding siblings ...)
  2020-04-18  9:34 ` kernle32dll
@ 2020-04-18  9:40 ` kernle32dll
  2020-04-18 11:02 ` kernle32dll
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: kernle32dll @ 2020-04-18  9:40 UTC (permalink / raw)
  To: ml

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

New comment by kernle32dll on void-packages repository

https://github.com/void-linux/void-packages/pull/21099#issuecomment-615832784

Comment:
There seems to be connectivity problems on system reboots. Investigating.

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

* Re: WIP: New package: nordvpn-bin-3.7.1
  2020-04-17 22:08 [PR PATCH] New package: nordvpn-bin-3.7.1 kernle32dll
                   ` (5 preceding siblings ...)
  2020-04-18  9:40 ` WIP: " kernle32dll
@ 2020-04-18 11:02 ` kernle32dll
  2020-09-27 18:10 ` [PR PATCH] [Updated] WIP: New package: nordvpn-bin-3.7.2 kernle32dll
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: kernle32dll @ 2020-04-18 11:02 UTC (permalink / raw)
  To: ml

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

New comment by kernle32dll on void-packages repository

https://github.com/void-linux/void-packages/pull/21099#issuecomment-615832784

Comment:
There seems to be connectivity problems on system reboots. Investigating.

**EDIT**: Okay, the problem is with the killswitch feature. It seems its working _a bit to well_ - it also blocks nordvpns own calls, making it unable to fetch server metadata, and thus unable to connect to anything. I'ts probable that this is a bug of the application itself - but I'm unable to verify this ATM.

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

* Re: [PR PATCH] [Updated] WIP: New package: nordvpn-bin-3.7.2
  2020-04-17 22:08 [PR PATCH] New package: nordvpn-bin-3.7.1 kernle32dll
                   ` (6 preceding siblings ...)
  2020-04-18 11:02 ` kernle32dll
@ 2020-09-27 18:10 ` kernle32dll
  2020-11-03  8:38 ` kernle32dll
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: kernle32dll @ 2020-09-27 18:10 UTC (permalink / raw)
  To: ml

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

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

https://github.com/kernle32dll/void-packages add-nordvpn
https://github.com/void-linux/void-packages/pull/21099

WIP: New package: nordvpn-bin-3.7.2
My first go at a new package.

See https://github.com/void-linux/void-packages/issues/11356

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

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

From 7489d4ee28cf65ecebb9d11c7b5a44c6e732ac1e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bj=C3=B6rn=20Gerdau?= <bjoerngerdau@gmx.de>
Date: Sat, 18 Apr 2020 00:07:35 +0200
Subject: [PATCH] New package: nordvpn-bin-3.8.5

---
 srcpkgs/nordvpn-bin/files/nordvpnd/run |  2 +
 srcpkgs/nordvpn-bin/template           | 59 ++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)
 create mode 100644 srcpkgs/nordvpn-bin/files/nordvpnd/run
 create mode 100644 srcpkgs/nordvpn-bin/template

diff --git a/srcpkgs/nordvpn-bin/files/nordvpnd/run b/srcpkgs/nordvpn-bin/files/nordvpnd/run
new file mode 100644
index 00000000000..ab17e30c5d3
--- /dev/null
+++ b/srcpkgs/nordvpn-bin/files/nordvpnd/run
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec nordvpnd 2>&1
diff --git a/srcpkgs/nordvpn-bin/template b/srcpkgs/nordvpn-bin/template
new file mode 100644
index 00000000000..7501bca3529
--- /dev/null
+++ b/srcpkgs/nordvpn-bin/template
@@ -0,0 +1,59 @@
+# Template file for 'nordvpn-bin'
+pkgname=nordvpn-bin
+version=3.8.5
+revision=1
+archs="i686 x86_64 aarch64 armv7l armv6l"
+build_style=fetch
+hostmakedepends="tar xz"
+depends="ipset iproute2"
+short_desc="NordVPN CLI tool for Linux"
+maintainer="Björn Gerdau <bjoerngerdau@gmx.de>"
+license="custom"
+homepage="https://nordvpn.com"
+nopie=true
+
+case "$XBPS_TARGET_MACHINE" in
+	x86_64)
+		_deb="nordvpn_${version}_amd64.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_amd64.deb"
+		checksum=a3f9a0017a3e42e4dbc21372f79bff4eb30615bdd66998415f032e592e6eba4e
+		;;
+	i686)
+		_deb="nordvpn_${version}_i386.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_i386.deb"
+		checksum=3c79624fb5b673530a1bf03b18d37a89d1688a5362cd1cf60a7f76e4e2fc8bcb
+		;;
+	aarch64)
+		_deb="nordvpn_${version}_arm64.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_arm64.deb"
+		checksum=ae80d7819f15d972445e59282ada00114971d7c0723b02708826536ea3fa3eb3
+		;;
+	armv7l)
+		_deb="nordvpn_${version}_armhf.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_armhf.deb"
+		checksum=195ceac769638559771684d6bd1edbb3773b81fb397bf1d5c815e1c90de990b5
+		;;
+	armv6l)
+		_deb="nordvpn_${version}_armel.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_armel.deb"
+		checksum=3b3ad1f8310abe745299c78c05ba8d0052b0e7b850fb804992d1663c54e9a4a5
+		;;
+esac
+
+do_install() {
+	ar p "${_deb}" data.tar.xz > data.tar.xz
+	tar -xJf data.tar.xz
+
+	# daemon and cli tool
+	vbin usr/sbin/nordvpnd
+	vbin usr/bin/nordvpn
+
+	# docs
+	vdoc usr/share/doc/nordvpn/changelog.gz
+	vman usr/share/man/man1/nordvpn.1.gz
+	vinstall usr/share/bash-completion/completions/nordvpn 644 usr/share/bash-completion/completions
+	vinstall "usr/share/zsh/functions/Completion/Unix/_nordvpn_auto_complete" 644 usr/share/zsh/site-functions
+
+	# runit service
+	vsv nordvpnd
+}

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

* Re: [PR PATCH] [Updated] WIP: New package: nordvpn-bin-3.7.2
  2020-04-17 22:08 [PR PATCH] New package: nordvpn-bin-3.7.1 kernle32dll
                   ` (7 preceding siblings ...)
  2020-09-27 18:10 ` [PR PATCH] [Updated] WIP: New package: nordvpn-bin-3.7.2 kernle32dll
@ 2020-11-03  8:38 ` kernle32dll
  2020-12-30  7:23 ` the-maldridge
  2020-12-30  7:23 ` [PR PATCH] [Closed]: " the-maldridge
  10 siblings, 0 replies; 12+ messages in thread
From: kernle32dll @ 2020-11-03  8:38 UTC (permalink / raw)
  To: ml

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

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

https://github.com/kernle32dll/void-packages add-nordvpn
https://github.com/void-linux/void-packages/pull/21099

WIP: New package: nordvpn-bin-3.7.2
My first go at a new package.

See https://github.com/void-linux/void-packages/issues/11356

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

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

From c8e7c700113a46cc42a455c1079a19de14ac1c08 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bj=C3=B6rn=20Gerdau?= <bjoerngerdau@gmx.de>
Date: Sat, 18 Apr 2020 00:07:35 +0200
Subject: [PATCH] New package: nordvpn-bin-3.8.5

---
 srcpkgs/nordvpn-bin/files/nordvpnd/run |  2 +
 srcpkgs/nordvpn-bin/template           | 59 ++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)
 create mode 100644 srcpkgs/nordvpn-bin/files/nordvpnd/run
 create mode 100644 srcpkgs/nordvpn-bin/template

diff --git a/srcpkgs/nordvpn-bin/files/nordvpnd/run b/srcpkgs/nordvpn-bin/files/nordvpnd/run
new file mode 100644
index 00000000000..ab17e30c5d3
--- /dev/null
+++ b/srcpkgs/nordvpn-bin/files/nordvpnd/run
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec nordvpnd 2>&1
diff --git a/srcpkgs/nordvpn-bin/template b/srcpkgs/nordvpn-bin/template
new file mode 100644
index 00000000000..7501bca3529
--- /dev/null
+++ b/srcpkgs/nordvpn-bin/template
@@ -0,0 +1,59 @@
+# Template file for 'nordvpn-bin'
+pkgname=nordvpn-bin
+version=3.8.5
+revision=1
+archs="i686 x86_64 aarch64 armv7l armv6l"
+build_style=fetch
+hostmakedepends="tar xz"
+depends="ipset iproute2"
+short_desc="NordVPN CLI tool for Linux"
+maintainer="Björn Gerdau <bjoerngerdau@gmx.de>"
+license="custom"
+homepage="https://nordvpn.com"
+nopie=true
+
+case "$XBPS_TARGET_MACHINE" in
+	x86_64)
+		_deb="nordvpn_${version}_amd64.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_amd64.deb"
+		checksum=a3f9a0017a3e42e4dbc21372f79bff4eb30615bdd66998415f032e592e6eba4e
+		;;
+	i686)
+		_deb="nordvpn_${version}_i386.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_i386.deb"
+		checksum=3c79624fb5b673530a1bf03b18d37a89d1688a5362cd1cf60a7f76e4e2fc8bcb
+		;;
+	aarch64)
+		_deb="nordvpn_${version}_arm64.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_arm64.deb"
+		checksum=ae80d7819f15d972445e59282ada00114971d7c0723b02708826536ea3fa3eb3
+		;;
+	armv7l)
+		_deb="nordvpn_${version}_armhf.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_armhf.deb"
+		checksum=195ceac769638559771684d6bd1edbb3773b81fb397bf1d5c815e1c90de990b5
+		;;
+	armv6l)
+		_deb="nordvpn_${version}_armel.deb"
+		distfiles="https://repo.nordvpn.com/deb/nordvpn/debian/pool/main/nordvpn_${version}_armel.deb"
+		checksum=3b3ad1f8310abe745299c78c05ba8d0052b0e7b850fb804992d1663c54e9a4a5
+		;;
+esac
+
+do_install() {
+	ar p "${_deb}" data.tar.xz > data.tar.xz
+	tar -xJf data.tar.xz
+
+	# daemon and cli tool
+	vbin usr/sbin/nordvpnd
+	vbin usr/bin/nordvpn
+
+	# docs
+	vdoc usr/share/doc/nordvpn/changelog.gz
+	vman usr/share/man/man1/nordvpn.1.gz
+	vinstall usr/share/bash-completion/completions/nordvpn 644 usr/share/bash-completion/completions
+	vinstall "usr/share/zsh/functions/Completion/Unix/_nordvpn_auto_complete" 644 usr/share/zsh/site-functions
+
+	# runit service
+	vsv nordvpnd
+}

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

* Re: WIP: New package: nordvpn-bin-3.7.2
  2020-04-17 22:08 [PR PATCH] New package: nordvpn-bin-3.7.1 kernle32dll
                   ` (8 preceding siblings ...)
  2020-11-03  8:38 ` kernle32dll
@ 2020-12-30  7:23 ` the-maldridge
  2020-12-30  7:23 ` [PR PATCH] [Closed]: " the-maldridge
  10 siblings, 0 replies; 12+ messages in thread
From: the-maldridge @ 2020-12-30  7:23 UTC (permalink / raw)
  To: ml

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

New comment by the-maldridge on void-packages repository

https://github.com/void-linux/void-packages/pull/21099#issuecomment-752357850

Comment:
This is a repackage of a debian package.  Since they use significantly different libraries this is unlikely to be stable in the long term.  Since nordvpn supports openvpn and wireguard, both of which are already available on void, this is the recommended path over a binary from another distro.

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

* Re: [PR PATCH] [Closed]: WIP: New package: nordvpn-bin-3.7.2
  2020-04-17 22:08 [PR PATCH] New package: nordvpn-bin-3.7.1 kernle32dll
                   ` (9 preceding siblings ...)
  2020-12-30  7:23 ` the-maldridge
@ 2020-12-30  7:23 ` the-maldridge
  10 siblings, 0 replies; 12+ messages in thread
From: the-maldridge @ 2020-12-30  7:23 UTC (permalink / raw)
  To: ml

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

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

WIP: New package: nordvpn-bin-3.7.2
https://github.com/void-linux/void-packages/pull/21099

Description:
My first go at a new package.

See https://github.com/void-linux/void-packages/issues/11356

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

end of thread, other threads:[~2020-12-30  7:23 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-17 22:08 [PR PATCH] New package: nordvpn-bin-3.7.1 kernle32dll
2020-04-17 22:12 ` [PR PATCH] [Updated] " kernle32dll
2020-04-17 22:22 ` kernle32dll
2020-04-17 22:23 ` kernle32dll
2020-04-18  9:27 ` kernle32dll
2020-04-18  9:34 ` kernle32dll
2020-04-18  9:40 ` WIP: " kernle32dll
2020-04-18 11:02 ` kernle32dll
2020-09-27 18:10 ` [PR PATCH] [Updated] WIP: New package: nordvpn-bin-3.7.2 kernle32dll
2020-11-03  8:38 ` kernle32dll
2020-12-30  7:23 ` the-maldridge
2020-12-30  7:23 ` [PR PATCH] [Closed]: " the-maldridge

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