unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#41679] [PATCH] gnu: Update protonvpn-cli to 2.2.4
@ 2020-06-02 23:43 Ryan Prior via Guix-patches via
  2020-06-07 21:18 ` Brice Waegeneire
  2020-09-09 21:08 ` Ludovic Courtès
  0 siblings, 2 replies; 3+ messages in thread
From: Ryan Prior via Guix-patches via @ 2020-06-02 23:43 UTC (permalink / raw)
  To: 41679

* gnu/packages/vpn.scm (protonvpn-cli): Update to 2.2.4
---
 gnu/packages/vpn.scm | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm
index 0f0157806c..cdfddc1e54 100644
--- a/gnu/packages/vpn.scm
+++ b/gnu/packages/vpn.scm
@@ -51,6 +51,7 @@
   #:use-module (gnu packages guile)
   #:use-module (gnu packages libevent)
   #:use-module (gnu packages linux)
+  #:use-module (gnu packages ncurses)
   #:use-module (gnu packages nss)
   #:use-module (gnu packages perl)
   #:use-module (gnu packages pkg-config)
@@ -316,7 +317,7 @@ traversing network address translators (@dfn{NAT}s) and firewalls.")
 (define-public protonvpn-cli
   (package
     (name "protonvpn-cli")
-    (version "2.2.2")
+    (version "2.2.4")
     (source
      (origin
        ;; PyPI has a ".whl" file but not a proper source release.
@@ -328,7 +329,7 @@ traversing network address translators (@dfn{NAT}s) and firewalls.")
        (file-name (git-file-name name version))
        (sha256
         (base32
-         "0ixjb02kj4z79whm1izd8mrn2h0rp9cmw4im1qvp93rahqxdd4n8"))))
+         "08yca0a0prrnrc7ir7ajd56yxvxpcs4m1k8f5kf273f5whgr7wzw"))))
     (build-system python-build-system)
     (arguments '(#:tests? #f)) ; no tests in repo
     (native-inputs
@@ -337,7 +338,8 @@ traversing network address translators (@dfn{NAT}s) and firewalls.")
      `(("pythondialog" ,python-pythondialog)
        ("requests" ,python-requests)))
     (propagated-inputs
-     `(("openvpn" ,openvpn)))
+     `(("openvpn" ,openvpn)
+       ("dialog" ,dialog)))
     (synopsis "Command-line client for ProtonVPN")
     (description
      "This is the official command-line interface for ProtonVPN, a secure
-- 
2.26.2






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

* [bug#41679] [PATCH] gnu: Update protonvpn-cli to 2.2.4
  2020-06-02 23:43 [bug#41679] [PATCH] gnu: Update protonvpn-cli to 2.2.4 Ryan Prior via Guix-patches via
@ 2020-06-07 21:18 ` Brice Waegeneire
  2020-09-09 21:08 ` Ludovic Courtès
  1 sibling, 0 replies; 3+ messages in thread
From: Brice Waegeneire @ 2020-06-07 21:18 UTC (permalink / raw)
  To: Ryan Prior; +Cc: 41679

Hello Ryan,

Thank you for the patch!

Ryan Prior <rprior@protonmail.com> writes:

> * gnu/packages/vpn.scm (protonvpn-cli): Update to 2.2.4
> ---
>  gnu/packages/vpn.scm | 8 +++++---
>  1 file changed, 5 insertions(+), 3 deletions(-)

The update is fine, but that package is missing several dependencies, at
least: python-jinja2, coreutils and iproute. Try running it in a pure
environment and it will crash “guix environment --pure --container
--ad-hoc protonvpn-cli -- protonvpn -h”.

Searching the source for “subprocess.run” I find call to other binaries
which aren't listed as dependencies. Could you wrap the “protonvpn”
binary with the “PATH” of all the binaries it uses to avoid propagating
a whole lot of packages. Probably only “python-jinja2” should be
propagated.

- Brice




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

* [bug#41679] [PATCH] gnu: Update protonvpn-cli to 2.2.4
  2020-06-02 23:43 [bug#41679] [PATCH] gnu: Update protonvpn-cli to 2.2.4 Ryan Prior via Guix-patches via
  2020-06-07 21:18 ` Brice Waegeneire
@ 2020-09-09 21:08 ` Ludovic Courtès
  1 sibling, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2020-09-09 21:08 UTC (permalink / raw)
  To: Ryan Prior; +Cc: 41679, Brice Waegeneire

Hi Ryan,

Ryan Prior <rprior@protonmail.com> skribis:

> * gnu/packages/vpn.scm (protonvpn-cli): Update to 2.2.4

Applied!

Brice Waegeneire <brice@waegenei.re> skribis:

> The update is fine, but that package is missing several dependencies, at
> least: python-jinja2, coreutils and iproute. Try running it in a pure
> environment and it will crash “guix environment --pure --container
> --ad-hoc protonvpn-cli -- protonvpn -h”.
>
> Searching the source for “subprocess.run” I find call to other binaries
> which aren't listed as dependencies. Could you wrap the “protonvpn”
> binary with the “PATH” of all the binaries it uses to avoid propagating
> a whole lot of packages. Probably only “python-jinja2” should be
> propagated.

Alternatively, we can substitute file names (of jinja2, coreutils, and
iproute programs) with absolute file names.

That can be addressed separately, though.

Thanks,
Ludo’.




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

end of thread, other threads:[~2020-09-09 21:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-02 23:43 [bug#41679] [PATCH] gnu: Update protonvpn-cli to 2.2.4 Ryan Prior via Guix-patches via
2020-06-07 21:18 ` Brice Waegeneire
2020-09-09 21:08 ` Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).