tis-skype icon

Skype

Silent install package for Skype

8.93.0.404-19

  • package: tis-skype
  • name: Skype
  • version: 8.93.0.404-19
  • categories: Messaging,Media
  • maintainer: Tranquil IT,Kevin Guerineau,Kismath ADELEKE,Rayenne GUIASSA,Jimmy PELE
  • editor: Microsoft and Microsoft Skype Division
  • licence: Freemium
  • locale: all
  • target_os: debian(>=10),ubuntu(>=18)
  • impacted_process: Skype
  • architecture: all
  • signature_date:
  • size: 126.23 Mo
  • homepage : https://www.skype.com

package           : tis-skype
version           : 8.93.0.404-19
architecture      : all
section           : base
priority          : optional
name              : Skype
categories        : Messaging,Media
maintainer        : Tranquil IT,Kevin Guerineau,Kismath ADELEKE,Rayenne GUIASSA,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         : debian(>=10),ubuntu(>=18)
min_wapt_version  : 2.1
sources           : https://store.wapt.fr/store/tis-skype
installed_size    : 
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      : 8f6dbb1e-752c-4a49-a1e1-f9558c49d794
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         : aNudH9l87miLEDWoZp1OcRWZUOOHD+MEl0W8zH3lFgIzr4tDnB5mWyJmbNv17riGM9KIEg7fyh2MN9kCcGt6tkOV5dFYBlB7r0a1j30EH/HUxbBm/UMdh9xvhFcLthoXKhRiHsJSIoQC0WxDaxICGTrzBG3BYOnmdF0xnPn0iBmS/lEC+IFK+47pjfVSGX8j61rivt6F8XKWON5JRcJoNB9boKUVksoQydowP7UcUglaUnHE4zE+Jzi4WhaT06QNftd2NiSBbAUViMnzMLlziXtYtx0JqlppqS2zTnyY+w6L6ydMdQztesHgiULXPe2O2Vd5M7CV1lQNlPNxfzAhoA==
signature_date    : 2023-02-13T14:27:09.993865
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

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

# Defining variables
package_name = "skypeforlinux"


def install():
    # Removing sources in apt to install it
    source_path = "/etc/apt/sources.list.d/"
    for filename in os.listdir(source_path):
        if "skype" in filename:
            remove_file(makepath(source_path, filename))

    # Installing the package
    bin_name = glob.glob("*%s*" % package_name)[0]
    print("Installing: %s" % bin_name)
    install_deb(bin_name)


def uninstall():
    # Uninstalling the package
    print("Uninstalling: %s" % package_name)
    uninstall_apt(package_name)

# -*- coding: utf-8 -*-
from setuphelpers import *
import bs4 as BeautifulSoup

# Defining variables
package_name = "skypeforlinux"


def update_package():
    # Declaring local variables
    result = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    app_name = control.name
    if control.architecture == "x64":
        arch = "64bit"
    else:
        arch = "32bit"

    # Specific app values
    url = "https://support.skype.com/en/faq/FA12041/quelle-est-la-derniere-version-de-skype-sur-chaque-plateforme"

    # Getting latest version from official website

    for u in bs_find_all(url, "td", proxies=proxies):
        if "Skype for Linux version" in u.text:
            latest_version = u.text.split("\xa0")[-1]
            break

    url_dl = "https://repo.skype.com/latest/skypeforlinux-64.deb"
    latest_bin = url_dl.split("/")[-1]

    print("Latest %s version is: %s" % (package_name, latest_version))
    print("Download url is: %s" % url_dl)

    # Downloading latest binaries
    current_version = control.get_software_version()
    if Version(latest_version) > Version(current_version):
        remove_outdated_binaries(latest_version, filename_contains=app_name)
        print("Downloading: " + latest_bin)
        wget(url_dl, latest_bin, proxies=proxies)

    # Changing version of the package
    if Version(latest_version) != control.get_software_version():
        print("Software updated to version: %s" % Version(latest_version))
        result = True
    control.version = "%s-%s" % (latest_version, control.version.split("-", 1)[-1])
    # control.set_software_version(version)
    control.save_control_to_wapt()

    # Validating or not update-package-sources
    return result

6a85711df21865ec618924e162015cc31e80be867fd7917de5cea1b3cc9caf74 : setup.py
7769f609145264ce3d7f0519eff1274dc82f9d967497e7d380dc1ab27da07ead : skypeforlinux-64.deb
68df3a983f5c8a9221ee0645df3e3252c97c025fbafb47102b0ab1ec22039a2a : update_package.py
6058fdd04e7138b7c45202f641355850fe83acd6c1a3bc18e1f9f2ca98563a9f : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
6e7163673c605885b8fb377d249d68b5bca61f05e9f0227aa20db5f92e81a80d : luti.json
c985772fa614f22d4575c96a4348f4d2a480c7f22f95974afaefd7e82604460f : WAPT/control