- package: tis-dbeaver
- name: DBeaver
- version: 25.1.4-9
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Kenan KILICARSLAN,Jimmy PELÉ,Pierre Cosson
- editor: DBeaver
- licence: apache2
- locale: all
- target_os: debian_based
- impacted_process: dbeaver-cli,dbeaver
- architecture: x64
- signature_date:
- size: 132.69 Mo
- installed_size: 134.79 Mo
- homepage : https://dbeaver.io/
package : tis-dbeaver
version : 25.1.4-9
architecture : x64
section : base
priority : optional
name : DBeaver
categories : Utilities
maintainer : WAPT Team,Tranquil IT,Kenan KILICARSLAN,Jimmy PELÉ,Pierre Cosson
description : DBeaver is free and open source universal database tool for developers and database administrators
depends :
conflicts :
maturity : PROD
locale : all
target_os : debian_based
min_wapt_version : 2.0
sources : https://dbeaver.io/download/
installed_size : 134791168
impacted_process : dbeaver-cli,dbeaver
description_fr : DBeaver est un outil de base de données universel, gratuit et open source, destiné aux développeurs et aux administrateurs de bases de données
description_pl : DBeaver to darmowe i otwarte narzędzie bazodanowe dla programistów i administratorów baz danych
description_de : DBeaver ist ein kostenloses und quelloffenes universelles Datenbankwerkzeug für Entwickler und Datenbankadministratoren
description_es : DBeaver es una herramienta de base de datos universal, gratuita y de código abierto, para desarrolladores y administradores de bases de datos
description_pt : DBeaver é uma ferramenta de base de dados universal gratuita e de código aberto para programadores e administradores de bases de dados
description_it : DBeaver è uno strumento universale gratuito e open source per sviluppatori e amministratori di database
description_nl : DBeaver is gratis en open source universeel databasetool voor ontwikkelaars en databasebeheerders
description_ru : DBeaver - бесплатный универсальный инструмент для разработчиков и администраторов баз данных с открытым исходным кодом
audit_schedule :
editor : DBeaver
keywords : database,developers
licence : apache2
homepage : https://dbeaver.io/
package_uuid : 1750e90d-7d10-4d8d-953a-58213f4e92f6
valid_from :
valid_until :
forced_install_on :
changelog : https://github.com/dbeaver/dbeaver/releases
min_os_version : 6.1
max_os_version :
icon_sha256sum : 14e00f12e88e41af914d7c4ee8a379e911ae050c890368996862ede0eb4018d4
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-08-08T17:02:56.000000
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
signature : f0pX+A3ujZppBWpMeEWMfk2XxrKK7J+ccHTTJ3sBlSB920iUxM5XSsb+3yDw881ga/8cCUSKRI+6g09MTth//zI6v1aLTmodgGZNJPNrHbu0VzruNsSVqqQp8Lr0uc9f3EsyV9BKHfNuvTt6Be1nZJbMNNQQvfzj2uBfGut6AUBHWzN3lJ315w0y4vkdcq4YtahKLC16nV0hVF7it5Npz2wpe3XrVwgynrLpWifXnVVVT1FfnfpKdEgjUbDr3UazA93za+MTxvOVyMZ+CufYpc4JEVzeJtN8/zFGK+0V2jH4O1Eg1NdVrpUjQ1Bvoe3SHyRJ8kkyJAYPgKocOJtLUA==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
def install():
# Installing the package
bin_name = glob.glob("*dbeaver-ce*")[0]
print("Installing: dbeaver-ce")
install_deb(bin_name)
def uninstall():
# Uninstalling the package
print("Uninstalling: dbeaver-ce")
uninstall_apt("dbeaver-ce")
# -*- coding: utf-8 -*-
from setuphelpers import *
import json
def update_package():
# Declaring local variables
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
url_api = "https://api.github.com/repos/dbeaver/dbeaver/releases/latest"
bin_ends = "_amd64.deb"
# Getting latest informations from Github API
json_load = json.loads(wgets(url_api, proxies=proxies))
for download in json_load["assets"]:
if download["browser_download_url"].endswith(bin_ends):
download_url = download["browser_download_url"]
latest_bin = download["name"]
break
version = json_load["tag_name"].replace("v", "")
print("Latest %s version is: %s" % (app_name, version))
print("Download URL is: %s" % download_url)
# Downloading latest binaries
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
# Changing version of the package
if Version(version) > Version(control.get_software_version()):
print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
result = True
else:
print("Software version up-to-date (%s)" % Version(version))
control.version = "%s-%s" % (Version(version), control.version.split("-", 1)[-1])
# control.set_software_version(version)
control.save_control_to_wapt()
# Deleting outdated binaries
remove_outdated_binaries(version)
# Validating or not update-package-sources
return result
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
c10ebed636c024d6e0da760715156fdd38e82bbc62a817283b1c142bbcfe343e : WAPT/control
14e00f12e88e41af914d7c4ee8a379e911ae050c890368996862ede0eb4018d4 : WAPT/icon.png
ee1722ba405aec6455273d9c272372ee2c4c27cc9a9362c976abb0568fd9e2a3 : dbeaver-ce_25.1.4_amd64.deb
5e847cd973d3a30a0d7cfd77a912d04a1b01f28b32c8bc24778fcb83b3b978d5 : luti.json
b179e52b924bb22ebd5d936ef26b38ccb91a29f145ecab3e17e7f8a597445838 : setup.py
c8f7b0d596d4277aad4b115f32096efba251b8ee5157c17fe35fabd69444e3bb : update_package.py