tis-slack icon

Slack

Paquet d’installation silencieuse pour Slack

4.47.69-1

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-slack
  • name: Slack
  • version: 4.47.69-1
  • maintainer: WAPT Team,Tranquil IT,Amel FRADJ
  • licence: https://slack.com/main-services-agreement
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 145.03 Mo
  • homepage : https://slack.com/

package           : tis-slack
version           : 4.47.69-1
architecture      : x64
section           : base
priority          : optional
name              : Slack
categories        : 
maintainer        : WAPT Team,Tranquil IT,Amel FRADJ
description       : Slack is a cloud-based team communication platform
depends           : 
conflicts         : 
maturity          : PREPROD
locale            : 
target_os         : windows
min_wapt_version  : 
sources           : open source
installed_size    : 
impacted_process  : 
description_fr    : Slack est une plateforme de communication collaborative
description_pl    : 
description_de    : 
description_es    : 
description_pt    : 
description_it    : 
description_nl    : 
description_ru    : 
audit_schedule    : 
editor            : 
keywords          : 
licence           : https://slack.com/main-services-agreement
homepage          : https://slack.com/
package_uuid      : 9675ff8f-f536-4fc0-a164-137e61cc891d
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://slack.com/help/articles/115004846068-Slack-updates-and-changes
min_os_version    : 10.0.19044
max_os_version    : 
icon_sha256sum    : d6fdcf78b17d6e9e7b5d9e9f26fd79750252f908f03d96d0cc2357734cb0d6cd
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2025-12-08T17:50:45.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         : ofzJnSQ2/nblZ2wsMtGaofu5iBcM4kngOrynsn0JL+kdB0W4QEjfI+f5oEImF9c+5M8Guk0L1uw/8XNGQDJAz1GsGAKd1pVubJWTuE4u2rvaL9ipkfFNweteUnM/LM9Ilu/pXIFNx+iHKNl0ydWvnImY1Jwh7ct04555+p69j72j9pF8TAOKmAk7jMiG/Cc6cdXOYNgxLWijtwS6o4A5eT7ZBnshuYtVuqksPb0Jjbv9JiIUqfIIg53xkbQOJhCNYSPcHgOX1yCHtZ1Lx073SAEk31kNi0QYnDDS9sUUVHszzHtkPNrq6sm0gYB96q4OidbggTm+MGL/Brv4K++GuQ==

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




def install():
    # Declaring local variables
    bin_name = glob.glob("slack-standalone-*.msi")[0]

    # Installing the software
    
    install_msi_if_needed(bin_name)



from setupdevhelpers import *
import requests

def update_package():
    package_updated = False
    proxies = get_proxies_from_wapt_console()
    if not proxies:
        proxies = get_proxies()

    download_url = requests.head('https://slack.com/ssb/download-win64-msi',proxies=proxies).headers['location']
    print(f'Download URL is {download_url}')
    bin_name = download_url.split('/')[-1]
    print(f'Binary Name is {bin_name}')
    version = download_url.split('/')[-2]
    print(f'Latest Version is {version}')
    wget(download_url,bin_name,proxies=proxies)

    for f in glob.glob('*.msi'):
        if get_msi_properties(f)['ProductVersion'] != Version(version):
            remove(f)


    control.set_software_version(version)
    control.save_control_to_wapt()

    # Validating update-package-sources
    return package_updated


01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
22c2fdf7bd85fbef7d8458e803bf9042c7b47e2ed308b28aa00041a5b9d31cca : WAPT/control
d6fdcf78b17d6e9e7b5d9e9f26fd79750252f908f03d96d0cc2357734cb0d6cd : WAPT/icon.png
f9433fcd02e22b548130e0c5e950477eba96b3e7b8b9664649553df738761c61 : luti.json
5232ec7a64d8ea04ae001608f9c61c46adc7865b4b81dbd07b40f231d43157a1 : setup.py
5f639b91c252f5149de634a3a6285564df0d3e08e15eefc19ff3501a638e593c : slack-standalone-4.47.69.0.msi
ef97d83c08486616ffedf897f17ac6c28e9da1e9854567d4816cc55703d5047c : update_package.py