mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: libpeas: Update to 1.36.0.
* gnu/packages/gnome.scm (libpeas): Update to 1.36.0. [arguments]: Convert to G-Expressions. [#:configure-flags]: Add -Dvapi=true and -Dgtk_doc=true. [native-inputs]: Add gi-docgen and vala. [propagated-inputs]: Add glib. Change-Id: I04f726d14662b5db17e3724ca482dc8402cee67b Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
28a5b4f214
commit
d77e9e4420
1 changed files with 20 additions and 16 deletions
|
@ -3078,7 +3078,7 @@ some form of information without getting in the user's way.")
|
||||||
(define-public libpeas
|
(define-public libpeas
|
||||||
(package
|
(package
|
||||||
(name "libpeas")
|
(name "libpeas")
|
||||||
(version "1.32.0")
|
(version "1.36.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -3087,21 +3087,23 @@ some form of information without getting in the user's way.")
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"03ixrhfkywcb409dd0hybyb6i291phwy8si4kc17g29fl07m49fn"))))
|
"0k3v4c9xs7pxpckkagl9ba70nlxl2n23w6ixc8bqd3ndrk1bjz19"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
(list
|
||||||
(modify-phases %standard-phases
|
#:configure-flags #~'("-Dvapi=true" "-Dgtk_doc=true")
|
||||||
(add-before 'check 'start-xserver
|
#:phases
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
#~(modify-phases %standard-phases
|
||||||
(let ((disp ":1"))
|
(add-before 'check 'start-xserver
|
||||||
(setenv "DISPLAY" disp)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(setenv "XDG_CACHE_HOME" "/tmp/xdg-cache")
|
(let ((disp ":1"))
|
||||||
(setenv "XDG_CONFIG_HOME" "/tmp")
|
(setenv "DISPLAY" disp)
|
||||||
;; Tests require a running X server.
|
(setenv "XDG_CACHE_HOME" "/tmp/xdg-cache")
|
||||||
(system (format #f "~a ~a &"
|
(setenv "XDG_CONFIG_HOME" "/tmp")
|
||||||
(search-input-file inputs "bin/Xvfb")
|
;; Tests require a running X server.
|
||||||
disp))))))))
|
(system (format #f "~a ~a &"
|
||||||
|
(search-input-file inputs "bin/Xvfb")
|
||||||
|
disp))))))))
|
||||||
(inputs
|
(inputs
|
||||||
(list gtk+
|
(list gtk+
|
||||||
glade3
|
glade3
|
||||||
|
@ -3110,12 +3112,14 @@ some form of information without getting in the user's way.")
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config
|
(list pkg-config
|
||||||
gettext-minimal
|
gettext-minimal
|
||||||
|
gi-docgen
|
||||||
`(,glib "bin")
|
`(,glib "bin")
|
||||||
gobject-introspection
|
gobject-introspection
|
||||||
xorg-server-for-tests))
|
xorg-server-for-tests
|
||||||
|
vala))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
;; The .pc file "Requires" gobject-introspection.
|
;; The .pc file "Requires" gobject-introspection.
|
||||||
(list gobject-introspection))
|
(list glib gobject-introspection))
|
||||||
(home-page "https://wiki.gnome.org/Projects/Libpeas")
|
(home-page "https://wiki.gnome.org/Projects/Libpeas")
|
||||||
(synopsis "GObject plugin system")
|
(synopsis "GObject plugin system")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue