tis-gajim icon

Gajim

Paquet d’installation silencieuse pour Gajim

2.4.5-13
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-gajim
  • name: Gajim
  • version: 2.4.5-13
  • categories: Utilities
  • maintainer: WAPT Team,Tranquil IT,Kenan KILICARSLAN,Jimmy PELÉ
  • editor: Gajim team
  • licence: GPL3
  • locale: all
  • target_os: windows
  • impacted_process: Gajim,Gajim-Debug,gajim-history-manager
  • architecture: x64
  • signature_date:
  • size: 142.66 Mo
  • homepage : https://gajim.org/

package           : tis-gajim
version           : 2.4.5-13
architecture      : x64
section           : base
priority          : optional
name              : Gajim
categories        : Utilities
maintainer        : WAPT Team,Tranquil IT,Kenan KILICARSLAN,Jimmy PELÉ
description       : Gajim is an open source instant messaging client for the Jabber open standard network
depends           : 
conflicts         : 
maturity          : PREPROD
locale            : all
target_os         : windows
min_wapt_version  : 2.0
sources           : https://gajim.org/download/
installed_size    : 
impacted_process  : Gajim,Gajim-Debug,gajim-history-manager
description_fr    : Gajim est un logiciel libre client de messagerie instantanée pour le réseau standard ouvert Jabber
description_pl    : Gajim jest otwartym klientem komunikatora dla otwartej sieci Jabber
description_de    : Gajim ist ein quelloffener Instant-Messaging-Client für das offene Standardnetzwerk Jabber
description_es    : Gajim es un cliente de mensajería instantánea de código abierto para la red estándar abierta Jabber
description_pt    : Gajim é um cliente de mensagens instantâneas de código aberto para a rede standard aberta Jabber
description_it    : Gajim è un client di messaggistica istantanea open source per la rete standard aperta Jabber
description_nl    : Gajim is een open source instant messaging client voor het Jabber open standaard netwerk
description_ru    : Gajim - это клиент обмена мгновенными сообщениями с открытым исходным кодом для сети открытого стандарта Jabber
audit_schedule    : 
editor            : Gajim team
keywords          : messaging,network,standard,jabber
licence           : GPL3
homepage          : https://gajim.org/
package_uuid      : 95eb78bb-2529-40cd-bd59-08204767482a
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://dev.gajim.org/gajim/gajim/-/blob/master/ChangeLog
min_os_version    : 6.1
max_os_version    : 
icon_sha256sum    : 4023938ece24bd58a70ae58c920b41598f19ab41734a47869ebf2fc4bac50df5
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2026-03-30T20:02:31.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         : I6rnNRA7ixZKA4yAahAoYbvt7ihCdOs3m5xvE6Xi41BYXSD1KdcrcQ7Dx7ozLEy3Wxv7fRAh3Uk+mrlxCFYSynMuUErpv0GqWfbDGWNe3RKahhpBg2PXJwPUrr/Blq40vUafkRI8BOXDIDlOdb5XpKOP0ErC66f85m9cwEnQ5qadrQgjqpTfyH3yhHS9F9QTltHqkwsAP8GxGqTyGypoJ04ZQEfhJVW91z/Ur4lxLQ+pBW6ZCXKPDCBF1CQcJO2pBoNH0SnO4+HfCNSpC2aUciic3k0ANd4nFVBYFgXMUv+5B6rIWji98WJU3AQTahaq8vK98ucNTpTan0Wnu/ytjQ==

# -*- coding: utf-8 -*-
from setuphelpers import *


def install():
    # Initializing variables
    bin_name = glob.glob("*Gajim*.exe")[0]

    def get_version(key):
        if "+" in key["version"]:
            if "." in key["version"].split("+", 1)[1]:
                return key["version"].split("+", 1)[0] + "." + key["version"].split("+")[1].split(".", 1)[1]
            else:
                return key["version"].split("+", 1)[0]
        else:
            return key["version"]

    # Uninstalling older versions of the software
    for uninstall in installed_softwares(name=r"\bGajim\b"):
        if get_version(uninstall) < control.get_software_version() or force:
            print("Removing: %s (%s)" % (uninstall["name"], uninstall["version"]))
            run(uninstall_cmd(uninstall["key"]))
            wait_uninstallkey_absent(uninstall["key"])

    # Installing the package
    print("Installing: %s" % bin_name)
    install_exe_if_needed(
        bin_name,
        silentflags="/S",
        key="Gajim",
        min_version=control.get_software_version(),
        get_version=get_version,
    )

# -*- coding: utf-8 -*-
from setuphelpers import *

def update_package():

    # Initializing variables
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    url = "https://gajim.org/download/"

    # Getting latest version from official sources
    print("URL used is: %s" % url)
    for bs_search in bs_find_all(url, "a", "href", proxies=proxies):
        if bs_search["href"].endswith("-64bit.exe"):
            version = bs_search["href"].split("-")[1]
            latest_bin = bs_search["href"].split("/")[-1]
            # latest_bin = bin_contains + version
            url_dl = bs_search["href"]
            break

    print("Latest %s version is: %s" % (control.name, version))
    print("Download url is: %s" % url_dl)

    # Downloading latest binaries
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(url_dl, latest_bin, proxies=proxies)

    # Changing version of the package
    control.set_software_version(version)
    control.save_control_to_wapt()
    print("Changing package version to: %s in WAPT\\control" % control.version)

    # Deleting outdated binaries
    remove_outdated_binaries(version)

4ef339badf2f333bd4dca541d554c98e765e6d00616511cb29f90a00d11fa4af : Gajim-2.4.5-64bit.exe
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
794a901fd38a11f75e88f1d2027aad3510d81f1859f89fcfaa4bee486b89ea78 : WAPT/control
4023938ece24bd58a70ae58c920b41598f19ab41734a47869ebf2fc4bac50df5 : WAPT/icon.png
79ea44359630e6fcf3b3aab531de8d0d17412e5bece961a47ba4dcdd9edb5cc0 : luti.json
43c8dde17daf06a606961111087044c6a523d1253e06b12313864a8b3b7630b5 : setup.py
195c056fd95990fad3f6184f1852fc165dcf1127c323b5ede03d08f4fa115a67 : update_package.py