GNU bug report logs - #67176
[PATCH] gnu: openvpn: Update to 2.6.7.

Previous Next

Package: guix-patches;

Reported by: Sergey Trofimov <sarg <at> sarg.org.ru>

Date: Tue, 14 Nov 2023 15:04:02 UTC

Severity: normal

Tags: moreinfo, patch

Done: Ludovic Courtès <ludo <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 67176 in the body.
You can then email your comments to 67176 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#67176; Package guix-patches. (Tue, 14 Nov 2023 15:04:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Sergey Trofimov <sarg <at> sarg.org.ru>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Tue, 14 Nov 2023 15:04:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Sergey Trofimov <sarg <at> sarg.org.ru>
To: guix-patches <at> gnu.org
Cc: Sergey Trofimov <sarg <at> sarg.org.ru>
Subject: [PATCH] gnu: openvpn: Update to 2.6.7.
Date: Tue, 14 Nov 2023 16:02:10 +0100
* gnu/packages/vpn.scm (openvpn): Update to 2.6.7.
---
 gnu/packages/vpn.scm | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm
index 972f9b0329..77b9924426 100644
--- a/gnu/packages/vpn.scm
+++ b/gnu/packages/vpn.scm
@@ -836,7 +836,7 @@ (define-public openfortivpn
 (define-public openvpn
   (package
     (name "openvpn")
-    (version "2.5.8")
+    (version "2.6.7")
     (source (origin
               (method url-fetch)
               (uri (string-append
@@ -844,14 +844,17 @@ (define-public openvpn
                     version ".tar.gz"))
               (sha256
                (base32
-                "1cixqm4gn2d1v8qkbww75j30fzvxz13gc7whcmz54i0x4fvibwx6"))))
+                "04wr0g97nmv81javym8r99mglmb86v1i49xmnmzf938x1cs7g67f"))))
     (build-system gnu-build-system)
     (arguments
      '(#:configure-flags '("--enable-iproute2=yes")))
     (native-inputs
-     (list iproute))
-    (inputs
-     (list lz4 lzo openssl linux-pam))
+     (append
+      (if (target-linux?) (list pkg-config) '())
+      (list iproute)))
+    (inputs (append
+             (if (target-linux?) (list libcap-ng) '())
+             (list lz4 lzo openssl linux-pam)))
     (home-page "https://openvpn.net/")
     (synopsis "Virtual private network daemon")
     (description

base-commit: bd0f2173210416e86281c1de8789e7cdab66dd57
--
2.41.0





Information forwarded to guix-patches <at> gnu.org:
bug#67176; Package guix-patches. (Thu, 23 Nov 2023 14:14:01 GMT) Full text and rfc822 format available.

Message #8 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Christopher Baines <mail <at> cbaines.net>
To: Sergey Trofimov <sarg <at> sarg.org.ru>
Cc: guix-patches <at> gnu.org, 67176 <at> debbugs.gnu.org
Subject: Re: [bug#67176] [PATCH] gnu: openvpn: Update to 2.6.7.
Date: Thu, 23 Nov 2023 14:13:06 +0000
[Message part 1 (text/plain, inline)]
Sergey Trofimov <sarg <at> sarg.org.ru> writes:

> * gnu/packages/vpn.scm (openvpn): Update to 2.6.7.
> ---
>  gnu/packages/vpn.scm | 13 ++++++++-----
>  1 file changed, 8 insertions(+), 5 deletions(-)
>
> diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm
> index 972f9b0329..77b9924426 100644
> --- a/gnu/packages/vpn.scm
> +++ b/gnu/packages/vpn.scm
> @@ -836,7 +836,7 @@ (define-public openfortivpn
>  (define-public openvpn
>    (package
>      (name "openvpn")
> -    (version "2.5.8")
> +    (version "2.6.7")
>      (source (origin
>                (method url-fetch)
>                (uri (string-append
> @@ -844,14 +844,17 @@ (define-public openvpn
>                      version ".tar.gz"))
>                (sha256
>                 (base32
> -                "1cixqm4gn2d1v8qkbww75j30fzvxz13gc7whcmz54i0x4fvibwx6"))))
> +                "04wr0g97nmv81javym8r99mglmb86v1i49xmnmzf938x1cs7g67f"))))
>      (build-system gnu-build-system)
>      (arguments
>       '(#:configure-flags '("--enable-iproute2=yes")))
>      (native-inputs
> -     (list iproute))
> -    (inputs
> -     (list lz4 lzo openssl linux-pam))
> +     (append
> +      (if (target-linux?) (list pkg-config) '())
> +      (list iproute)))
> +    (inputs (append
> +             (if (target-linux?) (list libcap-ng) '())
> +             (list lz4 lzo openssl linux-pam)))

These changes could do with mentioning in the commit message, since it's
not immediately clear what you're trying to do?
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#67176; Package guix-patches. (Thu, 23 Nov 2023 14:14:02 GMT) Full text and rfc822 format available.

Added tag(s) moreinfo. Request was from Ludovic Courtès <ludo <at> gnu.org> to control <at> debbugs.gnu.org. (Sat, 02 Dec 2023 10:57:01 GMT) Full text and rfc822 format available.

Information forwarded to guix-patches <at> gnu.org:
bug#67176; Package guix-patches. (Sat, 02 Dec 2023 13:57:02 GMT) Full text and rfc822 format available.

Message #16 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Sergey Trofimov <sarg <at> sarg.org.ru>
To: Christopher Baines <mail <at> cbaines.net>
Cc: guix-patches <at> gnu.org, 67176 <at> debbugs.gnu.org
Subject: Re: [bug#67176] [PATCH] gnu: openvpn: Update to 2.6.7.
Date: Sat, 02 Dec 2023 14:47:10 +0100
Christopher Baines <mail <at> cbaines.net> writes:

... omitted
>>      (arguments
>>       '(#:configure-flags '("--enable-iproute2=yes")))
>>      (native-inputs
>> -     (list iproute))
>> -    (inputs
>> -     (list lz4 lzo openssl linux-pam))
>> +     (append
>> +      (if (target-linux?) (list pkg-config) '())
>> +      (list iproute)))
>> +    (inputs (append
>> +             (if (target-linux?) (list libcap-ng) '())
>> +             (list lz4 lzo openssl linux-pam)))
>
> These changes could do with mentioning in the commit message, 
> since it's
> not immediately clear what you're trying to do?
>

Hey, sorry for responding lately. I've just noticed your mail 
ended in gmail's spam folder.

So libcap-ng is required only for linux as could be seen here:
https://github.com/OpenVPN/openvpn/blob/753cba211c4752ef13d810b757f1aa7dee89626b/CMakeLists.txt#L261

Though pkg-config seems to be mandatory. It is present on every 
platform, right? Let me fix that.




Information forwarded to guix-patches <at> gnu.org:
bug#67176; Package guix-patches. (Sat, 02 Dec 2023 13:57:02 GMT) Full text and rfc822 format available.

Information forwarded to guix-patches <at> gnu.org:
bug#67176; Package guix-patches. (Sat, 02 Dec 2023 17:26:02 GMT) Full text and rfc822 format available.

Message #22 received at 67176 <at> debbugs.gnu.org (full text, mbox):

From: Sergey Trofimov <sarg <at> sarg.org.ru>
To: 67176 <at> debbugs.gnu.org
Cc: Sergey Trofimov <sarg <at> sarg.org.ru>
Subject: [PATCH v1] gnu: openvpn: Update to 2.6.7.
Date: Sat,  2 Dec 2023 18:24:55 +0100
* gnu/packages/vpn.scm (openvpn): Update to 2.6.7.
---
 gnu/packages/vpn.scm | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm
index 489a35da42..02c1ee1043 100644
--- a/gnu/packages/vpn.scm
+++ b/gnu/packages/vpn.scm
@@ -838,7 +838,7 @@ (define-public openfortivpn
 (define-public openvpn
   (package
     (name "openvpn")
-    (version "2.5.8")
+    (version "2.6.7")
     (source (origin
               (method url-fetch)
               (uri (string-append
@@ -846,14 +846,13 @@ (define-public openvpn
                     version ".tar.gz"))
               (sha256
                (base32
-                "1cixqm4gn2d1v8qkbww75j30fzvxz13gc7whcmz54i0x4fvibwx6"))))
+                "04wr0g97nmv81javym8r99mglmb86v1i49xmnmzf938x1cs7g67f"))))
     (build-system gnu-build-system)
     (arguments
      '(#:configure-flags '("--enable-iproute2=yes")))
-    (native-inputs
-     (list iproute))
-    (inputs
-     (list lz4 lzo openssl linux-pam))
+    (native-inputs (list iproute pkg-config))
+    (inputs (append (list lz4 lzo openssl linux-pam)
+                    (if (target-linux?) (list libcap-ng) '())))
     (home-page "https://openvpn.net/")
     (synopsis "Virtual private network daemon")
     (description

base-commit: aeb494322ca9dec4a4d66a7d063239c8536bd538
--
2.41.0





bug closed, send any further explanations to 67176 <at> debbugs.gnu.org and Sergey Trofimov <sarg <at> sarg.org.ru> Request was from Ludovic Courtès <ludo <at> gnu.org> to control <at> debbugs.gnu.org. (Sun, 07 Jan 2024 15:04:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Mon, 05 Feb 2024 12:24:11 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 94 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.