Compare commits
46 Commits
9.1.0080-1
...
9.0.1456-1
Author | SHA1 | Date | |
---|---|---|---|
ba2cd9d20e | |||
b0d70657dc | |||
140637b2fc | |||
0edf17c83a | |||
86bb459f77 | |||
2f1d4dcf34 | |||
43703ea278 | |||
09c630ee1a | |||
09b5af7014 | |||
ef1310065e | |||
c1517cec54 | |||
ef94a8b8c0 | |||
5c9146b244 | |||
bce8c35c16 | |||
7541088738 | |||
05264b5341 | |||
aac0dc4a91 | |||
69c0af7c51 | |||
079ded94f1 | |||
120f19bba6 | |||
2ea08cc0c5 | |||
ae9188e9c7 | |||
cf664c9bef | |||
495d4ddc33 | |||
e81264d0ed | |||
be06c839d0 | |||
b10bbf4057 | |||
b75578ab29 | |||
ace3d04e11 | |||
cd0e43ed72 | |||
185514ae6d | |||
142c2c35d4 | |||
169f0c3a01 | |||
9dcb36a1e8 | |||
f82d63d06c | |||
f1bbcf3cbe | |||
7d8651dda6 | |||
6256e69cbc | |||
466e2bfc3e | |||
b0ab3ef382 | |||
bad2da69c5 | |||
68bc523e85 | |||
7ec155f54e | |||
d997ba7043 | |||
c6d7435817 | |||
431ced762f |
631
vim.spec
631
vim.spec
@ -2,10 +2,10 @@
|
||||
## *AUTOSPEC-OFF*
|
||||
%define vimdir %{name}%(majversion=%majversion; echo ${majversion/\./})
|
||||
## *AUTOSPEC-ON*
|
||||
%define with_gvim 1
|
||||
%define with_gvim 0
|
||||
|
||||
Name: vim
|
||||
Version: 9.1.0080
|
||||
Version: 9.0.1456
|
||||
Release: 1mamba
|
||||
Summary: VIsual editor iMproved
|
||||
Group: Applications/Text
|
||||
@ -18,25 +18,16 @@ 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: libpango-devel
|
||||
BuildRequires: libperl
|
||||
BuildRequires: libruby-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.
|
||||
@ -102,23 +93,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-gui=gtk3 \
|
||||
--enable-multibyte \
|
||||
--enable-rubyinterp \
|
||||
--enable-cscope \
|
||||
--enable-netbeans \
|
||||
--enable-perlinterp=dynamic \
|
||||
--enable-python3interp=dynamic \
|
||||
--enable-rubyinterp=dynamic \
|
||||
--enable-luainterp=dynamic \
|
||||
--enable-tclinterp=dynamic \
|
||||
--enable-canberra
|
||||
|
||||
--disable-acl \
|
||||
--enable-multibyte
|
||||
|
||||
# disable the '-g' option
|
||||
%make &&
|
||||
mv src/vim src/gvim
|
||||
@ -129,23 +120,19 @@ mv src/vim src/gvim
|
||||
# build vim
|
||||
#LOCALEDIR=%{localedir} \
|
||||
%configure \
|
||||
--with-compiledby="%{_vendor}" \
|
||||
--with-compiledby="%{packager}" \
|
||||
--with-features=huge \
|
||||
--enable-gpm \
|
||||
--enable-acl \
|
||||
--with-x=no \
|
||||
--with-tclsh=%{_bindir}/tclsh \
|
||||
--disable-gui \
|
||||
--enable-multibyte \
|
||||
--enable-gui=no \
|
||||
--enable-nls \
|
||||
--enable-perlinterp \
|
||||
--enable-pythoninterp \
|
||||
--enable-tclinterp \
|
||||
--enable-rubyinterp \
|
||||
--with-tclsh=%{_bindir}/tclsh \
|
||||
--enable-cscope \
|
||||
--enable-netbeans \
|
||||
--enable-perlinterp=dynamic \
|
||||
--enable-python3interp=dynamic \
|
||||
--enable-rubyinterp=dynamic \
|
||||
--enable-luainterp=dynamic \
|
||||
--enable-tclinterp=dynamic \
|
||||
--disable-canberra
|
||||
--disable-acl \
|
||||
--enable-multibyte
|
||||
|
||||
#sed -i '
|
||||
# s,LOCALEDIR=$(DEST_LANG),LOCALEDIR=$(DESTDIR)$(prefix)/share/locale,g' \
|
||||
@ -217,570 +204,6 @@ install -m 0755 -D src/gvim %{buildroot}%{_bindir}/gvim
|
||||
%{_mandir}/man1/vimtutor.1*
|
||||
|
||||
%changelog
|
||||
* Wed Feb 07 2024 Automatic Build System <autodist@openmamba.org> 9.1.0080-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Feb 06 2024 Automatic Build System <autodist@openmamba.org> 9.1.0076-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Feb 04 2024 Automatic Build System <autodist@openmamba.org> 9.1.0075-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Feb 02 2024 Automatic Build System <autodist@openmamba.org> 9.1.0071-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Feb 01 2024 Automatic Build System <autodist@openmamba.org> 9.1.0067-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Jan 30 2024 Automatic Build System <autodist@openmamba.org> 9.1.0065-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Jan 29 2024 Automatic Build System <autodist@openmamba.org> 9.1.0061-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jan 26 2024 Automatic Build System <autodist@openmamba.org> 9.1.0059-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Jan 25 2024 Automatic Build System <autodist@openmamba.org> 9.1.0050-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Jan 23 2024 Automatic Build System <autodist@openmamba.org> 9.1.0044-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Jan 22 2024 Automatic Build System <autodist@openmamba.org> 9.1.0042-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Jan 18 2024 Automatic Build System <autodist@openmamba.org> 9.1.0041-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* 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
|
||||
|
||||
* Mon Oct 30 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2081-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Oct 27 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2073-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Oct 27 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2070-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Oct 26 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2067-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Oct 25 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2063-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Oct 22 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2059-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Oct 22 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2056-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Oct 20 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2053-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Oct 20 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2050-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Oct 18 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2043-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Oct 17 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2034-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Oct 16 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2032-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Oct 12 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2018-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Oct 10 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2009-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Oct 09 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2002-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Oct 08 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2001-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Oct 08 2023 Automatic Build System <autodist@mambasoft.it> 9.0.2000-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Oct 08 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1999-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Oct 07 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1994-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Oct 03 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1976-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Oct 02 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1968-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Oct 01 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1959-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Sep 30 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1950-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Sep 27 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1943-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Sep 26 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1940-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Sep 20 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1916-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Sep 19 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1910-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Sep 18 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1903-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Sep 17 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1900-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Sep 12 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1897-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Sep 10 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1888-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Sep 09 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1885-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Sep 07 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1882-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Sep 06 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1876-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Sep 06 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1872-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Sep 05 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1863-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Sep 04 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1859-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Sep 04 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1857-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Sep 03 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1850-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Sep 03 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1847-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Sep 02 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1833-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Aug 31 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1826-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Aug 31 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1825-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Aug 31 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1822-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Aug 29 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1815-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Aug 29 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1811-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Aug 28 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1800-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Aug 28 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1792-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Aug 27 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1789-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Aug 26 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1787-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Aug 25 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1786-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Aug 23 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1783-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Aug 22 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1778-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Aug 21 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1766-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Aug 20 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1750-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Aug 18 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1736-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Aug 17 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1721-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Aug 14 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1712-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Aug 14 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1697-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Aug 12 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1695-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Aug 09 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1679-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Aug 08 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1678-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Jul 10 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1677-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Jul 09 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1676-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Jul 02 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1672-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Jun 29 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1671-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Jun 28 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1670-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Jun 27 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1668-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Jun 26 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1665-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Jun 25 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1664-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Jun 25 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1659-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Jun 24 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1650-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jun 23 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1649-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Jun 22 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1642-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Jun 18 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1640-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Jun 18 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1639-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Jun 17 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1637-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jun 16 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1636-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Jun 15 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1632-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Jun 14 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1628-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Jun 13 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1627-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Jun 12 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1626-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jun 09 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1616-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Jun 08 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1614-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Jun 07 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1613-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Jun 06 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1608-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Jun 05 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1607-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Jun 04 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1603-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Jun 04 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1599-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jun 02 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1598-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Jun 01 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1595-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed May 31 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1592-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue May 30 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1591-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue May 30 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1587-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun May 28 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1585-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun May 28 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1582-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat May 27 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1580-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri May 26 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1579-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri May 26 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1576-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed May 24 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1575-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun May 21 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1572-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun May 21 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1571-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat May 20 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1570-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat May 20 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1566-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu May 18 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1562-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon May 15 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1558-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun May 14 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1553-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun May 14 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1550-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat May 13 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1547-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri May 12 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1544-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu May 11 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1539-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu May 11 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1536-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue May 09 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1528-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue May 09 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1523-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun May 07 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1520-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun May 07 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1514-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat May 06 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1510-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed May 03 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1506-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue May 02 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1504-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon May 01 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1503-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon May 01 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1500-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Apr 30 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1499-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Apr 30 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1498-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Apr 30 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1496-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Apr 29 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1495-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Apr 28 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1494-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Apr 27 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1491-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Apr 27 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1488-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Apr 26 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1486-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Apr 24 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1482-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Apr 24 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1474-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Apr 17 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1459-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Apr 16 2023 Automatic Build System <autodist@mambasoft.it> 9.0.1456-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
|
Reference in New Issue
Block a user