all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#56394] [PATCH] gnu: xl2tpd: Fix cross-compilation.
@ 2022-07-05  9:30 Jean Pierre De Jesus DIAZ via Guix-patches via
  2022-07-17 19:36 ` bug#56394: " Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: Jean Pierre De Jesus DIAZ via Guix-patches via @ 2022-07-05  9:30 UTC (permalink / raw)
  To: 56394

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

Fixes cross-compilation and also updates (optionally) the version
of xl2tpd to 1.3.17, the changes between versions is minimal:

https://github.com/xelerance/xl2tpd/compare/v1.3.16..v1.3.17

—
Jean-Pierre De Jesus DIAZ

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0002-gnu-xl2tpd-Update-to-1.3.17.patch --]
[-- Type: text/x-patch; name=0002-gnu-xl2tpd-Update-to-1.3.17.patch, Size: 1407 bytes --]

From 511bb2155973e24767befe11ea9b9eb66641f075 Mon Sep 17 00:00:00 2001
Message-Id: <511bb2155973e24767befe11ea9b9eb66641f075.1657013271.git.me@jeandudey.tech>
In-Reply-To: <1baf2bb97ab79cd020718605131b0a087fa215b4.1657013271.git.me@jeandudey.tech>
References: <1baf2bb97ab79cd020718605131b0a087fa215b4.1657013271.git.me@jeandudey.tech>
From: Jean-Pierre De Jesus DIAZ <me@jeandudey.tech>
Date: Tue, 5 Jul 2022 11:27:01 +0200
Subject: [PATCH 2/2] gnu: xl2tpd: Update to 1.3.17.

* gnu/packages/vpn.scm (xl2tpd)[version]: Update to 1.3.17.
---
 gnu/packages/vpn.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm
index d239288d10..e3b91549db 100644
--- a/gnu/packages/vpn.scm
+++ b/gnu/packages/vpn.scm
@@ -1163,7 +1163,7 @@ (define-public wireguard-tools
 (define-public xl2tpd
   (package
     (name "xl2tpd")
-    (version "1.3.16")
+    (version "1.3.17")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -1172,7 +1172,7 @@ (define-public xl2tpd
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0is5ccrvijz0pfm45pfrlbb9y8231yz3c4zqs8mkgakl9rxajy6l"))))
+                "06aiidwygywaa1jn8m2pw8l3vnsc2bjnacbjmlsdy1cqgr1f5cc9"))))
     (build-system gnu-build-system)
     (arguments
       (list #:make-flags
-- 
2.36.1


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: 0001-gnu-xl2tpd-Fix-cross-compilation.patch --]
[-- Type: text/x-patch; name=0001-gnu-xl2tpd-Fix-cross-compilation.patch, Size: 2438 bytes --]

From 1baf2bb97ab79cd020718605131b0a087fa215b4 Mon Sep 17 00:00:00 2001
Message-Id: <1baf2bb97ab79cd020718605131b0a087fa215b4.1657012966.git.me@jeandudey.tech>
From: Jean-Pierre De Jesus DIAZ <me@jeandudey.tech>
Date: Tue, 5 Jul 2022 11:21:07 +0200
Subject: [PATCH] gnu: xl2tpd: Fix cross-compilation.

* gnu/packages/vpn.scm (xl2tpd): Fix cross-compilation.
  [arguments]: Use G-Expressions and use `cc-for-target'.
---
 gnu/packages/vpn.scm | 28 +++++++++++++++-------------
 1 file changed, 15 insertions(+), 13 deletions(-)

diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm
index 23141e56a3..d239288d10 100644
--- a/gnu/packages/vpn.scm
+++ b/gnu/packages/vpn.scm
@@ -1175,19 +1175,21 @@ (define-public xl2tpd
                 "0is5ccrvijz0pfm45pfrlbb9y8231yz3c4zqs8mkgakl9rxajy6l"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:make-flags (list (string-append "PREFIX=" %output)
-                          "CC=gcc")
-       #:phases (modify-phases %standard-phases
-                  (delete 'configure) ;no configure script
-                  (add-before 'build 'setup-environment
-                    (lambda* (#:key inputs #:allow-other-keys)
-                      (substitute* "l2tp.h"
-                        (("/usr/sbin/pppd")
-                         (search-input-file inputs "/sbin/pppd")))
-                      (setenv "KERNELSRC"
-                              (assoc-ref inputs "kernel-headers"))
-                      #t)))
-       #:tests? #f))                    ; no tests provided
+      (list #:make-flags
+            #~(list (string-append "PREFIX=" #$output)
+                    (string-append "CC=" #$(cc-for-target)))
+            #:phases
+            #~(modify-phases %standard-phases
+                (delete 'configure) ;; No configure script.
+                (add-before 'build 'setup-environment
+                  (lambda* (#:key inputs #:allow-other-keys)
+                    (substitute* "l2tp.h"
+                      (("/usr/sbin/pppd")
+                       (search-input-file inputs "/sbin/pppd")))
+                    (setenv "KERNELSRC"
+                      (assoc-ref inputs "kernel-headers"))
+                    #t)))
+            #:tests? #f))           ;; No tests provided.
     (inputs (list libpcap ppp))
     (home-page "https://www.xelerance.com/software/xl2tpd/")
     (synopsis "Layer 2 Tunnelling Protocol Daemon (RFC 2661)")
-- 
2.36.1


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

* bug#56394: [PATCH] gnu: xl2tpd: Fix cross-compilation.
  2022-07-05  9:30 [bug#56394] [PATCH] gnu: xl2tpd: Fix cross-compilation Jean Pierre De Jesus DIAZ via Guix-patches via
@ 2022-07-17 19:36 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2022-07-17 19:36 UTC (permalink / raw)
  To: Jean Pierre De Jesus DIAZ; +Cc: 56394-done

Hi,

Jean Pierre De Jesus DIAZ <me@jeandudey.tech> skribis:

> From 511bb2155973e24767befe11ea9b9eb66641f075 Mon Sep 17 00:00:00 2001
> Message-Id: <511bb2155973e24767befe11ea9b9eb66641f075.1657013271.git.me@jeandudey.tech>
> In-Reply-To: <1baf2bb97ab79cd020718605131b0a087fa215b4.1657013271.git.me@jeandudey.tech>
> References: <1baf2bb97ab79cd020718605131b0a087fa215b4.1657013271.git.me@jeandudey.tech>
> From: Jean-Pierre De Jesus DIAZ <me@jeandudey.tech>
> Date: Tue, 5 Jul 2022 11:27:01 +0200
> Subject: [PATCH 2/2] gnu: xl2tpd: Update to 1.3.17.
>
> * gnu/packages/vpn.scm (xl2tpd)[version]: Update to 1.3.17.

Applied.

> From 1baf2bb97ab79cd020718605131b0a087fa215b4 Mon Sep 17 00:00:00 2001
> Message-Id: <1baf2bb97ab79cd020718605131b0a087fa215b4.1657012966.git.me@jeandudey.tech>
> From: Jean-Pierre De Jesus DIAZ <me@jeandudey.tech>
> Date: Tue, 5 Jul 2022 11:21:07 +0200
> Subject: [PATCH] gnu: xl2tpd: Fix cross-compilation.
>
> * gnu/packages/vpn.scm (xl2tpd): Fix cross-compilation.
>   [arguments]: Use G-Expressions and use `cc-for-target'.

Efraim pushed as similar change in
422e5d351378f494612b9d6a2be4c19e625eb75c.

Thanks,
Ludo’.




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

end of thread, other threads:[~2022-07-17 19:37 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-05  9:30 [bug#56394] [PATCH] gnu: xl2tpd: Fix cross-compilation Jean Pierre De Jesus DIAZ via Guix-patches via
2022-07-17 19:36 ` bug#56394: " Ludovic Courtès

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.