GNU bug report logs

#67176 [PATCH] gnu: openvpn: Update to 2.6.7.

PackageSource(s)Maintainer(s)
guix-patches PTS Buildd Popcon
Reply or subscribe to this bug. View this bug as an mbox, status mbox, or maintainer mbox

Report forwarded to guix-patches@gnu.org:
bug#67176; Package guix-patches. (Tue, 14 Nov 2023 15:04:02 GMT) (full text, mbox, link).


Acknowledgement sent to Sergey Trofimov <sarg@sarg.org.ru>:
New bug report received and forwarded. Copy sent to guix-patches@gnu.org. (Tue, 14 Nov 2023 15:04:02 GMT) (full text, mbox, link).


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

From: Sergey Trofimov <sarg@sarg.org.ru>
To: guix-patches@gnu.org
Cc: Sergey Trofimov <sarg@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@gnu.org:
bug#67176; Package guix-patches. (Thu, 23 Nov 2023 14:14:01 GMT) (full text, mbox, link).


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

From: Christopher Baines <mail@cbaines.net>
To: Sergey Trofimov <sarg@sarg.org.ru>
Cc: guix-patches@gnu.org, 67176@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@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@gnu.org:
bug#67176; Package guix-patches. (Thu, 23 Nov 2023 14:14:02 GMT) (full text, mbox, link).


Added tag(s) moreinfo. Request was from Ludovic Courtès <ludo@gnu.org> to control@debbugs.gnu.org. (Sat, 02 Dec 2023 10:57:01 GMT) (full text, mbox, link).


Information forwarded to guix-patches@gnu.org:
bug#67176; Package guix-patches. (Sat, 02 Dec 2023 13:57:02 GMT) (full text, mbox, link).


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

From: Sergey Trofimov <sarg@sarg.org.ru>
To: Christopher Baines <mail@cbaines.net>
Cc: guix-patches@gnu.org, 67176@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@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@gnu.org:
bug#67176; Package guix-patches. (Sat, 02 Dec 2023 13:57:02 GMT) (full text, mbox, link).


Information forwarded to guix-patches@gnu.org:
bug#67176; Package guix-patches. (Sat, 02 Dec 2023 17:26:02 GMT) (full text, mbox, link).


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

From: Sergey Trofimov <sarg@sarg.org.ru>
To: 67176@debbugs.gnu.org
Cc: Sergey Trofimov <sarg@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@debbugs.gnu.org and Sergey Trofimov <sarg@sarg.org.ru> Request was from Ludovic Courtès <ludo@gnu.org> to control@debbugs.gnu.org. (Sun, 07 Jan 2024 15:04:02 GMT) (full text, mbox, link).


bug archived. Request was from Debbugs Internal Request <help-debbugs@gnu.org> to internal_control@debbugs.gnu.org. (Mon, 05 Feb 2024 12:24:11 GMT) (full text, mbox, link).


Send a report that this bug log contains spam.


debbugs.gnu.org maintainers <help-debbugs@gnu.org>. Last modified: Fri Oct 25 19:22:13 2024; Machine Name: wallace-server

GNU bug tracking system

Debbugs is free software and licensed under the terms of the GNU Public License version 2. The current version can be obtained from https://bugs.debian.org/debbugs-source/.

Copyright © 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson, 2005-2017 Don Armstrong, and many other contributors.