tis-dbeaver icon

DBeaver

Paquet d’installation silencieuse pour DBeaver

25.3.2-9
Utilities
Utilities

Les paquets PREPROD sont des paquets construits via LUTI. Ils restent généralement 5 jours en PREPROD, après quoi un deuxième scan VirusTotal est effectué pour vérifier que le status n'a pas changé.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.

  • package: tis-dbeaver
  • name: DBeaver
  • version: 25.3.2-9
  • categories: Utilities
  • maintainer: WAPT Team,Tranquil IT,Kenan KILICARSLAN,Jimmy PELÉ,Pierre Cosson
  • editor: DBeaver
  • licence: apache2
  • locale: all
  • target_os: redhat_based
  • impacted_process: dbeaver-cli,dbeaver
  • architecture: x64
  • signature_date:
  • size: 124.43 Mo
  • installed_size: 134.79 Mo
  • homepage : https://dbeaver.io/

package           : tis-dbeaver
version           : 25.3.2-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          : PREPROD
locale            : all
target_os         : redhat_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      : aa4c18a0-bc31-4371-b3a5-20a455b65c2d
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://github.com/dbeaver/dbeaver/releases
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 14e00f12e88e41af914d7c4ee8a379e911ae050c890368996862ede0eb4018d4
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2026-01-04T18:55:09.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         : lU3g6nkRu+iidyeK67MaYJQrAnWIKUGT8zZFZOB3puODsimrclJTDq6AncOstaUvJqk04Csm/9VOeyEOGPEm7mrWkGixkFqZYMk6WrCP0IQji1cKfpteGpM7gB0DCrCGEzD1XwIyCdOEpAJpusSwWBlUvc8hCxiHP6lh2tBU7oMteiFz1Wb8U2tbpq3E8OCxD3LzmhUdSM/WbszfAtRdUo+P2jdDPZw9P0sHVdH+vbWmpHO9VZ9ps7b9t6Ql8niGOtHTRSQItBAwheq+G9tS1c4do4IRXywlUr8PtsC4ZLIsbBnnwDCgd2iVT4+39X8Db2RiwbZuFy7hhVwfD8tc1A==

# -*- 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: %s" % bin_name)
    if get_distrib_linux() == 'fedora':
        install_yum(bin_name)
    else:
        install_rpm(bin_name)


def uninstall():
    # Uninstalling the package
    print("Uninstalling: dbeaver-ce")
    uninstall_yum("dbeaver-ce")
    autoremove_yum()



# -*- 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.rpm"

    # 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

01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
c7fbcc721ce04eed3a44db943c7abc2cea3f9cea723f0d9a3998f8b045059720 : WAPT/control
14e00f12e88e41af914d7c4ee8a379e911ae050c890368996862ede0eb4018d4 : WAPT/icon.png
edbf87617e0d8b1e17c6f8969d6f7995aa3064f02c0556f17d0951553281eba9 : dbeaver-ce-25.3.2-stable.x86_64.rpm
39ac1f6118c3428a269d367bc37ed031a7a9924587b3f4d51cff35934886bccc : luti.json
7063361bdea70938858aaa127bebdfa0949782cf5de4dc79c205fd65d5df7465 : setup.py
9854c692ff6d2d9c5bbe7075f1061e01ed31d62d85e682c9429f390dafa08f12 : update_package.py