GNU bug report logs - #54506
[PATCH] gnu: openfst: Update to 1.8.2

Previous Next

Package: guix-patches;

Reported by: Aurora <rind38 <at> disroot.org>

Date: Mon, 21 Mar 2022 17:33:02 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

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 54506 in the body.
You can then email your comments to 54506 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#54506; Package guix-patches. (Mon, 21 Mar 2022 17:33:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Aurora <rind38 <at> disroot.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Mon, 21 Mar 2022 17:33:02 GMT) Full text and rfc822 format available.

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

From: Aurora <rind38 <at> disroot.org>
To: guix-patches <at> gnu.org
Cc: Aurora <rind38 <at> disroot.org>
Subject: [PATCH] gnu: openfst: Update to 1.8.2
Date: Mon, 21 Mar 2022 17:32:15 +0000
---
 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





Information forwarded to guix-patches <at> gnu.org:
bug#54506; Package guix-patches. (Wed, 23 Mar 2022 15:45:02 GMT) Full text and rfc822 format available.

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

From: Aurora <rind38 <at> disroot.org>
To: 54506 <at> debbugs.gnu.org
Cc: Aurora <rind38 <at> disroot.org>
Subject: [PATCH v2] gnu: openfst: Update to 1.8.2, enable ngram extension
Date: Wed, 23 Mar 2022 15:43:59 +0000
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





Information forwarded to guix-patches <at> gnu.org:
bug#54506; Package guix-patches. (Wed, 23 Mar 2022 15:54:02 GMT) Full text and rfc822 format available.

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

From: Aurora <rind38 <at> disroot.org>
To: 54506 <at> debbugs.gnu.org
Cc: Aurora <rind38 <at> disroot.org>
Subject: [PATCH v3 0/1] gnu: openfst: Update to 1.8.2, enable ngram extension
Date: Wed, 23 Mar 2022 15:53:42 +0000
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





Information forwarded to guix-patches <at> gnu.org:
bug#54506; Package guix-patches. (Wed, 23 Mar 2022 15:54:02 GMT) Full text and rfc822 format available.

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

From: Aurora <rind38 <at> disroot.org>
To: 54506 <at> debbugs.gnu.org
Cc: Aurora <rind38 <at> disroot.org>
Subject: [PATCH v3 1/1] gnu: openfst: Update to 1.8.2, enable ngram extension
Date: Wed, 23 Mar 2022 15:53:43 +0000
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





Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Sun, 15 May 2022 20:30:02 GMT) Full text and rfc822 format available.

Notification sent to Aurora <rind38 <at> disroot.org>:
bug acknowledged by developer. (Sun, 15 May 2022 20:30:03 GMT) Full text and rfc822 format available.

Message #19 received at 54506-done <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Aurora <rind38 <at> disroot.org>
Cc: 54506-done <at> debbugs.gnu.org
Subject: Re: bug#54506: [PATCH] gnu: openfst: Update to 1.8.2
Date: Sun, 15 May 2022 22:29:46 +0200
Hi,

Aurora <rind38 <at> 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’.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Mon, 13 Jun 2022 11:24:05 GMT) Full text and rfc822 format available.

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

Previous Next


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