Github messages for voidlinux
 help / color / mirror / Atom feed
From: ibhagwan <ibhagwan@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: [PR PATCH] neovim: update to 0.9.0
Date: Fri, 07 Apr 2023 18:20:09 +0200	[thread overview]
Message-ID: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-43326@inbox.vuxu.org> (raw)

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

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

https://github.com/ibhagwan/void-packages neovim_09
https://github.com/void-linux/void-packages/pull/43326

neovim: update to 0.9.0
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

**Note:** requires #43325, tree-sitter to 0.20.8 

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-neovim_09-43326.patch --]
[-- Type: text/x-diff, Size: 2562 bytes --]

From 91ed5b5cfb4e1f1dea6c11022645a832b17738ff Mon Sep 17 00:00:00 2001
From: bhagwan <bhagwan@disroot.org>
Date: Fri, 7 Apr 2023 09:17:40 -0700
Subject: [PATCH] neovim: update to 0.9.0

---
 .../patches/cmake-allow-build-type-none.patch | 20 +++++++++----------
 srcpkgs/neovim/template                       |  4 ++--
 2 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/srcpkgs/neovim/patches/cmake-allow-build-type-none.patch b/srcpkgs/neovim/patches/cmake-allow-build-type-none.patch
index d98563e00252..7654cc64a872 100644
--- a/srcpkgs/neovim/patches/cmake-allow-build-type-none.patch
+++ b/srcpkgs/neovim/patches/cmake-allow-build-type-none.patch
@@ -18,14 +18,14 @@
      else()
        message(STATUS "CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}")
      endif()
---- a/runtime/autoload/health/nvim.vim
-+++ b/runtime/autoload/health/nvim.vim
-@@ -135,7 +135,7 @@ function! s:check_performance() abort
-   let buildtype = matchstr(execute('version'), '\v\cbuild type:?\s*[^\n\r\t ]+')
-   if empty(buildtype)
-     call health#report_error('failed to get build type from :version')
--  elseif buildtype =~# '\v(MinSizeRel|Release|RelWithDebInfo)'
-+  elseif buildtype =~# '\v(MinSizeRel|Release|RelWithDebInfo|None)'
-     call health#report_ok(buildtype)
+--- a/runtime/lua/nvim/health.lua
++++ b/runtime/lua/nvim/health.lua
+@@ -152,7 +152,7 @@
+   local buildtype = vim.fn.matchstr(vim.fn.execute('version'), [[\v\cbuild type:?\s*[^\n\r\t ]+]])
+   if empty(buildtype) then
+     health.report_error('failed to get build type from :version')
+-  elseif vim.regex([[\v(MinSizeRel|Release|RelWithDebInfo)]]):match_str(buildtype) then
++  elseif vim.regex([[\v(MinSizeRel|Release|RelWithDebInfo|None)]]):match_str(buildtype) then
+     health.report_ok(buildtype)
    else
-     call health#report_info(buildtype)
+     health.report_info(buildtype)
diff --git a/srcpkgs/neovim/template b/srcpkgs/neovim/template
index 9c7a73bf6fb2..dfab9fb5a42c 100644
--- a/srcpkgs/neovim/template
+++ b/srcpkgs/neovim/template
@@ -1,6 +1,6 @@
 # Template file for 'neovim'
 pkgname=neovim
-version=0.8.3
+version=0.9.0
 revision=1
 build_style=cmake
 build_helper="qemu"
@@ -16,7 +16,7 @@ maintainer="Marcin Puc <tranzystorek.io@protonmail.com>"
 license="Apache-2.0, Vim"
 homepage="https://neovim.io"
 distfiles="https://github.com/neovim/neovim/archive/refs/tags/v${version}.tar.gz"
-checksum=adf45ff160e1d89f519b6114732eba03485ae469beb27919b0f7a4f6b44233c1
+checksum=39d79107c54d2f3babcad2cd157c399241c04f6e75e98c18e8afaf2bb5e82937
 
 build_options=luajit
 

             reply	other threads:[~2023-04-07 16:20 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-07 16:20 ibhagwan [this message]
2023-04-07 16:30 ` mhmdanas
2023-04-07 16:33 ` [PR PATCH] [Updated] " ibhagwan
2023-04-07 16:33 ` ibhagwan
2023-04-07 16:34 ` ibhagwan
2023-04-07 18:21 ` mhmdanas
2023-04-07 18:22 ` mhmdanas
2023-04-07 18:22 ` mhmdanas
2023-04-07 18:53 ` mhmdanas
2023-04-07 19:04 ` [PR PATCH] [Updated] " ibhagwan
2023-04-07 19:05 ` ibhagwan
2023-04-07 19:11 ` [PR REVIEW] " classabbyamp
2023-04-07 19:28 ` icp1994
2023-04-07 19:30 ` ibhagwan
2023-04-07 19:34 ` [PR PATCH] [Updated] " ibhagwan
2023-04-07 19:35 ` ibhagwan
2023-04-07 20:11 ` paper42
2023-04-07 20:16 ` [PR PATCH] [Updated] " ibhagwan
2023-04-07 20:17 ` ibhagwan
2023-04-07 20:24 ` icp1994
2023-04-07 20:27 ` ibhagwan
2023-04-07 22:40 ` ibhagwan
2023-04-07 22:47 ` [PR PATCH] [Updated] " ibhagwan
2023-04-07 23:12 ` ibhagwan
2023-04-08  6:09 ` icp1994
2023-04-08 15:17 ` [PR PATCH] [Updated] " ibhagwan
2023-04-08 15:27 ` ibhagwan
2023-04-09 17:28 ` mhmdanas
2023-04-09 18:21 ` [PR PATCH] [Merged]: " Johnnynator

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-43326@inbox.vuxu.org \
    --to=ibhagwan@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).