GNU bug report logs - #60967
[PATCH 0/3] Update vnstat to 2.10 and build vnstati.

Previous Next

Package: guix-patches;

Reported by: Bruno Victal <mirai <at> makinata.eu>

Date: Fri, 20 Jan 2023 16:50:01 UTC

Severity: normal

Tags: patch

Done: Christopher Baines <mail <at> cbaines.net>

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 60967 in the body.
You can then email your comments to 60967 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#60967; Package guix-patches. (Fri, 20 Jan 2023 16:50:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Bruno Victal <mirai <at> makinata.eu>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 20 Jan 2023 16:50:01 GMT) Full text and rfc822 format available.

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

From: Bruno Victal <mirai <at> makinata.eu>
To: guix-patches <at> gnu.org
Cc: Bruno Victal <mirai <at> makinata.eu>
Subject: [PATCH 0/3] Update vnstat to 2.10 and build vnstati.
Date: Fri, 20 Jan 2023 16:48:43 +0000
Bruno Victal (3):
  gnu: vnstat: Update to 2.10.
  gnu: vnstat: Use G-Expressions.
  gnu: vnstat: Build vnstati.

 gnu/packages/networking.scm | 26 ++++++++++++++------------
 1 file changed, 14 insertions(+), 12 deletions(-)


base-commit: ec3226c3985d5ec168d45499f12dfcf87f0f5c94
-- 
2.38.1





Information forwarded to guix-patches <at> gnu.org:
bug#60967; Package guix-patches. (Fri, 20 Jan 2023 16:52:01 GMT) Full text and rfc822 format available.

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

From: Bruno Victal <mirai <at> makinata.eu>
To: 60967 <at> debbugs.gnu.org
Cc: Bruno Victal <mirai <at> makinata.eu>
Subject: [PATCH 1/3] gnu: vnstat: Update to 2.10.
Date: Fri, 20 Jan 2023 16:51:19 +0000
* gnu/packages/networking.scm (vnstat): Update to 2.10.
---
 gnu/packages/networking.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index a7b51ed1ff..0bdd38f703 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -4523,7 +4523,7 @@ (define-public putty
 (define-public vnstat
   (package
    (name "vnstat")
-   (version "2.9")
+   (version "2.10")
    (source
     (origin
       (method url-fetch)
@@ -4531,7 +4531,7 @@ (define-public vnstat
                           version ".tar.gz"))
       (sha256
        (base32
-        "1iwxmnpabfljvyng7c8k3z83yw1687i66z5s1980c5x9vrsi98hi"))))
+        "09bx8mz9jdq94i0mpmjbc7dis0klvjx85lml5mp3d36dwm21gim9"))))
    (build-system gnu-build-system)
    (inputs (list sqlite))
    (native-inputs (list pkg-config check))
-- 
2.38.1





Information forwarded to guix-patches <at> gnu.org:
bug#60967; Package guix-patches. (Fri, 20 Jan 2023 16:52:02 GMT) Full text and rfc822 format available.

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

From: Bruno Victal <mirai <at> makinata.eu>
To: 60967 <at> debbugs.gnu.org
Cc: Bruno Victal <mirai <at> makinata.eu>
Subject: [PATCH 3/3] gnu: vnstat: Build vnstati.
Date: Fri, 20 Jan 2023 16:51:21 +0000
* gnu/packages/networking.scm (vnstat)[inputs]: Add gd.
---
 gnu/packages/networking.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 0565d997b2..d0d915604f 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -111,6 +111,7 @@ (define-module (gnu packages networking)
   #:use-module (gnu packages documentation)
   #:use-module (gnu packages flex)
   #:use-module (gnu packages freedesktop)
+  #:use-module (gnu packages gd)
   #:use-module (gnu packages gettext)
   #:use-module (gnu packages glib)
   #:use-module (gnu packages gnome)
@@ -4533,7 +4534,7 @@ (define-public vnstat
        (base32
         "09bx8mz9jdq94i0mpmjbc7dis0klvjx85lml5mp3d36dwm21gim9"))))
    (build-system gnu-build-system)
-   (inputs (list sqlite))
+   (inputs (list sqlite gd))
    (native-inputs (list pkg-config check))
    (arguments
     (list
-- 
2.38.1





Information forwarded to guix-patches <at> gnu.org:
bug#60967; Package guix-patches. (Fri, 20 Jan 2023 16:52:02 GMT) Full text and rfc822 format available.

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

From: Bruno Victal <mirai <at> makinata.eu>
To: 60967 <at> debbugs.gnu.org
Cc: Bruno Victal <mirai <at> makinata.eu>
Subject: [PATCH 2/3] gnu: vnstat: Use G-Expressions.
Date: Fri, 20 Jan 2023 16:51:20 +0000
* gnu/packages/networking.scm (vnstat): Use G-Expressions.
---
 gnu/packages/networking.scm | 19 ++++++++++---------
 1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 0bdd38f703..0565d997b2 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -4536,15 +4536,16 @@ (define-public vnstat
    (inputs (list sqlite))
    (native-inputs (list pkg-config check))
    (arguments
-    `(#:phases
-      (modify-phases %standard-phases
-        (add-before 'check 'disable-id-tests
-          (lambda _
-            (substitute*
-                '("Makefile" "tests/vnstat_tests.c")
-              (("tests/id_tests.c \\$") "\\")
-              (("tests/id_tests.h h") "h")
-              (("^.*id_tests.*$") "")))))))
+    (list
+     #:phases
+     #~(modify-phases %standard-phases
+         (add-before 'check 'disable-id-tests
+           (lambda _
+             (substitute*
+                 '("Makefile" "tests/vnstat_tests.c")
+               (("tests/id_tests.c \\$") "\\")
+               (("tests/id_tests.h h") "h")
+               (("^.*id_tests.*$") "")))))))
    (home-page "https://humdi.net/vnstat/")
    (synopsis "Network traffic monitoring tool")
    (description "vnStat is a console-based network traffic monitor that keeps
-- 
2.38.1





Information forwarded to guix-patches <at> gnu.org:
bug#60967; Package guix-patches. (Wed, 01 Feb 2023 08:50:02 GMT) Full text and rfc822 format available.

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

From: Christopher Baines <mail <at> cbaines.net>
To: Bruno Victal <mirai <at> makinata.eu>
Cc: 60967-done <at> debbugs.gnu.org, guix-patches <at> gnu.org
Subject: Re: [bug#60967] [PATCH 0/3] Update vnstat to 2.10 and build vnstati.
Date: Wed, 01 Feb 2023 08:48:34 +0000
[Message part 1 (text/plain, inline)]
Bruno Victal <mirai <at> makinata.eu> writes:

> Bruno Victal (3):
>   gnu: vnstat: Update to 2.10.
>   gnu: vnstat: Use G-Expressions.
>   gnu: vnstat: Build vnstati.
>
>  gnu/packages/networking.scm | 26 ++++++++++++++------------
>  1 file changed, 14 insertions(+), 12 deletions(-)

Thanks Bruno, I've gone ahead and pushed these to master as
b6b0291918ed690f82df4f412a9558fc9f3299b7.

Chris
[signature.asc (application/pgp-signature, inline)]

Reply sent to Christopher Baines <mail <at> cbaines.net>:
You have taken responsibility. (Wed, 01 Feb 2023 08:50:03 GMT) Full text and rfc822 format available.

Notification sent to Bruno Victal <mirai <at> makinata.eu>:
bug acknowledged by developer. (Wed, 01 Feb 2023 08:50:03 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. (Wed, 01 Mar 2023 12:24:09 GMT) Full text and rfc822 format available.

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

Previous Next


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