GNU bug report logs -
#44474
[PATCH 0/2] Updates to vala & vala-language-server
Previous Next
Reported by: Ryan Prior <rprior <at> protonmail.com>
Date: Fri, 6 Nov 2020 05:07:01 UTC
Severity: normal
Tags: patch
Done: Leo Famulari <leo <at> famulari.name>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 44474 in the body.
You can then email your comments to 44474 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#44474
; Package
guix-patches
.
(Fri, 06 Nov 2020 05:07:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Ryan Prior <rprior <at> protonmail.com>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Fri, 06 Nov 2020 05:07:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Well, this is awkward: we previously created the `vala-0.48` package with the
intention of making it into the new `vala` with the next Gnome update, but
that update hasn't happened and a new major version of Vala is out.while our
Gnome is still stuck on Vala 0.46.5.
The only package that depends on the newer version of Vala is
vala-language-server. So here's a couple patches that retire the vala-0.48
package, create a new vala-0.50 package, and update both vala and
vala-language-server to the latest versions.
Ryan Prior (2):
gnu: vala: Update to 0.50.1.
gnu: vala-language-server: Update to 0.48.1.
gnu/packages/gnome-xyz.scm | 6 +++---
gnu/packages/gnome.scm | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
--
2.29.2
Information forwarded
to
guix-patches <at> gnu.org
:
bug#44474
; Package
guix-patches
.
(Fri, 06 Nov 2020 05:10:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 44474 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/gnome-xyz.scm (vala-language-server): Update to 0.48.1.
---
gnu/packages/gnome-xyz.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index fa8100ef2e..77b4aada6f 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -593,7 +593,7 @@ and a few extra features.")
;; Note to maintainer: VLS must be built with a Vala toolchain the same
;; version or newer. Therefore when you update this package you may need
;; to update Vala too.
- (version "0.48")
+ (version "0.48.1")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -601,7 +601,7 @@ and a few extra features.")
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "0chgfpci247skrvsiq1l8cas8sj2z6z42dlarka3df3qwxmh0if0"))))
+ (base32 "12k095052jkvbiyz8gzkj6w7r7p16d5m18fyikl48yvh5nln8fw0"))))
(build-system meson-build-system)
(arguments '(#:glib-or-gtk? #t))
(inputs
--
2.29.2
Information forwarded
to
guix-patches <at> gnu.org
:
bug#44474
; Package
guix-patches
.
(Fri, 06 Nov 2020 05:10:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 44474 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/gnome.scm (vala-0.48): Removed variable.
* gnu/packages/gnome.scm (vala-0.50): New variable.
* gnu/packages/gnome-xyz.scm: updated vala dependency to vala-0.50.
---
gnu/packages/gnome-xyz.scm | 2 +-
gnu/packages/gnome.scm | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index 7f3ae41d17..fa8100ef2e 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -609,7 +609,7 @@ and a few extra features.")
("json-glib" ,json-glib)
("jsonrpc-glib" ,jsonrpc-glib)
("libgee" ,libgee)
- ("vala" ,vala-0.48)))
+ ("vala" ,vala-0.50)))
(native-inputs
`(("pkg-config" ,pkg-config)))
(home-page "https://github.com/benwaffle/vala-language-server")
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 43b681d85d..85ae8ac40c 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -4279,10 +4279,10 @@ requirements and without using a different ABI compared to applications and
libraries written in C.")
(license license:lgpl2.1+)))
-(define-public vala-0.48
+(define-public vala-0.50
(package
(inherit vala)
- (version "0.48.9")
+ (version "0.50.1")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnome/sources/vala/"
@@ -4290,7 +4290,7 @@ libraries written in C.")
"vala-" version ".tar.xz"))
(sha256
(base32
- "1agyrvslv2yh9ikiw7k5nw6j6il1l2zrzfan0pzdpb9xpg9idslw"))))))
+ "0v4g2gvn7x7cl33h8sj1y2xyyskw5ayaj4jm2jrd3my3r439z3cm"))))))
(define-public vte
(package
--
2.29.2
Information forwarded
to
guix-patches <at> gnu.org
:
bug#44474
; Package
guix-patches
.
(Fri, 06 Nov 2020 16:54:02 GMT)
Full text and
rfc822 format available.
Message #14 received at submit <at> debbugs.gnu.org (full text, mbox):
On Fri, Nov 06, 2020 at 05:06:17AM +0000, Ryan Prior via Guix-patches via wrote:
> Ryan Prior (2):
> gnu: vala: Update to 0.50.1.
> gnu: vala-language-server: Update to 0.48.1.
>
> gnu/packages/gnome-xyz.scm | 6 +++---
> gnu/packages/gnome.scm | 6 +++---
> 2 files changed, 6 insertions(+), 6 deletions(-)
Thanks! I tweaked the commit message of patch 1/2 and pushed as
d1d69543ba25c595d6f6b6e326757e36d08cff68
Reply sent
to
Leo Famulari <leo <at> famulari.name>
:
You have taken responsibility.
(Fri, 06 Nov 2020 16:54:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Ryan Prior <rprior <at> protonmail.com>
:
bug acknowledged by developer.
(Fri, 06 Nov 2020 16:54:02 GMT)
Full text and
rfc822 format available.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sat, 05 Dec 2020 12:24:06 GMT)
Full text and
rfc822 format available.
This bug report was last modified 4 years and 249 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.