tis-skype icon

Skype

Silent install package for Skype

8.138.0.214-20

  • package: tis-skype
  • name: Skype
  • version: 8.138.0.214-20
  • categories: Messaging,Media
  • maintainer: Tranquil IT,Kevin Guerineau,Jimmy PELE
  • editor: Microsoft and Microsoft Skype Division
  • licence: Freemium
  • locale: all
  • target_os: macos
  • impacted_process: Skype
  • architecture: all
  • signature_date:
  • size: 243.13 Mo
  • installed_size: 228.90 Mo
  • homepage : https://www.skype.com

package           : tis-skype
version           : 8.138.0.214-20
architecture      : all
section           : base
priority          : optional
name              : Skype
categories        : Messaging,Media
maintainer        : Tranquil IT,Kevin Guerineau,Jimmy PELE
description       : Skype is a telecommunications application software product that specializes in providing video chat and voice calls from computers, tablets, and mobile devices via the Internet to other devices or telephones/smartphones
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : macos
min_wapt_version  : 2.0
sources           : https://store.wapt.fr/store/tis-skype
installed_size    : 228896768
impacted_process  : Skype
description_fr    : Skype est un logiciel qui permet aux utilisateurs de passer des appels téléphoniques ou vidéo via Internet, ainsi que le partage d'écran. Les appels d’utilisateur à utilisateur sont gratuits, tandis que ceux vers les lignes téléphoniques fixes et les téléphones mobiles sont payants.
description_pl    : Skype to oprogramowanie telekomunikacyjne, które specjalizuje się w zapewnianiu rozmów wideo i połączeń głosowych z komputerów, tabletów i urządzeń przenośnych przez Internet do innych urządzeń lub telefonów/smartfonów
description_de    : Skype ist eine Telekommunikationsanwendungssoftware, die auf die Bereitstellung von Videochats und Sprachanrufen von Computern, Tablets und mobilen Geräten über das Internet an andere Geräte oder Telefone/Smartphones spezialisiert ist
description_es    : Skype es un producto de software de aplicación de telecomunicaciones que se especializa en proporcionar videochat y llamadas de voz desde ordenadores, tabletas y dispositivos móviles a través de Internet a otros dispositivos o teléfonos/smartphones
description_pt    : Skype é um produto de software de aplicação de telecomunicações especializado no fornecimento de chat vídeo e chamadas de voz a partir de computadores, tablets e dispositivos móveis através da Internet para outros dispositivos ou telefones/smartphones
description_it    : Skype è un prodotto software applicativo per le telecomunicazioni specializzato nel fornire video chat e chiamate vocali da computer, tablet e dispositivi mobili via Internet ad altri dispositivi o telefoni/smartphone
description_nl    : Skype is een softwareproduct voor telecommunicatietoepassingen dat gespecialiseerd is in videochat en spraakoproepen van computers, tablets en mobiele toestellen via het internet naar andere toestellen of telefoons/smartphones
description_ru    : Skype - это телекоммуникационный прикладной программный продукт, специализирующийся на организации видеочата и голосовых звонков с компьютеров, планшетов и мобильных устройств через Интернет на другие устройства или телефоны/смартфоны
audit_schedule    : 
editor            : Microsoft and Microsoft Skype Division
keywords          : video,chat,call,calls,telecommunication,telecommunications
licence           : Freemium
homepage          : https://www.skype.com
package_uuid      : ff2673b0-74fc-4cd6-85b8-72d915da3075
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://support.skype.com/en/faq/FA34778/what-s-new-in-skype-for-windows-mac-linux-and-web
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 6058fdd04e7138b7c45202f641355850fe83acd6c1a3bc18e1f9f2ca98563a9f
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-04-02T15:00:35.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         : DpudmpgdxhYOjFud7SsC2U+P22uu75yf74l49hVSBhnAQSMwXuCAq0NLghJIkgl1OQAVqoxUl95AvBFrxGjfAvgGcApXXNFS6cRrdq+eoNmM5um+lChCX0gq14tOwDTodQst6p8+FDaO7D97uR+UU2RfjpxMYF9p2rpUexZGNdDeiIz9hFThZUBJRUpC//DiPf5vIPWaWvGnfUnCS1ayOkqa2RO4Xss1K+LU4fDgT9wszkoiOgHIvY5GEzfhw+unA9ZqQwfck9wBGpMMW27C6L4sxQ0dQpJm3CZw5ltS/j40ThpTS0lN1JQKVima7sx+62Sqg8WUfmcmV7Hs5moi3Q==

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


def install():
    install_dmg(glob.glob("*.dmg")[0])


def uninstall():
    remove_tree("/Applications/Skype.app")

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


def update_package():
    print("Update package content from upstream binary sources")

    url_dl = "https://go.skype.com/windows.desktop.download"

    dlmac = requests.head("https://get.skype.com/go/getskype-skypeformac").headers["Location"]
    filename = dlmac.split("/")[-1]
    version = filename.split("-")[1].split(".dmg")[0]

    if not isfile(filename):
        wget(dlmac, filename, proxies=get_proxies_from_wapt_console())

    for f in glob.glob("*.dmg"):
        if f != filename:
            remove_file(f)

    control.version = "%s-%s" % (version, int(control.version.split("-", 1)[1]) + 1)
    control.save_control_to_wapt()

4eb86572171ebe9e151efea99593a7fd30e342b2d163a4f058ca4b53790ce65e : Skype-8.138.0.214.dmg
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
63ea4096c4399b76fd3b1faafd02511bc50b01223111e31ed19037ba68636f42 : WAPT/control
6058fdd04e7138b7c45202f641355850fe83acd6c1a3bc18e1f9f2ca98563a9f : WAPT/icon.png
65b50aa2b9033810a24163fa8112702b9fe2640994cdc22b3650e0ad95514422 : luti.json
882aa887d4850bc444f951fc5ac2720ecc1fdb484d4a63fcc573cbefb4f5fd0e : setup.py
3839824fde0bb0cd355257000498644c33b201536f4aea34861ab3151407de3f : update_package.py