Compare commits
44 Commits
3.4.1-1mam
...
main
Author | SHA1 | Date | |
---|---|---|---|
3e2c9df3c8 | |||
9ea84a017e | |||
81bc6d3a99 | |||
43fd1fa7aa | |||
06a45f9d00 | |||
915e20ecec | |||
7dd1bdd66e | |||
d75e092961 | |||
684ce7a1c7 | |||
8b80861a2e | |||
6ebeb0bdf4 | |||
23dc3b955e | |||
1b02d0b91b | |||
3c2e85a5a2 | |||
12dd519dad | |||
3e3508d1d0 | |||
b5af356e0d | |||
1a8ef2dd99 | |||
1967ae71c0 | |||
f9e3381e22 | |||
af6236959d | |||
6ec5dbbbd7 | |||
52bacd420f | |||
133b81e59b | |||
a4129f2afb | |||
0711832d78 | |||
62c802163d | |||
6403cfc9b0 | |||
e70a9c4023 | |||
89c6fc0ded | |||
b750ab6d66 | |||
b7d84eea44 | |||
414e064ebe | |||
f6a300ff03 | |||
eef2da202b | |||
6aa49e3860 | |||
b05f0fe911 | |||
bc57444132 | |||
c1b7976ad6 | |||
0d8baebf04 | |||
0bc202262f | |||
9458182eb6 | |||
ac8942abc3 | |||
ced0de493f |
25
protobuf-24.3-upstream-fix-Protobuf_PROTOC_EXECUTABLE.patch
Normal file
25
protobuf-24.3-upstream-fix-Protobuf_PROTOC_EXECUTABLE.patch
Normal file
@ -0,0 +1,25 @@
|
||||
From 2e62ef1eaa2e712afc5f87aa2c55d478fe96230d Mon Sep 17 00:00:00 2001
|
||||
From: Antonio Rojas <arojas@archlinux.org>
|
||||
Date: Wed, 5 Jul 2023 13:03:11 +0200
|
||||
Subject: [PATCH] Handle BUILD_TYPE=None in protobuf-module.cmake
|
||||
|
||||
Fixes Protobuf_PROTOC_EXECUTABLE being undefined in that case.
|
||||
---
|
||||
cmake/protobuf-module.cmake.in | 4 ++++
|
||||
1 file changed, 4 insertions(+)
|
||||
|
||||
diff --git a/cmake/protobuf-module.cmake.in b/cmake/protobuf-module.cmake.in
|
||||
index 0bb05e38fad..e5b2b2e4b3a 100644
|
||||
--- a/cmake/protobuf-module.cmake.in
|
||||
+++ b/cmake/protobuf-module.cmake.in
|
||||
@@ -153,6 +153,10 @@ if(NOT Protobuf_PROTOC_EXECUTABLE AND TARGET protobuf::protoc)
|
||||
get_target_property(Protobuf_PROTOC_EXECUTABLE protobuf::protoc
|
||||
IMPORTED_LOCATION_NOCONFIG)
|
||||
endif()
|
||||
+ if(NOT EXISTS "${Protobuf_PROTOC_EXECUTABLE}")
|
||||
+ get_target_property(Protobuf_PROTOC_EXECUTABLE protobuf::protoc
|
||||
+ IMPORTED_LOCATION_NONE)
|
||||
+ endif()
|
||||
endif()
|
||||
|
||||
# Version info variable
|
36
protobuf-25.3-soversion.patch
Normal file
36
protobuf-25.3-soversion.patch
Normal file
@ -0,0 +1,36 @@
|
||||
diff --git a/cmake/libprotobuf-lite.cmake b/cmake/libprotobuf-lite.cmake
|
||||
index 9b1de677b4f..276c99c489e 100644
|
||||
--- a/cmake/libprotobuf-lite.cmake
|
||||
+++ b/cmake/libprotobuf-lite.cmake
|
||||
@@ -30,6 +30,7 @@ if(protobuf_BUILD_SHARED_LIBS)
|
||||
endif()
|
||||
set_target_properties(libprotobuf-lite PROPERTIES
|
||||
VERSION ${protobuf_VERSION}
|
||||
+ SOVERSION ${protobuf_VERSION_MINOR}
|
||||
OUTPUT_NAME ${LIB_PREFIX}protobuf-lite
|
||||
DEBUG_POSTFIX "${protobuf_DEBUG_POSTFIX}")
|
||||
add_library(protobuf::libprotobuf-lite ALIAS libprotobuf-lite)
|
||||
diff --git a/cmake/libprotobuf.cmake b/cmake/libprotobuf.cmake
|
||||
index aa3efc9a68a..0f34d20b97d 100644
|
||||
--- a/cmake/libprotobuf.cmake
|
||||
+++ b/cmake/libprotobuf.cmake
|
||||
@@ -33,6 +33,7 @@ if(protobuf_BUILD_SHARED_LIBS)
|
||||
endif()
|
||||
set_target_properties(libprotobuf PROPERTIES
|
||||
VERSION ${protobuf_VERSION}
|
||||
+ SOVERSION ${protobuf_VERSION_MINOR}
|
||||
OUTPUT_NAME ${LIB_PREFIX}protobuf
|
||||
DEBUG_POSTFIX "${protobuf_DEBUG_POSTFIX}")
|
||||
add_library(protobuf::libprotobuf ALIAS libprotobuf)
|
||||
diff --git a/cmake/libprotoc.cmake b/cmake/libprotoc.cmake
|
||||
index 72b4a1abb92..91e8bbeb04e 100644
|
||||
--- a/cmake/libprotoc.cmake
|
||||
+++ b/cmake/libprotoc.cmake
|
||||
@@ -24,6 +24,7 @@ endif()
|
||||
set_target_properties(libprotoc PROPERTIES
|
||||
COMPILE_DEFINITIONS LIBPROTOC_EXPORTS
|
||||
VERSION ${protobuf_VERSION}
|
||||
+ SOVERSION ${protobuf_VERSION_MINOR}
|
||||
OUTPUT_NAME ${LIB_PREFIX}protoc
|
||||
DEBUG_POSTFIX "${protobuf_DEBUG_POSTFIX}")
|
||||
add_library(protobuf::libprotoc ALIAS libprotoc)
|
283
protobuf.spec
283
protobuf.spec
@ -1,23 +1,28 @@
|
||||
Name: protobuf
|
||||
Version: 3.4.1
|
||||
Release: 1mamba
|
||||
Version: 29.3
|
||||
Release: 2mamba
|
||||
Summary: A way of encoding structured data in an efficient yet extensible format
|
||||
Group: Development/Tools
|
||||
Vendor: openmamba
|
||||
Distribution: openmamba
|
||||
Packager: Ercole 'ercolinux' Carpanetto <ercole69@gmail.com>
|
||||
URL: http://code.google.com/p/protobuf/
|
||||
Source: https://github.com/google/protobuf.git/v%{version}/protobuf-%{version}.tar.bz2
|
||||
#Source: http://protobuf.googlecode.com/files/protobuf-%{version}.tar.bz2
|
||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
URL: https://protobuf.dev/
|
||||
Source: https://github.com/protocolbuffers/protobuf.git/v%{version}/protobuf-%{version}.tar.bz2
|
||||
Patch1: protobuf-24.3-upstream-fix-Protobuf_PROTOC_EXECUTABLE.patch
|
||||
Patch2: protobuf-25.3-soversion.patch
|
||||
License: BSD
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||
## AUTOBUILDREQ-BEGIN
|
||||
BuildRequires: glibc-devel
|
||||
BuildRequires: libabseil-cpp-devel
|
||||
BuildRequires: libgcc
|
||||
BuildRequires: libstdc++6-devel
|
||||
BuildRequires: libz-devel
|
||||
## AUTOBUILDREQ-END
|
||||
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||
Obsoletes: protobuf23 <= 3.12.4-3mamba
|
||||
Obsoletes: protobuf25 <= 25.3-2mamba
|
||||
Obsoletes: protobuf29 <= 3.17.3-2mamba
|
||||
Obsoletes: protobuf32 <= 21.12-3mamba
|
||||
|
||||
%description
|
||||
Protocol Buffers are a way of encoding structured data in an efficient yet extensible format. Google uses Protocol Buffers for almost all of its internal RPC protocols and file formats.
|
||||
@ -25,6 +30,10 @@ Protocol Buffers are a way of encoding structured data in an efficient yet exten
|
||||
%package -n lib%{name}
|
||||
Group: System/Libraries
|
||||
Summary: Shared libraries for %{name}
|
||||
Obsoletes: libprotobuf23 <= 3.12.4-3mamba
|
||||
Obsoletes: libprotobuf25 <= 25.3-2mamba
|
||||
Obsoletes: libprotobuf29 <= 3.17.3-2mamba
|
||||
Obsoletes: libprotobuf32 <= 21.12-3mamba
|
||||
|
||||
%description -n lib%{name}
|
||||
Protocol Buffers are a way of encoding structured data in an efficient yet extensible format. Google uses Protocol Buffers for almost all of its internal RPC protocols and file formats.
|
||||
@ -34,53 +43,287 @@ This package contains shared libraries for %{name}.
|
||||
Summary: Devel package for %{name}
|
||||
Group: Development/Libraries
|
||||
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||
Provides: protobuf-devel
|
||||
Obsoletes: protobuf-devel
|
||||
Obsoletes: protobuf-devel < 3.17.0
|
||||
Obsoletes: libprotobuf23-devel <= 3.12.4-3mamba
|
||||
Obsoletes: libprotobuf25-devel <= 25.3-2mamba
|
||||
Obsoletes: libprotobuf29-devel <= 3.17.3-2mamba
|
||||
Obsoletes: libprotobuf32-devel <= 21.12-3mamba
|
||||
|
||||
%description -n lib%{name}-devel
|
||||
This package contains static libraries and header files need for development of Protocol Buffer
|
||||
This package contains static libraries and header files needed for development of Protocol Buffer
|
||||
|
||||
%global _lto_cflags %{nil}
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch 1 -p1 -F2 -b .upstream-fix-Protobuf_PROTOC_EXECUTABLE
|
||||
%patch 2 -p1 -F2 -b .soversion
|
||||
|
||||
%build
|
||||
./autogen.sh
|
||||
%configure
|
||||
%make
|
||||
%cmake \
|
||||
-Dprotobuf_BUILD_SHARED_LIBS=ON \
|
||||
-Dprotobuf_USE_EXTERNAL_GTEST=ON \
|
||||
-Dprotobuf_ABSL_PROVIDER=package
|
||||
|
||||
%cmake_build
|
||||
|
||||
%install
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
%makeinstall
|
||||
%cmake_install
|
||||
|
||||
%clean
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
|
||||
%post -n lib%{name} -p /sbin/ldconfig
|
||||
%postun -n lib%{name} -p /sbin/ldconfig
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%{_bindir}/protoc
|
||||
%{_bindir}/protoc*
|
||||
|
||||
%files -n lib%{name}
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/libprotobuf*.so.*
|
||||
%{_libdir}/libprotoc.so.*
|
||||
%{_libdir}/libutf8_range.so
|
||||
%{_libdir}/libutf8_validity.so
|
||||
%doc LICENSE
|
||||
|
||||
%files -n lib%{name}-devel
|
||||
%defattr(-,root,root)
|
||||
%dir %{_includedir}/google/protobuf
|
||||
%{_includedir}/google/protobuf/*
|
||||
%{_libdir}/libprotobuf*.a
|
||||
%{_libdir}/libprotobuf*.la
|
||||
%dir %{_includedir}/upb
|
||||
%{_includedir}/upb/*
|
||||
%dir %{_includedir}/upb_generator
|
||||
%{_includedir}/upb_generator/*
|
||||
%{_includedir}/utf8_range.h
|
||||
%{_includedir}/utf8_validity.h
|
||||
%{_libdir}/libupb.a
|
||||
%{_libdir}/libprotobuf*.so
|
||||
%{_libdir}/libprotoc.a
|
||||
%{_libdir}/libprotoc.la
|
||||
%{_libdir}/libprotoc.so
|
||||
%dir %{_libdir}/cmake/protobuf
|
||||
%{_libdir}/cmake/protobuf/protobuf-*.cmake
|
||||
%dir %{_libdir}/cmake/utf8_range
|
||||
%{_libdir}/cmake/utf8_range/utf8_range-*.cmake
|
||||
%{_libdir}/pkgconfig/protobuf*.pc
|
||||
%{_libdir}/pkgconfig/upb.pc
|
||||
%{_libdir}/pkgconfig/utf8_range.pc
|
||||
|
||||
%changelog
|
||||
* Wed Feb 12 2025 Silvan Calarco <silvan.calarco@mambasoft.it> 29.3-2mamba
|
||||
- obsolete protobuf25
|
||||
|
||||
* Sat Jan 11 2025 Automatic Build System <autodist@openmamba.org> 29.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Jan 04 2025 Automatic Build System <autodist@openmamba.org> 29.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Dec 05 2024 Automatic Build System <autodist@openmamba.org> 29.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Nov 28 2024 Automatic Build System <autodist@openmamba.org> 29.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Oct 23 2024 Automatic Build System <autodist@openmamba.org> 28.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Oct 15 2024 Silvan Calarco <silvan.calarco@mambasoft.it> 28.2-2mamba
|
||||
- move libutf8_range.so and libutf8_validity.so from devel to lib package
|
||||
|
||||
* Thu Sep 19 2024 Automatic Build System <autodist@openmamba.org> 28.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Sep 16 2024 Silvan Calarco <silvan.calarco@mambasoft.it> 28.1-2mamba
|
||||
- obsolete legacy packages
|
||||
|
||||
* Thu Sep 12 2024 Automatic Build System <autodist@openmamba.org> 28.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Sep 01 2024 Automatic Build System <autodist@openmamba.org> 28.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Aug 28 2024 Automatic Build System <autodist@openmamba.org> 27.4-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Aug 01 2024 Automatic Build System <autodist@openmamba.org> 27.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Jun 26 2024 Automatic Build System <autodist@openmamba.org> 27.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Jun 06 2024 Automatic Build System <autodist@openmamba.org> 27.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun May 26 2024 Automatic Build System <autodist@openmamba.org> 27.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Apr 05 2024 Automatic Build System <autodist@openmamba.org> 26.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Feb 19 2024 Automatic Build System <autodist@openmamba.org> 25.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Jul 04 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 21.12-2mamba
|
||||
- added python 3.10 subpackage
|
||||
|
||||
* Sat Dec 17 2022 Automatic Build System <autodist@mambasoft.it> 21.12-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Dec 09 2022 Automatic Build System <autodist@mambasoft.it> 21.11-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Dec 01 2022 Automatic Build System <autodist@mambasoft.it> 21.10-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Oct 27 2022 Automatic Build System <autodist@mambasoft.it> 21.9-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Oct 20 2022 Automatic Build System <autodist@mambasoft.it> 21.8-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Sep 30 2022 Automatic Build System <autodist@mambasoft.it> 21.7-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Sep 17 2022 Automatic Build System <autodist@mambasoft.it> 21.6-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Aug 10 2022 Automatic Build System <autodist@mambasoft.it> 21.5-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Jul 26 2022 Automatic Build System <autodist@mambasoft.it> 21.4-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Jul 21 2022 Automatic Build System <autodist@mambasoft.it> 21.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Jun 28 2022 Automatic Build System <autodist@mambasoft.it> 21.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun May 29 2022 Automatic Build System <autodist@mambasoft.it> 21.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Apr 23 2022 Automatic Build System <autodist@mambasoft.it> 3.20.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Jan 29 2022 Automatic Build System <autodist@mambasoft.it> 3.19.4-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Jan 13 2022 Automatic Build System <autodist@mambasoft.it> 3.19.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Jan 06 2022 Automatic Build System <autodist@mambasoft.it> 3.19.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Oct 29 2021 Automatic Build System <autodist@mambasoft.it> 3.19.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Oct 21 2021 Automatic Build System <autodist@mambasoft.it> 3.19.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Oct 09 2021 Automatic Build System <autodist@mambasoft.it> 3.18.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Sep 16 2021 Automatic Build System <autodist@mambasoft.it> 3.18.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Jun 09 2021 Automatic Build System <autodist@mambasoft.it> 3.17.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Jun 03 2021 Automatic Build System <autodist@mambasoft.it> 3.17.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue May 25 2021 Automatic Build System <autodist@mambasoft.it> 3.17.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat May 15 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 3.17.0-2mamba
|
||||
- libprotobuf-devel: require protobuf; python-protobuf: use distdeps; fixed url
|
||||
|
||||
* Fri May 14 2021 Automatic Build System <autodist@mambasoft.it> 3.17.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun May 09 2021 Automatic Build System <autodist@mambasoft.it> 3.16.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Apr 09 2021 Automatic Build System <autodist@mambasoft.it> 3.15.8-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Apr 03 2021 Automatic Build System <autodist@mambasoft.it> 3.15.7-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Mar 12 2021 Automatic Build System <autodist@mambasoft.it> 3.15.6-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Mar 06 2021 Automatic Build System <autodist@mambasoft.it> 3.15.5-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Mar 05 2021 Automatic Build System <autodist@mambasoft.it> 3.15.4-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Feb 26 2021 Automatic Build System <autodist@mambasoft.it> 3.15.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Feb 25 2021 Automatic Build System <autodist@mambasoft.it> 3.15.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Feb 21 2021 Automatic Build System <autodist@mambasoft.it> 3.15.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Jan 31 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 3.12.4-2mamba
|
||||
- added python subpackage
|
||||
|
||||
* Thu Aug 06 2020 Automatic Build System <autodist@mambasoft.it> 3.12.4-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Jul 01 2020 Automatic Build System <autodist@mambasoft.it> 3.12.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Jun 03 2020 Automatic Build System <autodist@mambasoft.it> 3.12.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Mar 03 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 3.11.4-2mamba
|
||||
- rebuilt with debug package
|
||||
|
||||
* Wed Feb 19 2020 Automatic Build System <autodist@mambasoft.it> 3.11.4-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Feb 06 2020 Automatic Build System <autodist@mambasoft.it> 3.11.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Jan 15 2020 Automatic Build System <autodist@mambasoft.it> 3.11.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Dec 28 2019 Automatic Build System <autodist@mambasoft.it> 3.11.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Nov 14 2019 Automatic Build System <autodist@mambasoft.it> 3.10.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Oct 28 2019 Automatic Build System <autodist@mambasoft.it> 3.10.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Mar 13 2019 Automatic Build System <autodist@mambasoft.it> 3.7.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Jan 05 2019 Automatic Build System <autodist@mambasoft.it> 3.6.1.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Sep 04 2018 Silvan Calarco <silvan.calarco@mambasoft.it> 3.6.1-1mamba
|
||||
- update to 3.6.1
|
||||
|
||||
* Mon Aug 06 2018 Automatic Build System <autodist@mambasoft.it> 3.6.0.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Mar 25 2018 Automatic Build System <autodist@mambasoft.it> 3.5.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Jan 07 2018 Automatic Build System <autodist@mambasoft.it> 3.5.1.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Jan 02 2018 Automatic Build System <autodist@mambasoft.it> 3.5.0.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Oct 27 2017 Automatic Build System <autodist@mambasoft.it> 3.4.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user