* [bug#74482] [PATCH 0/3] Update gimp-next to 3.0.0-RC1
@ 2024-11-22 16:44 Liliana Marie Prikler
2024-11-22 16:30 ` [bug#74482] [PATCH 2/3] gnu: gegl: Update to 0.4.50 Liliana Marie Prikler
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Liliana Marie Prikler @ 2024-11-22 16:44 UTC (permalink / raw)
To: 74482; +Cc: liliana.prikler, maxim.cournoyer, vivien
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 400 bytes --]
Hi Guix,
soon™ GIMP 3 will be released. We already have our first candidate,
so let's package it 🙂
Liliana Marie Prikler (3):
gnu: babl: Update to 0.1.110.
gnu: gegl: Update to 0.4.50.
gnu: gimp-next: Update to 3.0.0-RC1.
gnu/packages/gimp.scm | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
base-commit: e6d1f571957e5668b844939070174aedf0bec673
--
2.46.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#74482] [PATCH 2/3] gnu: gegl: Update to 0.4.50.
2024-11-22 16:44 [bug#74482] [PATCH 0/3] Update gimp-next to 3.0.0-RC1 Liliana Marie Prikler
@ 2024-11-22 16:30 ` Liliana Marie Prikler
2024-11-22 16:30 ` [bug#74482] [PATCH 3/3] gnu: gimp-next: Update to 3.0.0-RC1 Liliana Marie Prikler
2024-11-22 16:30 ` [bug#74482] [PATCH 1/3] gnu: babl: Update to 0.1.110 Liliana Marie Prikler
2 siblings, 0 replies; 4+ messages in thread
From: Liliana Marie Prikler @ 2024-11-22 16:30 UTC (permalink / raw)
To: 74482; +Cc: liliana.prikler, maxim.cournoyer, vivien
* gnu/packages/gimp.scm (gegl): Update to 0.4.50.
---
gnu/packages/gimp.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/gimp.scm b/gnu/packages/gimp.scm
index 3f031cd3c1..4960e58846 100644
--- a/gnu/packages/gimp.scm
+++ b/gnu/packages/gimp.scm
@@ -224,7 +224,7 @@ (define-public babl
(define-public gegl
(package
(name "gegl")
- (version "0.4.48")
+ (version "0.4.50")
(source
(origin
(method url-fetch)
@@ -238,7 +238,7 @@ (define-public gegl
(version-major+minor version)
"/gegl-" version ".tar.xz")))
(sha256
- (base32 "0iw2wag3sls7va4c3dmczisbs9na4ml0rppnk1ymv0789gcjd321"))))
+ (base32 "1hchnzfsmv2jwky2qb52lvjh4gz14wzpfcr12iqwm1pf0sdrd130"))))
(build-system meson-build-system)
(arguments
`(#:phases
--
2.46.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#74482] [PATCH 3/3] gnu: gimp-next: Update to 3.0.0-RC1.
2024-11-22 16:44 [bug#74482] [PATCH 0/3] Update gimp-next to 3.0.0-RC1 Liliana Marie Prikler
2024-11-22 16:30 ` [bug#74482] [PATCH 2/3] gnu: gegl: Update to 0.4.50 Liliana Marie Prikler
@ 2024-11-22 16:30 ` Liliana Marie Prikler
2024-11-22 16:30 ` [bug#74482] [PATCH 1/3] gnu: babl: Update to 0.1.110 Liliana Marie Prikler
2 siblings, 0 replies; 4+ messages in thread
From: Liliana Marie Prikler @ 2024-11-22 16:30 UTC (permalink / raw)
To: 74482; +Cc: liliana.prikler, maxim.cournoyer, vivien
* gnu/packages/gimp.scm (gimp-next): Update to 3.0.0-RC1.
[inputs]: Add python-pygobject.
---
gnu/packages/gimp.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/gimp.scm b/gnu/packages/gimp.scm
index 4960e58846..d7e680a790 100644
--- a/gnu/packages/gimp.scm
+++ b/gnu/packages/gimp.scm
@@ -424,7 +424,7 @@ (define-public gimp-next
(package
(inherit gimp)
(name "gimp-next")
- (version "2.99.18")
+ (version "3.0.0-RC1")
(source
(origin
(method url-fetch)
@@ -432,7 +432,7 @@ (define-public gimp-next
(version-major+minor version)
"/gimp-" version ".tar.xz"))
(sha256
- (base32 "0vnvdl7x88njyyxkbgdbhz6jwz1qasrxh0fpwk6x1m609alvf6wc"))))
+ (base32 "0rpvbyfd6fyaz4bz9isr9h0l0ckz741p0hgkmagpi3p3qmjb5l5k"))))
(build-system meson-build-system)
(arguments
(list #:modules `((ice-9 popen)
@@ -459,7 +459,7 @@ (define-public gimp-next
(inputs (modify-inputs (package-inputs gimp)
(replace "gtk+" gtk+)
(prepend libxmu libxt)
- (prepend python gjs)
+ (prepend python python-pygobject gjs)
(prepend libxslt)))
(native-inputs (modify-inputs (package-native-inputs gimp)
(prepend appstream-glib
--
2.46.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#74482] [PATCH 1/3] gnu: babl: Update to 0.1.110.
2024-11-22 16:44 [bug#74482] [PATCH 0/3] Update gimp-next to 3.0.0-RC1 Liliana Marie Prikler
2024-11-22 16:30 ` [bug#74482] [PATCH 2/3] gnu: gegl: Update to 0.4.50 Liliana Marie Prikler
2024-11-22 16:30 ` [bug#74482] [PATCH 3/3] gnu: gimp-next: Update to 3.0.0-RC1 Liliana Marie Prikler
@ 2024-11-22 16:30 ` Liliana Marie Prikler
2 siblings, 0 replies; 4+ messages in thread
From: Liliana Marie Prikler @ 2024-11-22 16:30 UTC (permalink / raw)
To: 74482; +Cc: liliana.prikler, maxim.cournoyer, vivien
* gnu/packages/gimp.scm (babl): Update to 0.1.110.
---
gnu/packages/gimp.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/gimp.scm b/gnu/packages/gimp.scm
index b29438b59c..3f031cd3c1 100644
--- a/gnu/packages/gimp.scm
+++ b/gnu/packages/gimp.scm
@@ -176,7 +176,7 @@ (define-public mrg
(define-public babl
(package
(name "babl")
- (version "0.1.108")
+ (version "0.1.110")
(source (origin
(method url-fetch)
(uri (list (string-append "https://download.gimp.org/pub/babl/"
@@ -190,7 +190,7 @@ (define-public babl
"/babl-" version ".tar.xz")))
(sha256
(base32
- "0x8lxvnhfpssj84x47y3y06vsvhd5afb9jknw38c8ymbxafzxpi6"))))
+ "0hsp7xqsmij8njxd0hz22mikgxad0q1yycb4ys4m69yn81svwixz"))))
(build-system meson-build-system)
(arguments
(list
--
2.46.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-11-22 20:18 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-22 16:44 [bug#74482] [PATCH 0/3] Update gimp-next to 3.0.0-RC1 Liliana Marie Prikler
2024-11-22 16:30 ` [bug#74482] [PATCH 2/3] gnu: gegl: Update to 0.4.50 Liliana Marie Prikler
2024-11-22 16:30 ` [bug#74482] [PATCH 3/3] gnu: gimp-next: Update to 3.0.0-RC1 Liliana Marie Prikler
2024-11-22 16:30 ` [bug#74482] [PATCH 1/3] gnu: babl: Update to 0.1.110 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).