unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#71195] [PATCH 0/2] Update libreoffice.
@ 2024-05-25 10:11 Nicolas Graves via Guix-patches via
  2024-05-25 17:59 ` [bug#71195] [PATCH 1/2] gnu: libreoffice: Update to 7.6.7.2 Nicolas Graves via Guix-patches via
  2024-06-13  9:16 ` bug#71195: [PATCH 0/2] Update libreoffice Ludovic Courtès
  0 siblings, 2 replies; 4+ messages in thread
From: Nicolas Graves via Guix-patches via @ 2024-05-25 10:11 UTC (permalink / raw)
  To: 71195; +Cc: ngraves

Nicolas Graves (2):
  gnu: libreoffice: Update to 7.6.7.2.
  gnu: hunspell-dictionaries: Update to 7.6.7.2.

 gnu/packages/hunspell.scm    | 4 ++--
 gnu/packages/libreoffice.scm | 6 ++----
 2 files changed, 4 insertions(+), 6 deletions(-)

-- 
2.41.0





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

* [bug#71195] [PATCH 1/2] gnu: libreoffice: Update to 7.6.7.2.
  2024-05-25 10:11 [bug#71195] [PATCH 0/2] Update libreoffice Nicolas Graves via Guix-patches via
@ 2024-05-25 17:59 ` Nicolas Graves via Guix-patches via
  2024-05-25 17:59   ` [bug#71195] [PATCH 2/2] gnu: hunspell-dictionaries: " Nicolas Graves via Guix-patches via
  2024-06-13  9:16 ` bug#71195: [PATCH 0/2] Update libreoffice Ludovic Courtès
  1 sibling, 1 reply; 4+ messages in thread
From: Nicolas Graves via Guix-patches via @ 2024-05-25 17:59 UTC (permalink / raw)
  To: 71195; +Cc: ngraves

* gnu/packages/libreoffice.scm (libreoffice): Update to 7.6.7.2.

Change-Id: If7cd3796ee55a34c933bd666bf73fd4270e8ed43
---
 gnu/packages/libreoffice.scm | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/libreoffice.scm b/gnu/packages/libreoffice.scm
index 925a4f10014..1ef06bcb798 100644
--- a/gnu/packages/libreoffice.scm
+++ b/gnu/packages/libreoffice.scm
@@ -887,12 +887,10 @@ (define dtoa
     (sha256
      (base32 "1d0iwy0q5sjznv23d3nbwmy0r7m1mdzlnv5pc4izddkx9xld10h0"))))
 
-;; When updating libreoffice, also make sure to update the
-;; hunspell dictionaries! They use the libreoffice version.
 (define-public libreoffice
   (package
     (name "libreoffice")
-    (version "7.6.3.1")
+    (version "7.6.7.2")  ; TODO: Keep in sync with hunspell dictionaries.
     (source
      (origin
        (method url-fetch)
@@ -901,7 +899,7 @@ (define-public libreoffice
          "https://download.documentfoundation.org/libreoffice/src/"
          (version-prefix version 3) "/libreoffice-" version ".tar.xz"))
        (sha256
-        (base32 "148084acq370483y0xwvcvck30kxhr78cnmibp5lks17xqp5f9q7"))))
+        (base32 "159vbv4zhibfd4xjdamcqs4h0p3h5y79kcjwrmshvjhs23p55l3m"))))
     (build-system glib-or-gtk-build-system)
     (arguments
      (list
-- 
2.41.0





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

* [bug#71195] [PATCH 2/2] gnu: hunspell-dictionaries: Update to 7.6.7.2.
  2024-05-25 17:59 ` [bug#71195] [PATCH 1/2] gnu: libreoffice: Update to 7.6.7.2 Nicolas Graves via Guix-patches via
@ 2024-05-25 17:59   ` Nicolas Graves via Guix-patches via
  0 siblings, 0 replies; 4+ messages in thread
From: Nicolas Graves via Guix-patches via @ 2024-05-25 17:59 UTC (permalink / raw)
  To: 71195; +Cc: ngraves

* gnu/packages/hunspell.scm (hunspell-dict-he-il,
hunspell-dict-it-it): Update to 7.6.7.2.

Change-Id: I289a0b2b9648930b46102c055c642c333a4229fd
---
 gnu/packages/hunspell.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/hunspell.scm b/gnu/packages/hunspell.scm
index 71633582602..4e043f5073a 100644
--- a/gnu/packages/hunspell.scm
+++ b/gnu/packages/hunspell.scm
@@ -276,7 +276,7 @@ (define* (hunspell-dictionary dict-name full-name #:key synopsis home-page licen
                          (#\_ #\-)
                          (chr chr))
                        (string-downcase dict-name))))
-    (version "7.5.4.2")
+    (version "7.6.7.2")
     (source
      (origin
        (method git-fetch)
@@ -287,7 +287,7 @@ (define* (hunspell-dictionary dict-name full-name #:key synopsis home-page licen
               (string-append "libreoffice-" version))))
        (file-name (git-file-name "libreoffice-dictionaries" version))
        (sha256
-        (base32 "1yzhyx8zwlfdqw4swxyr1lq68im2bfi1chimyc15jmli72n32szs"))))
+        (base32 "1f54z1kmpwv9s5a9jdgf97m43nhwbmsar0i6rri3qkgf3kkgz1f7"))))
     (build-system trivial-build-system)
     (native-inputs
      `(("source" ,source)))
-- 
2.41.0





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

* bug#71195: [PATCH 0/2] Update libreoffice.
  2024-05-25 10:11 [bug#71195] [PATCH 0/2] Update libreoffice Nicolas Graves via Guix-patches via
  2024-05-25 17:59 ` [bug#71195] [PATCH 1/2] gnu: libreoffice: Update to 7.6.7.2 Nicolas Graves via Guix-patches via
@ 2024-06-13  9:16 ` Ludovic Courtès
  1 sibling, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2024-06-13  9:16 UTC (permalink / raw)
  To: Nicolas Graves; +Cc: 71195-done

Hi,

Nicolas Graves <ngraves@ngraves.fr> skribis:

>   gnu: libreoffice: Update to 7.6.7.2.
>   gnu: hunspell-dictionaries: Update to 7.6.7.2.

I took the liberty to squash them since they’re meant to be updated in
lockstep, and I removed the “TODO” keyword from the comment since it
could be misleading IMO.

Thanks!

Ludo’.




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

end of thread, other threads:[~2024-06-13  9:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-25 10:11 [bug#71195] [PATCH 0/2] Update libreoffice Nicolas Graves via Guix-patches via
2024-05-25 17:59 ` [bug#71195] [PATCH 1/2] gnu: libreoffice: Update to 7.6.7.2 Nicolas Graves via Guix-patches via
2024-05-25 17:59   ` [bug#71195] [PATCH 2/2] gnu: hunspell-dictionaries: " Nicolas Graves via Guix-patches via
2024-06-13  9:16 ` bug#71195: [PATCH 0/2] Update libreoffice 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).