Compare commits
54 Commits
8.2.5126-1
...
9.0.0815-1
Author | SHA1 | Date | |
---|---|---|---|
701ccdec13 | |||
59f110bd85 | |||
54561e3b04 | |||
8a37716a33 | |||
cf860f6171 | |||
c4ea0d1c71 | |||
df7335d923 | |||
14b9cc1421 | |||
f3ce9c0c1f | |||
c7fa87b42f | |||
ad946ca4b5 | |||
7b37a837aa | |||
1a7edc6f68 | |||
309621faec | |||
99a6a935a5 | |||
6e3e646e0f | |||
8c9d08dfd6 | |||
0e24a3816e | |||
7a9f3ee219 | |||
2fd4d3cd90 | |||
af9292d359 | |||
17d8d46cbb | |||
e3e7e34d21 | |||
fecb950c3a | |||
9f016c88e9 | |||
20873b7096 | |||
038a550bfa | |||
18a7b4e1e4 | |||
08d026c613 | |||
dcdf137cfa | |||
f6f7c190fb | |||
e81712bd3d | |||
cded3c8ff5 | |||
e34fa67199 | |||
8af0e68f7c | |||
ce12f83be6 | |||
db109994e7 | |||
c37e116e47 | |||
132f533a2e | |||
5767020e16 | |||
8f86232d14 | |||
f6a2418ab8 | |||
e27ee49807 | |||
9ca41d1b9c | |||
2e41d8c488 | |||
6a3431e047 | |||
111a58d165 | |||
a12c5ce739 | |||
b2aab49ad2 | |||
246f6b6d36 | |||
eb617aa821 | |||
81385fcbad | |||
6caa3aa96b | |||
6ea37d2fb2 |
258
vim.spec
258
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.5126
|
||||
Version: 9.0.0815
|
||||
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,224 @@ 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
|
||||
* Sat Oct 29 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0815-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Oct 23 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0814-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Oct 22 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0801-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Oct 21 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0790-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Oct 16 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0752-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Oct 13 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0728-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Oct 10 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0701-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Oct 07 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0663-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Oct 06 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0661-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Oct 05 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0655-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Oct 04 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0646-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Oct 03 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0639-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Oct 02 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0636-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Oct 02 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0626-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Oct 01 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0621-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Sep 29 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0611-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Sep 28 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0598-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Sep 26 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0558-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Sep 25 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0553-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Sep 22 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0507-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Sep 19 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0500-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Sep 18 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0481-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Sep 16 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0465-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Sep 14 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0453-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Sep 14 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0437-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Sep 11 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0417-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Sep 07 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0396-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Sep 06 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0389-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Sep 05 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0379-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Sep 04 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0372-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Sep 04 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0369-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Sep 02 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0354-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Sep 01 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0335-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Aug 30 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0321-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Aug 30 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0300-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Aug 28 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0284-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Aug 27 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0270-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Aug 26 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0260-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Aug 24 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0250-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Aug 23 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0236-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Aug 22 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0234-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Aug 21 2022 Automatic Build System <autodist@mambasoft.it> 9.0.0229-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* 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
|
||||
|
||||
|
Reference in New Issue
Block a user