Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] vala-language-server: update to 0.48.7
@ 2023-06-04 20:05 Bnyro
  2023-06-09  0:08 ` [PR PATCH] [Merged]: " classabbyamp
  0 siblings, 1 reply; 2+ messages in thread
From: Bnyro @ 2023-06-04 20:05 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 576 bytes --]

There is a new pull request by Bnyro against master on the void-packages repository

https://github.com/Bnyro/void-packages vala-language-server
https://github.com/void-linux/void-packages/pull/44265

vala-language-server: update to 0.48.7
#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)

The patch has been merged upstream with this update, hence removed it.

A patch file from https://github.com/void-linux/void-packages/pull/44265.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-vala-language-server-44265.patch --]
[-- Type: text/x-diff, Size: 3902 bytes --]

From e8e92b66062589455214bd15b2b4f27e5231fa23 Mon Sep 17 00:00:00 2001
From: Bnyro <bnyro@tutanota.com>
Date: Sun, 4 Jun 2023 22:04:41 +0200
Subject: [PATCH] vala-language-server: update to 0.48.7

---
 .../patches/glib-2.74-regex.patch             | 46 -------------------
 srcpkgs/vala-language-server/template         |  4 +-
 2 files changed, 2 insertions(+), 48 deletions(-)
 delete mode 100644 srcpkgs/vala-language-server/patches/glib-2.74-regex.patch

diff --git a/srcpkgs/vala-language-server/patches/glib-2.74-regex.patch b/srcpkgs/vala-language-server/patches/glib-2.74-regex.patch
deleted file mode 100644
index 53511585ca5b..000000000000
--- a/srcpkgs/vala-language-server/patches/glib-2.74-regex.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-From b6193265d68b90755d57938c2ba1895841cf4b36 Mon Sep 17 00:00:00 2001
-From: Princeton Ferro <princetonferro@gmail.com>
-Date: Sat, 24 Sep 2022 18:07:27 -0400
-Subject: [PATCH] fix regex for links in comments (#268)
-
-Closes #263
----
- src/documentation/doccomment.vala       | 2 +-
- src/documentation/girdocumentation.vala | 4 ++--
- 2 files changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/src/documentation/doccomment.vala b/src/documentation/doccomment.vala
-index 53bc2520..613cccaf 100644
---- a/src/documentation/doccomment.vala
-+++ b/src/documentation/doccomment.vala
-@@ -129,7 +129,7 @@ class Vls.DocComment {
-         body = /{{{(\w+)?(.*?)}}}/s.replace (body, body.length, 0, "```\\1\\2```");
-         
-         // images and links
--        body = /(\[\[|{{)([~:\/\\\w-.]+)(\|(.*?))?(\]\]|}})/
-+        body = /(\[\[|{{)([~:\/\\\w\-.]+)(\|(.*?))?(\]\]|}})/
-             .replace_eval (body, body.length, 0, 0, (match_info, result) => {
-                 string type = match_info.fetch (1) ?? "";
-                 string href = match_info.fetch (2) ?? "";
-diff --git a/src/documentation/girdocumentation.vala b/src/documentation/girdocumentation.vala
-index 93e0aaeb..36e8b7d7 100644
---- a/src/documentation/girdocumentation.vala
-+++ b/src/documentation/girdocumentation.vala
-@@ -356,7 +356,7 @@ class Vls.GirDocumentation {
-         if (gtkdoc_dir != null) {
-             // substitute image URLs
-             // substitute relative paths in GIR comments for absolute paths to GTK-Doc resources
--            comment_data = /!\[(.*?)\]\(([~:\/\\\w-.]+)\)/
-+            comment_data = /!\[(.*?)\]\(([~:\/\\\w\-.]+)\)/
-                 .replace_eval (comment_data, comment_data.length, 0, 0, (match_info, result) => {
-                     string link_label = match_info.fetch (1) ?? "";
-                     string link_href = match_info.fetch (2) ?? "";
-@@ -386,7 +386,7 @@ class Vls.GirDocumentation {
-             });
- 
-         // now, substitute references to sections
--        comment_data = /\[(.*?)\]\[([\w-\s]+)\]/
-+        comment_data = /\[(.*?)\]\[([\w\-\s]+)\]/
-             .replace_eval (comment_data, comment_data.length, 0, 0, (match_info, result) => {
-                 string link_label = match_info.fetch (1) ?? "";
-                 string section = match_info.fetch (2) ?? "";
diff --git a/srcpkgs/vala-language-server/template b/srcpkgs/vala-language-server/template
index aa5eeec286cb..2b79b3652de6 100644
--- a/srcpkgs/vala-language-server/template
+++ b/srcpkgs/vala-language-server/template
@@ -1,6 +1,6 @@
 # Template file for 'vala-language-server'
 pkgname=vala-language-server
-version=0.48.5
+version=0.48.7
 revision=1
 build_style=meson
 hostmakedepends="gettext pkg-config vala"
@@ -10,4 +10,4 @@ maintainer="Enno Boland <gottox@voidlinux.org>"
 license="LGPL-2.1-or-later"
 homepage="https://github.com/benwaffle/vala-language-server"
 distfiles="https://github.com/benwaffle/$pkgname/archive/refs/tags/$version.tar.gz"
-checksum=c2ace01705c21ee79db281e61035dba00c4d9780e3227921ec7167ba49eb42b7
+checksum=6e848334accd27566843d56db15bedcf7529dc68e416d23d3b4e9fc522019c68

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PR PATCH] [Merged]: vala-language-server: update to 0.48.7
  2023-06-04 20:05 [PR PATCH] vala-language-server: update to 0.48.7 Bnyro
@ 2023-06-09  0:08 ` classabbyamp
  0 siblings, 0 replies; 2+ messages in thread
From: classabbyamp @ 2023-06-09  0:08 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 416 bytes --]

There's a merged pull request on the void-packages repository

vala-language-server: update to 0.48.7
https://github.com/void-linux/void-packages/pull/44265

Description:
#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)

The patch has been merged upstream with this update, hence removed it.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-06-09  0:08 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-04 20:05 [PR PATCH] vala-language-server: update to 0.48.7 Bnyro
2023-06-09  0:08 ` [PR PATCH] [Merged]: " classabbyamp

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).