me
/
guix
Archived
1
0
Fork 0

gnu: gfbgraph: Update to 0.2.5 and enable tests.

* gnu/packages/gnome.scm (gfbgraph): Update to 0.2.5.
[tests?]: Delete argument.
[configure-flags]: Remove "--enable-gtk-doc" and "--enable-introspection",
which are correctly automatically detected.
[native-inputs]: Remove autoconf, automake, libtool and which.
[inputs]: Remove labels.
master
Maxim Cournoyer 2022-09-10 02:13:25 -04:00
parent e8de035b95
commit b83ce22d3e
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 7 additions and 15 deletions

View File

@ -10388,7 +10388,7 @@ compiled.")
(define-public gfbgraph (define-public gfbgraph
(package (package
(name "gfbgraph") (name "gfbgraph")
(version "0.2.4") (version "0.2.5")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append (uri (string-append
@ -10397,26 +10397,18 @@ compiled.")
"gfbgraph-" version ".tar.xz")) "gfbgraph-" version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"0yck7dwvjk16a52nafjpi0a39rxwmg0w833brj45acz76lgkjrb0")))) "1qq3cryhby50xms8zh4s6fmw5p0i7dpg1wvsz5ni78cbyyrq3cww"))))
(build-system glib-or-gtk-build-system) (build-system glib-or-gtk-build-system)
(arguments (arguments
`(#:tests? #f ; tests appear to require the network `(#:configure-flags '("--disable-static")))
#:configure-flags '("--disable-static"
"--enable-gtk-doc"
"--enable-introspection")))
(native-inputs (native-inputs
(list gobject-introspection (list gobject-introspection
gtk-doc/stable gtk-doc/stable
pkg-config pkg-config))
;; The 0.2.4 release tarball isn't bootstrapped.
autoconf
automake
libtool
which))
(inputs (inputs
`(("json-glib" ,json-glib) (list gnome-online-accounts
("gnome-online-accounts" ,gnome-online-accounts) json-glib
("rest" ,rest))) rest))
(synopsis "GLib/GObject wrapper for the Facebook API") (synopsis "GLib/GObject wrapper for the Facebook API")
(description "This library allows you to use the Facebook API from (description "This library allows you to use the Facebook API from
GLib/GObject code.") GLib/GObject code.")