From 83bfbda3711fa345d40460981eaf14d03f46352f Mon Sep 17 00:00:00 2001 From: Princeton Ferro Date: Thu, 14 Apr 2022 20:05:23 -0400 Subject: [PATCH] project moved to vala-lang on github --- .obs/workflows.yml | 5 ----- README.md | 2 +- data/man/vala-language-server.1.scd | 2 +- meson.build | 2 +- src/server.vala | 2 +- 5 files changed, 4 insertions(+), 9 deletions(-) delete mode 100644 .obs/workflows.yml diff --git a/.obs/workflows.yml b/.obs/workflows.yml deleted file mode 100644 index 3b809553..00000000 --- a/.obs/workflows.yml +++ /dev/null @@ -1,5 +0,0 @@ -workflow: - steps: - - branch_package: - source_project: home:Prince781 - source_package: vala-language-server diff --git a/README.md b/README.md index 3910f5de..520191e0 100644 --- a/README.md +++ b/README.md @@ -172,7 +172,7 @@ endif ## Contributing Want to help out? Here are some helpful resources: -- [Help is wanted on these issues](https://github.com/Prince781/vala-language-server/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22) +- [Help is wanted on these issues](https://github.com/vala-lang/vala-language-server/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22) - [`#vala` on gimpnet/IRC](irc://irc.gnome.org/vala) is for general discussions about Vala and collaboration with upstream - [Discord server](https://discord.gg/YFAzjSVHt7) is for general discussions about Vala, discussions about this project, and support - Gitter room is also for project discussions and support, but is less active: https://gitter.im/vala-language-server/community diff --git a/data/man/vala-language-server.1.scd b/data/man/vala-language-server.1.scd index 8193dffe..8986a54f 100644 --- a/data/man/vala-language-server.1.scd +++ b/data/man/vala-language-server.1.scd @@ -22,7 +22,7 @@ vala-language-server to enable debugging output. # BUGS -Please file bugs at https://github.com/benwaffle/vala-language-server +Please file bugs at https://github.com/vala-lang/vala-language-server # AUTHOR diff --git a/meson.build b/meson.build index 2bb174b1..158ca2ea 100644 --- a/meson.build +++ b/meson.build @@ -42,7 +42,7 @@ endif conf = configuration_data() conf.set('LIBVALA_VERSION', libvala.version()) -conf.set('PROJECT_BUGSITE', 'https://github.com/Prince781/vala-language-server/issues') +conf.set('PROJECT_BUGSITE', 'https://github.com/vala-lang/vala-language-server/issues') conf.set('PROJECT_NAME', meson.project_name()) conf_file = configure_file(input: 'config.vala.in', diff --git a/src/server.vala b/src/server.vala index 3dfc8d60..4acb5c8b 100644 --- a/src/server.vala +++ b/src/server.vala @@ -370,7 +370,7 @@ class Vls.Server : Jsonrpc.Server { var autogen_sh = root_dir.get_child ("autogen.sh"); if (cmake_file.query_exists (cancellable)) - show_message (client, @"CMake build system is not currently supported. Only Meson is. See https://github.com/benwaffle/vala-language-server/issues/73", MessageType.Warning); + show_message (client, @"CMake build system is not currently supported. Only Meson is. See https://github.com/vala-lang/vala-language-server/issues/73", MessageType.Warning); if (autogen_sh.query_exists (cancellable)) show_message (client, @"Autotools build system is not currently supported. Consider switching to Meson.", MessageType.Warning); } else {