[PATCH] gnu: gdk-pixbuf: Update to 2.42.10.

  • Done
  • quality assurance status badge
Details
2 participants
  • Liliana Marie Prikler
  • Vivien Kraus
Owner
unassigned
Submitted by
Vivien Kraus
Severity
normal
Merged with
V
V
Vivien Kraus wrote on 14 Nov 2023 12:10
(address . guix-patches@gnu.org)
8e739cc42d526d6803c9ecc660564dfb7bc520d9.1699961986.git.vivien@planete-kraus.eu
* gnu/packages/gtk.scm (gdk-pixbuf): Update to 2.42.10.
[#:configure-flags]: Add "-Dgtk_doc=true".
[native-inputs]: Remove docbook-xml-4.3, docbook-xml, libxml2 and libxslt. Add
gi-docgen and python-docutils.

Change-Id: I2375beadad7f5d606fa6d973694a10679e07b689
---
gnu/packages/gtk.scm | 12 +++++-------
1 file changed, 5 insertions(+), 7 deletions(-)

Toggle diff (45 lines)
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 21a12689b7..85684a2054 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -690,7 +690,7 @@ (define-public gtksourceview-3
(define-public gdk-pixbuf
(package
(name "gdk-pixbuf")
- (version "2.42.8")
+ (version "2.42.10")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnome/sources/" name "/"
@@ -698,12 +698,12 @@ (define-public gdk-pixbuf
name "-" version ".tar.xz"))
(sha256
(base32
- "1iplb43nn74pp3w1wjwwn522i9man6jia85k6j8v4494rcxfmb44"))))
+ "0jz4kziz5lirnjjvbspbqzsigk8vnqknng1fga89d81vs5snr6zf"))))
(build-system meson-build-system)
(outputs '("out" "debug"))
(arguments
`(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas
- #:configure-flags '("-Dinstalled_tests=false")
+ #:configure-flags '("-Dinstalled_tests=false" "-Dgtk_doc=true")
#:phases
(modify-phases %standard-phases
(add-before 'configure 'disable-failing-tests
@@ -740,10 +740,8 @@ (define-public gdk-pixbuf
pkg-config
;; For the documentation.
- docbook-xml-4.3
- docbook-xsl
- libxml2 ;for XML_CATALOG_FILES
- libxslt)) ;for xsltproc
+ gi-docgen
+ python-docutils))
(native-search-paths
;; This file is produced by the gdk-pixbuf-loaders-cache-file
;; profile hook.

base-commit: 72e886328c14c832b2ed71c400069b63852ee18d
--
2.41.0
V
V
Vivien Kraus wrote on 14 Nov 2023 12:10
[PATCH gnome-team v2] gnu: gdk-pixbuf: Update to 2.42.10.
(address . 67166@debbugs.gnu.org)
9e739cc42d526d6803c9ecc660564dfb7bc520d9.1699961986.git.vivien@planete-kraus.eu
* gnu/packages/gtk.scm (gdk-pixbuf): Update to 2.42.10.
[#:configure-flags]: Add "-Dgtk_doc=true".
[native-inputs]: Remove docbook-xml-4.3, docbook-xml, libxml2 and libxslt. Add
gi-docgen and python-docutils.

Change-Id: I2375beadad7f5d606fa6d973694a10679e07b689
---
gnu/packages/gtk.scm | 12 +++++-------
1 file changed, 5 insertions(+), 7 deletions(-)

Toggle diff (45 lines)
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 21a12689b7..85684a2054 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -690,7 +690,7 @@ (define-public gtksourceview-3
(define-public gdk-pixbuf
(package
(name "gdk-pixbuf")
- (version "2.42.8")
+ (version "2.42.10")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnome/sources/" name "/"
@@ -698,12 +698,12 @@ (define-public gdk-pixbuf
name "-" version ".tar.xz"))
(sha256
(base32
- "1iplb43nn74pp3w1wjwwn522i9man6jia85k6j8v4494rcxfmb44"))))
+ "0jz4kziz5lirnjjvbspbqzsigk8vnqknng1fga89d81vs5snr6zf"))))
(build-system meson-build-system)
(outputs '("out" "debug"))
(arguments
`(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas
- #:configure-flags '("-Dinstalled_tests=false")
+ #:configure-flags '("-Dinstalled_tests=false" "-Dgtk_doc=true")
#:phases
(modify-phases %standard-phases
(add-before 'configure 'disable-failing-tests
@@ -740,10 +740,8 @@ (define-public gdk-pixbuf
pkg-config
;; For the documentation.
- docbook-xml-4.3
- docbook-xsl
- libxml2 ;for XML_CATALOG_FILES
- libxslt)) ;for xsltproc
+ gi-docgen
+ python-docutils))
(native-search-paths
;; This file is produced by the gdk-pixbuf-loaders-cache-file
;; profile hook.

base-commit: 72e886328c14c832b2ed71c400069b63852ee18d
--
2.41.0
L
L
Liliana Marie Prikler wrote on 27 Nov 2023 20:24
Re: [PATCH gnome-team 00/12] Hopefully the last world rebuild
5c16fa00f99da91649438767580fcddd6bd7138f.camel@gmail.com
merge 67473 67166 67169 67222 67408 67410 67420 67423 67424 67437
thanks

Am Montag, dem 27.11.2023 um 02:58 +0100 schrieb Vivien Kraus:
Toggle quote (21 lines)
> Dear guix,
>
> Here are all the updates for GNOME 44.6 that rebuild the world. 
> Please find annotated to the left of the summary message the issue it
> was originally published to.  The last 3 have not been published as
> part of another issue.
>
> Best regards,
>
> Vivien
>
> Vivien Kraus (12):
> [67166]  gnu: gdk-pixbuf: Update to 2.42.10.
> [67169]  gnu: glib-networking: Update to 2.76.1.
> [67222]  gnu: gnome-backgrounds: Update to 44.0.
> [67408]  gnu: gtk+: Update to 3.24.38.
> [67410]  gnu: gtkmm-3: Update to 3.24.8.
> [67420]  gnu: json-glib: Update to 1.6.6.
> [67423]  gnu: libnotify: Update to 0.8.3.
> [67424]  gnu: libsoup: Update to 3.4.4.
> [67437]  gnu: mm-common: Update to 1.0.5.
Merged the bug numbers.
?
Your comment

This issue is archived.

To comment on this conversation send an email to 67166@debbugs.gnu.org

To respond to this issue using the mumi CLI, first switch to it
mumi current 67166
Then, you may apply the latest patchset in this issue (with sign off)
mumi am -- -s
Or, compose a reply to this issue
mumi compose
Or, send patches to this issue
mumi send-email *.patch