[bug#76433] gnu: boxes: Update to 2.3.1.

Message ID f3f2b61744e2d06060fcc4081b302d63decfd994.1740036089.git.wongandj@icloud.com
State New
Headers
Series [bug#76433] gnu: boxes: Update to 2.3.1. |

Commit Message

Andrew Wong Feb. 20, 2025, 7:21 a.m. UTC
  * gnu/packages/shellutils.scm (boxes): Update to 2.3.1.
[arguments]: Change test target to "utest".

Change-Id: I673df8b670f28f5da13f141c35b96eeb08c40a54
---
 gnu/packages/shellutils.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)


base-commit: 5a897c5c95a81278b044c18d962d3bd83131ba06
  

Comments

Ludovic Courtès March 10, 2025, 1:36 p.m. UTC | #1
Andrew Wong <wongandj@icloud.com> skribis:

> * gnu/packages/shellutils.scm (boxes): Update to 2.3.1.
> [arguments]: Change test target to "utest".
>
> Change-Id: I673df8b670f28f5da13f141c35b96eeb08c40a54

Applied!  I tweaked the commit log to mention input changes.

Thanks,
Ludo'.
  

Patch

diff --git a/gnu/packages/shellutils.scm b/gnu/packages/shellutils.scm
index dc9a51e25f..28c8af8685 100644
--- a/gnu/packages/shellutils.scm
+++ b/gnu/packages/shellutils.scm
@@ -122,7 +122,7 @@  (define-public ascii
 (define-public boxes
   (package
     (name "boxes")
-    (version "2.2.1")
+    (version "2.3.1")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -131,10 +131,10 @@  (define-public boxes
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1blni7kjskg6y9ycvhwq3srfvh891xhfnjbh5h2zl0pb5szpllqi"))))
+                "028vg9h3vxz3icy7hmxgyqhn62953h1ls6bxwbhdwhl1lpj5py3n"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:test-target "test"
+     `(#:test-target "utest"
        #:make-flags (list (string-append "GLOBALCONF="
                                          (assoc-ref %outputs "out")
                                          "/etc/boxes-config"))
@@ -155,11 +155,11 @@  (define-public boxes
                            ("doc/boxes.1"  "share/man/man1/")
                            ("boxes-config" "etc/")))))))))
     (native-inputs
-     (list bison flex
+     (list bison flex cmocka
            ;; For the tests.
            xxd))
     (inputs
-     (list libunistring pcre2))
+     (list ncurses libunistring pcre2))
     (home-page "https://boxes.thomasjensen.com")
     (synopsis "Command line ASCII boxes")
     (description