forked from termux/termux-packages
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgpkg(main/neovim-nightly): 0.9.0-dev-77-gf175ca9f7
Closes termux#12329
- Loading branch information
Showing
2 changed files
with
13 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,9 +5,9 @@ TERMUX_PKG_MAINTAINER="Aditya Alok <[email protected]>" | |
# Upstream now has version number like "0.8.0-dev-698-ga5920e98f", but actually | ||
# "0.8.0-dev-698-g1ef84547a" < "0.8.0-dev-nightly-10-g1a07044c1", we need to bump | ||
# the epoch of the package version. | ||
TERMUX_PKG_VERSION="1:0.9.0-dev-71-gd9a80b8e2" | ||
TERMUX_PKG_VERSION="1:0.9.0-dev-77-gf175ca9f7" | ||
TERMUX_PKG_SRCURL="https://github.com/neovim/neovim/archive/nightly.tar.gz" | ||
TERMUX_PKG_SHA256=eeec7b27ebb89bd30053cadbac50775b85bcc64f9bdb9be142177b57399f3058 | ||
TERMUX_PKG_SHA256=00a5d4c7512676cc2dd3071d5f69e2c81ff6947a9e8a81e24cab64b5eb0d4230 | ||
TERMUX_PKG_DEPENDS="libiconv, libuv, luv, libmsgpack, libandroid-support, libvterm, libtermkey, libluajit, libunibilium, libtreesitter" | ||
TERMUX_PKG_HOSTBUILD=true | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
--- a/runtime/lua/man.lua | ||
+++ b/runtime/lua/man.lua | ||
@@ -438,7 +438,7 @@ | ||
-- Force MANPAGER=cat to ensure Vim is not recursively invoked (by man-db). | ||
-- http://comments.gmane.org/gmane.editors.vim.devel/29085 | ||
-- Set MAN_KEEP_FORMATTING so Debian man doesn't discard backspaces. | ||
- local cmd = { 'env', 'MANPAGER=cat', 'MANWIDTH=' .. manwidth, 'MAN_KEEP_FORMATTING=1', 'man' } | ||
+ local cmd = { 'env', 'MANPAGER=cat', 'MANWIDTH=' .. manwidth, 'MAN_KEEP_FORMATTING=1', 'mandoc' } | ||
if localfile_arg then | ||
cmd[#cmd + 1] = '-l' | ||
@@ -271,9 +271,9 @@ | ||
-- inconsistently supported. Instead, call -w with a section and a name. | ||
local cmd | ||
if sect == '' then | ||
- cmd = { 'man', FIND_ARG, name } | ||
+ cmd = { 'mandoc', FIND_ARG, name } | ||
else | ||
- cmd = { 'man', FIND_ARG, sect, name } | ||
+ cmd = { 'mandoc', FIND_ARG, sect, name } | ||
end | ||
|
||
local lines = system(cmd, silent) |