tis-slack icon

Slack

Paquet d’installation silencieuse pour Slack

4.46.99-1

  • package: tis-slack
  • name: Slack
  • version: 4.46.99-1
  • maintainer: WAPT Team,Tranquil IT,Amel FRADJ
  • licence: https://slack.com/main-services-agreement
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 133.93 Mo
  • homepage : https://slack.com/

package           : tis-slack
version           : 4.46.99-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          : PROD
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      : 1a9cb2af-f560-48c4-ac0e-ec047a7ac156
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            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-09-30T00:02:19.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         : w9SgFgpYZaz7TacQBZ1/BlftLKvJdLbL+65xvL87f+eCEz+Eu8Qn+AKhEMb35WE2kiWqYIoAt6dFG2t1UO50NvfHROTW0a/0keypemiTU5i9UeUfOPgqgshZwMf0aotVfZwrjWJ3X71vZ98gLFyv6a8vkVuxGsG2MH7qdaxPLn88+nnNG3zf2kgWtonZhxdggT5CbnG3vluZvwnokNSRMjdpVituvtKTGpLyI0PDrU2CKeTqbCN2gLj4YGUdht6UJutenH74MwgEF0G/9BgfaYZctnEu4/Q4lkHnHI6ToRxw9QreGAZ3NoYjp6Mll9ZfuB4cFTTzYtBomuiEi0l/aQ==

# -*- 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


38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
08f0792b1f149d88bf0b7795003616198bef8c374d0478285de4c14e4cf14ca9 : WAPT/control
d6fdcf78b17d6e9e7b5d9e9f26fd79750252f908f03d96d0cc2357734cb0d6cd : WAPT/icon.png
e996528f3e9160f65f97aed16f70fc0577b2ec17acd4a2298e49bf33a7da5348 : luti.json
5232ec7a64d8ea04ae001608f9c61c46adc7865b4b81dbd07b40f231d43157a1 : setup.py
6691aa4ff9f76118f71a362236ee95f84c11830190e5ecf559293ec92de361e8 : slack-standalone-4.46.99.0.msi
ef97d83c08486616ffedf897f17ac6c28e9da1e9854567d4816cc55703d5047c : update_package.py