unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#66407] [PATCH gnome-team] gnu: shared-mime-info: Update to 2.3.
@ 2023-10-08 14:24 Bruno Victal
  2023-10-27 19:03 ` [bug#66407] [PATCH gnome-team v2 1/2] gnu: xdgmime: Update to 179296748e92bd91bf531656632a1056307fb7b7 Bruno Victal
  2023-10-27 19:03 ` [bug#66407] [PATCH gnome-team v2 2/2] gnu: shared-mime-info: Update to 2.3 Bruno Victal
  0 siblings, 2 replies; 5+ messages in thread
From: Bruno Victal @ 2023-10-08 14:24 UTC (permalink / raw)
  To: 66407; +Cc: Bruno Victal

* gnu/packages/freedesktop.scm (shared-mime-info): Update to 2.3.
(xdgmime): Match commit to the one used in the shared-mime-info release.
---
 gnu/packages/freedesktop.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index 85ba5ba147..4c191e1d27 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -472,7 +472,7 @@ (define-public maliit-keyboard
 (define xdgmime
   ;; No public release, match commit to the one used in the
   ;; shared-mime-info release.
-  (let ((commit "de283fc430460b9b3a7e61432a6d273cd64cb102")
+  (let ((commit "179296748e92bd91bf531656632a1056307fb7b7")
         (revision "1"))
     (package
       (name "xdgmime")
@@ -485,7 +485,7 @@ (define xdgmime
                 (file-name (git-file-name name version))
                 (sha256
                  (base32
-                  "0m9k7nfxgchb9j0xh9cwsldz6564qisqdkvlhgkcgc0grd4nfbn9"))))
+                  "04bpbqlkmwi2pqx1lj3awa9f9gwp4n91fpnz8hbbd0hl8x41przm"))))
       (build-system gnu-build-system)
       (arguments
        (list
@@ -519,7 +519,7 @@ (define xdgmime
 (define-public shared-mime-info
   (package
     (name "shared-mime-info")
-    (version "2.2")
+    (version "2.3")
     (source (origin
              (method git-fetch)
              (uri (git-reference
@@ -528,7 +528,7 @@ (define-public shared-mime-info
              (file-name (git-file-name name version))
              (sha256
               (base32
-               "04dfnnflspprxg7qia3whz1754lfvgi4ihvmihg379936zy5xd22"))
+               "0w8sbhz00sk6k8pyiykfig4rm22jyibalj7g22j9qf3d2nfy8ivh"))
              (patches (search-patches "shared-mime-info-xdgmime-path.patch"))))
     (build-system meson-build-system)
     (arguments

base-commit: 7d134b57b79188f8c878625d4e09f9bd6181e8c0
-- 
2.41.0





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

* [bug#66407] [PATCH gnome-team v2 1/2] gnu: xdgmime: Update to 179296748e92bd91bf531656632a1056307fb7b7.
  2023-10-08 14:24 [bug#66407] [PATCH gnome-team] gnu: shared-mime-info: Update to 2.3 Bruno Victal
@ 2023-10-27 19:03 ` Bruno Victal
  2023-10-27 19:33   ` Liliana Marie Prikler
  2023-10-27 19:03 ` [bug#66407] [PATCH gnome-team v2 2/2] gnu: shared-mime-info: Update to 2.3 Bruno Victal
  1 sibling, 1 reply; 5+ messages in thread
From: Bruno Victal @ 2023-10-27 19:03 UTC (permalink / raw)
  To: 66407; +Cc: Bruno Victal, Liliana Marie Prikler

* gnu/packages/freedesktop.scm (xdgmime): Match commit to the one used in the
shared-mime-info release.

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

diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index c52e921756..99cf82e3f3 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -486,7 +486,7 @@ (define-public maliit-keyboard
 (define xdgmime
   ;; No public release, match commit to the one used in the
   ;; shared-mime-info release.
-  (let ((commit "de283fc430460b9b3a7e61432a6d273cd64cb102")
+  (let ((commit "179296748e92bd91bf531656632a1056307fb7b7")
         (revision "1"))
     (package
       (name "xdgmime")
@@ -499,7 +499,7 @@ (define xdgmime
                 (file-name (git-file-name name version))
                 (sha256
                  (base32
-                  "0m9k7nfxgchb9j0xh9cwsldz6564qisqdkvlhgkcgc0grd4nfbn9"))))
+                  "04bpbqlkmwi2pqx1lj3awa9f9gwp4n91fpnz8hbbd0hl8x41przm"))))
       (build-system gnu-build-system)
       (arguments
        (list

base-commit: 2677bf985c0025d04ffdcff31763978b633dbc58
-- 
2.41.0





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

* [bug#66407] [PATCH gnome-team v2 2/2] gnu: shared-mime-info: Update to 2.3.
  2023-10-08 14:24 [bug#66407] [PATCH gnome-team] gnu: shared-mime-info: Update to 2.3 Bruno Victal
  2023-10-27 19:03 ` [bug#66407] [PATCH gnome-team v2 1/2] gnu: xdgmime: Update to 179296748e92bd91bf531656632a1056307fb7b7 Bruno Victal
@ 2023-10-27 19:03 ` Bruno Victal
  2023-11-04  7:13   ` bug#66407: " Liliana Marie Prikler
  1 sibling, 1 reply; 5+ messages in thread
From: Bruno Victal @ 2023-10-27 19:03 UTC (permalink / raw)
  To: 66407; +Cc: Bruno Victal, Liliana Marie Prikler

* gnu/packages/freedesktop.scm (shared-mime-info): Update to 2.3.
---
 gnu/packages/freedesktop.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index 99cf82e3f3..0ec344492b 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -533,7 +533,7 @@ (define xdgmime
 (define-public shared-mime-info
   (package
     (name "shared-mime-info")
-    (version "2.2")
+    (version "2.3")
     (source (origin
              (method git-fetch)
              (uri (git-reference
@@ -542,7 +542,7 @@ (define-public shared-mime-info
              (file-name (git-file-name name version))
              (sha256
               (base32
-               "04dfnnflspprxg7qia3whz1754lfvgi4ihvmihg379936zy5xd22"))
+               "0w8sbhz00sk6k8pyiykfig4rm22jyibalj7g22j9qf3d2nfy8ivh"))
              (patches (search-patches "shared-mime-info-xdgmime-path.patch"))))
     (build-system meson-build-system)
     (arguments
-- 
2.41.0





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

* [bug#66407] [PATCH gnome-team v2 1/2] gnu: xdgmime: Update to 179296748e92bd91bf531656632a1056307fb7b7.
  2023-10-27 19:03 ` [bug#66407] [PATCH gnome-team v2 1/2] gnu: xdgmime: Update to 179296748e92bd91bf531656632a1056307fb7b7 Bruno Victal
@ 2023-10-27 19:33   ` Liliana Marie Prikler
  0 siblings, 0 replies; 5+ messages in thread
From: Liliana Marie Prikler @ 2023-10-27 19:33 UTC (permalink / raw)
  To: Bruno Victal, 66407

Am Freitag, dem 27.10.2023 um 20:03 +0100 schrieb Bruno Victal:
> * gnu/packages/freedesktop.scm (xdgmime): Match commit to the one
> used in the shared-mime-info release.
> 
> Change-Id: I5d65544ad01526157dbe553d98dc78db037546c8
> ---
Don't forget to reword the ChangeLogs when splitting commits :)

I've applied this locally (with said reword) and it builds.  Will wait
about a week for CI to catch up – if it doesn't I'll give it a push :>





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

* bug#66407: [PATCH gnome-team v2 2/2] gnu: shared-mime-info: Update to 2.3.
  2023-10-27 19:03 ` [bug#66407] [PATCH gnome-team v2 2/2] gnu: shared-mime-info: Update to 2.3 Bruno Victal
@ 2023-11-04  7:13   ` Liliana Marie Prikler
  0 siblings, 0 replies; 5+ messages in thread
From: Liliana Marie Prikler @ 2023-11-04  7:13 UTC (permalink / raw)
  To: Bruno Victal, 66407-done

Am Freitag, dem 27.10.2023 um 20:03 +0100 schrieb Bruno Victal:
> * gnu/packages/freedesktop.scm (shared-mime-info): Update to 2.3.
Pushed.

Cheers




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

end of thread, other threads:[~2023-11-04  7:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-08 14:24 [bug#66407] [PATCH gnome-team] gnu: shared-mime-info: Update to 2.3 Bruno Victal
2023-10-27 19:03 ` [bug#66407] [PATCH gnome-team v2 1/2] gnu: xdgmime: Update to 179296748e92bd91bf531656632a1056307fb7b7 Bruno Victal
2023-10-27 19:33   ` Liliana Marie Prikler
2023-10-27 19:03 ` [bug#66407] [PATCH gnome-team v2 2/2] gnu: shared-mime-info: Update to 2.3 Bruno Victal
2023-11-04  7:13   ` bug#66407: " Liliana Marie Prikler

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).