vim-vl.spec 47 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382
  1. %bcond_with vim_big
  2. # version, patch version
  3. %define vimversion 9.0
  4. %define vimsrcpversion 0827
  5. %define vimpversion 0827
  6. %define vimsubdir vim%(echo %{vimversion} | sed -e's/\\.//')
  7. #define vimdir %{vimsubdir}
  8. %define vimdir vim-%{vimversion}.%{vimsrcpversion}
  9. %define binprefix /
  10. %define x11prefix /usr
  11. %define vimrcloc %{_sysconfdir}/vim
  12. %define vimruntime %{_datadir}/vim
  13. %define configopts --bindir='${exec_prefix}/bin' --disable-gpm
  14. %define features_x11 --exec-prefix=%{_prefix} --with-x=yes --enable-gtk3-check --enable-gui=gtk3 --enable-xim --enable-fontset
  15. %define features_nox11 --exec-prefix=%{_prefix} --with-x=no --enable-gui=no
  16. %define features_huge --with-features=huge --enable-multibyte --enable-rubyinterp --enable-pythoninterp --enable-perlinterp --enable-luainterp
  17. %define features_big --with-features=big --enable-multibyte
  18. %define features_normal --with-features=normal --enable-multibyte
  19. %define features_tiny --exec-prefix=%{binprefix} --with-features=tiny --enable-multibyte --with-tlib=tinfo
  20. Summary: Vi IMproved - enhanced vi editor
  21. Summary(ja): Vi IMproved - 改良された vi エディタ
  22. Name: vim
  23. %if %{vimpversion}
  24. Version: %{vimversion}.%{vimpversion}
  25. %else
  26. Version: %{vimversion}
  27. %endif
  28. Release: 1%{?_dist_release}
  29. Group: accessories
  30. Distribution: Vine Linux
  31. Vendor: Project Vine
  32. License: Vim
  33. URL: https://www.vim.org/
  34. Source0: https://github.com/vim/vim/archive/v%{vimversion}.%{vimsrcpversion}.tar.gz#/vim-%{vimversion}.%{vimsrcpversion}.tar.bz2
  35. # gvim desktop file
  36. Source100: gvim.desktop
  37. Source101: gvim16.png
  38. Source102: gvim32.png
  39. Source103: gvim48.png
  40. Source104: gvim64.png
  41. Source300: vimrc.ja
  42. Source400: format.vim
  43. Source401: verifyenc.vim
  44. # http://trac.vinelinux.org/wiki/SpecTemplates/PlainPackage
  45. Source500: template.spec.vine
  46. Patch2002: vim-8.2-fixkeys.patch
  47. Patch2003: vim-8.0-specsyntax.patch
  48. # Patches 2000 and up are patches from the base maintainer.
  49. # If you're as lazy as me, generate the list using
  50. # for i in seq 1 154; do printf "Patch%04d: ftp://ftp.vim.org/pub/vim/patches/8.0/8.0.%04d\n" $i $i; done > vimpatches
  51. # nothing
  52. Patch2010: xxd-locale.patch
  53. Patch3007: vim-7.4-fstabsyntax.patch
  54. Patch3010: vim-7.3-manpage-typo-668894-675480.patch
  55. Patch3011: vim-manpagefixes-948566.patch
  56. Patch3013: vim-7.4-globalsyntax.patch
  57. # migrate shebangs in script to /usr/bin/python3 and use python2 when necessary
  58. Patch3017: vim-python3-tests.patch
  59. # fips warning
  60. Patch3018: vim-crypto-warning.patch
  61. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  62. BuildRequires: ruby, ruby-devel, python-devel, perl, gtk3-devel, ncurses-devel, autoconf, libtool, net-tools, pixman-devel, libXt-devel
  63. BuildRequires: lua-devel
  64. %if "%{?_dist_release}" != "vl5"
  65. BuildRequires: glibc-static
  66. %endif
  67. Requires(post): alternatives
  68. Requires: vim-common = %{version}
  69. %description
  70. VIM (VIsual editor iMproved) is an updated and improved version of the
  71. vi editor. Vi was the first real screen-based editor for UNIX, and is
  72. still very popular. VIM has many new features including:
  73. multiple windows, multi-level undos, block highlighting and more.
  74. vim-normal package provides a VIM executable configured
  75. with essential features enabled.
  76. %description -l ja
  77. VIM(VIsual editor iMproved)はviエディタ互換のエディタで,次のような多
  78. くの機能が加えられています: マルチレベルのアンドゥ,シンタックスハイラ
  79. イト,コマンドのヒストリ,オンラインヘルプ,ファイル名の補完,ブロック
  80. を対象とした処理,行の折り畳み,ユニコードやその他の文字コードのサポー
  81. トなどです.
  82. このパッケージでは最も基本的な機能を含んだVIMが提供されます.
  83. %package common
  84. Summary: Common files needed by the non-X VIM packages
  85. Summary(ja): 各種の VIM パッケージに必要なファイル
  86. Group: accessories
  87. Requires: gawk
  88. Conflicts: vim-X11 < 6.0, vim-enhanced < 6.0, vim-minimal < 6.0
  89. %description common
  90. vim-common package contains files which every VIM binary packages will
  91. need in order to run. VIM itself is included in various packages (under
  92. every different configuration) such as:
  93. * vim - normal features
  94. * vim-big - big features
  95. * vim-huge - huge features and Ruby/Perl/Python support
  96. %package man
  97. Summary: Man pages for the VIM editor
  98. Summary(ja): VIM エディタの man ページ
  99. Group: documentation
  100. Conflicts: nvi <= 1.79_jp-18vl1, jvim <= 3.0j2.1a-0vl1
  101. %description man
  102. This package contains man pages for the VIM editor.
  103. %description -l ja man
  104. このパッケージはVIMエディタのmanページを含んでいます.
  105. %package tiny
  106. Summary: A minimal version of the VIM editor
  107. Summary(ja): 最小構成の VIM エディタ
  108. Group: accessories
  109. Requires(post): alternatives
  110. Conflicts: nvi <= 1.79_jp-18vl1, jvim <= 3.0j2.1a-0vl1, vim-minimal
  111. Obsoletes: vim-minimal
  112. %description tiny
  113. VIM (VIsual editor iMproved) is an updated and improved version of the
  114. vi editor. Vi was the first real screen-based editor for UNIX, and is
  115. still very popular. VIM has many new features including:
  116. multiple windows, multi-level undos, block highlighting and more.
  117. vim-tiny package contains /bin/vi, a minimally configured version
  118. of the VIM. It may be handy when only the root partition is present.
  119. vim-common package is NOT needed to run this program.
  120. %description -l ja tiny
  121. VIM(VIsual editor iMproved)はviエディタ互換のエディタで,次のような多
  122. くの機能が加えられています: マルチレベルのアンドゥ,シンタックスハイラ
  123. イト,コマンドのヒストリ,オンラインヘルプ,ファイル名の補完,ブロック
  124. を対象とした処理,行の折り畳み,ユニコードやその他の文字コードのサポー
  125. トなどです.
  126. このパッケージでは最小構成のVIMを/bin/vimとして提供しています。このパッ
  127. ケージで提供されるVIMを使うにあたってはvim-commonパッケージは必要あり
  128. ません.
  129. %if %{with big}
  130. %package big
  131. Summary: VIM editor with big features
  132. Summary(ja): 多機能版の VIM エディタ
  133. Group: accessories
  134. Requires(post): alternatives
  135. Requires: vim-common = %{version}
  136. Obsoletes: vim-color
  137. %description big
  138. VIM (VIsual editor iMproved) is an updated and improved version of the
  139. vi editor. Vi was the first real screen-based editor for UNIX, and is
  140. still very popular. VIM has many new features including:
  141. multiple windows, multi-level undos, block highlighting and more.
  142. vim-big package contains the VIM with "big" features enabled.
  143. %description -l ja big
  144. VIM(VIsual editor iMproved)はviエディタ互換のエディタで,次のような多
  145. くの機能が加えられています: マルチレベルのアンドゥ,シンタックスハイラ
  146. イト,コマンドのヒストリ,オンラインヘルプ,ファイル名の補完,ブロック
  147. を対象とした処理,行の折り畳み,ユニコードやその他の文字コードのサポー
  148. トなどです.
  149. このパッケージではvimパッケージで提供されるVIMよりも多くの機能を含んだ
  150. VIMを提供しています.
  151. %endif
  152. %package huge
  153. Summary: VIM editor with huge features
  154. Summary(ja): 最大機能版の VIM エディタ
  155. Group: accessories
  156. Requires(post): alternatives
  157. Requires: vim-common = %{version}
  158. Requires: perl >= 2:5.34.0
  159. Obsoletes: vim-color
  160. Obsoletes: vim-ruby, vim-python, vim-perl
  161. %if %{without big}
  162. Obsoletes: vim-big < %{version}-%{release}
  163. %endif
  164. %description huge
  165. VIM (VIsual editor iMproved) is an updated and improved version of the
  166. vi editor. Vi was the first real screen-based editor for UNIX, and is
  167. still very popular. VIM has many new features including:
  168. multiple windows, multi-level undos, block highlighting and more.
  169. vim-huge package contains the VIM with most of its features (except
  170. X11 features) enabled such as Ruby, Perl, Python and Lua features.
  171. %description -l ja huge
  172. VIM(VIsual editor iMproved)はviエディタ互換のエディタで,次のような多
  173. くの機能が加えられています: マルチレベルのアンドゥ,シンタックスハイラ
  174. イト,コマンドのヒストリ,オンラインヘルプ,ファイル名の補完,ブロック
  175. を対象とした処理,行の折り畳み,ユニコードやその他の文字コードのサポー
  176. トなどです.
  177. このパッケージではX11対応以外のほとんどすべての機能のサポートに加え,
  178. Ruby/Perl/Python/Luaスクリプトの実行機能までを含んでVIMを提供しています.
  179. %package X11
  180. Summary: VIM editor with X11 support
  181. Summary(ja): X11 対応の VIM エディタ
  182. Group: accessories
  183. Requires(post): alternatives
  184. Requires: vim-X11-common = %{version}
  185. Provides: gvim
  186. %description X11
  187. VIM (VIsual editor iMproved) is an updated and improved version of the
  188. vi editor. Vi was the first real screen-based editor for UNIX, and is
  189. still very popular. VIM has many new features including:
  190. multiple windows, multi-level undos, block highlighting and more.
  191. vim-X11 package contains the VIM with X11 features enabled:
  192. you can run VIM as an X application with a full GUI interface and mouse
  193. support.
  194. %description -l ja X11
  195. VIM(VIsual editor iMproved)はviエディタ互換のエディタで,次のような多
  196. くの機能が加えられています: マルチレベルのアンドゥ,シンタックスハイラ
  197. イト,コマンドのヒストリ,オンラインヘルプ,ファイル名の補完,ブロック
  198. を対象とした処理,行の折り畳み,ユニコードやその他の文字コードのサポー
  199. トなどです.
  200. このパッケージでは最も基本的な構成のVIMにX11対応を加えたものを提供して
  201. います.
  202. %package X11-common
  203. Summary: The common files needed by any version of the GVIM editor
  204. Summary(ja): X11 対応 VIM エディタに必要な共通ファイル
  205. Group: accessories
  206. Requires: vim-common = %{version}, gtk3
  207. Requires(post): desktop-file-utils
  208. Requires(postun): desktop-file-utils
  209. %description X11-common
  210. vim-X11-common package contains files which every GVIM (VIM with X11
  211. features enabled) binaries will need in order to run.
  212. GVIM itself is included in various packages (under every different
  213. configuration) such as:
  214. * vim-X11 - normal features
  215. * vim-X11-big - big features
  216. * vim-X11-huge - huge features and Ruby/Perl/Python/Lua support
  217. %description -l ja X11-common
  218. このパッケージは以下に示す各X11対応のVIMパッケージで提供されるVIMエディ
  219. タを実行するために必要となる共通のファイル群を提供します:
  220. * vim-X11 - X対応機能を有効にしたVIMパッケージ
  221. * vim-X11-big - vim-bigをX対応にしたVIMパッケージ
  222. * vim-X11-huge - vim-hugeをX対応にしたVIMパッケージ
  223. %if %{with big}
  224. %package X11-big
  225. Summary: VIM editor with big features and X11 support
  226. Summary(ja): X11 対応の多機能版 VIM エディタ
  227. Group: accessories
  228. Requires(post): alternatives
  229. Requires: vim-X11-common = %{version}
  230. Provides: gvim
  231. %description X11-big
  232. VIM-X11 is a version of the VIM editor which is configured to run on the X
  233. Window System. If you install this package, you can run VIM as an X
  234. application with a full GUI interface and mouse support.
  235. The vim-X11-big package provides the VIM which supports more features
  236. than vim-X11 package does.
  237. %description -l ja X11-big
  238. VIM(VIsual editor iMproved)はviエディタ互換のエディタで,次のような多
  239. くの機能が加えられています: マルチレベルのアンドゥ,シンタックスハイラ
  240. イト,コマンドのヒストリ,オンラインヘルプ,ファイル名の補完,ブロック
  241. を対象とした処理,行の折り畳み,ユニコードやその他の文字コードのサポー
  242. トなどです.
  243. このパッケージではvim-X11パッケージで提供されるVIMよりも,より多くの機
  244. 能を含んだVIMを提供しています.
  245. %endif
  246. %package X11-huge
  247. Summary: VIM editor with huge features and X11 support
  248. Summary(ja): X11 対応の最大機能版 VIM エディタ
  249. Group: accessories
  250. Requires(post): alternatives
  251. Requires: vim-X11-common = %{version}
  252. Requires: %(perl -le 'use Config; print $Config{archlibexp}')
  253. Provides: gvim
  254. %if %{without big}
  255. Obsoletes: vim-X11-big < %{version}-%{release}
  256. %endif
  257. %description X11-huge
  258. VIM-X11 is a version of the VIM editor which is configured to run on the X
  259. Window System. If you install this package, you can run VIM as an X
  260. application with a full GUI interface and mouse support.
  261. The vim-X11-huge package provides the VIM which supports much more extra
  262. features than vim-X11-huge does, such as Ruby/Perl/Python/Lua support.
  263. %description -l ja X11-huge
  264. VIM(VIsual editor iMproved)はviエディタ互換のエディタで,次のような多
  265. くの機能が加えられています: マルチレベルのアンドゥ,シンタックスハイラ
  266. イト,コマンドのヒストリ,オンラインヘルプ,ファイル名の補完,ブロック
  267. を対象とした処理,行の折り畳み,ユニコードやその他の文字コードのサポー
  268. トなどです.
  269. このパッケージではX11対応も含めたほとんどすべての機能のサポートに加え,
  270. Ruby/Perl/Python/Luaスクリプトの実行機能までを含んでVIMを提供しています.
  271. %debug_package
  272. %prep
  273. %setup -q -b 0 -n %{vimdir}
  274. # fix rogue dependencies from sample code
  275. chmod -x runtime/tools/mve.awk
  276. %patch2002 -p1
  277. %patch2003 -p1
  278. perl -pi -e "s,bin/nawk,bin/awk,g" runtime/tools/mve.awk
  279. # Base patches...
  280. # for i in seq 1 154; do printf "%%patch%04d -p0\n" $i; done
  281. # nothing
  282. %patch2010 -p1
  283. %patch3007 -p1 -b .fstabsyntax
  284. %patch3010 -p1
  285. %patch3011 -p1
  286. %patch3013 -p1
  287. %patch3017 -p1
  288. %patch3018 -p1
  289. %build
  290. cd src
  291. autoconf
  292. sed -e "s+VIMRCLOC = \$(VIMLOC)+VIMRCLOC = /etc+" Makefile > Makefile.tmp
  293. mv -f Makefile.tmp Makefile
  294. export CFLAGS="%{optflags} -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2"
  295. export CXXFLAGS="%{optflags} -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2"
  296. make shadow
  297. mv shadow vim-X11-huge
  298. (cd vim-X11-huge && \
  299. mkdir po && (cd po && ln -s ../../po/* .) && \
  300. %configure %{configopts} %{features_x11} %{features_huge} && \
  301. make %{?_smp_mflags})
  302. %if %{with big}
  303. make shadow
  304. mv shadow vim-X11-big
  305. (cd vim-X11-big && \
  306. mkdir po && (cd po && ln -s ../../po/* .) && \
  307. %configure %{configopts} %{features_x11} %{features_big} && \
  308. make %{?_smp_mflags})
  309. %endif
  310. make shadow
  311. mv shadow vim-X11-normal
  312. (cd vim-X11-normal && \
  313. mkdir po && (cd po && ln -s ../../po/* .) && \
  314. %configure %{configopts} %{features_x11} %{features_normal} && \
  315. make %{?_smp_mflags})
  316. make shadow
  317. mv shadow vim-huge
  318. (cd vim-huge && \
  319. mkdir po && (cd po && ln -s ../../po/* .) && \
  320. %configure %{configopts} %{features_nox11} %{features_huge} && \
  321. make %{?_smp_mflags})
  322. %if %{with big}
  323. make shadow
  324. mv shadow vim-big
  325. (cd vim-big && \
  326. mkdir po && (cd po && ln -s ../../po/* .) && \
  327. %configure %{configopts} %{features_nox11} %{features_big} && \
  328. make %{?_smp_mflags})
  329. %endif
  330. make shadow
  331. mv shadow vim-normal
  332. (cd vim-normal && \
  333. mkdir po && (cd po && ln -s ../../po/* .) && \
  334. %configure %{configopts} %{features_nox11} %{features_normal} && \
  335. make %{?_smp_mflags})
  336. make shadow
  337. mv shadow vim-tiny
  338. cp os_unix.h os_unix.h.orig
  339. sed -i -e 's|$VIM/vimrc|/etc/vimrc.tiny|g' os_unix.h
  340. (cd vim-tiny && \
  341. LDFLAGS=-static export LDFLAGS; \
  342. %configure %{configopts} %{features_nox11} %{features_tiny} && \
  343. make %{?_smp_mflags})
  344. cp os_unix.h.orig os_unix.h
  345. %install
  346. rm -rf %{buildroot}
  347. mkdir -p %{buildroot}
  348. mkdir -p %{buildroot}%{vimrcloc}
  349. mkdir -p %{buildroot}/%{vimruntime}
  350. ln -s %{vimrcloc}/vimrc.ja %{buildroot}/%{vimruntime}/vimrc
  351. ln -s %{vimrcloc}/gvimrc.ja %{buildroot}/%{vimruntime}/gvimrc
  352. ln -s %{vimrcloc} %{buildroot}/%{vimruntime}/vimfiles
  353. cd src
  354. for d in vim-normal vim-big vim-huge vim-X11-normal vim-X11-big vim-X11-huge vim-tiny
  355. do
  356. if [ -d "$d" ]; then
  357. make -C$d DESTDIR=%{buildroot} STRIP=/bin/true installvimbin
  358. vimbin=`find %{buildroot} -name vim -type f`
  359. mv $vimbin `dirname $vimbin`/`echo $d | sed -e's/^vim-/vim./'`
  360. fi
  361. done
  362. make -Cvim-huge DESTDIR=%{buildroot} STRIP=/bin/true installtools installtutor
  363. make -Cvim-X11-huge DESTDIR=%{buildroot} STRIP=/bin/true installtools installtutor installtutorbin
  364. make -Cvim-X11-huge DESTDIR=%{buildroot} STRIP=/bin/true install-languages install-icons
  365. make -Cvim-X11-huge DESTDIR=%{buildroot} STRIP=/bin/true installruntime installlinks installmanlinks
  366. find %{buildroot}/%{_bindir} -type l -exec rm \{\} \;
  367. # Dependency cleanups
  368. chmod 644 %{buildroot}/%{_datadir}/vim/%{vimsubdir}/doc/vim2html.pl \
  369. %{buildroot}/%{_datadir}/vim/%{vimsubdir}/tools/*.pl \
  370. %{buildroot}/%{_datadir}/vim/%{vimsubdir}/tools/vim132
  371. chmod 644 ../runtime/doc/vim2html.pl
  372. # installing vimrc files.
  373. install -p -m644 %{SOURCE300} %{buildroot}%{vimrcloc}/vimrc.ja
  374. install -p -m644 %{SOURCE300} %{buildroot}%{vimrcloc}/gvimrc.ja
  375. install -p -m644 %{SOURCE300} %{buildroot}%{_sysconfdir}/vimrc.tiny
  376. # installing misc utils.
  377. install -p -m644 %{SOURCE400} %{buildroot}%{_datadir}/vim/%{vimsubdir}/plugin/format.vim
  378. install -p -m644 %{SOURCE401} %{buildroot}%{_datadir}/vim/%{vimsubdir}/plugin/verifyenc.vim
  379. # installing template.spec
  380. install -p -m644 %{SOURCE500} %{buildroot}%{vimrcloc}/template.spec
  381. cd ../..
  382. # desktop file
  383. %__mkdir_p %{buildroot}%{_datadir}/applications
  384. %__install -p -m644 %{SOURCE100} %{buildroot}%{_datadir}/applications/gvim.desktop
  385. # icons
  386. %__mkdir_p %{buildroot}%{_datadir}/icons/hicolor/{16x16,32x32,48x48,64x64}/apps
  387. %__install -p -m644 %{SOURCE101} %{buildroot}%{_datadir}/icons/hicolor/16x16/apps/gvim.png
  388. %__install -p -m644 %{SOURCE102} %{buildroot}%{_datadir}/icons/hicolor/32x32/apps/gvim.png
  389. %__install -p -m644 %{SOURCE103} %{buildroot}%{_datadir}/icons/hicolor/48x48/apps/gvim.png
  390. %__install -p -m644 %{SOURCE104} %{buildroot}%{_datadir}/icons/hicolor/64x64/apps/gvim.png
  391. # remove international manuals
  392. rm -rf %{buildroot}/%{_mandir}/{fr,it,ru,pl}*
  393. %post tiny
  394. update-alternatives \
  395. --install /bin/vi vi /bin/vim.tiny 20 \
  396. --slave /usr/bin/vi vi /bin/vim.tiny \
  397. --slave /bin/vim vim /bin/vim.tiny \
  398. --slave /bin/eview eview /bin/vim.tiny \
  399. --slave /bin/evim evim /bin/vim.tiny \
  400. --slave /bin/ex ex /bin/vim.tiny \
  401. --slave /bin/rview rview /bin/vim.tiny \
  402. --slave /bin/rvim rvim /bin/vim.tiny \
  403. --slave /bin/view view /bin/vim.tiny \
  404. --slave /bin/vimdiff vimdiff /bin/vim.tiny
  405. %triggerpostun -- vim-minimal < 6.0
  406. update-alternatives --auto vi
  407. %triggerpostun tiny -- vim-tiny <= 6.2.532-0vl3
  408. update-alternatives --remove vi /bin/vim
  409. update-alternatives --auto vi
  410. %preun tiny
  411. if [ "$1" = "0" ]
  412. then
  413. update-alternatives --remove vi /bin/vim.tiny
  414. fi
  415. %post
  416. update-alternatives \
  417. --install /bin/vi vi %{_bindir}/vim.normal 31 \
  418. --slave /usr/bin/vi vi %{_bindir}/vim.normal \
  419. --slave /bin/vim vim %{_bindir}/vim.normal \
  420. --slave /bin/eview eview %{_bindir}/vim.normal \
  421. --slave /bin/evim evim %{_bindir}/vim.normal \
  422. --slave /bin/ex ex %{_bindir}/vim.normal \
  423. --slave /bin/rview rview %{_bindir}/vim.normal \
  424. --slave /bin/rvim rvim %{_bindir}/vim.normal \
  425. --slave /bin/view view %{_bindir}/vim.normal \
  426. --slave /bin/vimdiff vimdiff %{_bindir}/vim.normal
  427. %triggerpostun -- vim <= 6.2.532-0vl3
  428. update-alternatives --remove vim /usr/bin/vim.normal
  429. %preun
  430. if [ "$1" = "0" ]
  431. then
  432. update-alternatives --remove vi %{_bindir}/vim.normal
  433. fi
  434. %if %{with big}
  435. %post big
  436. update-alternatives \
  437. --install /bin/vi vi %{_bindir}/vim.big 41 \
  438. --slave /usr/bin/vi vi %{_bindir}/vim.big \
  439. --slave /bin/vim vim %{_bindir}/vim.big \
  440. --slave /bin/eview eview %{_bindir}/vim.big \
  441. --slave /bin/evim evim %{_bindir}/vim.big \
  442. --slave /bin/ex ex %{_bindir}/vim.big \
  443. --slave /bin/rview rview %{_bindir}/vim.big \
  444. --slave /bin/rvim rvim %{_bindir}/vim.big \
  445. --slave /bin/view view %{_bindir}/vim.big \
  446. --slave /bin/vimdiff vimdiff %{_bindir}/vim.big
  447. %triggerpostun big -- vim-big <= 6.2.532-0vl3
  448. update-alternatives --remove vim /usr/bin/vim.big
  449. %preun big
  450. if [ "$1" = "0" ]
  451. then
  452. update-alternatives --remove vi %{_bindir}/vim.big
  453. fi
  454. %endif
  455. %post huge
  456. update-alternatives \
  457. --install /bin/vi vi %{_bindir}/vim.huge 51 \
  458. --slave /usr/bin/vi vi %{_bindir}/vim.huge \
  459. --slave /bin/vim vim %{_bindir}/vim.huge \
  460. --slave /bin/eview eview %{_bindir}/vim.huge \
  461. --slave /bin/evim evim %{_bindir}/vim.huge \
  462. --slave /bin/ex ex %{_bindir}/vim.huge \
  463. --slave /bin/rview rview %{_bindir}/vim.huge \
  464. --slave /bin/rvim rvim %{_bindir}/vim.huge \
  465. --slave /bin/view view %{_bindir}/vim.huge \
  466. --slave /bin/vimdiff vimdiff %{_bindir}/vim.huge
  467. %triggerpostun huge -- vim-huge <= 6.2.532-0vl3
  468. update-alternatives --remove vim /usr/bin/vim.huge
  469. %preun huge
  470. if [ "$1" = "0" ]
  471. then
  472. update-alternatives --remove vi %{_bindir}/vim.huge
  473. fi
  474. %post X11
  475. update-alternatives \
  476. --install /bin/vi vi %{_bindir}/vim.X11-normal 30 \
  477. --slave /usr/bin/vi vi %{_bindir}/vim.X11-normal \
  478. --slave /bin/vim vim %{_bindir}/vim.X11-normal \
  479. --slave /bin/eview eview %{_bindir}/vim.X11-normal \
  480. --slave /bin/evim evim %{_bindir}/vim.X11-normal \
  481. --slave /bin/ex ex %{_bindir}/vim.X11-normal \
  482. --slave /bin/rview rview %{_bindir}/vim.X11-normal \
  483. --slave /bin/rvim rvim %{_bindir}/vim.X11-normal \
  484. --slave /bin/view view %{_bindir}/vim.X11-normal \
  485. --slave /bin/vimdiff vimdiff %{_bindir}/vim.X11-normal
  486. update-alternatives \
  487. --install %{_bindir}/gvim gvim %{_bindir}/vim.X11-normal 30 \
  488. --slave %{_bindir}/gview gview %{_bindir}/vim.X11-normal \
  489. --slave %{_bindir}/gvimdiff gvimdiff %{_bindir}/vim.X11-normal \
  490. --slave %{_bindir}/rgview rgview %{_bindir}/vim.X11-normal \
  491. --slave %{_bindir}/rgvim rgvim %{_bindir}/vim.X11-normal
  492. %triggerpostun X11 -- vim-X11 <= 6.2.532-0vl3
  493. update-alternatives --remove vim %{_bindir}/vim.X11-normal
  494. %preun X11
  495. if [ "$1" = "0" ]
  496. then
  497. update-alternatives --remove vi %{_bindir}/vim.X11-normal
  498. update-alternatives --remove gvim %{_bindir}/vim.X11-normal
  499. fi
  500. %if %{with big}
  501. %post X11-big
  502. update-alternatives \
  503. --install /bin/vi vi %{_bindir}/vim.X11-big 40 \
  504. --slave /usr/bin/vi vi %{_bindir}/vim.X11-big \
  505. --slave /bin/vim vim %{_bindir}/vim.X11-big \
  506. --slave /bin/eview eview %{_bindir}/vim.X11-big \
  507. --slave /bin/evim evim %{_bindir}/vim.X11-big \
  508. --slave /bin/ex ex %{_bindir}/vim.X11-big \
  509. --slave /bin/rview rview %{_bindir}/vim.X11-big \
  510. --slave /bin/rvim rvim %{_bindir}/vim.X11-big \
  511. --slave /bin/view view %{_bindir}/vim.X11-big \
  512. --slave /bin/vimdiff vimdiff %{_bindir}/vim.X11-big
  513. update-alternatives \
  514. --install %{_bindir}/gvim gvim %{_bindir}/vim.X11-big 40 \
  515. --slave %{_bindir}/gview gview %{_bindir}/vim.X11-big \
  516. --slave %{_bindir}/gvimdiff gvimdiff %{_bindir}/vim.X11-big \
  517. --slave %{_bindir}/rgview rgview %{_bindir}/vim.X11-big \
  518. --slave %{_bindir}/rgvim rgvim %{_bindir}/vim.X11-big
  519. %triggerpostun X11-big -- vim-X11-big <= 6.2.532-0vl3
  520. update-alternatives --remove vim %{_bindir}/vim.X11-big
  521. %preun X11-big
  522. if [ "$1" = "0" ]
  523. then
  524. update-alternatives --remove vi %{_bindir}/vim.X11-big
  525. update-alternatives --remove gvim %{_bindir}/vim.X11-big
  526. fi
  527. %endif
  528. %post X11-huge
  529. update-alternatives \
  530. --install /bin/vi vi %{_bindir}/vim.X11-huge 50 \
  531. --slave /usr/bin/vi vi %{_bindir}/vim.X11-huge \
  532. --slave /bin/vim vim %{_bindir}/vim.X11-huge \
  533. --slave /bin/eview eview %{_bindir}/vim.X11-huge \
  534. --slave /bin/evim evim %{_bindir}/vim.X11-huge \
  535. --slave /bin/ex ex %{_bindir}/vim.X11-huge \
  536. --slave /bin/rview rview %{_bindir}/vim.X11-huge \
  537. --slave /bin/rvim rvim %{_bindir}/vim.X11-huge \
  538. --slave /bin/view view %{_bindir}/vim.X11-huge \
  539. --slave /bin/vimdiff vimdiff %{_bindir}/vim.X11-huge
  540. update-alternatives \
  541. --install %{_bindir}/gvim gvim %{_bindir}/vim.X11-huge 50 \
  542. --slave %{_bindir}/gview gview %{_bindir}/vim.X11-huge \
  543. --slave %{_bindir}/gvimdiff gvimdiff %{_bindir}/vim.X11-huge \
  544. --slave %{_bindir}/rgview rgview %{_bindir}/vim.X11-huge \
  545. --slave %{_bindir}/rgvim rgvim %{_bindir}/vim.X11-huge
  546. %triggerpostun X11-huge -- vim-X11-huge <= 6.2.532-0vl3
  547. update-alternatives --remove vim %{_bindir}/vim.X11-huge
  548. %preun X11-huge
  549. if [ "$1" = "0" ]
  550. then
  551. update-alternatives --remove vi %{_bindir}/vim.X11-huge
  552. update-alternatives --remove gvim %{_bindir}/vim.X11-huge
  553. fi
  554. %clean
  555. rm -rf %{buildroot}
  556. %files
  557. %defattr(-,root,root)
  558. %{_bindir}/vim.normal
  559. %files common
  560. %defattr(-,root,root)
  561. %license LICENSE
  562. %doc README*
  563. %{vimrcloc}
  564. %{_bindir}/vimtutor
  565. %{_bindir}/xxd
  566. %{_datadir}/vim
  567. %files man
  568. %defattr(-,root,root)
  569. %{_mandir}/man1/eview.1*
  570. %{_mandir}/man1/evim.1*
  571. %{_mandir}/man1/ex.1*
  572. %{_mandir}/man1/rgview.1*
  573. %{_mandir}/man1/rgvim.1*
  574. %{_mandir}/man1/rview.1*
  575. %{_mandir}/man1/rvim.1*
  576. %{_mandir}/man1/view.1*
  577. %{_mandir}/man1/vim.1*
  578. %{_mandir}/man1/vimdiff.1*
  579. %{_mandir}/man1/vimtutor.1*
  580. %{_mandir}/man1/xxd.1*
  581. %{_mandir}/ja/man1/eview.1.gz
  582. %{_mandir}/ja/man1/evim.1.gz
  583. %{_mandir}/ja/man1/ex.1.gz
  584. %{_mandir}/ja/man1/gview.1.gz
  585. %{_mandir}/ja/man1/gvim.1.gz
  586. %{_mandir}/ja/man1/gvimdiff.1.gz
  587. %{_mandir}/ja/man1/rgview.1.gz
  588. %{_mandir}/ja/man1/rgvim.1.gz
  589. %{_mandir}/ja/man1/rview.1.gz
  590. %{_mandir}/ja/man1/rvim.1.gz
  591. %{_mandir}/ja/man1/view.1.gz
  592. %{_mandir}/ja/man1/vim.1.gz
  593. %{_mandir}/ja/man1/vimdiff.1.gz
  594. %{_mandir}/ja/man1/vimtutor.1.gz
  595. %{_mandir}/ja/man1/xxd.1.gz
  596. %dir %{_mandir}/da.ISO8859-1
  597. %dir %{_mandir}/da.ISO8859-1/man*
  598. %{_mandir}/da.ISO8859-1/man*/*
  599. %dir %{_mandir}/da.UTF-8
  600. %dir %{_mandir}/da.UTF-8/man*
  601. %{_mandir}/da.UTF-8/man*/*
  602. %dir %{_mandir}/de.ISO8859-1
  603. %dir %{_mandir}/de.ISO8859-1/man*
  604. %{_mandir}/de.ISO8859-1/man*/*
  605. %dir %{_mandir}/de.UTF-8
  606. %dir %{_mandir}/de.UTF-8/man*
  607. %{_mandir}/de.UTF-8/man*/*
  608. %dir %{_mandir}/tr.ISO8859-9
  609. %dir %{_mandir}/tr.ISO8859-9/man*
  610. %{_mandir}/tr.ISO8859-9/man*/*
  611. %dir %{_mandir}/tr.UTF-8
  612. %dir %{_mandir}/tr.UTF-8/man*
  613. %{_mandir}/tr.UTF-8/man*/*
  614. %exclude %{_mandir}/da
  615. %exclude %{_mandir}/de
  616. %exclude %{_mandir}/tr
  617. %files X11-common
  618. %defattr(-,root,root)
  619. %config(missingok) %{_datadir}/applications/gvim.desktop
  620. %config(missingok) %{_datadir}/applications/vim.desktop
  621. %{_datadir}/icons/hicolor/*/apps/gvim.png
  622. %{_datadir}/icons/locolor/*/apps/gvim.png
  623. %{_mandir}/man1/gview.1*
  624. %{_mandir}/man1/gvim.1*
  625. %{_mandir}/man1/gvimdiff.1*
  626. %files tiny
  627. %defattr(-,root,root)
  628. %{binprefix}bin/vim.tiny
  629. %{_sysconfdir}/vimrc.tiny
  630. %if %{with big}
  631. %files big
  632. %defattr(-,root,root)
  633. %{_bindir}/vim.big
  634. %endif
  635. %files huge
  636. %defattr(-,root,root)
  637. %{_bindir}/vim.huge
  638. %files X11
  639. %defattr(-,root,root)
  640. %{_bindir}/vim.X11-normal
  641. %if %{with big}
  642. %files X11-big
  643. %defattr(-,root,root)
  644. %{_bindir}/vim.X11-big
  645. %endif
  646. %files X11-huge
  647. %defattr(-,root,root)
  648. %{_bindir}/vim.X11-huge
  649. %changelog
  650. * Wed Nov 02 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.0.0827-1
  651. - new upstream release.
  652. * Sun Oct 02 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.0.0636-1
  653. - new upstream release.
  654. * Tue Sep 27 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.0.0604-1
  655. - new upstream release.
  656. * Wed Sep 21 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.0.0530-1
  657. - new upstream release.
  658. * Sun Sep 11 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.0.0437-1
  659. - new upstream release.
  660. * Fri Sep 02 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.0.0354-1
  661. - new upstream release.
  662. * Thu Aug 25 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.0.0260-1
  663. - new upstream release.
  664. * Sat Aug 20 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.0.0228-1
  665. - new upstream release.
  666. * Wed Aug 17 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.0.0222-1
  667. - new upstream release.
  668. * Sat Aug 06 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.0.0144-1
  669. - new upstream release.
  670. * Fri Jul 29 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.0.0101-1
  671. - new upstream release.
  672. * Tue Jul 12 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.0.0049-1
  673. - new upstream release.
  674. * Wed Jun 29 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.5172-1
  675. - new upstream release.
  676. * Sat Jun 18 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.5115-1
  677. - new upstream release.
  678. * Thu Jun 09 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.5069-1
  679. - new upstream release.
  680. * Fri May 27 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.5024-1
  681. - new upstream release.
  682. * Tue May 17 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.4969-1
  683. - new upstream release.
  684. * Thu Apr 28 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.4833-1
  685. - new upstream release.
  686. * Thu Apr 14 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.4747-1
  687. - new upstream release.
  688. * Sun Mar 27 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.4632-1
  689. - new upstream release.
  690. * Wed Feb 23 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.4451-1
  691. - new upstream release.
  692. * Wed Feb 09 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.4333-1
  693. - new upstream release.
  694. * Thu Feb 03 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.4285-1
  695. - new upstream release.
  696. - updated Patch2002.
  697. * Wed Jan 26 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.4217-1
  698. - new upstream release.
  699. * Fri Jan 14 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.4087-1
  700. - new upstream release.
  701. * Sat Jan 08 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.4036-1
  702. - new upstream release.
  703. * Wed Jan 05 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.4005-1
  704. - new upstream release.
  705. * Wed Dec 08 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.3756-1
  706. - new upstream release.
  707. * Sat Dec 04 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.3732-1
  708. - new upstream release.
  709. * Fri Nov 19 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.3617-1
  710. - new upstream release.
  711. - built with perl-5.34.0.
  712. * Mon Nov 15 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.3595-1
  713. - new upstream release.
  714. - rebuilt with ruby-3.0.2.
  715. * Tue Nov 09 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.3582-1
  716. - new upstream release.
  717. * Wed Nov 03 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.3570-1
  718. - new upstream release.
  719. * Thu Oct 21 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.3547-1
  720. - new upstream release.
  721. * Tue Sep 28 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.3458-1
  722. - new upstream release.
  723. - dropped Patch3000, 3002, 3004, 3008 and 3016.
  724. * Fri Sep 10 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.3423-1
  725. - new upstream release.
  726. * Wed Aug 18 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.3356-1
  727. - new upstream release.
  728. - disabled vim-{,X11-}big.
  729. - dropped update-desktop-database scriptlets.
  730. * Thu Aug 05 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.3290-1
  731. - new upstream release.
  732. * Mon Feb 15 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.2517-1
  733. - new upstream release.
  734. - updated Patch3016.
  735. * Mon Sep 21 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.1712-1
  736. - new upstream release.
  737. - updated Patch3007 and 3017.
  738. * Mon Mar 16 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.0390-1
  739. - new upstream release.
  740. - built with ruby-2.6.5.
  741. * Mon Mar 09 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.2.0365-1
  742. - new upstream release.
  743. - updated fedora patches.
  744. - updated .spec template for Vine Linux.
  745. - switched gui to gtk3.
  746. * Mon May 20 2019 Toshiaki Ara <ara_t@384.jp> 8.0.599-2
  747. - rebuild with perl-5.26
  748. * Fri May 19 2017 IWAI, Masaharu <iwaim.sub@gmail.com> 8.0.599-1
  749. - update to 8.0.599
  750. - update spec plugin patches (Patch3006, Patch3011)
  751. * Sat Apr 8 2017 IWAI, Masaharu <iwaim.sub@gmail.com> 7.4.589-5
  752. - build with ruby 2.4.1
  753. * Tue Nov 29 2016 Toshiaki Ara <ara_t@384.jp> 7.4.589-4
  754. - fix %%post error when installing vim-huge, vim-X11 and vi-X11-huge
  755. - change /usr/bin/vi to /usr/bin/vi
  756. * Mon Nov 09 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 7.4.589-3
  757. - add Source500 (template.spec.vine)
  758. * Fri Sep 11 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 7.4.589-2
  759. - rebuild with ruby-2.2.3
  760. * Sat Jan 31 2015 Daisuke SUZUKI <daisuke@vinelinux.org> 7.4.589-1
  761. - update to 7.4.589
  762. * Thu Jul 03 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 7.4.334-3
  763. - rebuild with perl-5.16.3
  764. * Wed Jun 25 2014 IWAI, Masaharu <iwaim.sub@gmail.com> 7.4.334-2vl7
  765. - build with Ruby 2.1
  766. * Thu Jun 19 2014 IWAI, Masaharu <iwaim.sub@gmail.com> 7.4.334-1
  767. - update to 7.4.334
  768. * Sun Dec 22 2013 IWAI, Masaharu <iwaim.sub@gmail.com> 7.4.131-1
  769. - update to 7.4.131
  770. * Sat Nov 30 2013 IWAI, Masaharu <iwaim.sub@gmail.com> 7.4.110-1
  771. - update to 7.4.110
  772. - add 7.4 patches (Patch51..110)
  773. - enable Lua support
  774. - fix 7.4.50-1 changelog
  775. * Fri Oct 4 2013 IWAI, Masaharu <iwaim.sub@gmail.com> 7.4.50-1
  776. - update to 7.4.50
  777. - drop 7.3 patches (Patch001..712)
  778. - add 7.4 patches (Patch1..50)
  779. - drop crv patch (Patch2004)
  780. - update some patches from Fedora vim-7.4.027-2
  781. - syntax patch (Patch3000):
  782. - fstabsyntax patch (Patch3007)
  783. - add Distribution and Vendor tags
  784. * Thu Oct 25 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 7.3.712-1
  785. - update to 7.3.712
  786. - build with ruby-1.9.3
  787. * Sun Jun 05 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 7.3.206-1
  788. - update to 7.3.206
  789. * Thu Apr 07 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 7.3.154-1
  790. - update to 7.3.154
  791. - update Patch001-154
  792. * Tue Mar 29 2011 Yasumichi Akahoshi <yasumichi@vinelinux.org> 7.2.446-5
  793. - rebuild with perl-5.12.3
  794. * Sun Jan 09 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 7.2.446-4
  795. - add BuildRequires: libXt-devel
  796. * Sun Jan 09 2011 Yasumichi Akahoshi <yasumichi@vinelinux.org> 7.2.446-3
  797. - update vimrc.ja (fixed http://bts.vinelinux.org/user.cgi?action=view_report&id=1067&project=VineLinux)
  798. * Sun Sep 19 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 7.2.446-2
  799. - do not BR: glibc-static on Vine 5.x
  800. * Sun Sep 19 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 7.2.446-1
  801. - update tp 7.2.446 (add Patch149-446)
  802. - run update-alternatives on vim-huge post script
  803. - drop Patch3004 (use %%{_datadir}/vim/vimrc)
  804. - add vimrc.tiny for vim.tiny
  805. - add BR: glibc-static to build vime-tiny
  806. * Sat Mar 20 2010 Shu KONNO <owa@bg.wakwak.com> 7.2.148-2
  807. - rebuilt with python-2.6
  808. * Sun Apr 26 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 7.2.148-1
  809. - new upstream release
  810. - modified vimrc.ja to support utf-8 locale
  811. - drop vim-{ruby,perl,python}
  812. * Mon May 05 2008 KANEKO Seiji <giraffe@m2.pbc.ne.jp> 6.4.10-1vl5
  813. - rebuild with perl-5.10.0
  814. - applied new versioning policy
  815. - add "make installghelplinks"
  816. - add BuildRequires: pixman-devel
  817. * Wed Sep 05 2007 KAZUKI SHIMURA <ksh753@y5.dion.ne.jp> 6.4.10-0vl3
  818. - [SECURITY] add helptags.patch (patch2000) renamed from 7.1.039
  819. - fix format string vulnerability in the helptags_one (CVE-2007-2953)
  820. * Sat Jul 28 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 6.4.10-0vl2
  821. - changed man Group to Applications/Documentation
  822. * Mon May 15 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 6.4.10-0vl1
  823. - new upstream patch version
  824. * Tue Feb 28 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 6.4.8-0vl2
  825. - update patching script
  826. - exit if upstream patches not exist
  827. * Mon Feb 27 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 6.4.8-0vl1
  828. - new upstream patch version
  829. * Fri Nov 04 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 6.4-0vl2
  830. - add cssIdentifier.patch to avoid error
  831. * Mon Oct 31 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 6.4-0vl1
  832. - new upstream release
  833. - drop tmpfile.patch
  834. - import verifyenc.vim from KaoriYa.net ([vine-users:073279])
  835. - http://www.kaoriya.net/dist/vim-6.4-w32j.tar.bz2
  836. - import checkhl.patch from FC 6.4.000-2
  837. * Tue Oct 25 2005 Karsten Hopp <karsten@redhat.de> 6.4.000-2
  838. - add syntax highlighting rule for %%check (Ralf Ertzinger, #165277)
  839. * Mon Oct 17 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 6.3.90-0vl1
  840. - new upstream patch version
  841. - add numeric-keypad.patch (patch101)
  842. - Thanks, ISOBE Takeshi
  843. * Sun Aug 14 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 6.3.86-0vl2
  844. - [SECURITY] re-add patches, import tmpfile.patch from FC
  845. - oops, patches not added at 6.3.86-0vl1
  846. - overwrite or create arbitrary files via a symlink attack (CAN-2005-0069)
  847. * Sat Jul 30 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 6.3.86-0vl1
  848. - [SECURITY] new upstream patch version
  849. - modelines shell command execution vulnerability (CAN-2005-2368)
  850. - add README_patches.txt
  851. * Sun May 15 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 6.3.71-0vl1
  852. - new upstream patch version
  853. - update desktop file
  854. - import icons from FC
  855. - import gvim.desktop from FC and modify
  856. - move gvim.desktop to %%{_datadir}/applications
  857. - run update-desktop-database at X11-common's post/postun
  858. - import specsyntax.patch from FC
  859. * Wed Jan 26 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 6.3.58-0vl1
  860. - new upstream patch version
  861. - perl/huge/X11-huge
  862. - add Requires: %%(perl -le 'use Config; print $Config{archlibexp}')
  863. * Tue Jan 11 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 6.3.53-0vl2
  864. - rebuild with perl-5.8.6
  865. * Mon Dec 27 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 6.3.53-0vl1
  866. - [SECURITY] new upstream patch version
  867. - arbitrary command execution vulnerability (CAN-2004-1138)
  868. - add URL
  869. - fix common's Japanese description
  870. - remove package information about vim-X11-*
  871. - add Provides: gvim (vim-X11-*)
  872. * Fri Oct 29 2004 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 6.3.31-0vl1
  873. - new upstream patch version
  874. - fix URLs (source1,2)
  875. * Sun Jun 20 2004 Tomoya TAKA <taka@vinelinux.org> 6.3.6-0vl1
  876. - new upstream release
  877. - update configurations of alternatives
  878. - vim-tiny contains /bin/vim.tiny only
  879. - remove 'Requires: vim-common' from vim-man subpackage
  880. - change order of fileencordings in vimrc.ja
  881. * Wed May 19 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 6.2.532-0vl3
  882. - use gtk2 instead of gtk+
  883. - add Requires: gtk2 to vim-X11-common
  884. - add BuildRequires: gtk2-devel
  885. * Tue May 18 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 6.2.532-0vl2
  886. - add --enable-multibyte to vim-tiny
  887. * Sat May 15 2004 Tomoya TAKA <taka@vinelinux.org> 6.2.532-0vl1
  888. - new upstream patch version
  889. * Sat Mar 20 2004 Tomoya TAKA <taka@vinelinux.org> 6.2.382-0vl1
  890. - new upstream version
  891. * Mon Oct 06 2003 akira yamada <akira@vinelinux.org> 6.2.106-0vl1
  892. - new upstream version
  893. - bulid with ruby-1.8.0.
  894. * Tue Jun 17 2003 UECHI Yasumasa <uh@u.dhis.portside.net> 6.2.14-0vl1
  895. - new upstream version
  896. * Wed Jan 22 2003 Tomoya TAKA <taka@vinelinux.org> 6.1.300-0vl1
  897. - new upstream patch version
  898. * Wed Jan 22 2003 Tomoya TAKA <taka@vinelinux.org> 6.1.265-0vl1
  899. - patch level 265, including fix of modeline vulnerability
  900. cf. http://www.guninski.com/vim1.html
  901. * Wed Apr 03 2002 akira yamada <akira@vinelinux.org> 6.1.5-0vl1
  902. - new upstream version.
  903. - updated format.vim. (extracted from
  904. http://www.kaoriya.net/dist/gvim-6.1-w32j.tar.bz2.)
  905. - clean uped vimrc, vimrc.ja, gvimrc, gvimrc.ja.
  906. * Thu Jan 31 2002 Toru Sagami <sagami@vinelinux.org> 6.0.158-0vl1
  907. - patch level 6.0.158
  908. * Sun Nov 25 2001 akira yamada <akira@vinelinux.org> 6.0.93-0vl1
  909. - new upstream patch version.
  910. - added PreReqs: alternatives for vim, vim-tiny, vim-X11.
  911. * Mon Nov 12 2001 akira yamada <akira@vinelinux.org> 6.0.68-0vl4
  912. - added Japanese descriptions.
  913. - English descriptions by shaolin.
  914. * Wed Nov 07 2001 akira yamada <akira@vinelinux.org> 6.0.68-0vl3
  915. - added triggerpostun for vim-minimal.
  916. * Mon Nov 05 2001 akira yamada <akira@vinelinux.org> 6.0.68-0vl2
  917. - patch #44, #54, #64 is now available.
  918. * Mon Nov 05 2001 akira yamada <akira@vinelinux.org> 6.0.68-0vl1
  919. - new upstream patch version.
  920. - removed jcode2.vim and added new default vimrc.
  921. - removed unused sources and patches.
  922. - alternatives for /bin/vi.
  923. - added net-tools to BuildRequires. (/bin/hostname)
  924. * Wed Oct 31 2001 akira yamada <akira@vinelinux.org> 6.0.43-0vl1
  925. - new upstream patch version.
  926. - added vim-lang and vim-extra.
  927. - added gawk to Requires of vim-common.
  928. - added gtk+ to Requires of vim-X11-common.
  929. * Wed Oct 17 2001 akira yamada <akira@vinelinux.org> 6.0.11-0vl2
  930. - added autoconf and libtool to BuildRequires.
  931. * Mon Oct 15 2001 akira yamada <akira@vinelinux.org> 6.0.11-0vl1
  932. - vim and vim-X11 is no longer virturl package.
  933. - obsoleted vim-normal and vim-X11-normal.
  934. - added check "$1" = "0" for preun scripts.
  935. * Mon Oct 15 2001 akira yamada <akira@vinelinux.org> 6.0-0vl2
  936. - linked staticly vim of vim-tiny.
  937. * Sun Oct 14 2001 akira yamada <akira@vinelinux.org> 6.0-0vl1
  938. - new upstream version.
  939. - now, vim and vim-X11 is virtual package.
  940. - new sub-packages vim-tiny, vim-normal, vim-big, vim-ruby, vim-perl,
  941. vim-python, vim-huge, vim-X11-normal, vim-X11-big and vim-X11-huge.
  942. - obsoleted vim-minimal and vin-enhanced.
  943. * Sat Sep 08 2001 Toru Sagami <sagami@vinelinux.org>
  944. - 5.8-0vl4: rebuilt on current ncurses
  945. - added format.vim and more useful comments in vimrc.ja
  946. * Sat Aug 04 2001 <sagami@vinelinux.org>
  947. - 5.8-0vl3: patch level 5.8.9
  948. - dont pack duplicated runtime/syntax directory into %%doc
  949. * Thu Jul 19 2001 <sagami@vinelinux.org>
  950. - 5.8-0vl2: patch level 5.8.7
  951. - Add postfix config syntax highlighting
  952. * Fri Jun 08 2001 <sagami@vinelinux.org>
  953. - vim-5.8-0vl1: patch level 5.8.002
  954. * Fri Jun 01 2001 <sagami@vinelinux.org>
  955. - vim-5.8-0vl0: vim-5.8 bug fix release
  956. * Thu May 10 2001 <sagami@vinelinux.org>
  957. - vim-5.7-0vl8: patch level 5.7.030
  958. - use versioned sources, not older ones and patches
  959. - sync with RH6.2 updates
  960. * Wed Apr 18 2001 sagami@vinelinux.org
  961. - jcode2.vim: fix back to original one
  962. - patch level 5.7.028
  963. * Mon Feb 05 2001 Toru Sagami <czs14350@mb.infoweb.ne.jp>
  964. - patch level 5.7.024
  965. - small fix for jcode2.vim
  966. - split man package from common package to avoid conflict with jvim3
  967. * Tue Dec 26 2000 Toru Sagami <czs14350@mb.infoweb.ne.jp>
  968. - %%{makeinstall}
  969. - acutally build against current ncurses5 without gpm with ncurses4
  970. * Thu Dec 21 2000 Toru Sagami <czs14350@mb.infoweb.ne.jp>
  971. - build against current ncurses5
  972. - added CVS commit filetype detection to scripts.vim
  973. * Wed Dec 06 2000 Toru Sagami <czs14350@mb.infoweb.ne.jp>
  974. - 5.7.19
  975. - jcode.pl-2.13
  976. - added License recognition to .spec syntax
  977. - added RFC822 mail/ emacs-lips filetype detection to scripts.vim
  978. - FHS stuff: _mandir
  979. * Wed Jul 19 2000 Toru Sagami <czs14350@mb.infoweb.ne.jp>
  980. - based on RH 5.6-14 -> 5.7 (patchlevel .2)
  981. - manpath: /usr/share/man -> /usr/man/man :-)
  982. - delete %%makeinstall macro for rpm-3.0.x
  983. - gvim: --enable-multibyte, xim, fontset
  984. - vim: --enable-multibyte
  985. - jcode.pl-2.11 and jcode2.vim from Nozomu Kobayashi's rpm package
  986. - vimrc: added bzip2 and Japanese stuff of a kind
  987. * Sat Jun 3 2000 Bernhard Rosenkr舅zer <bero@redhat.com>
  988. - patchlevel 74
  989. - add %%makeinstall macro recognition to .spec file syntax highlighting rules
  990. - fix up Makefiles
  991. * Fri Apr 14 2000 Bernhard Rosenkr舅zer <bero@redhat.com>
  992. - patchlevel 66
  993. - fix compilation with perl 5.6.0
  994. * Mon Mar 20 2000 Bernhard Rosenkr舅zer <bero@redhat.com>
  995. - patchlevel 12
  996. * Tue Mar 07 2000 Preston Brown <pbrown@redhat.com>
  997. - fix home/end in vimrc (we did a term = rxvt, totally wrong)
  998. * Tue Feb 29 2000 Preston Brown <pbrown@redhat.com>
  999. - change F1-F4 keybindings for xterm builtin terminfo to match real terminfo
  1000. * Thu Feb 17 2000 Bill Nottingham <notting@redhat.com>
  1001. - kill autoindent
  1002. * Mon Feb 07 2000 Preston Brown <pbrown@redhat.com>
  1003. - wmconfig -> desktop
  1004. * Sat Feb 5 2000 Bernhard Rosenkr舅zer <bero@redhat.com>
  1005. - Patchlevel 11
  1006. - handle compressed man pages
  1007. - fix man page symlinks
  1008. * Wed Feb 2 2000 Bill Nottingham <notting@redhat.com>
  1009. - eliminate dependencies on X in vim-enhanced, and ncurses/gpm
  1010. in vim-minimal
  1011. * Fri Jan 28 2000 Bill Nottingham <notting@redhat.com>
  1012. - eliminate dependencies on csh and perl in vim-common
  1013. * Wed Jan 19 2000 Bernhard Rosenrk舅zer <bero@redhat.com>
  1014. - Use awk, not nawk
  1015. * Tue Jan 18 2000 Bernhard Rosenrk舅zer <bero@redhat.com>
  1016. - 5.6
  1017. - patch 5.6.001
  1018. - remove /usr/bin/vi - if you want vim, type vim
  1019. * Tue Jan 11 2000 Bernhard Rosenkr舅zer <bero@redhat.com>
  1020. - 5.6a
  1021. - Remove dependency on nawk (introduced by base update)
  1022. - some tweaks to make updating easier
  1023. * Tue Nov 9 1999 Bernhard Rosenkr舅zer <bero@redhat.com>
  1024. - 5.5
  1025. - fix path to vimrc
  1026. * Tue Jul 27 1999 Michael K. Johnson <johnsonm@redhat.com>
  1027. - moved from athena to gtk widgets for X version
  1028. - removed vim.1 from X11 filelist because X11 depends on vim-common anyway
  1029. - fixed rogue dependencies from sample files
  1030. * Tue Jul 27 1999 Jeff Johnson <jbj@redhat.com>
  1031. - update to 5.4.
  1032. * Thu Jul 22 1999 Jeff Johnson <jbj@redhat.com>
  1033. - man page had buildroot pollution (#3629).
  1034. * Thu Mar 25 1999 Preston Brown <pbrown@redhat.com>
  1035. - with recent termcap/terminfo fixes, regular vim works in xterm/console
  1036. - in color, so vim-color package removed.
  1037. * Tue Mar 23 1999 Erik Troan <ewt@redhat.com>
  1038. - removed "set backupdir=/tmp/vim_backup" from default vimrc
  1039. * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
  1040. - auto rebuild in the new build environment (release 5)
  1041. * Thu Dec 17 1998 Michael Maher <mike@redaht.com>
  1042. - built pacakge for 6.0
  1043. * Tue Sep 15 1998 Michael Maher <mike@redhat.com>
  1044. - removed '--with-tlib=termcap' so that color-vim works
  1045. * Wed Sep 2 1998 Jeff Johnson <jbj@redhat.com>
  1046. - update to 5.3.
  1047. * Mon Aug 10 1998 Jeff Johnson <jbj@redhat.com>
  1048. - merge in Toshio's changes
  1049. - color-vim: changed "--disable-p" to "--disable-perlinterp --with-tlib=termcap"
  1050. - added minimal rvi/rview and man pages.
  1051. - move Obsoletes to same package as executable.
  1052. * Thu Aug 06 1998 Toshio Kuratomi <badger@prtr-13.ucsc.edu>
  1053. - Break the package apart similar to the way the netscape package was
  1054. broken down to handle navigator or communicator: The vim package is
  1055. Obsolete, now there is vim-common with all the common files, and a
  1056. package for each binary: vim-minimal (has /bin/vi compiled with no
  1057. frills), vim-enhanced (has /usr/bin/vim with extra perl and python
  1058. interpreters), and vim-X11 (has /usr/X11R6/bin/gvim compiled with
  1059. GUI support.)
  1060. - Enable the perl and python interpreters in the gui version (gvim).
  1061. * Tue Jun 30 1998 Michael Maher <mike@redhat.com>
  1062. - Fixed tutor help.
  1063. - cvim package added. Thanks to Stevie Wills for finding this one :-)
  1064. * Thu May 07 1998 Prospector System <bugs@redhat.com>
  1065. - translations modified for de, fr, tr
  1066. * Fri May 01 1998 Donnie Barnes <djb@redhat.com>
  1067. - added patch to turn off the "vi compatibility" by default. You can
  1068. still get it via the -C command line option
  1069. * Thu Apr 23 1998 Donnie Barnes <djb@redhat.com>
  1070. - removed perl and python interpreters (sorry, but those don't belong
  1071. in a /bin/vi and having two vi's seemed like overkill...complain
  1072. to suggest@redhat.com if you care)
  1073. * Fri Apr 17 1998 Donnie Barnes <djb@redhat.com>
  1074. - fixed buildroot bug
  1075. * Sat Apr 11 1998 Donnie Barnes <djb@redhat.com>
  1076. - updated from 4.6 to 5.1
  1077. - moved to buildroot
  1078. * Sun Nov 09 1997 Donnie Barnes <djb@redhat.com>
  1079. - fixed missing man page
  1080. * Wed Oct 22 1997 Donnie Barnes <djb@redhat.com>
  1081. - added wmconfig entry to vim-X11
  1082. * Mon Oct 20 1997 Donnie Barnes <djb@redhat.com>
  1083. - upgraded from 4.5 to 4.6
  1084. * Fri Jun 13 1997 Erik Troan <ewt@redhat.com>
  1085. - built against glibc
  1086. * Tue Mar 25 1997 Michael K. Johnson <johnsonm@redhat.com>
  1087. - Upgraded to 4.5
  1088. - Added ex symlinks
  1089. * Tue Mar 11 1997 Michael K. Johnson <johnsonm@redhat.com>
  1090. - Added view symlink.