GNU bug report logs -
#77636
[PATCH] gnu: datamash: Update to 1.9.
Previous Next
Reported by: Andy Tai <atai <at> atai.org>
Date: Tue, 8 Apr 2025 11:55:02 UTC
Severity: normal
Tags: patch
Done: Z572 <z572 <at> z572.online>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#77636: [PATCH] gnu: datamash: Update to 1.9.
which was filed against the guix-patches package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 77636 <at> debbugs.gnu.org.
--
77636: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=77636
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
[Message part 3 (text/plain, inline)]
Andy Tai <atai <at> atai.org> writes:
> * gnu/packages/datamash.scm (datamesh): Update to 1.9.
> [arguments]<#:configure-flags>: When cross-compiling,
> add "ac_cv_func_strcasecmp=yes"
> "gl_cv_func_strcasecmp_works=yes".
>
> Change-Id: I9fdfd1c755c74c98a84a943c7fc6a7e56f91c402
> ---
> gnu/packages/datamash.scm | 9 +++++++--
> 1 file changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/gnu/packages/datamash.scm b/gnu/packages/datamash.scm
> index ac5094935ae..346ffb8492d 100644
> --- a/gnu/packages/datamash.scm
> +++ b/gnu/packages/datamash.scm
> @@ -35,7 +35,7 @@ (define-module (gnu packages datamash)
> (define-public datamash
> (package
> (name "datamash")
> - (version "1.8")
> + (version "1.9")
> (source
> (origin
> (method url-fetch)
> @@ -43,11 +43,16 @@ (define-public datamash
> version ".tar.gz"))
> (sha256
> (base32
> - "1zgn55gvf60w2rs5f7vx7vdp50j89ki7mmjvm81xs5pngs67xnbs"))))
> + "1ll7rfm2b8zdm1vlm3a32cr2kjbc1af8yx8z2rwxc3b50gdfp0pk"))))
> (native-inputs
> (list which ;for tests
> perl)) ;for help2man
> (build-system gnu-build-system)
> + (arguments
> + `(,@(if (%current-target-system)
> + ; fix for crosscompiling; on GNU system strcasecmp always works
> + `(#:configure-flags (list "ac_cv_func_strcasecmp=yes" "gl_cv_func_strcasecmp_works=yes"))
> + '())))
adjust to
(if (%current-target-system)
;; fix for crosscompiling; on GNU system strcasecmp always works
(list #:configure-flags
#~(list "ac_cv_func_strcasecmp=yes"
"gl_cv_func_strcasecmp_works=yes"))
'())
> (home-page "https://www.gnu.org/software/datamash/")
> (synopsis "Scriptable statistics and data calculation")
> (description
>
> base-commit: 1dab24555a494beb3db5a335c675f07043e77f1c
pushed, closing.
[signature.asc (application/pgp-signature, inline)]
[Message part 5 (message/rfc822, inline)]
* gnu/packages/datamash.scm (datamesh): Update to 1.9.
Change-Id: I9fdfd1c755c74c98a84a943c7fc6a7e56f91c402
---
gnu/packages/datamash.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/datamash.scm b/gnu/packages/datamash.scm
index ac5094935ae..aae7e3c9857 100644
--- a/gnu/packages/datamash.scm
+++ b/gnu/packages/datamash.scm
@@ -35,7 +35,7 @@ (define-module (gnu packages datamash)
(define-public datamash
(package
(name "datamash")
- (version "1.8")
+ (version "1.9")
(source
(origin
(method url-fetch)
@@ -43,7 +43,7 @@ (define-public datamash
version ".tar.gz"))
(sha256
(base32
- "1zgn55gvf60w2rs5f7vx7vdp50j89ki7mmjvm81xs5pngs67xnbs"))))
+ "1ll7rfm2b8zdm1vlm3a32cr2kjbc1af8yx8z2rwxc3b50gdfp0pk"))))
(native-inputs
(list which ;for tests
perl)) ;for help2man
base-commit: 111aacf22fdc0314f41b737106ad70c1899a58e7
--
2.43.0
This bug report was last modified 37 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.