* [bug#52728] [PATCH 0/2] Update GIMP.
@ 2021-12-22 1:19 Vinicius Monego
2021-12-22 1:21 ` [bug#52728] [PATCH 1/2] gnu: gegl: Update to 0.4.34 Vinicius Monego
2021-12-22 2:11 ` bug#52728: [PATCH 0/2] Update GIMP Tobias Geerinckx-Rice via Guix-patches via
0 siblings, 2 replies; 4+ messages in thread
From: Vinicius Monego @ 2021-12-22 1:19 UTC (permalink / raw)
To: 52728; +Cc: Vinicius Monego
Vinicius Monego (2):
gnu: gegl: Update to 0.4.34.
gnu: gimp: Update to 2.10.30.
gnu/packages/gimp.scm | 36 ++++++++++++++++++------------------
1 file changed, 18 insertions(+), 18 deletions(-)
base-commit: 8f85e4f9aa0bd53d0240ea28e280551c8a066b85
--
2.30.2
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#52728] [PATCH 1/2] gnu: gegl: Update to 0.4.34.
2021-12-22 1:19 [bug#52728] [PATCH 0/2] Update GIMP Vinicius Monego
@ 2021-12-22 1:21 ` Vinicius Monego
2021-12-22 1:21 ` [bug#52728] [PATCH 2/2] gnu: gimp: Update to 2.10.30 Vinicius Monego
2021-12-22 2:11 ` bug#52728: [PATCH 0/2] Update GIMP Tobias Geerinckx-Rice via Guix-patches via
1 sibling, 1 reply; 4+ messages in thread
From: Vinicius Monego @ 2021-12-22 1:21 UTC (permalink / raw)
To: 52728; +Cc: Vinicius Monego
* gnu/packages/gimp.scm (gegl): Update to 0.4.34.
[source]: Make some cosmetic changes.
---
gnu/packages/gimp.scm | 32 ++++++++++++++++----------------
1 file changed, 16 insertions(+), 16 deletions(-)
diff --git a/gnu/packages/gimp.scm b/gnu/packages/gimp.scm
index f1f8529580..5f00471458 100644
--- a/gnu/packages/gimp.scm
+++ b/gnu/packages/gimp.scm
@@ -213,21 +213,21 @@ provided, as well as a framework to add new color models and data types.")
(define-public gegl
(package
(name "gegl")
- (version "0.4.32")
- (source (origin
- (method url-fetch)
- (uri (list (string-append "https://download.gimp.org/pub/gegl/"
- (string-take version 3)
- "/gegl-" version ".tar.xz")
- (string-append "https://ftp.gtk.org/pub/gegl/"
- (version-major+minor version)
- "/gegl-" version ".tar.xz")
- (string-append "ftp://ftp.gtk.org/pub/gegl/"
- (version-major+minor version)
- "/gegl-" version ".tar.xz")))
- (sha256
- (base32
- "18cg566lplw7y7dn5v05pal24vxbfiic6097a40gnxdgkxmkr3k6"))))
+ (version "0.4.34")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (list (string-append "https://download.gimp.org/pub/gegl/"
+ (string-take version 3)
+ "/gegl-" version ".tar.xz")
+ (string-append "https://ftp.gtk.org/pub/gegl/"
+ (version-major+minor version)
+ "/gegl-" version ".tar.xz")
+ (string-append "ftp://ftp.gtk.org/pub/gegl/"
+ (version-major+minor version)
+ "/gegl-" version ".tar.xz")))
+ (sha256
+ (base32 "1amazk6g9dk76rxwaqa81j87ql5vgz539n6xk88wccdllnyg0qzg"))))
(build-system meson-build-system)
(arguments
`(#:configure-flags
@@ -269,7 +269,7 @@ provided, as well as a framework to add new color models and data types.")
("poppler" ,poppler)
("sdl2" ,sdl2)))
(native-inputs
- (list `(,glib "bin") ; for gtester
+ (list `(,glib "bin") ; for gtester
gobject-introspection
intltool
pkg-config
--
2.30.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#52728] [PATCH 2/2] gnu: gimp: Update to 2.10.30.
2021-12-22 1:21 ` [bug#52728] [PATCH 1/2] gnu: gegl: Update to 0.4.34 Vinicius Monego
@ 2021-12-22 1:21 ` Vinicius Monego
0 siblings, 0 replies; 4+ messages in thread
From: Vinicius Monego @ 2021-12-22 1:21 UTC (permalink / raw)
To: 52728; +Cc: Vinicius Monego
* gnu/packages/gimp.scm (gimp): Update to 2.10.30.
---
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 5f00471458..0ad75de700 100644
--- a/gnu/packages/gimp.scm
+++ b/gnu/packages/gimp.scm
@@ -286,7 +286,7 @@ buffers.")
(define-public gimp
(package
(name "gimp")
- (version "2.10.28")
+ (version "2.10.30")
(source
(origin
(method url-fetch)
@@ -294,7 +294,7 @@ buffers.")
(version-major+minor version)
"/gimp-" version ".tar.bz2"))
(sha256
- (base32 "09l80zxcnydbpm3nn64qw48klnvp0mgbaamazqkg1d8szwnc4kag"))))
+ (base32 "1p375gaw2daip6aiv1icrlpws5m1my5kalxkxrvl4zgdfsm5v0c8"))))
(build-system gnu-build-system)
(outputs '("out"
"doc")) ; 9 MiB of gtk-doc HTML
--
2.30.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* bug#52728: [PATCH 0/2] Update GIMP.
2021-12-22 1:19 [bug#52728] [PATCH 0/2] Update GIMP Vinicius Monego
2021-12-22 1:21 ` [bug#52728] [PATCH 1/2] gnu: gegl: Update to 0.4.34 Vinicius Monego
@ 2021-12-22 2:11 ` Tobias Geerinckx-Rice via Guix-patches via
1 sibling, 0 replies; 4+ messages in thread
From: Tobias Geerinckx-Rice via Guix-patches via @ 2021-12-22 2:11 UTC (permalink / raw)
To: Vinicius Monego; +Cc: 52728-done, guix-patches
[-- Attachment #1: Type: text/plain, Size: 183 bytes --]
Vinicius Monego 写道:
> Vinicius Monego (2):
> gnu: gegl: Update to 0.4.34.
> gnu: gimp: Update to 2.10.30.
Pushed as c0c8788 et al. Thanks!
Kind regards,
T G-R
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-12-22 2:12 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-12-22 1:19 [bug#52728] [PATCH 0/2] Update GIMP Vinicius Monego
2021-12-22 1:21 ` [bug#52728] [PATCH 1/2] gnu: gegl: Update to 0.4.34 Vinicius Monego
2021-12-22 1:21 ` [bug#52728] [PATCH 2/2] gnu: gimp: Update to 2.10.30 Vinicius Monego
2021-12-22 2:11 ` bug#52728: [PATCH 0/2] Update GIMP Tobias Geerinckx-Rice via Guix-patches via
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).