Les paquets PREPROD sont des paquets construits via LUTI.
Ils restent généralement 5 jours en PREPROD, après quoi un scan VirusTotal est effectué.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.
- package: tis-jami
- name: Jami
- version: 1.0.9391.28736-1
- categories: Messaging
- maintainer: WAPT Team,Tranquil IT,
- licence: opensource_free,wapt_public
- target_os: windows
- architecture: x64
- signature_date:
- size: 155.90 Mo
package : tis-jami
version : 1.0.9391.28736-1
architecture : x64
section : base
priority : optional
name : Jami
categories : Messaging
maintainer : WAPT Team,Tranquil IT,
description : Jami is an open-source, end-to-end encrypted, private communications software
depends :
conflicts :
maturity : PREPROD
locale :
target_os : windows
min_wapt_version : 2.3
sources :
installed_size :
impacted_process :
description_fr : Jami est un logiciel de communication libre, chiffré de bout en bout et privé
description_pl : Jami to darmowe oprogramowanie do szyfrowanej i prywatnej komunikacji typu end-to-end
description_de : Jami ist eine freie, Ende-zu-Ende-verschlüsselte und private Kommunikationssoftware
description_es : Jami es un programa gratuito de comunicaciones cifradas y privadas de extremo a extremo
description_pt : Jami é um software gratuito de comunicações privadas e encriptadas de ponta a ponta
description_it : Jami è un software gratuito per comunicazioni private e crittografate end-to-end
description_nl : Jami is gratis, end-to-end versleutelde en private communicatiesoftware
description_ru : Jami - это бесплатное программное обеспечение для частных коммуникаций со сквозным шифрованием
audit_schedule :
editor :
keywords :
licence : opensource_free,wapt_public
homepage :
package_uuid : 16ddca64-8eab-4d78-a870-5675b14d315e
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 20f6bfe30ba82e4e6e0b35a0c55ad90179dfabe099edfe629237da3cc99f93d8
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2025-09-17T16:59:20.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 : TjggXp2THrWzCRl+cOYiHztXDrWN8GRf8Sh+zftccysFhciLI/pZcsCCGc3siIBMsCSavUSuEjCDXQm/HQxkojJRl0lBFR0+qrHsxXs4Whgr0F3UFn4x9mPG7EB8COaNSSTPaGFTL4wu3nGKWxB0O7ELKWNr4R+yMi4GVzSACPoP1GRc5hZINlJUerAMPcgNEkTO/2xDTSgJ0m3PPiBp8vRHb8+6DTNitdBuusGW/GF46RZtnls4zaa2z7I5890ZtCrotSSOlsx6kdp27xvFcwfuVU8XRDIks0JVWq/qHMdKUwrYmsuyG6u7ssF+oceZL+50aRUufhCQAYPnLnmAZA==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def install():
# Declaring local variables
# Installing the software
install_msi_if_needed('jami.release.x64.msi')
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
download_url = "https://dl.jami.net/windows/jami.release.x64.msi"
latest_bin = download_url.split("/")[-1]
# Downloading latest binaries
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
package_updated = True
else:
print("Binary is present: %s" % latest_bin)
# Deleting outdated binaries
for f in glob.glob('*.exe'):
if f != latest_bin:
remove_file(f)
version = get_version_from_binary(latest_bin)
# Mettre à jour le package
control.set_software_version(version)
control.save_control_to_wapt()
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
22319605c636aa81e68c4c648ae78de2cf0f9892563a1898f0a7892696ec76bf : WAPT/control
20f6bfe30ba82e4e6e0b35a0c55ad90179dfabe099edfe629237da3cc99f93d8 : WAPT/icon.png
c3beafb9518461fff76507258938f3429a9107890e5b87c87424c73b398e578b : jami.release.x64.msi
7a7bac8c6e1ef7066ee55761bbec373e56d08a220366d5af7dd393a29102f71d : luti.json
9779c2494d6ed2b1d6b9ed6da1b2d1c6c510be356ff4f103843b48edbeaa68c9 : setup.py
0258c2d947e5cd178e807721eb770b953489ef6d812d241df86ed8e5d6d94889 : update_package.py