DBeaver
Paquet d’installation silencieuse pour DBeaver
26.0.1-13
Utilities
Utilities
- package: tis-dbeaver
- name: DBeaver
- version: 26.0.1-13
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Kenan KILICARSLAN,Jimmy PELÉ
- editor: DBeaver
- licence: apache2
- locale: all
- target_os: windows
- impacted_process: dbeaver-cli,dbeaver
- architecture: x64
- signature_date:
- size: 116.07 Mo
- installed_size: 134.79 Mo
- homepage : https://dbeaver.io/
package : tis-dbeaver
version : 26.0.1-13
architecture : x64
section : base
priority : optional
name : DBeaver
categories : Utilities
maintainer : WAPT Team,Tranquil IT,Kenan KILICARSLAN,Jimmy PELÉ
description : DBeaver is free and open source universal database tool for developers and database administrators
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
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 : ec0739d1-a251-45cd-9812-40242b12a6d0
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 : 2026-03-27T21:15:23.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 : ZUsaY857ZnYU7BQTJTTqjhlmITVN8WtrfAwh8lNdUlrVM+L0tkKkMFVjHhiunrfBYfBqNoIy1NzUbNrY+9Ybf2fYEOThBcOSsOo/c6iYyK1iG2IzfJ/4itbT2H1fgfakBJLfo2etFZkswrdqnJDnb7oqTRjg/z/8L138zZB2y+T3B6q+NLu74YZ2Dg9dsWuRuPcRfH6vaNTu3nGzkwy19jS2pQpjZOATl9otrz3M+eO1IKQkBTO9EYkLXiphZXErxDzxZYGRjQBRxyq+s2XcGJJVAUSqRIYqFxGVSWfzZUyRD0gjeHyEqdIX+2QrLUCF2KW9P63SvIbjBTjzXabQCA==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
# Declaring local variables
package_version = control.get_software_version()
bin_name = glob.glob("*dbeaver-ce-*.exe")[0]
# Installing the software
print("Installing: %s" % bin_name)
install_exe_if_needed(
bin_name,
silentflags="/S /allusers",
key="DBeaver",
min_version=control.get_software_version(),
)
# Adding Firewall Rules
app_path = makepath(installed_softwares(uninstallkey="DBeaver")[0]["install_location"], "dbeaver.exe")
remove_netfirewallrule("DBeaver")
add_netfirewallrule("DBeaver", app_path)
def uninstall():
# Removing Firewall Rules
remove_netfirewallrule("DBeaver")
# -*- 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 = "x86_64.exe"
# 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)
# Checking version from file
version_from_file = get_version_from_binary(latest_bin)
if not version_from_file.startswith(version) and version_from_file != "":
print("Changing version to the version number of the binary (from: %s to: %s)" % (version, version_from_file))
os.rename(latest_bin, bin_contains + version_from_file + bin_ends)
version = version_from_file
else:
print("Binary file version corresponds to online version")
# 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
975285d9c76615098256d6002a94a74f5a651735d2aaaec4c7dfc4d526043777 : WAPT/control
14e00f12e88e41af914d7c4ee8a379e911ae050c890368996862ede0eb4018d4 : WAPT/icon.png
fa117e057e03c9e3a3e3d83251544ba891c6cdeb32539f256d0921487138aa0b : dbeaver-ce-26.0.1-windows-x86_64.exe
a59c1d10d45237b783fd5406a2bedbf25259d4aee5ebbfd2865d49c4486a2843 : luti.json
1e5445495762a88611b17f85d116bfab7ee3d690617c68a04daaf517995319c4 : setup.py
e41812b3cbd2bbec4cdb2134b3aac9c8a3fbae35fb06b6c83efb3be0f08108d1 : update_package.py