Compare commits
103 Commits
8.2.4542-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 | |||
7c07bf28f3 | |||
257c4f2fdd | |||
13b60d59d4 | |||
3433ec2a27 | |||
e42640cec5 | |||
34f62fd84f | |||
eda4c0b5bd | |||
2a0f4ef99c | |||
cb15060b9c | |||
96d5237ab7 | |||
696e84c37f | |||
26c5e21721 | |||
02ac7d7410 | |||
79ed1073fe | |||
d18ffa32f8 | |||
c40f62092d | |||
78863df78a | |||
fab630bb0e | |||
5259363f67 | |||
6e760524e2 | |||
d399ffec66 | |||
d76b43a14e | |||
e1a8193952 | |||
a4aeaf2732 | |||
6342166d6a | |||
488d0c60cb | |||
b64a796b8f | |||
e8d690e0ec | |||
d48699885a | |||
5aa7c20a15 | |||
f55db44bc0 | |||
658c77bf24 | |||
ce4085c430 | |||
c2850fd0ac | |||
3763e18595 | |||
2c7cb778e2 | |||
5bbd1a1299 | |||
578b4603a8 | |||
124db90ed9 | |||
c9630de1da | |||
be2aedde36 | |||
72b7a99aba | |||
5b4b9ceadc | |||
dec479c4ac | |||
9df1130376 | |||
d2af28ad32 | |||
76c765a3c0 | |||
05c5e50ab5 | |||
2b58a95020 |
477
vim.spec
477
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.4542
|
||||
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,443 @@ 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
|
||||
|
||||
* 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
|
||||
|
||||
* Mon May 02 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4852-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun May 01 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4850-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Apr 30 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4846-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Apr 28 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4834-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Apr 27 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4830-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Apr 26 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4827-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Apr 25 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4821-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Apr 24 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4814-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Apr 24 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4807-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Apr 21 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4790-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Apr 15 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4751-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Apr 11 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4721-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Apr 09 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4710-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Apr 08 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4708-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Apr 07 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4700-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Apr 06 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4696-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Apr 03 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4669-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Apr 02 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4663-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Apr 01 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4656-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Mar 31 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4651-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Mar 28 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4639-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Mar 26 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4621-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Mar 25 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4619-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Mar 23 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4614-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Mar 22 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4602-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Mar 21 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4594-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Mar 19 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4586-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Mar 16 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4576-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Mar 16 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4567-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Mar 15 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4564-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Mar 14 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4550-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Mar 12 2022 Automatic Build System <autodist@mambasoft.it> 8.2.4542-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
|
Reference in New Issue
Block a user