Compare commits
40 Commits
8.2.4854-1
...
9.0.0200-1
Author | SHA1 | Date | |
---|---|---|---|
8af0e68f7c | |||
ce12f83be6 | |||
db109994e7 | |||
c37e116e47 | |||
132f533a2e | |||
5767020e16 | |||
8f86232d14 | |||
f6a2418ab8 | |||
e27ee49807 | |||
9ca41d1b9c | |||
2e41d8c488 | |||
6a3431e047 | |||
111a58d165 | |||
a12c5ce739 | |||
b2aab49ad2 | |||
246f6b6d36 | |||
eb617aa821 | |||
81385fcbad | |||
6caa3aa96b | |||
6ea37d2fb2 | |||
7c07bf28f3 | |||
257c4f2fdd | |||
13b60d59d4 | |||
3433ec2a27 | |||
e42640cec5 | |||
34f62fd84f | |||
eda4c0b5bd | |||
2a0f4ef99c | |||
cb15060b9c | |||
96d5237ab7 | |||
696e84c37f | |||
26c5e21721 | |||
02ac7d7410 | |||
79ed1073fe | |||
d18ffa32f8 | |||
c40f62092d | |||
78863df78a | |||
fab630bb0e | |||
5259363f67 | |||
6e760524e2 |
255
vim.spec
255
vim.spec
@ -2,11 +2,10 @@
|
||||
## *AUTOSPEC-OFF*
|
||||
%define vimdir %{name}%(majversion=%majversion; echo ${majversion/\./})
|
||||
## *AUTOSPEC-ON*
|
||||
%define langversion 7.2
|
||||
%define with_gvim 0
|
||||
|
||||
Name: vim
|
||||
Version: 8.2.4854
|
||||
Version: 9.0.0200
|
||||
Release: 1mamba
|
||||
Summary: VIsual editor iMproved
|
||||
Group: Applications/Text
|
||||
@ -36,6 +35,15 @@ Vi was the first real screen-based editor for UNIX, and is still very popular.
|
||||
VIM improves on vi by adding new features: multiple windows, multi-level undo, block highlighting and more. VIM-X11 is a version of the VIM editor which will run within the X Window System.
|
||||
If you install this package, you can run VIM as an X application with a full GUI interface and mouse support.
|
||||
|
||||
%package desktop
|
||||
Group: Graphical Desktop/Applications/Utilities
|
||||
Summary: Desktop menu entry for %{name}
|
||||
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||
|
||||
%description desktop
|
||||
VIM (VIsual editor iMproved) is an updated and improved version of the vi editor.
|
||||
This package provides a desktop menu entry for %{name}.
|
||||
|
||||
%package doc
|
||||
Group: Documentation
|
||||
Summary: Documentation for %{name}
|
||||
@ -153,20 +161,37 @@ install -m 0755 -D src/gvim %{buildroot}%{_bindir}/gvim
|
||||
%files -f %{name}.lang
|
||||
%defattr(-,root,root)
|
||||
%{_sysconfdir}/skel/.vimrc
|
||||
%{_bindir}/*
|
||||
%{_datadir}/applications/gvim.desktop
|
||||
%{_datadir}/applications/vim.desktop
|
||||
%{_bindir}/ex
|
||||
%{_bindir}/rview
|
||||
%{_bindir}/rvim
|
||||
%{_bindir}/vi
|
||||
%{_bindir}/view
|
||||
%{_bindir}/vim
|
||||
%{_bindir}/vimdiff
|
||||
%{_bindir}/xxd
|
||||
%dir %{_datadir}/vim/%{vimdir}
|
||||
%{_datadir}/vim/%{vimdir}/*
|
||||
%exclude %{_datadir}/vim/%{vimdir}/doc
|
||||
%exclude %{_datadir}/vim/%{vimdir}/tutor
|
||||
%{_datadir}/icons/locolor/*/apps/gvim.png
|
||||
%{_datadir}/icons/hicolor/*/apps/gvim.png
|
||||
%{_mandir}/man1/*
|
||||
%{_mandir}/man1/evim.1*
|
||||
%{_mandir}/man1/ex.1*
|
||||
%{_mandir}/man1/rview.1*
|
||||
%{_mandir}/man1/rvim.1*
|
||||
%{_mandir}/man1/view.1*
|
||||
%{_mandir}/man1/vim.1*
|
||||
%{_mandir}/man1/vimdiff.1*
|
||||
%{_mandir}/man1/xxd.1*
|
||||
/root/.vimrc
|
||||
|
||||
%files desktop
|
||||
%defattr(-,root,root)
|
||||
%if %{with_gvim}
|
||||
%{_bindir}/gvim
|
||||
%endif
|
||||
/root/.vimrc
|
||||
%{_datadir}/applications/gvim.desktop
|
||||
%{_datadir}/applications/vim.desktop
|
||||
%{_datadir}/icons/locolor/*/apps/gvim.png
|
||||
%{_datadir}/icons/hicolor/*/apps/gvim.png
|
||||
|
||||
%files doc
|
||||
%defattr(-,root,root)
|
||||
@ -174,9 +199,221 @@ install -m 0755 -D src/gvim %{buildroot}%{_bindir}/gvim
|
||||
|
||||
%files tutor
|
||||
%defattr(-,root,root)
|
||||
%{_bindir}/vimtutor
|
||||
%{_datadir}/vim/%{vimdir}/tutor
|
||||
%{_mandir}/man1/vimtutor.1*
|
||||
|
||||
%changelog
|
||||
* Sun Aug 14 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0200-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Aug 13 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0193-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Aug 10 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0174-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Aug 09 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0167-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Aug 07 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0150-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Aug 05 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0139-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Aug 05 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0137-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Aug 04 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0135-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Aug 02 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0129-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Jul 31 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0107-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jul 29 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0100-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Jul 28 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0090-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Jul 27 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0086-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Jul 19 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0057-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Jul 17 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0054-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Jul 13 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0050-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Jul 11 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0049-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Jul 09 2022 Silvan Calarco <silvan.calarco@mambasoft.it> 9.0.0040-2mamba
|
||||
- move desktop entry to -desktop subpackage
|
||||
|
||||
* Thu Jul 07 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0040-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Jul 03 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0030-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Jul 02 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0016-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jul 01 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0009-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Jun 29 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0006-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Jun 29 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0000-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Jun 27 2022 Automatic Build System <autodist@mambasoft.it> 8.2.5166-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Jun 27 2022 Automatic Build System <autodist@mambasoft.it> 8.2.5154-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Jun 23 2022 Automatic Build System <autodist@mambasoft.it> 8.2.5150-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Jun 22 2022 Automatic Build System <autodist@mambasoft.it> 8.2.5145-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Jun 22 2022 Automatic Build System <autodist@mambasoft.it> 8.2.5141-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Jun 20 2022 Automatic Build System <autodist@mambasoft.it> 8.2.5126-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Jun 19 2022 Automatic Build System <autodist@mambasoft.it> 8.2.5117-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jun 17 2022 Automatic Build System <autodist@mambasoft.it> 8.2.5112-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Jun 16 2022 Automatic Build System <autodist@mambasoft.it> 8.2.5100-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Jun 15 2022 Automatic Build System <autodist@mambasoft.it> 8.2.5085-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Jun 14 2022 Automatic Build System <autodist@mambasoft.it> 8.2.5083-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Jun 09 2022 Automatic Build System <autodist@mambasoft.it> 8.2.5066-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Jun 06 2022 Automatic Build System <autodist@mambasoft.it> 8.2.5060-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Jun 04 2022 Automatic Build System <autodist@mambasoft.it> 8.2.5054-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Jun 04 2022 Automatic Build System <autodist@mambasoft.it> 8.2.5052-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue May 31 2022 Automatic Build System <autodist@mambasoft.it> 8.2.5046-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun May 29 2022 Automatic Build System <autodist@mambasoft.it> 8.2.5037-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat May 28 2022 Automatic Build System <autodist@mambasoft.it> 8.2.5030-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri May 27 2022 Automatic Build System <autodist@mambasoft.it> 8.2.5024-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu May 26 2022 Automatic Build System <autodist@mambasoft.it> 8.2.5018-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed May 25 2022 Automatic Build System <autodist@mambasoft.it> 8.2.5014-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue May 24 2022 Automatic Build System <autodist@mambasoft.it> 8.2.5009-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon May 23 2022 Automatic Build System <autodist@mambasoft.it> 8.2.5006-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon May 23 2022 Automatic Build System <autodist@mambasoft.it> 8.2.5002-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun May 22 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4995-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun May 22 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4989-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat May 21 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4987-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri May 20 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4981-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu May 19 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4980-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed May 18 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4975-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed May 18 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4969-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue May 17 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4968-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon May 16 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4959-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun May 15 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4956-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun May 15 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4955-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat May 14 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4949-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat May 14 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4946-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed May 11 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4931-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue May 10 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4929-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon May 09 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4916-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon May 09 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4913-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun May 08 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4912-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun May 08 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4897-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat May 07 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4875-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri May 06 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4868-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue May 03 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4859-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue May 03 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4854-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
|
Reference in New Issue
Block a user