tis-gajim

1.9.4-13
Gajim est un logiciel libre client de messagerie instantanée pour le réseau standard ouvert Jabber
7504 téléchargements
Télécharger
Voir le résultat de la construction Voir l'analyse de VirusTotal
tis-gajim icon
  • package : tis-gajim
  • name : Gajim
  • version : 1.9.4-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 : 2024-09-24 20:10
  • size : 110.68 Mo
  • homepage : https://gajim.org/
package           : tis-gajim
version           : 1.9.4-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          : PROD
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      : d92e126e-6911-4d88-bea7-918a4bc92482
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            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2024-09-24T20:10:44.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         : dM0Kf6ERnwbxr3gvrgRxAC8nx48ikMknwPtkgx51L99syvruLL5+VRFZ4hIeVZbA4U5DG7zyC/qtAKQ/1xDd4nNMZW2JrtPRaY6kqg8FBIibdfbshgDsfdXFtP2Q+/G0+MZFIcd+YcvfbG4kcyuocwnVAXU5uYCt1OciQslq3f98SEjSHOTV5KFJHUP96J5kfOrOhRVZ5cC7B9Bf6CcUyw/LehuYhl5kvtGFgI7G0rLMYXNxlCcxnSBVtZhWpYU0KttZv3Gn1rPo8Wj42tRvjj6sH+s/W+IKnlLcRvHGzXAaTAHIQZZIynKBL+CqnsfR7rt4pzeH92y/lovFjd4EzQ==
# -*- 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/"
    if control.architecture == "x86":
        arch = "32bit"
    else:
        arch = "64bit"

    # Getting latest version from official sources
    print("URL used is: %s" % url)
    for bs_search in bs_find_all(url, "a", "class", "btn btn-light", proxies=proxies):
        if bs_search["href"].endswith(".exe") and arch in bs_search["href"]:
            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)
0c29fe4ce08e5d03c3a6e390207c162eaa9ed40f0da1240d178fde933c303b0b : Gajim-1.9.4-64bit.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
ecdf11519cf7c0a7cfb81392b85c58fc03857b9b0841e3c6f054831bfbe623fb : WAPT/control
4023938ece24bd58a70ae58c920b41598f19ab41734a47869ebf2fc4bac50df5 : WAPT/icon.png
788fb2da4d18fa47abd582c7519e2c2ca89baeae14c70b5e90b66ba55049313a : luti.json
43c8dde17daf06a606961111087044c6a523d1253e06b12313864a8b3b7630b5 : setup.py
0f733ab14d16a17395e75cf63ae0ce5adf1ea7b581a526dfb965a12ebe62d528 : update_package.py