GNU bug report logs -
#77636
[PATCH] gnu: datamash: Update to 1.9.
Previous Next
To reply to this bug, email your comments to 77636 AT debbugs.gnu.org.
There is no need to reopen the bug first.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#77636
; Package
guix-patches
.
(Tue, 08 Apr 2025 11:55:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Andy Tai <atai <at> atai.org>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Tue, 08 Apr 2025 11:55:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* 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
Information forwarded
to
guix-patches <at> gnu.org
:
bug#77636
; Package
guix-patches
.
(Tue, 08 Apr 2025 14:39:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 77636 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Andy Tai <atai <at> atai.org> writes:
> * 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
please fix cross-compiling.
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#77636
; Package
guix-patches
.
(Wed, 09 Apr 2025 05:49:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 77636 <at> debbugs.gnu.org (full text, mbox):
* 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"))
+ '())))
(home-page "https://www.gnu.org/software/datamash/")
(synopsis "Scriptable statistics and data calculation")
(description
base-commit: 1dab24555a494beb3db5a335c675f07043e77f1c
--
2.43.0
Reply sent
to
Z572 <z572 <at> z572.online>
:
You have taken responsibility.
(Fri, 11 Apr 2025 07:30:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Andy Tai <atai <at> atai.org>
:
bug acknowledged by developer.
(Fri, 11 Apr 2025 07:30:03 GMT)
Full text and
rfc822 format available.
Message #16 received at 77636-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (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)]
This bug report was last modified 1 day ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.