unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#53880] [PATCH 0/2] Fix build of protonvpn-cli
@ 2022-02-08 18:03 Josselin Poiret via Guix-patches via
  2022-02-08 18:05 ` [bug#53880] [PATCH 1/2] gnu: protonvpn-cli: Do not try to wrap the wrapper Josselin Poiret via Guix-patches via
  2022-02-08 18:05 ` [bug#53880] [PATCH 2/2] gnu: protonvpn-cli: Remove sanity-check phase Josselin Poiret via Guix-patches via
  0 siblings, 2 replies; 3+ messages in thread
From: Josselin Poiret via Guix-patches via @ 2022-02-08 18:03 UTC (permalink / raw)
  To: 53880; +Cc: Josselin Poiret

Hello,

These two patches fix the build failure of protonvpn-cli.  The first
one fixes the wrap target, since the wrapper code now properly handles
re-wrapping a wrapped binary.  The second removes the sanity-check
phase as the main entry point tries to create a directory under ~user,
which fails, and setting HOME=/tmp will not work since expanding ~user
uses the passwd database.

Best,

Josselin Poiret (2):
  gnu: protonvpn-cli: Do not try to wrap the wrapper.
  gnu: protonvpn-cli: Remove sanity-check phase.

 gnu/packages/vpn.scm | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

-- 
2.34.0





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

* [bug#53880] [PATCH 1/2] gnu: protonvpn-cli: Do not try to wrap the wrapper.
  2022-02-08 18:03 [bug#53880] [PATCH 0/2] Fix build of protonvpn-cli Josselin Poiret via Guix-patches via
@ 2022-02-08 18:05 ` Josselin Poiret via Guix-patches via
  2022-02-08 18:05 ` [bug#53880] [PATCH 2/2] gnu: protonvpn-cli: Remove sanity-check phase Josselin Poiret via Guix-patches via
  1 sibling, 0 replies; 3+ messages in thread
From: Josselin Poiret via Guix-patches via @ 2022-02-08 18:05 UTC (permalink / raw)
  To: 53880; +Cc: Josselin Poiret

* gnu/packages/vpn.scm (protonvpn-cli)[arguments]: Try to wrap the
original program, and not the wrapper, as wrap-program handles that
properly.
---
 gnu/packages/vpn.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm
index 7f1d10d1eb..150dfa31b5 100644
--- a/gnu/packages/vpn.scm
+++ b/gnu/packages/vpn.scm
@@ -753,7 +753,7 @@ (define-public protonvpn-cli
            ;; Wrap entrypoint with paths to its hard dependencies.
            (lambda* (#:key inputs outputs #:allow-other-keys)
              (let ((entrypoint (string-append (assoc-ref outputs "out")
-                                              "/bin/.protonvpn-real")))
+                                              "/bin/protonvpn")))
                (wrap-program entrypoint
                             #:sh (search-input-file inputs "bin/bash")
                             `("PATH" ":" prefix
-- 
2.34.0





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

* [bug#53880] [PATCH 2/2] gnu: protonvpn-cli: Remove sanity-check phase.
  2022-02-08 18:03 [bug#53880] [PATCH 0/2] Fix build of protonvpn-cli Josselin Poiret via Guix-patches via
  2022-02-08 18:05 ` [bug#53880] [PATCH 1/2] gnu: protonvpn-cli: Do not try to wrap the wrapper Josselin Poiret via Guix-patches via
@ 2022-02-08 18:05 ` Josselin Poiret via Guix-patches via
  1 sibling, 0 replies; 3+ messages in thread
From: Josselin Poiret via Guix-patches via @ 2022-02-08 18:05 UTC (permalink / raw)
  To: 53880; +Cc: Josselin Poiret

* gnu/packages/vpn.scm (protonvpn-cli)[arguments]: Remove sanity-check
phase.
---
 gnu/packages/vpn.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm
index 150dfa31b5..170ec1b663 100644
--- a/gnu/packages/vpn.scm
+++ b/gnu/packages/vpn.scm
@@ -768,7 +768,11 @@ (define-public protonvpn-cli
                                           "openvpn"
                                           "procps"
                                           "which")))))
-             #t)))))
+             #t))
+         ;; The `protonvpn' script wants to write to `~user' to initialize its
+         ;; logger, so simply setting HOME=/tmp won't cut it.  Remove
+         ;; sanity-check.
+         (delete 'sanity-check))))
     (native-inputs
      (list python-docopt))
     (inputs
-- 
2.34.0





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

end of thread, other threads:[~2022-02-08 19:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-08 18:03 [bug#53880] [PATCH 0/2] Fix build of protonvpn-cli Josselin Poiret via Guix-patches via
2022-02-08 18:05 ` [bug#53880] [PATCH 1/2] gnu: protonvpn-cli: Do not try to wrap the wrapper Josselin Poiret via Guix-patches via
2022-02-08 18:05 ` [bug#53880] [PATCH 2/2] gnu: protonvpn-cli: Remove sanity-check phase Josselin Poiret via Guix-patches via

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