[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
124/295: gnu: dconf: Update to 0.36.0.
From: |
guix-commits |
Subject: |
124/295: gnu: dconf: Update to 0.36.0. |
Date: |
Mon, 27 Jul 2020 06:25:47 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit 77e789345de36e64c100281ade581e79e6dbb8da
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
- 108/295: gnu: Add malcontent., (continued)
- 108/295: gnu: Add malcontent., guix-commits, 2020/07/27
- 111/295: gnu: Add gnome-music., guix-commits, 2020/07/27
- 112/295: gnu: Add gnome-photos., guix-commits, 2020/07/27
- 114/295: gnu: appstream-glib: Update package definition., guix-commits, 2020/07/27
- 116/295: gnu: at-spi2-atk: Update to 2.34.2., guix-commits, 2020/07/27
- 117/295: gnu: atk: Update to 2.36.0., guix-commits, 2020/07/27
- 118/295: gnu: google-brotli: Update package definition., guix-commits, 2020/07/27
- 121/295: gnu: clutter-gtk: Update package definition., guix-commits, 2020/07/27
- 122/295: gnu: clutter-gst: Update package definition., guix-commits, 2020/07/27
- 123/295: gnu: cogl: Update package definition., guix-commits, 2020/07/27
- 124/295: gnu: dconf: Update to 0.36.0.,
guix-commits <=
- 125/295: gnu: catch-framework2: Update to 2.3.0., guix-commits, 2020/07/27
- 126/295: gnu: Add ronn., guix-commits, 2020/07/27
- 130/295: gnu: Add presage., guix-commits, 2020/07/27
- 131/295: gnu: fcitx: Update package definition., guix-commits, 2020/07/27
- 134/295: gnu: gdk-pixbuf: Update package definition., guix-commits, 2020/07/27
- 135/295: gnu: gdk-pixbuf+svg: Update package definition., guix-commits, 2020/07/27
- 139/295: gnu: glib-networking: Update to 2.62.4., guix-commits, 2020/07/27
- 142/295: gnu: gsettings-desktop-schemas: Update package definition., guix-commits, 2020/07/27
- 144/295: gnu: faad2: Update to 2.8.8., guix-commits, 2020/07/27
- 145/295: gnu: glib: Update package definition., guix-commits, 2020/07/27