gnu: guile-g-golf: Update to 0.8.0-a.1.
* gnu/packages/guile-xyz.scm (guile-g-golf): Update to 0.8.0-a.1. [arguments]: Add #:parallel-build? #f. [inputs]: Replace glib with glib-next. [propagated-inputs]: Replace gobject-introspection with gobject-introspection-next. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
96cb7b06bd
commit
145ad41ef3
1 changed files with 79 additions and 80 deletions
|
@ -2235,25 +2235,24 @@ capabilities.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public guile-g-golf
|
(define-public guile-g-golf
|
||||||
(let ((commit "1824633d37da3794f349d6829e9dac2cf89adaa8")
|
|
||||||
(revision "1010"))
|
|
||||||
(package
|
(package
|
||||||
(name "guile-g-golf")
|
(name "guile-g-golf")
|
||||||
(version (git-version "0.1.0" revision commit))
|
(version "0.8.0-a.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://git.savannah.gnu.org/git/g-golf.git")
|
(url "https://git.savannah.gnu.org/git/g-golf.git")
|
||||||
(commit commit)))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0ncpqv6pbsx9fjmdzvzbjljnhqgw9pynqy9vr9aq35nb7rzrhfdf"))))
|
(base32 "1lszlssa6k8dhhya5px271gfzas7fyy1iwjqmlxibz5vdirzi565"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
#~(list "--with-guile-site=no")
|
#~(list "--with-guile-site=no")
|
||||||
|
#:parallel-build? #f
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'fix-guile-site-directory
|
(add-after 'unpack 'fix-guile-site-directory
|
||||||
|
@ -2297,7 +2296,7 @@ capabilities.")
|
||||||
(setenv "DISPLAY" ":1")
|
(setenv "DISPLAY" ":1")
|
||||||
#t)))))
|
#t)))))
|
||||||
(inputs
|
(inputs
|
||||||
(list guile-3.0 guile-lib glib))
|
(list guile-3.0 guile-lib glib-next))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list autoconf
|
(list autoconf
|
||||||
automake
|
automake
|
||||||
|
@ -2310,7 +2309,7 @@ capabilities.")
|
||||||
clutter
|
clutter
|
||||||
xorg-server-for-tests))
|
xorg-server-for-tests))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list gobject-introspection))
|
(list gobject-introspection-next))
|
||||||
(home-page "https://www.gnu.org/software/g-golf/")
|
(home-page "https://www.gnu.org/software/g-golf/")
|
||||||
(synopsis "Guile bindings for GObject Introspection")
|
(synopsis "Guile bindings for GObject Introspection")
|
||||||
(description
|
(description
|
||||||
|
@ -2319,7 +2318,7 @@ modern applications in Guile Scheme. It comprises a direct binding to the
|
||||||
GObject Introspection API and higher-level functionality for importing Gnome
|
GObject Introspection API and higher-level functionality for importing Gnome
|
||||||
libraries and making GObject classes (and methods) available in Guile's
|
libraries and making GObject classes (and methods) available in Guile's
|
||||||
object-oriented programming system, GOOPS.")
|
object-oriented programming system, GOOPS.")
|
||||||
(license license:lgpl3+))))
|
(license license:lgpl3+)))
|
||||||
|
|
||||||
(define-public g-golf
|
(define-public g-golf
|
||||||
(deprecated-package "g-golf" guile-g-golf))
|
(deprecated-package "g-golf" guile-g-golf))
|
||||||
|
|
Reference in a new issue