Compare commits
33 Commits
9.0.2087-1
...
9.1.0035-1
Author | SHA1 | Date | |
---|---|---|---|
ea0bfd2b45 | |||
e1a77f0590 | |||
854d7e964b | |||
f7df217cf1 | |||
2490144c23 | |||
45bde9f120 | |||
1408a6d9c8 | |||
c2cc454ef4 | |||
e7c11fd166 | |||
110ed1cba8 | |||
dc6a7c8071 | |||
1ffdc2e84c | |||
240c5c19da | |||
b83c64cdc9 | |||
c87dbe8408 | |||
089dbac40e | |||
976f30ff6c | |||
ee7741960b | |||
4fa2c4a94a | |||
39243a1600 | |||
3297cbdfa8 | |||
505149902b | |||
c2384d5acd | |||
d6cfe4b8b5 | |||
1df0ebcd77 | |||
154c5f1f05 | |||
deb3cc77e1 | |||
277ad75e6d | |||
ff5b20f7cd | |||
8cedc160a9 | |||
8a26a9223b | |||
0c8f3e29d6 | |||
89afe39b80 |
196
vim.spec
196
vim.spec
@ -2,10 +2,10 @@
|
||||
## *AUTOSPEC-OFF*
|
||||
%define vimdir %{name}%(majversion=%majversion; echo ${majversion/\./})
|
||||
## *AUTOSPEC-ON*
|
||||
%define with_gvim 0
|
||||
%define with_gvim 1
|
||||
|
||||
Name: vim
|
||||
Version: 9.0.2087
|
||||
Version: 9.1.0035
|
||||
Release: 1mamba
|
||||
Summary: VIsual editor iMproved
|
||||
Group: Applications/Text
|
||||
@ -18,16 +18,25 @@ Source2: vimrc-skel
|
||||
License: Charityware
|
||||
## AUTOBUILDREQ-BEGIN
|
||||
BuildRequires: glibc-devel
|
||||
BuildRequires: libICE-devel
|
||||
BuildRequires: libSM-devel
|
||||
BuildRequires: libX11-devel
|
||||
BuildRequires: libXt-devel
|
||||
BuildRequires: libacl-devel
|
||||
BuildRequires: libcairo-devel
|
||||
BuildRequires: libcanberra-devel
|
||||
BuildRequires: libgdk-pixbuf-devel
|
||||
BuildRequires: libglib-devel
|
||||
BuildRequires: libgpm-devel
|
||||
BuildRequires: libgtk3-devel
|
||||
BuildRequires: libncurses-devel
|
||||
BuildRequires: libperl
|
||||
BuildRequires: libruby-devel
|
||||
BuildRequires: libpango-devel
|
||||
BuildRequires: libselinux-devel
|
||||
BuildRequires: libsodium-devel
|
||||
BuildRequires: libtcl-devel
|
||||
## AUTOBUILDREQ-END
|
||||
BuildRequires: gettext-devel
|
||||
Provides: vim-tiny
|
||||
Obsoletes: vim-tiny <= 9.0.2190-1mamba
|
||||
|
||||
%description
|
||||
VIM (VIsual editor iMproved) is an updated and improved version of the vi editor.
|
||||
@ -93,23 +102,23 @@ src/os_unix.h
|
||||
|
||||
#LOCALEDIR=%{localedir} \
|
||||
%configure \
|
||||
--with-compiledby="%{packager}" \
|
||||
--with-features=huge \
|
||||
--with-compiledby="%{_vendor}" \
|
||||
--enable-gpm \
|
||||
--enable-acl \
|
||||
--with-x=yes \
|
||||
--enable-gui=gnome2 \
|
||||
--enable-gtk2-check \
|
||||
--enable-xim \
|
||||
--enable-fontset \
|
||||
--enable-nls \
|
||||
--enable-perlinterp \
|
||||
--enable-pythoninterp \
|
||||
--enable-tclinterp \
|
||||
--with-tclsh=%{_bindir}/tclsh \
|
||||
--enable-rubyinterp \
|
||||
--enable-gui=gtk3 \
|
||||
--enable-multibyte \
|
||||
--enable-cscope \
|
||||
--disable-acl \
|
||||
--enable-multibyte
|
||||
|
||||
--enable-netbeans \
|
||||
--enable-perlinterp=dynamic \
|
||||
--enable-python3interp=dynamic \
|
||||
--enable-rubyinterp=dynamic \
|
||||
--enable-luainterp=dynamic \
|
||||
--enable-tclinterp=dynamic \
|
||||
--enable-canberra
|
||||
|
||||
# disable the '-g' option
|
||||
%make &&
|
||||
mv src/vim src/gvim
|
||||
@ -120,19 +129,23 @@ mv src/vim src/gvim
|
||||
# build vim
|
||||
#LOCALEDIR=%{localedir} \
|
||||
%configure \
|
||||
--with-compiledby="%{packager}" \
|
||||
--with-compiledby="%{_vendor}" \
|
||||
--with-features=huge \
|
||||
--enable-gpm \
|
||||
--enable-acl \
|
||||
--with-x=no \
|
||||
--enable-gui=no \
|
||||
--enable-nls \
|
||||
--enable-perlinterp \
|
||||
--enable-pythoninterp \
|
||||
--enable-tclinterp \
|
||||
--enable-rubyinterp \
|
||||
--with-tclsh=%{_bindir}/tclsh \
|
||||
--disable-gui \
|
||||
--enable-multibyte \
|
||||
--enable-nls \
|
||||
--enable-cscope \
|
||||
--disable-acl \
|
||||
--enable-multibyte
|
||||
--enable-netbeans \
|
||||
--enable-perlinterp=dynamic \
|
||||
--enable-python3interp=dynamic \
|
||||
--enable-rubyinterp=dynamic \
|
||||
--enable-luainterp=dynamic \
|
||||
--enable-tclinterp=dynamic \
|
||||
--disable-canberra
|
||||
|
||||
#sed -i '
|
||||
# s,LOCALEDIR=$(DEST_LANG),LOCALEDIR=$(DESTDIR)$(prefix)/share/locale,g' \
|
||||
@ -204,6 +217,135 @@ install -m 0755 -D src/gvim %{buildroot}%{_bindir}/gvim
|
||||
%{_mandir}/man1/vimtutor.1*
|
||||
|
||||
%changelog
|
||||
* Wed Jan 17 2024 Automatic Build System <autodist@openmamba.org> 9.1.0035-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Jan 16 2024 Automatic Build System <autodist@openmamba.org> 9.1.0031-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Jan 15 2024 Automatic Build System <autodist@openmamba.org> 9.1.0029-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Jan 14 2024 Automatic Build System <autodist@openmamba.org> 9.1.0027-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Jan 13 2024 Automatic Build System <autodist@openmamba.org> 9.1.0026-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Jan 10 2024 Silvan Calarco <silvan.calarco@mambasoft.it> 9.1.0016-2mamba
|
||||
- rework configure options to remove deps on gui and canberra, restore gvim build, obsolete vim-tiny
|
||||
|
||||
* Tue Jan 09 2024 Automatic Build System <autodist@openmamba.org> 9.1.0016-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Jan 06 2024 Automatic Build System <autodist@openmamba.org> 9.1.0015-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jan 05 2024 Automatic Build System <autodist@openmamba.org> 9.1.0011-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Jan 04 2024 Automatic Build System <autodist@mambasoft.it> 9.1.0004-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Jan 03 2024 Automatic Build System <autodist@mambasoft.it> 9.1.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Jan 02 2024 Automatic Build System <autodist@mambasoft.it> 9.0.2190-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Dec 29 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2189-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Dec 28 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2188-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Dec 26 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2185-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Dec 22 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2184-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Dec 20 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2181-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Dec 19 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2175-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Dec 17 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2173-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Dec 16 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2172-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Dec 15 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2167-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Dec 13 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2160-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Dec 12 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2158-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Dec 09 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2155-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Dec 07 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2153-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Dec 05 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2149-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Dec 05 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2146-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Dec 02 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2143-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Dec 01 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2138-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Nov 29 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2136-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Nov 28 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2134-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Nov 26 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2130-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Nov 25 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2127-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Nov 24 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2125-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Nov 23 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2122-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Nov 20 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2116-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Nov 17 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2112-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Nov 15 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2105-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Nov 13 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2103-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Nov 12 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2100-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Nov 09 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2095-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Nov 06 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2092-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Nov 05 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2090-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Nov 03 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2087-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
|
Reference in New Issue
Block a user