me
/
guix
Archived
1
0
Fork 0

gnu: dee: Remove patch-docbook-xml phase.

* gnu/packages/gnome.scm (dee) [arguments]: Remove patch-docbook-xml
phase.  Use gexps.
[native-inputs]: Remove labels.  Add libxml2.
[inputs]: Remove labels.
master
Maxim Cournoyer 2023-04-20 15:53:42 -04:00
parent adbd08e010
commit 6cc1c11d0a
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 39 additions and 49 deletions

View File

@ -627,31 +627,22 @@ of writing test cases for asynchronous interactions.")
(build-system glib-or-gtk-build-system)
(outputs '("out" "doc"))
(arguments
`(#:configure-flags
(list
"--disable-maintainer-flags"
(list #:configure-flags
#~(list "--disable-maintainer-flags"
(string-append "--with-pygi-overrides-dir="
(assoc-ref %outputs "out")
"/lib/python"
,(version-major+minor
#$output "/lib/python"
#$(version-major+minor
(package-version python))
"/site-packages/gi/overrides")
(string-append "--with-html-dir="
(assoc-ref %outputs "doc")
"/share/gtk-doc/html"))
#$output "/share/gtk-doc/html"))
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'patch-docbook-xml
(lambda* (#:key inputs #:allow-other-keys)
(with-directory-excursion "doc/reference/dee-1.0"
(substitute* "dee-1.0-docs.sgml"
(("http://www.oasis-open.org/docbook/xml/4.3/")
(string-append (assoc-ref inputs "docbook-xml")
"/xml/dtd/docbook/"))))))
(add-after 'patch-docbook-xml 'disable-failing-tests
#~(modify-phases %standard-phases
(add-after 'unpack 'disable-failing-tests
(lambda _
(substitute* "tests/test-icu.c"
(("g_test_add \\(DOMAIN\"/Default/AsciiFolder\", Fixture, 0,")
(("g_test_add \\(DOMAIN\"/Default/AsciiFolder\",\
Fixture, 0,")
"")
(("setup, test_ascii_folder, teardown\\);")
""))))
@ -662,21 +653,20 @@ of writing test cases for asynchronous interactions.")
;; For missing '/etc/machine-id'.
(setenv "DBUS_FATAL_WARNINGS" "0"))))))
(native-inputs
`(("dbus" ,dbus)
("dbus-test-runner" ,dbus-test-runner)
("docbook-xml" ,docbook-xml-4.3)
("gobject-introspection" ,gobject-introspection)
("gtk-doc" ,gtk-doc/stable)
(list dbus
dbus-test-runner
docbook-xml-4.3
gobject-introspection
gtk-doc/stable
;; Would only be required by configure flag "--enable-extended-tests".
;("gtx" ,gtx)
("pkg-config" ,pkg-config)
("pygobject" ,python-pygobject)
("python" ,python-wrapper)
("vala" ,vala-0.52)))
(inputs
`(("icu" ,icu4c)))
(propagated-inputs
(list glib))
;;gtx
libxml2 ;for XML_CATALOG_FILES
pkg-config
python-pygobject
python-wrapper
vala-0.52))
(inputs (list icu4c))
(propagated-inputs (list glib))
(synopsis "Model to synchronize multiple instances over DBus")
(description "Dee is a library that uses DBus to provide objects allowing
you to create Model-View-Controller type programs across DBus. It also consists