FreeBSD Bugzilla – Attachment 174178 Details for
Bug 212233
[patch] editors/neovim: update to 0.1.5
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
patch v3
neovim3.diff (text/plain), 10.50 KB, created by
Oleh Hushchenkov
on 2016-08-29 10:31:59 UTC
(
hide
)
Description:
patch v3
Filename:
MIME Type:
Creator:
Oleh Hushchenkov
Created:
2016-08-29 10:31:59 UTC
Size:
10.50 KB
patch
obsolete
>Index: Makefile >=================================================================== >--- Makefile (revision 421042) >+++ Makefile (working copy) >@@ -2,9 +2,8 @@ > # $FreeBSD$ > > PORTNAME= neovim >-PORTVERSION= 0.1.4 >+PORTVERSION= 0.1.5 > DISTVERSIONPREFIX= v >-PORTREVISION= 2 > CATEGORIES= editors > > MAINTAINER= gor@clogic.com.ua >Index: distinfo >=================================================================== >--- distinfo (revision 421042) >+++ distinfo (working copy) >@@ -1,4 +1,5 @@ >-SHA256 (neovim-neovim-v0.1.4_GH0.tar.gz) = bb7e359eb83db20c5ec5984b470b249372b6dcd813ae2ccf72c01cce560f93e9 >-SIZE (neovim-neovim-v0.1.4_GH0.tar.gz) = 7678847 >+TIMESTAMP = 1472456512 >+SHA256 (neovim-neovim-v0.1.5_GH0.tar.gz) = f286ff7994ef1835272285425d65804063f112c91925fee3ef8865282a6d2b7e >+SIZE (neovim-neovim-v0.1.5_GH0.tar.gz) = 7813974 > SHA256 (tarruda-libmpack-1.0.2_GH0.tar.gz) = 9c570b2aab81b0c56d97cbd8fc483dc431b69510fd9becb4a1845291563e8bc9 > SIZE (tarruda-libmpack-1.0.2_GH0.tar.gz) = 44671 >Index: files/patch-CMakeLists.txt >=================================================================== >--- files/patch-CMakeLists.txt (revision 421042) >+++ files/patch-CMakeLists.txt (working copy) >@@ -1,4 +1,4 @@ >---- CMakeLists.txt.orig 2016-05-09 13:04:04 UTC >+--- CMakeLists.txt.orig 2016-08-29 10:07:00 UTC > +++ CMakeLists.txt > @@ -213,7 +213,7 @@ else() > >@@ -9,7 +9,7 @@ > add_definitions(-Wno-c11-extensions) > endif() > endif() >-@@ -367,7 +367,7 @@ endforeach() >+@@ -369,9 +369,9 @@ endforeach() > > # Find Lua interpreter > include(LuaHelpers) >@@ -16,5 +16,8 @@ > -set(LUA_DEPENDENCIES lpeg mpack bit) > +set(LUA_DEPENDENCIES lpeg bit) > if(NOT LUA_PRG) >- foreach(CURRENT_LUA_PRG luajit lua) >+- foreach(CURRENT_LUA_PRG luajit lua5.1 lua5.2 lua) >++ foreach(CURRENT_LUA_PRG luajit lua${LUA_VER}) > # If LUA_PRG is set find_program() will not search >+ unset(LUA_PRG CACHE) >+ unset(LUA_PRG_WORKS) >Index: files/patch-config__CMakeLists.txt >=================================================================== >--- files/patch-config__CMakeLists.txt (revision 421042) >+++ files/patch-config__CMakeLists.txt (nonexistent) >@@ -1,26 +0,0 @@ >---- config/CMakeLists.txt.orig 2016-06-05 14:13:28 UTC >-+++ config/CMakeLists.txt >-@@ -67,6 +67,14 @@ if(HAVE_LANGINFO_H) >- check_symbol_exists(CODESET "langinfo.h" HAVE_NL_LANGINFO_CODESET) >- endif() >- >-+check_include_files("endian.h" HAVE_ENDIAN_H) >-+check_include_files("sys/endian.h" HAVE_SYS_ENDIAN_H) >-+ >-+set(ENDIAN_INCLUDE_FILE "endian.h") >-+if(HAVE_SYS_ENDIAN_H AND NOT HAVE_ENDIAN_H) >-+ set(ENDIAN_INCLUDE_FILE "sys/endian.h") >-+endif() >-+ >- set(SI "#include <stdint.h>\n") >- set(MS "int main(int argc,char**argv)\n{\n uint64_t i=0x0102030405060708ULL;") >- set(ME "}") >-@@ -74,7 +82,7 @@ check_c_source_compiles(" >- #define _BSD_SOURCE 1 >- #define _DEFAULT_SOURCE 1 >- ${SI} >-- #include <endian.h> >-+ #include <${ENDIAN_INCLUDE_FILE}> >- #ifndef be64toh >- # error No be64toh macros >- #endif > >Property changes on: files/patch-config__CMakeLists.txt >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1 +0,0 ## >-yes >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: files/patch-config__config.h.in >=================================================================== >--- files/patch-config__config.h.in (revision 421042) >+++ files/patch-config__config.h.in (nonexistent) >@@ -1,9 +0,0 @@ >---- config/config.h.in.orig 2016-06-05 14:13:28 UTC >-+++ config/config.h.in >-@@ -57,5 +57,6 @@ >- >- #cmakedefine HAVE_BE64TOH >- #cmakedefine ORDER_BIG_ENDIAN >-+#define ENDIAN_INCLUDE_FILE <@ENDIAN_INCLUDE_FILE@> >- >- #endif // AUTO_CONFIG_H > >Property changes on: files/patch-config__config.h.in >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1 +0,0 ## >-yes >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: files/patch-src__nvim__shada.c >=================================================================== >--- files/patch-src__nvim__shada.c (revision 421042) >+++ files/patch-src__nvim__shada.c (nonexistent) >@@ -1,11 +0,0 @@ >---- src/nvim/shada.c.orig 2016-06-05 14:13:28 UTC >-+++ src/nvim/shada.c >-@@ -46,7 +46,7 @@ >- #ifdef HAVE_BE64TOH >- # define _BSD_SOURCE 1 >- # define _DEFAULT_SOURCE 1 >--# include <endian.h> >-+# include ENDIAN_INCLUDE_FILE >- #endif >- >- // Note: when using bufset hash pointers are intentionally casted to uintptr_t > >Property changes on: files/patch-src__nvim__shada.c >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1 +0,0 ## >-yes >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: files/patch-src_nvim_event_pty__process.c >=================================================================== >--- files/patch-src_nvim_event_pty__process.c (revision 421042) >+++ files/patch-src_nvim_event_pty__process.c (nonexistent) >@@ -1,11 +0,0 @@ >---- src/nvim/event/pty_process.c.orig 2016-04-25 01:46:34 UTC >-+++ src/nvim/event/pty_process.c >-@@ -10,7 +10,7 @@ >- #include <sys/ioctl.h> >- >- // forkpty is not in POSIX, so headers are platform-specific >--#if defined(__FreeBSD__) >-+#if defined(__FreeBSD__) || defined __DragonFly__ >- # include <libutil.h> >- #elif defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__) >- # include <util.h> > >Property changes on: files/patch-src_nvim_event_pty__process.c >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1 +0,0 ## >-yes >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: pkg-plist >=================================================================== >--- pkg-plist (revision 421042) >+++ pkg-plist (working copy) >@@ -45,6 +45,8 @@ > share/nvim/runtime/autoload/decada.vim > share/nvim/runtime/autoload/gnat.vim > share/nvim/runtime/autoload/gzip.vim >+share/nvim/runtime/autoload/health.vim >+share/nvim/runtime/autoload/health/nvim.vim > share/nvim/runtime/autoload/htmlcomplete.vim > share/nvim/runtime/autoload/javascriptcomplete.vim > share/nvim/runtime/autoload/man.vim >@@ -60,6 +62,7 @@ > share/nvim/runtime/autoload/provider/python3.vim > share/nvim/runtime/autoload/provider/pythonx.vim > share/nvim/runtime/autoload/provider/ruby.vim >+share/nvim/runtime/autoload/provider/script_host.rb > share/nvim/runtime/autoload/python3complete.vim > share/nvim/runtime/autoload/pythoncomplete.vim > share/nvim/runtime/autoload/remote/define.vim >@@ -72,7 +75,6 @@ > share/nvim/runtime/autoload/tar.vim > share/nvim/runtime/autoload/tohtml.vim > share/nvim/runtime/autoload/tutor.vim >-share/nvim/runtime/autoload/vimball.vim > share/nvim/runtime/autoload/vimexpect.vim > share/nvim/runtime/autoload/xml/html32.vim > share/nvim/runtime/autoload/xml/html401f.vim >@@ -184,7 +186,6 @@ > share/nvim/runtime/doc/ft_ada.txt > share/nvim/runtime/doc/ft_sql.txt > share/nvim/runtime/doc/gui.txt >-share/nvim/runtime/doc/gui_w32.txt > share/nvim/runtime/doc/hebrew.txt > share/nvim/runtime/doc/help.txt > share/nvim/runtime/doc/helphelp.txt >@@ -191,6 +192,7 @@ > share/nvim/runtime/doc/howto.txt > share/nvim/runtime/doc/if_cscop.txt > share/nvim/runtime/doc/if_pyth.txt >+share/nvim/runtime/doc/if_ruby.txt > share/nvim/runtime/doc/indent.txt > share/nvim/runtime/doc/index.txt > share/nvim/runtime/doc/insert.txt >@@ -205,15 +207,12 @@ > share/nvim/runtime/doc/motion.txt > share/nvim/runtime/doc/msgpack_rpc.txt > share/nvim/runtime/doc/nvim.txt >-share/nvim/runtime/doc/nvim_clipboard.txt >-share/nvim/runtime/doc/nvim_from_vim.txt >-share/nvim/runtime/doc/nvim_provider.txt >-share/nvim/runtime/doc/nvim_python.txt > share/nvim/runtime/doc/nvim_terminal_emulator.txt > share/nvim/runtime/doc/options.txt > share/nvim/runtime/doc/os_win32.txt > share/nvim/runtime/doc/pattern.txt > share/nvim/runtime/doc/pi_gzip.txt >+share/nvim/runtime/doc/pi_health.txt > share/nvim/runtime/doc/pi_matchit.txt > share/nvim/runtime/doc/pi_msgpack.txt > share/nvim/runtime/doc/pi_netrw.txt >@@ -221,9 +220,9 @@ > share/nvim/runtime/doc/pi_spec.txt > share/nvim/runtime/doc/pi_tar.txt > share/nvim/runtime/doc/pi_tutor.txt >-share/nvim/runtime/doc/pi_vimball.txt > share/nvim/runtime/doc/pi_zip.txt > share/nvim/runtime/doc/print.txt >+share/nvim/runtime/doc/provider.txt > share/nvim/runtime/doc/quickfix.txt > share/nvim/runtime/doc/quickref.txt > share/nvim/runtime/doc/quotes.txt >@@ -332,6 +331,7 @@ > share/nvim/runtime/ftplugin/dosini.vim > share/nvim/runtime/ftplugin/dtd.vim > share/nvim/runtime/ftplugin/dtrace.vim >+share/nvim/runtime/ftplugin/eiffel.vim > share/nvim/runtime/ftplugin/elinks.vim > share/nvim/runtime/ftplugin/erlang.vim > share/nvim/runtime/ftplugin/eruby.vim >@@ -356,6 +356,8 @@ > share/nvim/runtime/ftplugin/hamster.vim > share/nvim/runtime/ftplugin/haskell.vim > share/nvim/runtime/ftplugin/help.vim >+share/nvim/runtime/ftplugin/hgcommit.vim >+share/nvim/runtime/ftplugin/hog.vim > share/nvim/runtime/ftplugin/hostconf.vim > share/nvim/runtime/ftplugin/hostsaccess.vim > share/nvim/runtime/ftplugin/html.vim >@@ -531,6 +533,7 @@ > share/nvim/runtime/indent/go.vim > share/nvim/runtime/indent/haml.vim > share/nvim/runtime/indent/hamster.vim >+share/nvim/runtime/indent/hog.vim > share/nvim/runtime/indent/html.vim > share/nvim/runtime/indent/htmldjango.vim > share/nvim/runtime/indent/idlang.vim >@@ -684,7 +687,15 @@ > share/nvim/runtime/menu.vim > share/nvim/runtime/mswin.vim > share/nvim/runtime/optwin.vim >+share/nvim/runtime/pack/dist/opt/justify/plugin/justify.vim >+share/nvim/runtime/pack/dist/opt/shellmenu/plugin/shellmenu.vim >+share/nvim/runtime/pack/dist/opt/swapmouse/plugin/swapmouse.vim >+share/nvim/runtime/pack/dist/opt/vimball/autoload/vimball.vim >+share/nvim/runtime/pack/dist/opt/vimball/doc/tags >+share/nvim/runtime/pack/dist/opt/vimball/doc/vimball.txt >+share/nvim/runtime/pack/dist/opt/vimball/plugin/vimballPlugin.vim > share/nvim/runtime/plugin/gzip.vim >+share/nvim/runtime/plugin/health.vim > share/nvim/runtime/plugin/man.vim > share/nvim/runtime/plugin/matchit.vim > share/nvim/runtime/plugin/matchparen.vim >@@ -696,7 +707,6 @@ > share/nvim/runtime/plugin/tarPlugin.vim > share/nvim/runtime/plugin/tohtml.vim > share/nvim/runtime/plugin/tutor.vim >-share/nvim/runtime/plugin/vimballPlugin.vim > share/nvim/runtime/plugin/zipPlugin.vim > share/nvim/runtime/print/ascii.ps > share/nvim/runtime/print/cidfont.ps
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 212233
:
174174
|
174177
|
174178
|
174778