* [bug#72923] [PATCH 1/2] gnu: Add meson-1.5.
2024-09-01 0:02 [bug#72923] [PATCH 0/2] Fix gitg Liliana Marie Prikler
@ 2024-09-01 0:00 ` Liliana Marie Prikler
2024-09-01 0:00 ` [bug#72923] [PATCH 2/2] gnu: gitg: Fix build Liliana Marie Prikler
` (2 subsequent siblings)
3 siblings, 0 replies; 7+ messages in thread
From: Liliana Marie Prikler @ 2024-09-01 0:00 UTC (permalink / raw)
To: 72923
* gnu/packages/build-tools.scm (meson-1.5): New variable.
---
gnu/packages/build-tools.scm | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/gnu/packages/build-tools.scm b/gnu/packages/build-tools.scm
index d6a788e21c..21df25e4f5 100644
--- a/gnu/packages/build-tools.scm
+++ b/gnu/packages/build-tools.scm
@@ -329,6 +329,19 @@ (define-public meson
resembles Python.")
(license license:asl2.0)))
+(define-public meson-1.5
+ (package
+ (inherit meson)
+ (version "1.5.1")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://github.com/mesonbuild/meson/"
+ "releases/download/" version "/meson-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "1vab706pw1q17vh9rbsmlirgiji3k6wljl735lxffp95vwx56zjn"))))))
+
(define-public meson-python
(package
(name "meson-python")
--
2.45.2
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [bug#72923] [PATCH 2/2] gnu: gitg: Fix build.
2024-09-01 0:02 [bug#72923] [PATCH 0/2] Fix gitg Liliana Marie Prikler
2024-09-01 0:00 ` [bug#72923] [PATCH 1/2] gnu: Add meson-1.5 Liliana Marie Prikler
@ 2024-09-01 0:00 ` Liliana Marie Prikler
2024-09-08 14:02 ` bug#72923: " Liliana Marie Prikler
2024-09-01 16:31 ` [bug#72923] 72923@debbugs.gnu.org Ian Eure
2024-09-06 7:12 ` [bug#72923] QA review for 72923 Ada Stevenson
3 siblings, 1 reply; 7+ messages in thread
From: Liliana Marie Prikler @ 2024-09-01 0:00 UTC (permalink / raw)
To: 72923
* gnu/packages/gnome.scm (gitg)[arguments]<#:meson>: Use meson-1.5.
<#:build-type>: Set to “release”.
---
gnu/packages/gnome.scm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 53e5a8f3ea..5e7f27fe69 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -12353,7 +12353,9 @@ (define-public gitg
(build-system meson-build-system)
(arguments
(list
+ #:meson meson-1.5 ; XXX: breaks with Meson 1.2
#:glib-or-gtk? #t
+ #:build-type "release" ; don't look at -Wformat…
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'disable-post-install-partially
--
2.45.2
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [bug#72923] [PATCH 0/2] Fix gitg
@ 2024-09-01 0:02 Liliana Marie Prikler
2024-09-01 0:00 ` [bug#72923] [PATCH 1/2] gnu: Add meson-1.5 Liliana Marie Prikler
` (3 more replies)
0 siblings, 4 replies; 7+ messages in thread
From: Liliana Marie Prikler @ 2024-09-01 0:02 UTC (permalink / raw)
To: 72923
Hi Guix
This is a quick series that fixes the gitg build on master.
I'm not quite sure how we should deal with newer Meson versions
(last time we had a graft for 1.2, but I think a public package
*could* be fine – let me know what you think).
Cheers
Liliana Marie Prikler (2):
gnu: Add meson-1.5.
gnu: gitg: Fix build.
gnu/packages/build-tools.scm | 13 +++++++++++++
gnu/packages/gnome.scm | 2 ++
2 files changed, 15 insertions(+)
base-commit: 19e0b937857563e77841a4fc5433589fa98c810d
prerequisite-patch-id: ce1c559ff080d2a116e5fefd876cb1b32570f977
--
2.45.2
^ permalink raw reply [flat|nested] 7+ messages in thread
* [bug#72923] 72923@debbugs.gnu.org
2024-09-01 0:02 [bug#72923] [PATCH 0/2] Fix gitg Liliana Marie Prikler
2024-09-01 0:00 ` [bug#72923] [PATCH 1/2] gnu: Add meson-1.5 Liliana Marie Prikler
2024-09-01 0:00 ` [bug#72923] [PATCH 2/2] gnu: gitg: Fix build Liliana Marie Prikler
@ 2024-09-01 16:31 ` Ian Eure
2024-09-02 6:36 ` [bug#72923] [PATCH 0/2] Fix gitg Thomas Stevenson
2024-09-06 7:12 ` [bug#72923] QA review for 72923 Ada Stevenson
3 siblings, 1 reply; 7+ messages in thread
From: Ian Eure @ 2024-09-01 16:31 UTC (permalink / raw)
To: 72923
This looks good to me.
Thanks,
— Ian
^ permalink raw reply [flat|nested] 7+ messages in thread
* [bug#72923] [PATCH 0/2] Fix gitg
2024-09-01 16:31 ` [bug#72923] 72923@debbugs.gnu.org Ian Eure
@ 2024-09-02 6:36 ` Thomas Stevenson
0 siblings, 0 replies; 7+ messages in thread
From: Thomas Stevenson @ 2024-09-02 6:36 UTC (permalink / raw)
To: 72923; +Cc: Liliana Marie Prikler, Ian Eure
Hi,
> This looks good to me.
>
> Thanks,
>
> — Ian
Looks good to me too. I think having a separate variable is more
appropriate in this situation, as build systems are one of those things
that can realistically just stay pinned at certain versions upstream
indefinitely. A graft would indicate a more temporary situation.
Btw, I've built it and it works :)
Warmly,
Ada
^ permalink raw reply [flat|nested] 7+ messages in thread
* [bug#72923] QA review for 72923
2024-09-01 0:02 [bug#72923] [PATCH 0/2] Fix gitg Liliana Marie Prikler
` (2 preceding siblings ...)
2024-09-01 16:31 ` [bug#72923] 72923@debbugs.gnu.org Ian Eure
@ 2024-09-06 7:12 ` Ada Stevenson
3 siblings, 0 replies; 7+ messages in thread
From: Ada Stevenson @ 2024-09-06 7:12 UTC (permalink / raw)
To: control, 72923
user guix
usertag 72923 + reviewed-looks-good
thanks
Guix QA review form submission:
Items marked as checked: Lint warnings, Package builds, Commit messages
^ permalink raw reply [flat|nested] 7+ messages in thread
* bug#72923: [PATCH 2/2] gnu: gitg: Fix build.
2024-09-01 0:00 ` [bug#72923] [PATCH 2/2] gnu: gitg: Fix build Liliana Marie Prikler
@ 2024-09-08 14:02 ` Liliana Marie Prikler
0 siblings, 0 replies; 7+ messages in thread
From: Liliana Marie Prikler @ 2024-09-08 14:02 UTC (permalink / raw)
To: 72923-done
Am Sonntag, dem 01.09.2024 um 02:00 +0200 schrieb Liliana Marie
Prikler:
> * gnu/packages/gnome.scm (gitg)[arguments]<#:meson>: Use meson-1.5.
> <#:build-type>: Set to “release”.
> ---
I pushed this some while ago, so let's mark it as done.
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-09-08 14:04 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-01 0:02 [bug#72923] [PATCH 0/2] Fix gitg Liliana Marie Prikler
2024-09-01 0:00 ` [bug#72923] [PATCH 1/2] gnu: Add meson-1.5 Liliana Marie Prikler
2024-09-01 0:00 ` [bug#72923] [PATCH 2/2] gnu: gitg: Fix build Liliana Marie Prikler
2024-09-08 14:02 ` bug#72923: " Liliana Marie Prikler
2024-09-01 16:31 ` [bug#72923] 72923@debbugs.gnu.org Ian Eure
2024-09-02 6:36 ` [bug#72923] [PATCH 0/2] Fix gitg Thomas Stevenson
2024-09-06 7:12 ` [bug#72923] QA review for 72923 Ada Stevenson
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.