[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
20/44: gnu: dconf: Update to 0.36.0.
From: |
guix-commits |
Subject: |
20/44: gnu: dconf: Update to 0.36.0. |
Date: |
Thu, 25 Jun 2020 08:20:52 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit 328ea3570bf26e70f3ee308a543dba9cdb588e7a
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Fri May 29 18:29:17 2020 -0400
gnu: dconf: Update to 0.36.0.
* gnu/packages/gnome.scm (dconf)[patches]: Remove dconf-meson-0.52.patch.
[outputs]: New output 'doc'.
[arguments]<#:phases>['patch-timeout-tests]: New phase.
['move-doc]: New phase.
[native-inputs]: Add python-wrapper.
[home-page]: Modify.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/gnome.scm | 69 ++++++++++++++++++++++++++++++++------------------
1 file changed, 44 insertions(+), 25 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 8f9c127..b992c8f 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -3745,44 +3745,63 @@ and RDP protocols.")
(define-public dconf
(package
(name "dconf")
- (version "0.34.0")
- (source (origin
- (method url-fetch)
- (uri (string-append
- "mirror://gnome/sources/" name "/"
- (version-major+minor version) "/"
- name "-" version ".tar.xz"))
- (patches (search-patches "dconf-meson-0.52.patch"))
- (sha256
- (base32
- "0lnsl85cp2vpzgp8pkf6l6yd2i3lp02jdvga1icfa78j2smr8fll"))))
+ (version "0.36.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (string-append
+ "mirror://gnome/sources/" name "/"
+ (version-major+minor version) "/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32
+ "0bfs069pjv6lhp7xrzmrhz3876ay2ryqxzc6mlva1hhz34ibprlz"))))
(build-system meson-build-system)
- (propagated-inputs
- ;; In Requires of dconf.pc.
- `(("glib" ,glib)))
- (inputs
- `(("gtk+" ,gtk+)
- ("dbus" ,dbus)))
+ (outputs '("out" "doc"))
+ (arguments
+ `(#:glib-or-gtk? #t
+ #:configure-flags
+ (list
+ "-Dgtk_doc=true")
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'patch-timeout-tests
+ (lambda _
+ (substitute* "tests/meson.build"
+ (("^ \\['engine', .*$")
+ ""))
+ #t))
+ (add-after 'install 'move-doc
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (doc (assoc-ref outputs "doc")))
+ (mkdir-p (string-append doc "/share"))
+ (rename-file
+ (string-append out "/share/gtk-doc")
+ (string-append doc "/share/gtk-doc"))
+ #t))))))
(native-inputs
`(("bash-completion" ,bash-completion)
- ("libxslt" ,libxslt) ;for xsltproc
- ("libxml2" ,libxml2) ;for XML_CATALOG_FILES
("docbook-xml" ,docbook-xml-4.2)
("docbook-xsl" ,docbook-xsl)
("glib:bin" ,glib "bin")
("gtk-doc" ,gtk-doc)
+ ("libxml2" ,libxml2)
+ ("libxslt" ,libxslt)
("pkg-config" ,pkg-config)
+ ("python-wrapper" ,python-wrapper)
("vala" ,vala)))
- (arguments
- `(#:tests? #f ; To contact dbus it needs to load /var/lib/dbus/machine-id
- ; or /etc/machine-id.
- #:glib-or-gtk? #t
- #:configure-flags '("-Denable-gtk-doc=true")))
- (home-page "https://developer.gnome.org/dconf/")
+ (inputs
+ `(("dbus" ,dbus)
+ ("gtk+" ,gtk+)))
+ (propagated-inputs
+ `(("glib" ,glib)))
(synopsis "Low-level GNOME configuration system")
(description "Dconf is a low-level configuration system. Its main purpose
is to provide a backend to GSettings on platforms that don't already have
configuration storage systems.")
+ (home-page "https://wiki.gnome.org/Projects/dconf")
(license license:lgpl2.1+)))
(define-public json-glib
- 36/44: gnu: Add mutest., (continued)
- 36/44: gnu: Add mutest., guix-commits, 2020/06/25
- 38/44: gnu: gsettings-desktop-schemas: Update package definition., guix-commits, 2020/06/25
- 37/44: gnu: graphene: Update package definition., guix-commits, 2020/06/25
- 27/44: gnu: fcitx: Update package definition., guix-commits, 2020/06/25
- 29/44: gnu: gcr: Update to 3.36.0., guix-commits, 2020/06/25
- 32/44: gnu: geoclue: Update to 2.5.6., guix-commits, 2020/06/25
- 39/44: gnu: Add esound., guix-commits, 2020/06/25
- 35/44: gnu: glib-networking: Update to 2.62.4., guix-commits, 2020/06/25
- 41/44: gnu: glib: Update package definition., guix-commits, 2020/06/25
- 16/44: gnu: clutter: Update to 1.26.4., guix-commits, 2020/06/25
- 20/44: gnu: dconf: Update to 0.36.0.,
guix-commits <=
- 31/44: gnu: gdk-pixbuf+svg: Update package definition., guix-commits, 2020/06/25
- 33/44: gnu: Add sysprof., guix-commits, 2020/06/25
- 42/44: gnu: glib-with-documentation: Update package definition., guix-commits, 2020/06/25
- 43/44: gnu: glib-networking: Update to 2.64.3., guix-commits, 2020/06/25
- 44/44: gnu: gobject-introspection: Update package definition., guix-commits, 2020/06/25
- 11/44: gnu: at-spi2-core: Update package definition., guix-commits, 2020/06/25
- 15/44: gnu: font-cantarell: Update package definition., guix-commits, 2020/06/25
- 18/44: gnu: clutter-gst: Update package definition., guix-commits, 2020/06/25
- 19/44: gnu: cogl: Update package definition., guix-commits, 2020/06/25
- 26/44: gnu: Add presage., guix-commits, 2020/06/25