gnu: musescore: Update to 3.5.2.
[jackhill/guix/guix.git] / gnu / packages / glib.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2013, 2014, 2015, 2016, 2019 Ludovic Courtès <ludo@gnu.org>
3 ;;; Copyright © 2013, 2015 Andreas Enge <andreas@enge.fr>
4 ;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
5 ;;; Copyright © 2014, 2015, 2016, 2017, 2018 Mark H Weaver <mhw@netris.org>
6 ;;; Copyright © 2016, 2020 Efraim Flashner <efraim@flashner.co.il>
7 ;;; Copyright © 2016 Lukas Gradl <lgradl@openmailbox.org>
8 ;;; Copyright © 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
9 ;;; Copyright © 2017 Petter <petter@mykolab.ch>
10 ;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
11 ;;; Copyright © 2018 Alex Vong <alexvong1995@gmail.com>
12 ;;; Copyright © 2019 Maxim Cournoyer <maxim.cournoyer@gmail.com>
13 ;;; Copyright © 2019 Giacomo Leidi <goodoldpaul@autistici.org>
14 ;;; Copyright © 2019, 2020 Marius Bakke <mbakke@fastmail.com>
15 ;;; Copyright © 2020 Nicolò Balzarotti <nicolo@nixo.xyz>
16 ;;;
17 ;;; This file is part of GNU Guix.
18 ;;;
19 ;;; GNU Guix is free software; you can redistribute it and/or modify it
20 ;;; under the terms of the GNU General Public License as published by
21 ;;; the Free Software Foundation; either version 3 of the License, or (at
22 ;;; your option) any later version.
23 ;;;
24 ;;; GNU Guix is distributed in the hope that it will be useful, but
25 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
26 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 ;;; GNU General Public License for more details.
28 ;;;
29 ;;; You should have received a copy of the GNU General Public License
30 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
31
32 (define-module (gnu packages glib)
33 #:use-module (gnu packages)
34 #:use-module (gnu packages backup)
35 #:use-module (gnu packages base)
36 #:use-module (gnu packages bison)
37 #:use-module (gnu packages check)
38 #:use-module (gnu packages compression)
39 #:use-module (gnu packages docbook)
40 #:use-module (gnu packages documentation)
41 #:use-module (gnu packages enlightenment)
42 #:use-module (gnu packages file)
43 #:use-module (gnu packages flex)
44 #:use-module (gnu packages gettext)
45 #:use-module (gnu packages gnome)
46 #:use-module (gnu packages gperf)
47 #:use-module (gnu packages gtk)
48 #:use-module (gnu packages libffi)
49 #:use-module (gnu packages linux)
50 #:use-module (gnu packages m4)
51 #:use-module (gnu packages nettle)
52 #:use-module (gnu packages pcre)
53 #:use-module (gnu packages package-management)
54 #:use-module (gnu packages perl)
55 #:use-module (gnu packages perl-check)
56 #:use-module (gnu packages pkg-config)
57 #:use-module (gnu packages python)
58 #:use-module (gnu packages python-xyz)
59 #:use-module (gnu packages selinux)
60 #:use-module (gnu packages web)
61 #:use-module (gnu packages xml)
62 #:use-module (gnu packages xorg)
63 #:use-module (guix build-system gnu)
64 #:use-module (guix build-system meson)
65 #:use-module (guix build-system perl)
66 #:use-module (guix build-system python)
67 #:use-module (guix download)
68 #:use-module ((guix licenses) #:prefix license:)
69 #:use-module (guix packages)
70 #:use-module (guix utils)
71 #:use-module ((srfi srfi-1) #:hide (zip))
72
73 ;; Export variables up-front to allow circular dependency with the 'xorg'
74 ;; module.
75 #:export (dbus
76 glib
77 gobject-introspection
78 dbus-glib
79 intltool
80 itstool
81 libsigc++
82 glibmm
83 telepathy-glib
84 perl-net-dbus
85 perl-net-dbus-glib))
86
87 (define dbus
88 (package
89 (name "dbus")
90 (version "1.12.16")
91 (replacement dbus/fixed)
92 (source (origin
93 (method url-fetch)
94 (uri (string-append
95 "https://dbus.freedesktop.org/releases/dbus/dbus-"
96 version ".tar.gz"))
97 (sha256
98 (base32
99 "107ckxaff1cv4q6kmfdi2fb1nlsv03312a7kf6lb4biglhpjv8jl"))
100 (patches (search-patches "dbus-helper-search-path.patch"))))
101 (build-system gnu-build-system)
102 (arguments
103 '(#:configure-flags
104 (list
105 ;; Install the system bus socket under /var.
106 "--localstatedir=/var"
107
108 ;; Install the session bus socket under /tmp.
109 "--with-session-socket-dir=/tmp"
110
111 ;; Build shared libraries only.
112 "--disable-static"
113
114 ;; Use /etc/dbus-1 for system-wide config.
115 ;; Look for configuration file under
116 ;; /etc/dbus-1. This is notably required by
117 ;; 'dbus-daemon-launch-helper', which looks for
118 ;; the 'system.conf' file in that place,
119 ;; regardless of what '--config-file' was
120 ;; passed to 'dbus-daemon' on the command line;
121 ;; see <https://bugs.freedesktop.org/show_bug.cgi?id=92458>.
122 "--sysconfdir=/etc")
123 #:phases
124 (modify-phases %standard-phases
125 (replace 'install
126 (lambda _
127 ;; Don't try to create /var and /etc.
128 (invoke "make"
129 "localstatedir=/tmp/dummy"
130 "sysconfdir=/tmp/dummy"
131 "install"))))))
132 (native-inputs
133 `(("pkg-config" ,pkg-config)
134 ;; Dependencies to generate the doc.
135 ("docbook-xml" ,docbook-xml-4.4)
136 ("docbook-xsl" ,docbook-xsl)
137 ("doxygen" ,doxygen)
138 ("xmlto" ,xmlto)
139 ("libxml2" ,libxml2) ;for XML_CATALOG_FILES
140 ("libxslt" ,libxslt)
141 ("yelp-tools" ,yelp-tools)))
142 (inputs
143 `(("expat" ,expat)
144 ;; Add a dependency on libx11 so that 'dbus-launch' has support for
145 ;; '--autolaunch'.
146 ("libx11" ,libx11)))
147 (outputs '("out" "doc")) ;22 MiB of HTML doc
148 (home-page "https://www.freedesktop.org/wiki/Software/dbus/")
149 (synopsis "Message bus for inter-process communication (IPC)")
150 (description
151 "D-Bus is a message bus system, a simple way for applications to
152 talk to one another. In addition to interprocess communication, D-Bus
153 helps coordinate process lifecycle; it makes it simple and reliable to
154 code a \"single instance\" application or daemon, and to launch
155 applications and daemons on demand when their services are needed.
156
157 D-Bus supplies both a system daemon (for events such as \"new hardware
158 device added\" or \"printer queue changed\") and a
159 per-user-login-session daemon (for general IPC needs among user
160 applications). Also, the message bus is built on top of a general
161 one-to-one message passing framework, which can be used by any two apps
162 to communicate directly (without going through the message bus
163 daemon). Currently the communicating applications are on one computer,
164 or through unencrypted TCP/IP suitable for use behind a firewall with
165 shared NFS home directories.")
166 (license license:gpl2+))) ; or Academic Free License 2.1
167
168 ;; Replacement package to fix CVE-2020-12049.
169 (define dbus/fixed
170 (package
171 (inherit dbus)
172 (source (origin
173 (inherit (package-source dbus))
174 (patches (append (search-patches "dbus-CVE-2020-12049.patch")
175 (origin-patches (package-source dbus))))))))
176
177 (define glib
178 (package
179 (name "glib")
180 (version "2.62.6")
181 (source (origin
182 (method url-fetch)
183 (uri (string-append "mirror://gnome/sources/"
184 name "/" (string-take version 4) "/"
185 name "-" version ".tar.xz"))
186 (sha256
187 (base32
188 "174bsmbmcvaw69ff9g60q5sx0fn23rkhqcwqz17h5s7sprps4kqh"))
189 (patches (search-patches "glib-tests-timer.patch"))
190 (modules '((guix build utils)))
191 (snippet
192 '(begin
193 (substitute* "tests/spawn-test.c"
194 (("/bin/sh") "sh"))
195 #t))))
196 (build-system meson-build-system)
197 (outputs '("out" ; everything
198 "bin")) ; glib-mkenums, gtester, etc.; depends on Python
199 (propagated-inputs
200 `(("pcre" ,pcre) ; in the Requires.private field of glib-2.0.pc
201 ("libffi" ,libffi) ; in the Requires.private field of gobject-2.0.pc
202 ;; These are in the Requires.private field of gio-2.0.pc
203 ("util-linux" ,util-linux "lib") ;for libmount
204 ("libselinux" ,libselinux)
205 ("zlib" ,zlib)))
206 (native-inputs
207 `(("gettext" ,gettext-minimal)
208 ("m4" ,m4) ; for installing m4 macros
209 ("dbus" ,dbus) ; for GDBus tests
210 ("pkg-config" ,pkg-config)
211 ("python" ,python-wrapper)
212 ("perl" ,perl) ; needed by GIO tests
213 ("tzdata" ,tzdata-for-tests))) ; for tests/gdatetime.c
214 (arguments
215 `(#:disallowed-references (,tzdata-for-tests)
216 #:phases
217 (modify-phases %standard-phases
218 (add-after 'unpack 'patch-dbus-launch-path
219 (lambda* (#:key inputs #:allow-other-keys)
220 (let ((dbus (assoc-ref inputs "dbus")))
221 (substitute* "gio/gdbusaddress.c"
222 (("command_line = g_strdup_printf \\(\"dbus-launch")
223 (string-append "command_line = g_strdup_printf (\""
224 dbus "/bin/dbus-launch")))
225 #t)))
226 (add-after 'unpack 'patch-gio-launch-desktop
227 (lambda* (#:key outputs #:allow-other-keys)
228 (let ((out (assoc-ref outputs "out")))
229 ;; See also <https://gitlab.gnome.org/GNOME/glib/issues/1633>
230 ;; for another future fix.
231 (substitute* "gio/gdesktopappinfo.c"
232 (("gio-launch-desktop")
233 (string-append out "/libexec/gio-launch-desktop")))
234 #t)))
235 (add-before 'build 'pre-build
236 (lambda* (#:key inputs outputs #:allow-other-keys)
237 ;; For tests/gdatetime.c.
238 (setenv "TZDIR"
239 (string-append (assoc-ref inputs "tzdata")
240 "/share/zoneinfo"))
241
242 ;; Some tests want write access there.
243 (setenv "HOME" (getcwd))
244 (setenv "XDG_CACHE_HOME" (getcwd))
245 #t))
246 (add-after 'unpack 'disable-failing-tests
247 (lambda _
248 (let ((disable
249 (lambda (test-file test-paths)
250 (define pattern+procs
251 (map (lambda (test-path)
252 (cons
253 ;; XXX: only works for single line statements.
254 (format #f "g_test_add_func.*\"~a\".*" test-path)
255 (const "")))
256 test-paths))
257 (substitute test-file pattern+procs)))
258 (failing-tests
259 '(("glib/tests/thread.c"
260 (;; prlimit(2) returns ENOSYS on Linux 2.6.32-5-xen-amd64
261 ;; as found on hydra.gnu.org, and strace(1) doesn't
262 ;; recognize it.
263 "/thread/thread4"))
264
265 ;; This tries to find programs in FHS directories.
266 ("glib/tests/utils.c"
267 ("/utils/find-program"))
268
269 ;; This fails because "glib/tests/echo-script" cannot be
270 ;; found.
271 ("glib/tests/spawn-singlethread.c"
272 ("/gthread/spawn-script"))
273
274 ("glib/tests/timer.c"
275 (;; fails if compiler optimizations are enabled, which they
276 ;; are by default.
277 "/timer/stop"))
278
279 ("gio/tests/gapplication.c"
280 (;; XXX: proven to be unreliable. See:
281 ;; <https://bugs.debian.org/756273>
282 ;; <http://bugs.gnu.org/18445>
283 "/gapplication/quit"
284
285 ;; XXX: fails randomly for unknown reason. See:
286 ;; <https://lists.gnu.org/archive/html/guix-devel/2016-04/msg00215.html>
287 "/gapplication/local-actions"))
288
289 ("gio/tests/contenttype.c"
290 (;; XXX: requires shared-mime-info.
291 "/contenttype/guess"
292 "/contenttype/guess_svg_from_data"
293 "/contenttype/subtype"
294 "/contenttype/list"
295 "/contenttype/icon"
296 "/contenttype/symbolic-icon"
297 "/contenttype/tree"))
298
299 ("gio/tests/appinfo.c"
300 (;; XXX: requires update-desktop-database.
301 "/appinfo/associations"))
302
303 ("gio/tests/desktop-app-info.c"
304 (;; XXX: requires update-desktop-database.
305 "/desktop-app-info/delete"
306 "/desktop-app-info/default"
307 "/desktop-app-info/fallback"
308 "/desktop-app-info/lastused"
309 "/desktop-app-info/search"))
310
311 ("gio/tests/gdbus-peer.c"
312 (;; Requires /etc/machine-id.
313 "/gdbus/codegen-peer-to-peer"))
314
315 ("gio/tests/gdbus-address-get-session.c"
316 (;; Requires /etc/machine-id.
317 "/gdbus/x11-autolaunch"))
318
319 ("gio/tests/gsocketclient-slow.c"
320 (;; These tests tries to resolve "localhost", and fails.
321 "/socket-client/happy-eyeballs/slow"
322 "/socket-client/happy-eyeballs/cancellation/delayed"))
323
324 )))
325 (for-each (lambda (x) (apply disable x)) failing-tests)
326 #t)))
327 (replace 'check
328 (lambda _
329 (setenv "MESON_TESTTHREADS"
330 (number->string (parallel-job-count)))
331 ;; Do not run tests marked as "flaky".
332 (invoke "meson" "test" "--no-suite" "flaky")))
333 ;; TODO: meson does not permit the bindir to be outside of prefix.
334 ;; See https://github.com/mesonbuild/meson/issues/2561
335 ;; We can remove this once meson is patched.
336 (add-after 'install 'move-executables
337 (lambda* (#:key outputs #:allow-other-keys)
338 (let ((out (assoc-ref outputs "out"))
339 (bin (assoc-ref outputs "bin")))
340 (mkdir-p bin)
341 (rename-file (string-append out "/bin")
342 (string-append bin "/bin"))
343 ;; This one is an implementation detail of glib.
344 ;; It is wrong that that's in "/bin" in the first place,
345 ;; but that's what upstream is doing right now.
346 ;; See <https://gitlab.gnome.org/GNOME/glib/issues/1633>.
347 (mkdir (string-append out "/libexec"))
348 (rename-file (string-append bin "/bin/gio-launch-desktop")
349 (string-append out "/libexec/gio-launch-desktop"))
350 ;; Do not refer to "bindir", which points to "${prefix}/bin".
351 ;; We don't patch "bindir" to point to "$bin/bin", because that
352 ;; would create a reference cycle between the "out" and "bin"
353 ;; outputs.
354 (substitute* (list (string-append out "/lib/pkgconfig/gio-2.0.pc")
355 (string-append out "/lib/pkgconfig/glib-2.0.pc"))
356 (("bindir=\\$\\{prefix\\}/bin") "")
357 (("=\\$\\{bindir\\}/") "="))
358 #t))))))
359 ;; TODO: see above for explanation.
360 ;; #:configure-flags (list (string-append "--bindir="
361 ;; (assoc-ref %outputs "bin")
362 ;; "/bin"))
363
364 (native-search-paths
365 ;; This variable is not really "owned" by GLib, but several related
366 ;; packages refer to it: gobject-introspection's tools use it as a search
367 ;; path for .gir files, and it's also a search path for schemas produced
368 ;; by 'glib-compile-schemas'.
369 (list (search-path-specification
370 (variable "XDG_DATA_DIRS")
371 (files '("share")))
372 ;; To load extra gio modules from glib-networking, etc.
373 (search-path-specification
374 (variable "GIO_EXTRA_MODULES")
375 (files '("lib/gio/modules")))))
376 (search-paths native-search-paths)
377 (properties '((hidden? . #t)))
378
379 (synopsis "Thread-safe general utility library; basis of GTK+ and GNOME")
380 (description
381 "GLib provides data structure handling for C, portability wrappers,
382 and interfaces for such runtime functionality as an event loop, threads,
383 dynamic loading, and an object system.")
384 (home-page "https://developer.gnome.org/glib/")
385 (license license:lgpl2.1+)))
386
387 (define-public glib-with-documentation
388 ;; glib's doc must be built in a separate package since it requires gtk-doc,
389 ;; which in turn depends on glib.
390 (package
391 (inherit glib)
392 (properties (alist-delete 'hidden? (package-properties glib)))
393 (outputs (cons "doc" (package-outputs glib))) ; 20 MiB of GTK-Doc reference
394 (native-inputs
395 `(("gtk-doc" ,gtk-doc) ; for the doc
396 ("docbook-xml" ,docbook-xml)
397 ("libxml2" ,libxml2)
398 ,@(package-native-inputs glib)))
399 (arguments
400 (substitute-keyword-arguments (package-arguments glib)
401 ((#:configure-flags flags ''())
402 `(cons "-Dgtk_doc=true" ,flags))
403 ((#:phases phases)
404 `(modify-phases ,phases
405 (add-after 'install 'move-doc
406 (lambda* (#:key outputs #:allow-other-keys)
407 (let ((out (assoc-ref outputs "out"))
408 (doc (assoc-ref outputs "doc"))
409 (html (string-append "/share/gtk-doc")))
410 (copy-recursively (string-append out html)
411 (string-append doc html))
412 (delete-file-recursively (string-append out html))
413 #t)))))))))
414
415 (define gobject-introspection
416 (package
417 (name "gobject-introspection")
418 (version "1.62.0")
419 (source (origin
420 (method url-fetch)
421 (uri (string-append "mirror://gnome/sources/"
422 "gobject-introspection/" (version-major+minor version)
423 "/gobject-introspection-" version ".tar.xz"))
424 (sha256
425 (base32 "18lhglg9v6y83lhqzyifc1z0wrlawzrhzzxx0a3h1g7xaz97xvmi"))
426 (patches (search-patches
427 "gobject-introspection-cc.patch"
428 "gobject-introspection-girepository.patch"
429 "gobject-introspection-absolute-shlib-path.patch"))))
430 (build-system meson-build-system)
431 (arguments
432 `(#:phases
433 (modify-phases %standard-phases
434 (add-after 'unpack 'do-not-use-/usr/bin/env
435 (lambda _
436 (substitute* "tools/g-ir-tool-template.in"
437 (("#!@PYTHON_CMD@")
438 (string-append "#!" (which "python3"))))
439 #t)))))
440 (inputs
441 `(("bison" ,bison)
442 ("flex" ,flex)
443 ("glib" ,glib)
444 ("python" ,python-wrapper)
445 ("zlib" ,zlib)))
446 (native-inputs
447 `(("glib" ,glib "bin")
448 ("pkg-config" ,pkg-config)))
449 (propagated-inputs
450 `(;; In practice, GIR users will need libffi when using
451 ;; gobject-introspection.
452 ("libffi" ,libffi)))
453 (native-search-paths
454 (list (search-path-specification
455 (variable "GI_TYPELIB_PATH")
456 (files '("lib/girepository-1.0")))))
457 (search-paths native-search-paths)
458 (home-page "https://wiki.gnome.org/GObjectIntrospection")
459 (synopsis "Generate interface introspection data for GObject libraries")
460 (description
461 "GObject introspection is a middleware layer between C libraries (using
462 GObject) and language bindings. The C library can be scanned at compile time
463 and generate a metadata file, in addition to the actual native C library. Then
464 at runtime, language bindings can read this metadata and automatically provide
465 bindings to call into the C library.")
466 ; Some bits are distributed under the LGPL2+, others under the GPL2+
467 (license license:gpl2+)))
468
469 (define intltool
470 (package
471 (name "intltool")
472 (version "0.51.0")
473 (source (origin
474 (method url-fetch)
475 (uri (string-append "https://launchpad.net/intltool/trunk/"
476 version "/+download/intltool-"
477 version ".tar.gz"))
478 (patches (search-patches "intltool-perl-compatibility.patch"))
479 (sha256
480 (base32
481 "1karx4sb7bnm2j67q0q74hspkfn6lqprpy5r99vkn5bb36a4viv7"))))
482 (build-system gnu-build-system)
483 (inputs
484 `(("file" ,file)))
485 (propagated-inputs
486 `(;; Propagate gettext because users expect it to be there, and so does
487 ;; the `intltool-update' script.
488 ("gettext" ,gettext-minimal)
489
490 ("perl-xml-parser" ,perl-xml-parser)
491 ("perl" ,perl)))
492 (arguments
493 `(#:phases
494 (modify-phases %standard-phases
495 (add-after 'unpack 'patch-file-references
496 (lambda* (#:key inputs #:allow-other-keys)
497 (let ((file (assoc-ref inputs "file")))
498 (substitute* "intltool-update.in"
499 (("`file") (string-append "`" file "/bin/file")))
500 #t))))))
501 (home-page "https://launchpad.net/intltool/+download")
502 (synopsis "Tools to centralise translations of different file formats")
503 (description
504 "Intltool is a set of tools to centralise translations of many different
505 file formats using GNU gettext-compatible PO files.
506
507 The intltool collection can be used to do these things:
508
509 Extract translatable strings from various source files (.xml.in,
510 glade, .desktop.in, .server.in, .oaf.in).
511
512 Collect the extracted strings together with messages from traditional
513 source files (.c, .h) in po/$(PACKAGE).pot.
514
515 Merge back the translations from .po files into .xml, .desktop and
516 oaf files. This merge step will happen at build resp. installation time.")
517 (license license:gpl2+)))
518
519 (define itstool
520 (package
521 (name "itstool")
522 (version "2.0.6")
523 (source (origin
524 (method url-fetch)
525 (uri (string-append "http://files.itstool.org/itstool/itstool-"
526 version ".tar.bz2"))
527 (sha256
528 (base32
529 "1acjgf8zlyk7qckdk19iqaca4jcmywd7vxjbcs1mm6kaf8icqcv2"))))
530 (build-system gnu-build-system)
531 (inputs
532 `(("libxml2" ,libxml2)
533 ("python-libxml2" ,python-libxml2)
534 ("python" ,python)))
535 (arguments
536 '(#:phases
537 (modify-phases %standard-phases
538 (add-after 'install 'wrap-program
539 (lambda* (#:key outputs #:allow-other-keys)
540 (let ((prog (string-append (assoc-ref outputs "out")
541 "/bin/itstool")))
542 (wrap-program prog
543 `("PYTHONPATH" = (,(getenv "PYTHONPATH"))))
544 #t))))))
545 (home-page "http://www.itstool.org")
546 (synopsis "Tool to translate XML documents with PO files")
547 (description
548 "ITS Tool allows you to translate your XML documents with PO files, using
549 rules from the W3C Internationalization Tag Set (ITS) to determine what to
550 translate and how to separate it into PO file messages.
551
552 PO files are the standard translation format for GNU and other Unix-like
553 systems. They present translatable information as discrete messages, allowing
554 each message to be translated independently. In contrast to whole-page
555 translation, translating with a message-based format like PO means you can
556 easily track changes to the source document down to the paragraph. When new
557 strings are added or existing strings are modified, you only need to update the
558 corresponding messages.
559
560 ITS Tool is designed to make XML documents translatable through PO files by
561 applying standard ITS rules, as well as extension rules specific to ITS Tool.
562 ITS also provides an industry standard way for authors to override translation
563 information in their documents, such as whether a particular element should be
564 translated.")
565 (license license:gpl3+)))
566
567 (define dbus-glib
568 (package
569 (name "dbus-glib")
570 (version "0.110")
571 (source (origin
572 (method url-fetch)
573 (uri
574 (string-append "https://dbus.freedesktop.org/releases/dbus-glib/dbus-glib-"
575 version ".tar.gz"))
576 (sha256
577 (base32
578 "09g8swvc95bk1z6j8sw463p2v0dqmgm2zjfndf7i8sbcyq67dr3w"))))
579 (build-system gnu-build-system)
580 (propagated-inputs ; according to dbus-glib-1.pc
581 `(("dbus" ,dbus)
582 ("glib" ,glib)))
583 (inputs
584 `(("expat" ,expat)))
585 (native-inputs
586 `(("glib" ,glib "bin")
587 ("pkg-config" ,pkg-config)))
588 (home-page "https://dbus.freedesktop.org/doc/dbus-glib/")
589 (synopsis "D-Bus GLib bindings")
590 (description
591 "GLib bindings for D-Bus. The package is obsolete and superseded
592 by GDBus included in Glib.")
593 (license license:gpl2))) ; or Academic Free License 2.1
594
595 (define libsigc++
596 (package
597 (name "libsigc++")
598 (version "2.10.3")
599 (source (origin
600 (method url-fetch)
601 (uri (string-append "mirror://gnome/sources/libsigc++/"
602 (version-major+minor version) "/"
603 name "-" version ".tar.xz"))
604 (sha256
605 (base32
606 "11j7j1jv4z58d9s7jvl42fnqa1dzl4idgil9r45cjv1w673dys0b"))))
607 (build-system gnu-build-system)
608 (native-inputs `(("pkg-config" ,pkg-config)
609 ("m4" ,m4)))
610 (home-page "https://libsigcplusplus.github.io/libsigcplusplus/")
611 (synopsis "Type-safe callback system for standard C++")
612 (description
613 "Libsigc++ implements a type-safe callback system for standard C++. It
614 allows you to define signals and to connect those signals to any callback
615 function, either global or a member function, regardless of whether it is
616 static or virtual.
617
618 It also contains adaptor classes for connection of dissimilar callbacks and
619 has an ease of use unmatched by other C++ callback libraries.")
620 (license license:lgpl2.1+)))
621
622 (define glibmm
623 (package
624 (name "glibmm")
625 (version "2.62.0")
626 (source (origin
627 (method url-fetch)
628 (uri (string-append "mirror://gnome/sources/glibmm/"
629 (version-major+minor version)
630 "/glibmm-" version ".tar.xz"))
631 (sha256
632 (base32
633 "1ziwx6r7k7wbvg4qq1rgrv8zninapgrmhn1hs6926a3krh9ryr9n"))))
634 (build-system gnu-build-system)
635 (arguments
636 `(#:phases
637 (modify-phases %standard-phases
638 (add-before 'build 'pre-build
639 (lambda _
640 ;; This test uses /etc/fstab as an example file to read
641 ;; from; choose a better example.
642 (substitute* "tests/giomm_simple/main.cc"
643 (("/etc/fstab")
644 (string-append (getcwd)
645 "/tests/giomm_simple/main.cc")))
646
647 ;; This test does a DNS lookup, and then expects to be able
648 ;; to open a TLS session; just skip it.
649 (substitute* "tests/giomm_tls_client/main.cc"
650 (("Gio::init.*$")
651 "return 77;\n"))
652 #t)))))
653 (native-inputs `(("pkg-config" ,pkg-config)
654 ("glib" ,glib "bin")))
655 (propagated-inputs
656 `(("libsigc++" ,libsigc++)
657 ("glib" ,glib)))
658 (home-page "https://gtkmm.org/")
659 (synopsis "C++ interface to the GLib library")
660 (description
661 "Glibmm provides a C++ programming interface to the part of GLib that are
662 useful for C++.")
663 (license license:lgpl2.1+)))
664
665 (define-public glibmm-2.64
666 (package
667 (inherit glibmm)
668 (name "glibmm")
669 (version "2.64.2")
670 (source
671 (origin
672 (method url-fetch)
673 (uri
674 (string-append "mirror://gnome/sources/glibmm/"
675 (version-major+minor version)
676 "/glibmm-" version ".tar.xz"))
677 (sha256
678 (base32 "1v6lp23fr2qh4zshcnm28sn29j3nzgsvcqj2nhmrnvamipjq4lm7"))))
679 (propagated-inputs
680 `(("libsigc++" ,libsigc++)
681 ("glib" ,glib)))))
682
683 (define-public python2-pygobject-2
684 (package
685 (name "python2-pygobject")
686 ;; This was the last version to declare the 2.0 platform number, i.e. its
687 ;; pkg-config files were named pygobject-2.0.pc
688 (version "2.28.7")
689 (source
690 (origin
691 (method url-fetch)
692 (uri (string-append "mirror://gnome/sources/pygobject/"
693 (version-major+minor version)
694 "/pygobject-" version ".tar.xz"))
695 (sha256
696 (base32
697 "0nkam61rsn7y3wik3vw46wk5q2cjfh2iph57hl9m39rc8jijb7dv"))
698 (patches (search-patches
699 "python2-pygobject-2-gi-info-type-error-domain.patch"))))
700 (build-system gnu-build-system)
701 (native-inputs
702 `(("which" ,which)
703 ("glib-bin" ,glib "bin") ;for tests: glib-compile-schemas
704 ("pkg-config" ,pkg-config)
705 ("dbus" ,dbus))) ;for tests
706 (inputs
707 `(("python" ,python-2)
708 ("glib" ,glib)
709 ("python2-pycairo" ,python2-pycairo)
710 ("gobject-introspection" ,gobject-introspection)))
711 (propagated-inputs
712 `(("libffi" ,libffi))) ;mentioned in pygobject-2.0.pc
713 (arguments
714 `(#:tests? #f ;segfaults during tests
715 #:configure-flags '("LIBS=-lcairo-gobject")))
716 (home-page "https://pypi.org/project/PyGObject/")
717 (synopsis "Python bindings for GObject")
718 (description
719 "Python bindings for GLib, GObject, and GIO.")
720 (license license:lgpl2.1+)))
721
722 (define-public python-pygobject
723 (package
724 (name "python-pygobject")
725 (version "3.34.0")
726 (source
727 (origin
728 (method url-fetch)
729 (uri (string-append "mirror://gnome/sources/pygobject/"
730 (version-major+minor version)
731 "/pygobject-" version ".tar.xz"))
732 (sha256
733 (base32
734 "06i7ynnbvgpz0gw09zsjbvhgcp5qz4yzdifw27qjwdazg2mckql7"))
735 (modules '((guix build utils)))
736 (snippet
737 '(begin
738 ;; We disable these tests in a snippet so that they are inherited
739 ;; by the Python 2 variant which is built differently.
740 (with-directory-excursion "tests"
741 ;; FIXME: These tests require Gdk and/or Gtk 4.
742 (for-each delete-file
743 '("test_atoms.py" "test_overrides_gtk.py"))
744 #t)))))
745 (build-system meson-build-system)
746 (native-inputs
747 `(("glib-bin" ,glib "bin")
748 ("pkg-config" ,pkg-config)
749 ("python-pytest" ,python-pytest)))
750 (inputs
751 `(("python" ,python)
752 ("python-pycairo" ,python-pycairo)
753 ("gobject-introspection" ,gobject-introspection)))
754 (propagated-inputs
755 ;; pygobject-3.0.pc refers to all these.
756 `(("glib" ,glib)
757 ("libffi" ,libffi)))
758 ;; For finding typelib files, since gobject-introscpetion isn't propagated.
759 (native-search-paths (package-native-search-paths gobject-introspection))
760 (home-page "https://live.gnome.org/PyGObject")
761 (synopsis "Python bindings for GObject")
762 (description
763 "Python bindings for GLib, GObject, and GIO.")
764 (license license:lgpl2.1+)
765 (properties `((python2-variant . ,(delay python2-pygobject))))))
766
767 (define-public python2-pygobject
768 (package (inherit (strip-python2-variant python-pygobject))
769 (name "python2-pygobject")
770
771 ;; Note: We use python-build-system here, because Meson only supports
772 ;; Python 3, and needs PYTHONPATH etc set up correctly, which makes it
773 ;; difficult to use for Python 2 projects.
774 (build-system python-build-system)
775 (arguments
776 `(#:python ,python-2
777 #:phases
778 (modify-phases %standard-phases
779 (add-after 'unpack 'delete-broken-tests
780 (lambda _
781 ;; FIXME: this test freezes and times out.
782 (delete-file "tests/test_mainloop.py")
783 ;; FIXME: this test fails with this kind of error:
784 ;; AssertionError: <Handlers.SIG_IGN: 1> != <built-in function default_int_handler
785 (delete-file "tests/test_ossig.py")
786 #t)))))
787 (inputs
788 `(("python-pycairo" ,python2-pycairo)
789 ("gobject-introspection" ,gobject-introspection)))
790 (native-inputs
791 `(("glib-bin" ,glib "bin")
792 ("pkg-config" ,pkg-config)
793 ("python-pytest" ,python2-pytest)))))
794
795 (define-public perl-glib
796 (package
797 (name "perl-glib")
798 (version "1.3292")
799 (source (origin
800 (method url-fetch)
801 (uri (string-append
802 "mirror://cpan/authors/id/X/XA/XAOC/Glib-"
803 version ".tar.gz"))
804 (sha256
805 (base32
806 "1q5075d6v2g5sm675hyzrcpxsrh09z83crfci8b0wl3jwmnz0frg"))))
807 (build-system perl-build-system)
808 (native-inputs
809 `(("perl-extutils-depends" ,perl-extutils-depends)
810 ("perl-extutils-pkgconfig" ,perl-extutils-pkgconfig)))
811 (inputs
812 `(("glib" ,glib)))
813 (home-page "https://metacpan.org/release/Glib")
814 (synopsis "Perl wrappers for the GLib utility and Object libraries")
815 (description "This module provides perl access to GLib and GLib's GObject
816 libraries. GLib is a portability and utility library; GObject provides a
817 generic type system with inheritance and a powerful signal system. Together
818 these libraries are used as the foundation for many of the libraries that make
819 up the Gnome environment, and are used in many unrelated projects.")
820 (license license:lgpl2.1+)))
821
822 (define telepathy-glib
823 (package
824 (name "telepathy-glib")
825 (version "0.24.1")
826 (source
827 (origin
828 (method url-fetch)
829 (uri
830 (string-append
831 "https://telepathy.freedesktop.org/releases/telepathy-glib/"
832 "telepathy-glib-" version ".tar.gz"))
833 (sha256
834 (base32
835 "1symyzbjmxvksn2ifdkk50lafjm2llf2sbmky062gq2pz3cg23cy"))
836 (patches
837 (list
838 (search-patch "telepathy-glib-channel-memory-leak.patch")
839 ;; Don't use the same test name for multiple tests.
840 ;; <https://bugs.freedesktop.org/show_bug.cgi?id=92245>
841 (origin
842 (method url-fetch)
843 (uri "https://bugs.freedesktop.org/attachment.cgi?id=118608")
844 (file-name (string-append "telepathy-glib-duplicate-tests.patch"))
845 (sha256
846 (base32
847 "0z261fwrszxb28ccg3hsg9rizig4s84zvwmx6y31a4pyv7bvs5w3")))))))
848 (build-system gnu-build-system)
849 (arguments
850 '(#:configure-flags '("--enable-vala-bindings")
851
852 ;; '../tools/glib-*.py' generate files but the target dependencies are
853 ;; (presumably) not fully specified in the makefile, leading to
854 ;; parallel build errors like:
855 ;;
856 ;; EOFError: EOF read where object expected
857 ;; make[2]: *** [Makefile:1906: _gen/register-dbus-glib-marshallers-body.h] Error 1
858 #:parallel-build? #f
859 #:phases
860 (modify-phases %standard-phases
861 (add-after 'unpack 'disable-failing-tests
862 (lambda _
863 ;; None of the tests below are able to find the org.gtk.vfs.Daemon
864 ;; service file provided by gvfs.
865 (substitute* "tests/dbus/Makefile.in"
866 (("test-contacts\\$\\(EXEEXT\\)") "")
867 (("test-file-transfer-channel\\$\\(EXEEXT\\)") "")
868 (("test-stream-tube\\$\\(EXEEXT\\)") ""))
869 #t)))))
870 (native-inputs
871 `(("glib" ,glib "bin") ; uses glib-mkenums
872 ("gobject-introspection" ,gobject-introspection)
873 ("pkg-config" ,pkg-config)
874 ("python" ,python-2)
875 ("vala" ,vala)
876 ("xsltproc" ,libxslt)))
877 (propagated-inputs
878 ;; There are all in the Requires.private field of telepathy-glib.pc.
879 `(("dbus" ,dbus)
880 ("dbus-glib" ,dbus-glib)
881 ("glib" ,glib)))
882 (home-page "https://telepathy.freedesktop.org/wiki/")
883 (synopsis "GLib Real-time communications framework over D-Bus")
884 (description "Telepathy is a flexible, modular communications framework
885 that enables real-time communication over D-Bus via pluggable protocol
886 backends. Telepathy is a communications service that can be accessed by
887 many applications simultaneously.
888
889 This package provides the library for GLib applications.")
890 (license license:lgpl2.1+)))
891
892 (define-public dbus-c++
893 (package
894 (name "dbus-c++")
895 (version "0.9.0")
896 (source (origin
897 (method url-fetch)
898 (uri
899 (string-append
900 "mirror://sourceforge/dbus-cplusplus/dbus-c%2B%2B/"
901 version "/libdbus-c%2B%2B-" version ".tar.gz"))
902 (file-name (string-append name "-" version ".tar.gz"))
903 (patches (search-patches "dbus-c++-gcc-compat.patch"
904 "dbus-c++-threading-mutex.patch"))
905 (sha256
906 (base32
907 "0qafmy2i6dzx4n1dqp6pygyy6gjljnb7hwjcj2z11c1wgclsq4dw"))))
908 (build-system gnu-build-system)
909 (propagated-inputs
910 `(("dbus" ,dbus))) ;mentioned in the pkg-config file
911 (inputs
912 `(("efl" ,efl)
913 ("expat" ,expat)
914 ("glib" ,glib)))
915 (native-inputs
916 `(("pkg-config" ,pkg-config)))
917 (arguments
918 `(;; The 'configure' machinery fails to detect that it needs -lpthread.
919 #:configure-flags (list "LDFLAGS=-lpthread")
920 #:phases
921 (modify-phases %standard-phases
922 (add-before 'configure 'add-missing-header
923 (lambda _
924 (substitute* "include/dbus-c++/eventloop-integration.h"
925 (("#include <errno.h>")
926 "#include <errno.h>\n#include <unistd.h>"))
927 #t)))))
928 (synopsis "D-Bus API for C++")
929 (description "This package provides D-Bus client API bindings for the C++
930 programming language. It also contains the utility
931 @command{dbuscxx-xml2cpp}.")
932 (home-page "https://sourceforge.net/projects/dbus-cplusplus/")
933 (license license:lgpl2.1+)))
934
935 (define-public appstream-glib
936 (package
937 (name "appstream-glib")
938 (version "0.7.18")
939 (source (origin
940 (method url-fetch)
941 (uri (string-append "https://people.freedesktop.org/~hughsient/"
942 "appstream-glib/releases/"
943 "appstream-glib-" version ".tar.xz"))
944 (sha256
945 (base32
946 "00j0kkgf224nzmrha72g8pd72mymhph7vaisj35i4ffy7cpd47na"))))
947 (build-system meson-build-system)
948 (native-inputs
949 `(("gettext" ,gettext-minimal)
950 ("glib:bin" ,glib "bin") ; for glib-compile-resources
951 ("pkg-config" ,pkg-config)))
952 (propagated-inputs
953 `(("gcab" ,gcab) ; for .pc file
954 ("gdk-pixbuf" ,gdk-pixbuf) ; for .pc file
955 ("libuuid" ,util-linux "lib"))) ; for .pc file
956 (inputs
957 `(("glib" ,glib)
958 ("gperf" ,gperf)
959 ("gtk+" ,gtk+)
960 ("json-glib" ,json-glib)
961 ("libarchive" ,libarchive)
962 ("libsoup" ,libsoup)))
963 (arguments
964 `(#:configure-flags
965 (list "-Ddep11=false"
966 "-Dintrospection=false" ; avoid g-ir-scanner dependency
967 "-Drpm=false"
968 "-Dstemmer=false")
969 #:phases
970 (modify-phases %standard-phases
971 (add-after 'unpack 'patch-tests
972 (lambda _
973 (substitute* "libappstream-glib/as-self-test.c"
974 (("g_test_add_func.*as_test_store_local_appdata_func);") ""))
975 #t)))))
976 (home-page "https://github.com/hughsie/appstream-glib")
977 (synopsis "Library for reading and writing AppStream metadata")
978 (description "This library provides objects and helper methods to help
979 reading and writing @uref{https://www.freedesktop.org/wiki/Distributions/AppStream,AppStream}
980 metadata.")
981 (license license:lgpl2.1+)))
982
983 (define perl-net-dbus
984 (package
985 (name "perl-net-dbus")
986 (version "1.1.0")
987 (source
988 (origin
989 (method url-fetch)
990 (uri (string-append "mirror://cpan/authors/id/D/DA/DANBERR/Net-DBus-"
991 version ".tar.gz"))
992 (sha256
993 (base32
994 "0sg2w147b9r9ykfzjs7y9qxry73xkjnhnk4qf95kfv79p5nnk4c3"))))
995 (build-system perl-build-system)
996 (native-inputs
997 `(("pkg-config" ,pkg-config)
998 ("perl-test-pod" ,perl-test-pod)
999 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
1000 (inputs
1001 `(("dbus" ,dbus)))
1002 (propagated-inputs
1003 `(("perl-xml-twig" ,perl-xml-twig)))
1004 (home-page "https://metacpan.org/release/Net-DBus")
1005 (synopsis "Extension for the DBus bindings")
1006 (description "@code{Net::DBus} provides a Perl XS API to the DBus
1007 inter-application messaging system. The Perl API covers the core base level
1008 of the DBus APIs, not concerning itself yet with the GLib or QT wrappers.")
1009 (license license:perl-license)))
1010
1011 (define perl-net-dbus-glib
1012 (package
1013 (name "perl-net-dbus-glib")
1014 (version "0.33.0")
1015 (source
1016 (origin
1017 (method url-fetch)
1018 (uri (string-append "mirror://cpan/authors/id/D/DA/DANBERR/"
1019 "Net-DBus-GLib-" version ".tar.gz"))
1020 (sha256
1021 (base32
1022 "1z4mbv8z0rad604xahijpg5szzi8qak07hbahh230z4jf96fkxvj"))))
1023 (build-system perl-build-system)
1024 (native-inputs
1025 `(("pkg-config" ,pkg-config)))
1026 (inputs
1027 `(("dbus-glib" ,dbus-glib)))
1028 (home-page "https://metacpan.org/release/Net-DBus-GLib")
1029 (synopsis "Perl extension for the DBus GLib bindings")
1030 (description "This package provides an extension to the @code{Net::DBus}
1031 module allowing integration with the GLib mainloop. To integrate with the
1032 main loop, simply get a connection to the bus via the methods in
1033 @code{Net::DBus::GLib} rather than the usual @code{Net::DBus} module. Every
1034 other API remains the same.")
1035 (license license:gpl2+)))
1036
1037 (define-public template-glib
1038 (package
1039 (name "template-glib")
1040 (version "3.34.0")
1041 (source (origin
1042 (method url-fetch)
1043 (uri (string-append "mirror://gnome/sources/" name "/"
1044 (version-major+minor version) "/"
1045 name "-" version ".tar.xz"))
1046 (sha256
1047 (base32
1048 "1z9xkin5fyfh071ma9y045jcw83hgx33dfbjraw6cxk0qdmfysr1"))))
1049 (build-system meson-build-system)
1050 (arguments
1051 `(#:configure-flags '("-D" "enable_gtk_doc=true")))
1052 (inputs
1053 `(("gettext" ,gettext-minimal)
1054 ("glib" ,glib)
1055 ("gobject-introspection" ,gobject-introspection)))
1056 (native-inputs
1057 `(("bison" ,bison)
1058 ("flex" ,flex)
1059 ("glib:bin" ,glib "bin") ;; For glib-mkenums
1060 ("gtk-doc" ,gtk-doc)
1061 ("pkg-config" ,pkg-config)
1062 ("vala" ,vala)))
1063 (home-page "https://gitlab.gnome.org/GNOME/template-glib")
1064 (synopsis "Library for template expansion")
1065 (description
1066 "Template-GLib is a library to help you generate text based on a template and
1067 user defined state. Template-GLib does not use a language runtime, so it is
1068 safe to use from any GObject-Introspectable language.
1069
1070 Template-GLib allows you to access properties on GObjects as well as call
1071 simple methods via GObject-Introspection.")
1072 (license license:lgpl2.1+)))
1073
1074 (define-public xdg-dbus-proxy
1075 (package
1076 (name "xdg-dbus-proxy")
1077 (version "0.1.2")
1078 (source (origin
1079 (method url-fetch)
1080 (uri (string-append "https://github.com/flatpak/xdg-dbus-proxy"
1081 "/releases/download/" version
1082 "/xdg-dbus-proxy-" version ".tar.xz"))
1083 (sha256
1084 (base32
1085 "03sj1h0c2l08xa8phw013fnxr4fgav7l2mkjhzf9xk3dykwxcj8p"))))
1086 (build-system gnu-build-system)
1087 (native-inputs
1088 `(("pkg-config" ,pkg-config)
1089
1090 ;; For tests.
1091 ("dbus" ,dbus)
1092
1093 ;; These are required to build the manual.
1094 ("docbook-xml" ,docbook-xml-4.3)
1095 ("docbook-xsl" ,docbook-xsl)
1096 ("libxml2" ,libxml2)
1097 ("xsltproc" ,libxslt)))
1098 (inputs
1099 `(("glib" ,glib)))
1100 (home-page "https://github.com/flatpak/xdg-dbus-proxy")
1101 (synopsis "D-Bus connection proxy")
1102 (description
1103 "xdg-dbus-proxy is a filtering proxy for D-Bus connections. It can be
1104 used to create D-Bus sockets inside a Linux container that forwards requests
1105 to the host system, optionally with filters applied.")
1106 (license license:lgpl2.1+)))
1107
1108 (define-public dbus-test-runner
1109 (package
1110 (name "dbus-test-runner")
1111 (version "19.04.0")
1112 (source (origin
1113 (method url-fetch)
1114 (uri (string-append
1115 "https://launchpad.net/dbus-test-runner/"
1116 (version-major+minor version) "/" version
1117 "/+download/dbus-test-runner-" version ".tar.gz"))
1118 (sha256
1119 (base32
1120 "0xnbay58xn0hav208mdsg8dd176w57dcpw1q2k0g5fh9v7xk4nk4"))))
1121 (build-system gnu-build-system)
1122 (arguments
1123 `(#:phases
1124 (modify-phases %standard-phases
1125 (add-before 'configure 'fix-test-paths
1126 ;; add missing space
1127 (lambda* (#:key outputs #:allow-other-keys)
1128 (substitute* "Makefile.in"
1129 (("#!/bin/bash") (string-append "#!" (which "bash"))))
1130 (substitute* "tests/Makefile.in"
1131 (("/bin/sh") (which "sh"))
1132 (("#!/bin/bash") (string-append "#!" (which "bash")))
1133 (("echo cat") (string-append "echo " (which "cat")))
1134 (("/bin/true") (which "true")))
1135 #t)))))
1136 (inputs
1137 `(("gtk+" ,gtk+)
1138 ("glib" ,glib)
1139 ("dbus-glib" ,dbus-glib)))
1140 (native-inputs
1141 `(("glib:bin" ,glib "bin")
1142 ("intltool" ,intltool)
1143 ("pkg-config" ,pkg-config)
1144 ;; following used for tests
1145 ("python" ,python)
1146 ("python-dbusmock" ,python-dbusmock)
1147 ("xvfb" ,xorg-server-for-tests)))
1148 (home-page "https://launchpad.net/dbus-test-runner")
1149 (synopsis "Run a executables under a new DBus session for testing")
1150 (description "A small little utility to run a couple of executables under a
1151 new DBus session for testing.")
1152 (license license:gpl3)))