gnu: vala: Update to 0.50.3.
* gnu/packages/gnome.scm (vala): Update to 0.50.3. Delete trailing #t. [phases]{pre-check}: Adjust for file renaming. No longer set the DBUS_FATAL_WARNINGS environment variable. (vala-0.50): Remove variable. * gnu/packages/gnome-xyz.scm (vala-language-server): Adjust.master
parent
fc17dd9eba
commit
7afdd8da58
|
@ -850,7 +850,7 @@ track stocks, currencies and cryptocurrencies.")
|
||||||
("json-glib" ,json-glib)
|
("json-glib" ,json-glib)
|
||||||
("jsonrpc-glib" ,jsonrpc-glib)
|
("jsonrpc-glib" ,jsonrpc-glib)
|
||||||
("libgee" ,libgee)
|
("libgee" ,libgee)
|
||||||
("vala" ,vala-0.50)))
|
("vala" ,vala)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("pkg-config" ,pkg-config)))
|
||||||
(home-page "https://github.com/benwaffle/vala-language-server")
|
(home-page "https://github.com/benwaffle/vala-language-server")
|
||||||
|
|
|
@ -4264,15 +4264,15 @@ passwords in the GNOME keyring.")
|
||||||
(define-public vala
|
(define-public vala
|
||||||
(package
|
(package
|
||||||
(name "vala")
|
(name "vala")
|
||||||
(version "0.46.5")
|
(version "0.50.3")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
(uri (string-append "mirror://gnome/sources/vala/"
|
||||||
(version-major+minor version) "/"
|
(version-major+minor version) "/"
|
||||||
name "-" version ".tar.xz"))
|
"vala-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"07fv895sp9wq74b20qig7hic0r4ynrr5pfaqba02r44xb794fy0s"))))
|
"1nx5xjarpkl9hgy0qbqfczx7d7clh5g1r8xr5xp8b97c5fsc2rb1"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(#:phases
|
||||||
|
@ -4280,12 +4280,10 @@ passwords in the GNOME keyring.")
|
||||||
(add-before 'check 'pre-check
|
(add-before 'check 'pre-check
|
||||||
(lambda _
|
(lambda _
|
||||||
(setenv "CC" "gcc")
|
(setenv "CC" "gcc")
|
||||||
(substitute* "valadoc/tests/testrunner.sh"
|
(substitute* "valadoc/tests/libvaladoc\
|
||||||
|
/tests-extra-environment.sh"
|
||||||
(("export PKG_CONFIG_PATH=" m)
|
(("export PKG_CONFIG_PATH=" m)
|
||||||
(string-append m "$PKG_CONFIG_PATH:")))
|
(string-append m "$PKG_CONFIG_PATH:"))))))))
|
||||||
;; For missing '/etc/machine-id'.
|
|
||||||
(setenv "DBUS_FATAL_WARNINGS" "0")
|
|
||||||
#t)))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)
|
`(("pkg-config" ,pkg-config)
|
||||||
("flex" ,flex)
|
("flex" ,flex)
|
||||||
|
@ -4306,19 +4304,6 @@ requirements and without using a different ABI compared to applications and
|
||||||
libraries written in C.")
|
libraries written in C.")
|
||||||
(license license:lgpl2.1+)))
|
(license license:lgpl2.1+)))
|
||||||
|
|
||||||
(define-public vala-0.50
|
|
||||||
(package
|
|
||||||
(inherit vala)
|
|
||||||
(version "0.50.2")
|
|
||||||
(source (origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (string-append "mirror://gnome/sources/vala/"
|
|
||||||
(version-major+minor version) "/"
|
|
||||||
"vala-" version ".tar.xz"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1nnf0x6vk0a9p2y6z7jwjfvmlxh3qhj581v381r0y1sxsv35s39c"))))))
|
|
||||||
|
|
||||||
(define-public vte
|
(define-public vte
|
||||||
(package
|
(package
|
||||||
(name "vte")
|
(name "vte")
|
||||||
|
|
Reference in New Issue