automatic version update by autodist [release 24.3.2-1mamba;Sun Jan 19 2025]
This commit is contained in:
parent
10cd808d44
commit
70d3a9ae7e
BIN
dbeaver.profile.gz
Normal file
BIN
dbeaver.profile.gz
Normal file
Binary file not shown.
32
dbeaver.spec
32
dbeaver.spec
@ -1,5 +1,8 @@
|
|||||||
|
%define COMMON_COMMIT bc3c2e688a2578156efc42550ff750254dea0378
|
||||||
|
%define JDBC_LIBSQL_COMMIT dc67e1440c64dd2da15707e14680087103e0a19f
|
||||||
|
|
||||||
Name: dbeaver
|
Name: dbeaver
|
||||||
Version: 22.2.2
|
Version: 24.3.2
|
||||||
Release: 1mamba
|
Release: 1mamba
|
||||||
Summary: Free universal database tool and SQL client
|
Summary: Free universal database tool and SQL client
|
||||||
Group: Graphical Desktop/Applications/Utilities
|
Group: Graphical Desktop/Applications/Utilities
|
||||||
@ -8,8 +11,13 @@ Distribution: openmamba
|
|||||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
URL: https://dbeaver.io/
|
URL: https://dbeaver.io/
|
||||||
Source: https://github.com/dbeaver/dbeaver.git/%{version}/dbeaver-%{version}.tar.bz2
|
Source: https://github.com/dbeaver/dbeaver.git/%{version}/dbeaver-%{version}.tar.bz2
|
||||||
Source1: dbeaver.sh
|
Source1: https://github.com/dbeaver/dbeaver-common/archive/%{COMMON_COMMIT}.tar.gz
|
||||||
Source2: io.dbeaver.DBeaver.desktop
|
Source2: https://github.com/dbeaver/dbeaver-jdbc-libsql/archive/%{JDBC_LIBSQL_COMMIT}.tar.gz
|
||||||
|
#Source1: https://github.com/dbeaver/dbeaver-common.git/devel@%{COMMON_COMMIT}/dbeaver-common-%{version}.tar.bz2
|
||||||
|
#Source2: https://github.com/dbeaver/dbeaver-jdbc-libsql.git/devel@%{JDBC_LIBSQL_COMMIT}/dbeaver-jdbc-libsql-%{version}.tar.bz2
|
||||||
|
Source3: dbeaver.sh
|
||||||
|
Source4: io.dbeaver.DBeaver.desktop
|
||||||
|
Source5: dbeaver.profile.gz
|
||||||
License: Apache License 2.0
|
License: Apache License 2.0
|
||||||
## AUTOBUILDREQ-BEGIN
|
## AUTOBUILDREQ-BEGIN
|
||||||
## AUTOBUILDREQ-END
|
## AUTOBUILDREQ-END
|
||||||
@ -20,21 +28,25 @@ Requires: java-runtime
|
|||||||
%description
|
%description
|
||||||
Free universal database tool and SQL client.
|
Free universal database tool and SQL client.
|
||||||
|
|
||||||
%debug_package
|
|
||||||
|
|
||||||
%define _build_id_links none
|
%define _build_id_links none
|
||||||
%global __requires_exclude_from ^%{_datadir}/dbeaver/.*|%{_libdir}/dbeaver/.*$
|
%global __requires_exclude_from ^%{_datadir}/dbeaver/.*|%{_libdir}/dbeaver/.*$
|
||||||
%global __provides_exclude_from ^%{_datadir}/dbeaver/.*|%{_libdir}/dbeaver/.*$
|
%global __provides_exclude_from ^%{_datadir}/dbeaver/.*|%{_libdir}/dbeaver/.*$
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q -b1 -b2
|
||||||
#-D -T
|
#-D -T
|
||||||
#:<< _EOF
|
#:<< _EOF
|
||||||
|
|
||||||
|
# Fix dependencies path
|
||||||
|
ln -sf dbeaver-common-%{COMMON_COMMIT} ../dbeaver-common
|
||||||
|
ln -sf dbeaver-jdbc-libsql-%{JDBC_LIBSQL_COMMIT} ../dbeaver-jdbc-libsql
|
||||||
|
|
||||||
export MAVEN_OPTS="-Xmx2048m"
|
export MAVEN_OPTS="-Xmx2048m"
|
||||||
mvn --batch-mode validate
|
mvn --batch-mode validate
|
||||||
|
|
||||||
%build
|
%build
|
||||||
#:<< _EOF
|
#:<< _EOF
|
||||||
|
cd product/aggregate
|
||||||
mvn --batch-mode package
|
mvn --batch-mode package
|
||||||
|
|
||||||
%install
|
%install
|
||||||
@ -66,10 +78,10 @@ mv %{buildroot}%{_libdir}/dbeaver/dbeaver.png %{buildroot}%{_datadir}/pixmaps/%{
|
|||||||
mv %{buildroot}%{_libdir}/dbeaver/icon.xpm %{buildroot}%{_datadir}/pixmaps/%{name}.xpm
|
mv %{buildroot}%{_libdir}/dbeaver/icon.xpm %{buildroot}%{_datadir}/pixmaps/%{name}.xpm
|
||||||
|
|
||||||
# Install executable script into /usr/bin
|
# Install executable script into /usr/bin
|
||||||
install -D -m0755 %{SOURCE1} %{buildroot}%{_bindir}/%{name}
|
install -D -m0755 %{SOURCE3} %{buildroot}%{_bindir}/%{name}
|
||||||
|
|
||||||
# Install application launcher into /usr/share/applications
|
# Install application launcher into /usr/share/applications
|
||||||
install -D -m0755 -t %{buildroot}%{_datadir}/applications %{SOURCE2}
|
install -D -m0755 -t %{buildroot}%{_datadir}/applications %{SOURCE4}
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
@ -87,6 +99,7 @@ install -D -m0755 -t %{buildroot}%{_datadir}/applications %{SOURCE2}
|
|||||||
%{_libdir}/dbeaver/licenses
|
%{_libdir}/dbeaver/licenses
|
||||||
%{_libdir}/dbeaver/p2
|
%{_libdir}/dbeaver/p2
|
||||||
%{_libdir}/dbeaver/readme.txt
|
%{_libdir}/dbeaver/readme.txt
|
||||||
|
%{_libdir}/dbeaver/readme/readme_eclipse.html
|
||||||
%dir %{_libdir}/dbeaver/plugins
|
%dir %{_libdir}/dbeaver/plugins
|
||||||
%{_libdir}/dbeaver/plugins/*
|
%{_libdir}/dbeaver/plugins/*
|
||||||
%dir %{_datadir}/dbeaver
|
%dir %{_datadir}/dbeaver
|
||||||
@ -99,6 +112,9 @@ install -D -m0755 -t %{buildroot}%{_datadir}/applications %{SOURCE2}
|
|||||||
%doc LICENSE.md
|
%doc LICENSE.md
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun Jan 19 2025 Automatic Build System <autodist@openmamba.org> 24.3.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
* Mon Oct 10 2022 Automatic Build System <autodist@mambasoft.it> 22.2.2-1mamba
|
* Mon Oct 10 2022 Automatic Build System <autodist@mambasoft.it> 22.2.2-1mamba
|
||||||
- automatic version update by autodist
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user