gnu: guile-gi: Update to 0.0.2.

* gnu/packages/guile-xyz.scm (guile-gi): Update to 0.0.2.
[source]: Fetch using url-fetch.
[arguments]: Add make flags to remove unexpectedly passing test from
XFAIL_TESTS.
[native-inputs]: Remove autoconf, automake, and texinfo.
This commit is contained in:
Ricardo Wurmus 2019-06-17 04:50:45 +02:00
parent d1a3a8e15e
commit bb6c8f207b
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -2247,43 +2247,40 @@ list of components. This module takes care of that for you.")
(license license:lgpl3+))) (license license:lgpl3+)))
(define-public guile-gi (define-public guile-gi
(let ((commit "26e885219ae6b31a83766564a2ecfe8c4532346f")
(revision "1"))
(package (package
(name "guile-gi") (name "guile-gi")
(version (string-append "0.0.1-" revision "." (string-take commit 7))) (version "0.0.2")
(source (origin (source (origin
(method git-fetch) (method url-fetch)
(uri (git-reference (uri (string-append "http://lonelycactus.com/tarball/guile_gi-"
(url "https://github.com/spk121/guile-gi.git") version ".tar.gz"))
(commit commit)))
(file-name (string-append name "-" version))
(sha256 (sha256
(base32 (base32
"1prbzhr4sqqihb34l6yfrz6sd8nghwd3q9wvbm36jnl2n3z2nxj8")))) "0hs0viqzff7nzgcmyw721ima1jyymrlzrcycpgwrs6iprscxvqwn"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(native-inputs `(("autoconf" ,autoconf) (arguments
("automake" ,automake) `(#:configure-flags '("--with-gnu-filesystem-hierarchy")
("gettext" ,gnu-gettext) ;; The atomic_int_set test does not actually fail.
#:make-flags '("XFAIL_TESTS=strjoinv.scm")))
(native-inputs
`(("gettext" ,gnu-gettext)
("libtool" ,libtool) ("libtool" ,libtool)
("pkg-config" ,pkg-config) ("pkg-config" ,pkg-config)))
("texinfo" ,texinfo))) (propagated-inputs
(propagated-inputs `(("glib" ,glib) `(("glib" ,glib)
("gobject-introspection" ,gobject-introspection) ("gobject-introspection" ,gobject-introspection)
("gssettings-desktop-schemas" ,gsettings-desktop-schemas) ("gssettings-desktop-schemas" ,gsettings-desktop-schemas)
("gtk+" ,gtk+) ("gtk+" ,gtk+)
("guile-lib" ,guile-lib) ("guile-lib" ,guile-lib)
("webkitgtk" ,webkitgtk))) ("webkitgtk" ,webkitgtk)))
(inputs `(("guile" ,guile-2.2))) (inputs `(("guile" ,guile-2.2)))
(arguments
`(#:configure-flags '("--with-gnu-filesystem-hierarchy")))
(home-page "https://github.com/spk121/guile-gi") (home-page "https://github.com/spk121/guile-gi")
(synopsis "GObject bindings for Guile") (synopsis "GObject bindings for Guile")
(description (description
"Guile-GI is a library for Guile that allows using GObject-based "Guile-GI is a library for Guile that allows using GObject-based
libraries, such as GTK+3. Its README comes with the disclaimer: This is libraries, such as GTK+3. Its README comes with the disclaimer: This is
pre-alpha code.") pre-alpha code.")
(license license:gpl3+)))) (license license:gpl3+)))
(define-public guile-srfi-159 (define-public guile-srfi-159
(let ((commit "1bd98abda2ae4ef8f36761a167903e55c6bda7bb") (let ((commit "1bd98abda2ae4ef8f36761a167903e55c6bda7bb")