* [bug#41161] [PATCH 0/2] MATE: Some clean ups
@ 2020-05-09 20:04 Jonathan Brielmaier
2020-05-09 20:06 ` Jonathan Brielmaier
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Jonathan Brielmaier @ 2020-05-09 20:04 UTC (permalink / raw)
To: 41161; +Cc: Jonathan Brielmaier
Hi,
after core-updates got merged, we can remove the glib:bin hack again :)
In the 1.24 update series I somehow forget to update mate-common :P
atril is still on 1.22 and it's not trivial to update to 1.24. Upstream moved from a bundled version of synctex
to an external one. On Guix it's provided by texlive-bin, though we don't build texlive-bin with
`--enabled-shared` or `-fPIC`. So atril fails during build.
Jonathan Brielmaier (2):
gnu: mate-common: Update to 1.24.1.
gnu: mate: Don't propagate glib:bin anymore.
gnu/packages/mate.scm | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
--
2.26.2
^ permalink raw reply [flat|nested] 6+ messages in thread
* [bug#41161] [PATCH 0/2] MATE: Some clean ups
2020-05-09 20:04 [bug#41161] [PATCH 0/2] MATE: Some clean ups Jonathan Brielmaier
@ 2020-05-09 20:06 ` Jonathan Brielmaier
2020-05-09 20:06 ` [bug#41161] [PATCH 2/2] gnu: mate: Don't propagate glib:bin anymore Jonathan Brielmaier
2020-05-09 20:09 ` [bug#41161] [PATCH 1/2] gnu: mate-common: Update to 1.24.1 Jonathan Brielmaier
` (2 subsequent siblings)
3 siblings, 1 reply; 6+ messages in thread
From: Jonathan Brielmaier @ 2020-05-09 20:06 UTC (permalink / raw)
To: 41161; +Cc: Jonathan Brielmaier
Hi,
after core-updates got merged, we can remove the glib:bin hack again :)
In the 1.24 update series I somehow forget to update mate-common :P
atril is still on 1.22 and it's not trivial to update to 1.24. Upstream moved from a bundled version of synctex
to an external one. On Guix it's provided by texlive-bin, though we don't build texlive-bin with
`--enabled-shared` or `-fPIC`. So atril fails during build.
Jonathan Brielmaier (2):
gnu: mate-common: Update to 1.24.1.
gnu: mate: Don't propagate glib:bin anymore.
gnu/packages/mate.scm | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
--
2.26.2
^ permalink raw reply [flat|nested] 6+ messages in thread
* [bug#41161] [PATCH 2/2] gnu: mate: Don't propagate glib:bin anymore.
2020-05-09 20:06 ` Jonathan Brielmaier
@ 2020-05-09 20:06 ` Jonathan Brielmaier
0 siblings, 0 replies; 6+ messages in thread
From: Jonathan Brielmaier @ 2020-05-09 20:06 UTC (permalink / raw)
To: 41161; +Cc: Jonathan Brielmaier
* gnu/packages/mate.scm (mate)[propagated-inputs]: Remove as the proper fix arrived from core-updates.
---
gnu/packages/mate.scm | 4 ----
1 file changed, 4 deletions(-)
diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 8ee7229d1c..e89102c17a 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -1596,10 +1596,6 @@ used to bring up authentication dialogs.")
("shared-mime-info" ,shared-mime-info)
("yelp" ,yelp)
("zenity" ,zenity)))
- ;; FIXME: Propagating glib:bin fixes http://issues.guix.gnu.org/issue/38135
- ;; The proper fix is in core-updates. So we can remove this after next merge.
- (propagated-inputs
- `(("glib:bin" ,glib "bin")))
(synopsis "The MATE desktop environment")
(home-page "https://mate-desktop.org/")
(description
--
2.26.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [bug#41161] [PATCH 1/2] gnu: mate-common: Update to 1.24.1.
2020-05-09 20:04 [bug#41161] [PATCH 0/2] MATE: Some clean ups Jonathan Brielmaier
2020-05-09 20:06 ` Jonathan Brielmaier
@ 2020-05-09 20:09 ` Jonathan Brielmaier
2020-06-22 18:31 ` bug#41161: [PATCH 0/2] MATE: Some clean ups Efraim Flashner
2020-06-22 19:46 ` [bug#41161] " Jonathan Brielmaier
3 siblings, 0 replies; 6+ messages in thread
From: Jonathan Brielmaier @ 2020-05-09 20:09 UTC (permalink / raw)
To: 41161; +Cc: Jonathan Brielmaier
I forget this in the MATE 1.24 update patch series.
* gnu/packages/mate.scm (mate-common): Update to 1.24.1.
---
gnu/packages/mate.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index d913836825..8ee7229d1c 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -75,7 +75,7 @@
(define-public mate-common
(package
(name "mate-common")
- (version "1.22.0")
+ (version "1.24.1")
(source
(origin
(method url-fetch)
@@ -83,7 +83,7 @@
name "-" version ".tar.xz"))
(sha256
(base32
- "11lwckndizawbq993ws8lqp59vsc873zri0m8s1i5zyc4qx9f69z"))))
+ "1dgp6k2l6dz7x2lnqk4y5xfkld376726hda3mrc777f821kk99nr"))))
(build-system gnu-build-system)
(home-page "https://mate-desktop.org/")
(synopsis "Common files for development of MATE packages")
--
2.26.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* bug#41161: [PATCH 0/2] MATE: Some clean ups
2020-05-09 20:04 [bug#41161] [PATCH 0/2] MATE: Some clean ups Jonathan Brielmaier
2020-05-09 20:06 ` Jonathan Brielmaier
2020-05-09 20:09 ` [bug#41161] [PATCH 1/2] gnu: mate-common: Update to 1.24.1 Jonathan Brielmaier
@ 2020-06-22 18:31 ` Efraim Flashner
2020-06-22 19:46 ` [bug#41161] " Jonathan Brielmaier
3 siblings, 0 replies; 6+ messages in thread
From: Efraim Flashner @ 2020-06-22 18:31 UTC (permalink / raw)
To: Jonathan Brielmaier; +Cc: 41161-done
[-- Attachment #1: Type: text/plain, Size: 240 bytes --]
Thanks! Patches pushed.
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [bug#41161] [PATCH 0/2] MATE: Some clean ups
2020-05-09 20:04 [bug#41161] [PATCH 0/2] MATE: Some clean ups Jonathan Brielmaier
` (2 preceding siblings ...)
2020-06-22 18:31 ` bug#41161: [PATCH 0/2] MATE: Some clean ups Efraim Flashner
@ 2020-06-22 19:46 ` Jonathan Brielmaier
3 siblings, 0 replies; 6+ messages in thread
From: Jonathan Brielmaier @ 2020-06-22 19:46 UTC (permalink / raw)
To: 41161-done
Pushed by Efraim as a2ebd098d79ef2c9039854bff4002d1c77e82d3e and
5d9540ddcf8c61682a35ad56a9493bbee43d0747. Thanks!
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2020-06-22 19:48 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-05-09 20:04 [bug#41161] [PATCH 0/2] MATE: Some clean ups Jonathan Brielmaier
2020-05-09 20:06 ` Jonathan Brielmaier
2020-05-09 20:06 ` [bug#41161] [PATCH 2/2] gnu: mate: Don't propagate glib:bin anymore Jonathan Brielmaier
2020-05-09 20:09 ` [bug#41161] [PATCH 1/2] gnu: mate-common: Update to 1.24.1 Jonathan Brielmaier
2020-06-22 18:31 ` bug#41161: [PATCH 0/2] MATE: Some clean ups Efraim Flashner
2020-06-22 19:46 ` [bug#41161] " Jonathan Brielmaier
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.