unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#54505] [PATCH] gnu: openblas: Update to 0.3.20
@ 2022-03-21 17:32 Aurora via Guix-patches via
  2022-03-21 17:32 ` [bug#54506] [PATCH] gnu: openfst: Update to 1.8.2 Aurora via Guix-patches via
  2022-05-15 20:30 ` bug#54505: [PATCH] gnu: openblas: Update to 0.3.20 Ludovic Courtès
  0 siblings, 2 replies; 7+ messages in thread
From: Aurora via Guix-patches via @ 2022-03-21 17:32 UTC (permalink / raw)
  To: 54505; +Cc: Aurora

---
 gnu/packages/maths.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index ecb8564..800afd2 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -4343,7 +4343,7 @@ parts of it.")
 (define-public openblas
   (package
     (name "openblas")
-    (version "0.3.18")
+    (version "0.3.20")
     (source
      (origin
        (method git-fetch)
@@ -4353,7 +4353,7 @@ parts of it.")
        (file-name (git-file-name name version))
        (sha256
         (base32
-         "17zdd8asylz2w71hczrz5y344p6d5ds1jn4901maw7zcp3dbk63g"))))
+         "0r4sz3rn68fyc2paq0a04pgfi7iszpm95f6ggbzxpvjzx9qxbcql"))))
     (build-system gnu-build-system)
     (arguments
      `(#:test-target "test"
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [bug#54506] [PATCH] gnu: openfst: Update to 1.8.2
  2022-03-21 17:32 [bug#54505] [PATCH] gnu: openblas: Update to 0.3.20 Aurora via Guix-patches via
@ 2022-03-21 17:32 ` Aurora via Guix-patches via
  2022-03-23 15:43   ` [bug#54506] [PATCH v2] gnu: openfst: Update to 1.8.2, enable ngram extension Aurora via Guix-patches via
  2022-05-15 20:30 ` bug#54505: [PATCH] gnu: openblas: Update to 0.3.20 Ludovic Courtès
  1 sibling, 1 reply; 7+ messages in thread
From: Aurora via Guix-patches via @ 2022-03-21 17:32 UTC (permalink / raw)
  To: 54506; +Cc: Aurora

---
 gnu/packages/machine-learning.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm
index ba6a439..e2e8252 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -570,14 +570,14 @@ sample proximities between pairs of cases.")
 (define-public openfst
   (package
     (name "openfst")
-    (version "1.7.9")
+    (version "1.8.2")
     (source (origin
               (method url-fetch)
               (uri (string-append "http://www.openfst.org/twiki/pub/FST/"
                                   "FstDownload/openfst-" version ".tar.gz"))
               (sha256
                (base32
-                "1pmx1yhn2gknj0an0zwqmzgwjaycapi896244np50a8y3nrsw6ck"))))
+                "0hlbdmjjf1jgsvi3d2hwni5lz3l9a5bzj6ijpbawa8a7cbrpp66y"))))
     (build-system gnu-build-system)
     (home-page "http://www.openfst.org")
     (synopsis "Library for weighted finite-state transducers")
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [bug#54506] [PATCH v2] gnu: openfst: Update to 1.8.2, enable ngram extension
  2022-03-21 17:32 ` [bug#54506] [PATCH] gnu: openfst: Update to 1.8.2 Aurora via Guix-patches via
@ 2022-03-23 15:43   ` Aurora via Guix-patches via
  2022-03-23 15:53     ` [bug#54506] [PATCH v3 0/1] " Aurora via Guix-patches via
  0 siblings, 1 reply; 7+ messages in thread
From: Aurora via Guix-patches via @ 2022-03-23 15:43 UTC (permalink / raw)
  To: 54506; +Cc: Aurora

This extension is required by some programs that depend on openfst that aren't
yet packaged.

The extension itself also depends on C++14 to build due to make_unique.
---
 gnu/packages/machine-learning.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm
index afac56f..b13e800 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -570,15 +570,16 @@ sample proximities between pairs of cases.")
 (define-public openfst
   (package
     (name "openfst")
-    (version "1.7.9")
+    (version "1.8.2")
     (source (origin
               (method url-fetch)
               (uri (string-append "http://www.openfst.org/twiki/pub/FST/"
                                   "FstDownload/openfst-" version ".tar.gz"))
               (sha256
                (base32
-                "1pmx1yhn2gknj0an0zwqmzgwjaycapi896244np50a8y3nrsw6ck"))))
+                "0hlbdmjjf1jgsvi3d2hwni5lz3l9a5bzj6ijpbawa8a7cbrpp66y"))))
     (build-system gnu-build-system)
+    (arguments '(#:configure-flags '("--enable-ngram-fsts" "CXXFLAGS=-std=c++14")))
     (home-page "http://www.openfst.org")
     (synopsis "Library for weighted finite-state transducers")
     (description "OpenFst is a library for constructing, combining,
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [bug#54506] [PATCH v3 0/1] gnu: openfst: Update to 1.8.2, enable ngram extension
  2022-03-23 15:43   ` [bug#54506] [PATCH v2] gnu: openfst: Update to 1.8.2, enable ngram extension Aurora via Guix-patches via
@ 2022-03-23 15:53     ` Aurora via Guix-patches via
  2022-03-23 15:53       ` [bug#54506] [PATCH v3 1/1] " Aurora via Guix-patches via
  2022-05-15 20:29       ` bug#54506: [PATCH] gnu: openfst: Update to 1.8.2 Ludovic Courtès
  0 siblings, 2 replies; 7+ messages in thread
From: Aurora via Guix-patches via @ 2022-03-23 15:53 UTC (permalink / raw)
  To: 54506; +Cc: Aurora

openfst 1.8.2 already moved to C++17

Aurora (1):
  gnu: openfst: Update to 1.8.2, enable ngram extension

 gnu/packages/machine-learning.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

-- 
2.30.2





^ permalink raw reply	[flat|nested] 7+ messages in thread

* [bug#54506] [PATCH v3 1/1] gnu: openfst: Update to 1.8.2, enable ngram extension
  2022-03-23 15:53     ` [bug#54506] [PATCH v3 0/1] " Aurora via Guix-patches via
@ 2022-03-23 15:53       ` Aurora via Guix-patches via
  2022-05-15 20:29       ` bug#54506: [PATCH] gnu: openfst: Update to 1.8.2 Ludovic Courtès
  1 sibling, 0 replies; 7+ messages in thread
From: Aurora via Guix-patches via @ 2022-03-23 15:53 UTC (permalink / raw)
  To: 54506; +Cc: Aurora

This extension is required by some programs that depend on openfst that aren't
yet packaged.
---
 gnu/packages/machine-learning.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm
index afac56f..2ec461f 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -570,15 +570,16 @@ sample proximities between pairs of cases.")
 (define-public openfst
   (package
     (name "openfst")
-    (version "1.7.9")
+    (version "1.8.2")
     (source (origin
               (method url-fetch)
               (uri (string-append "http://www.openfst.org/twiki/pub/FST/"
                                   "FstDownload/openfst-" version ".tar.gz"))
               (sha256
                (base32
-                "1pmx1yhn2gknj0an0zwqmzgwjaycapi896244np50a8y3nrsw6ck"))))
+                "0hlbdmjjf1jgsvi3d2hwni5lz3l9a5bzj6ijpbawa8a7cbrpp66y"))))
     (build-system gnu-build-system)
+    (arguments '(#:configure-flags '("--enable-ngram-fsts")))
     (home-page "http://www.openfst.org")
     (synopsis "Library for weighted finite-state transducers")
     (description "OpenFst is a library for constructing, combining,
-- 
2.30.2





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* bug#54506: [PATCH] gnu: openfst: Update to 1.8.2
  2022-03-23 15:53     ` [bug#54506] [PATCH v3 0/1] " Aurora via Guix-patches via
  2022-03-23 15:53       ` [bug#54506] [PATCH v3 1/1] " Aurora via Guix-patches via
@ 2022-05-15 20:29       ` Ludovic Courtès
  1 sibling, 0 replies; 7+ messages in thread
From: Ludovic Courtès @ 2022-05-15 20:29 UTC (permalink / raw)
  To: Aurora; +Cc: 54506-done

Hi,

Aurora <rind38@disroot.org> skribis:

> openfst 1.8.2 already moved to C++17
>
> Aurora (1):
>   gnu: openfst: Update to 1.8.2, enable ngram extension
>
>  gnu/packages/machine-learning.scm | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)

Applied to the ‘staging’ branch, thanks!

Ludo’.




^ permalink raw reply	[flat|nested] 7+ messages in thread

* bug#54505: [PATCH] gnu: openblas: Update to 0.3.20
  2022-03-21 17:32 [bug#54505] [PATCH] gnu: openblas: Update to 0.3.20 Aurora via Guix-patches via
  2022-03-21 17:32 ` [bug#54506] [PATCH] gnu: openfst: Update to 1.8.2 Aurora via Guix-patches via
@ 2022-05-15 20:30 ` Ludovic Courtès
  1 sibling, 0 replies; 7+ messages in thread
From: Ludovic Courtès @ 2022-05-15 20:30 UTC (permalink / raw)
  To: Aurora; +Cc: 54505-done

Aurora <rind38@disroot.org> skribis:

> ---
>  gnu/packages/maths.scm | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

I augmented the commit log and applied it to the ‘staging’ branch.

Thanks,
Ludo’.




^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2022-05-15 20:31 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-21 17:32 [bug#54505] [PATCH] gnu: openblas: Update to 0.3.20 Aurora via Guix-patches via
2022-03-21 17:32 ` [bug#54506] [PATCH] gnu: openfst: Update to 1.8.2 Aurora via Guix-patches via
2022-03-23 15:43   ` [bug#54506] [PATCH v2] gnu: openfst: Update to 1.8.2, enable ngram extension Aurora via Guix-patches via
2022-03-23 15:53     ` [bug#54506] [PATCH v3 0/1] " Aurora via Guix-patches via
2022-03-23 15:53       ` [bug#54506] [PATCH v3 1/1] " Aurora via Guix-patches via
2022-05-15 20:29       ` bug#54506: [PATCH] gnu: openfst: Update to 1.8.2 Ludovic Courtès
2022-05-15 20:30 ` bug#54505: [PATCH] gnu: openblas: Update to 0.3.20 Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).