tis-linphone icon

Linphone

Paquet d’installation silencieuse pour Linphone

6.1.1-11
Messaging
Messaging

  • package: tis-linphone
  • name: Linphone
  • version: 6.1.1-11
  • categories: Messaging
  • maintainer: WAPT Team,Tranquil IT,Alexandre Gauvrit,Jimmy PELÉ
  • editor: Belledonne Communications
  • licence: opensource_free,cpe:/a:gnu:gpl_v3,wapt_private
  • locale: all
  • target_os: macos
  • impacted_process: linphone
  • architecture: all
  • signature_date:
  • size: 114.73 Mo
  • installed_size: 317.66 Mo
  • homepage : https://www.linphone.org/

package           : tis-linphone
version           : 6.1.1-11
architecture      : all
section           : base
priority          : optional
name              : Linphone
categories        : Messaging
maintainer        : WAPT Team,Tranquil IT,Alexandre Gauvrit,Jimmy PELÉ
description       : Linphone is an open source softphone for voice and video over IP calling and instant messaging. It is fully SIP-based, for all calling, presence and IM features
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : macos
min_wapt_version  : 2.3
sources           : https://www.linphone.org/technical-corner/linphone
installed_size    : 317656975
impacted_process  : linphone
description_fr    : Linphone est un softphone open source pour les appels vocaux et vidéo sur IP et la messagerie instantanée. Il est entièrement basé sur le protocole SIP, pour toutes les fonctions d'appel, de présence et de messagerie instantanée
description_pl    : Linphone to softphone o otwartym kodzie źródłowym do połączeń głosowych i wideo przez IP oraz komunikatorów internetowych. Jest w pełni oparty na protokole SIP dla wszystkich funkcji połączeń, obecności i wiadomości błyskawicznych
description_de    : Linphone ist ein Open-Source-Softphone für Sprach- und Videoanrufe über IP und Instant Messaging. Es ist vollständig SIP-basiert, für alle Anruf-, Präsenz- und IM-Funktionen
description_es    : Linphone es un softphone de código abierto para llamadas de voz y vídeo sobre IP y mensajería instantánea. Está totalmente basado en SIP, para todas las funciones de llamada, presencia y mensajería instantánea
description_pt    : O Linphone é um softphone de código aberto para chamadas de voz e vídeo sobre IP e mensagens instantâneas. É totalmente baseado em SIP, para todas as funcionalidades de chamada, presença e IM
description_it    : Linphone è un softphone open source per chiamate vocali e video su IP e messaggistica istantanea. È completamente basato su SIP, per tutte le funzioni di chiamata, presenza e messaggistica istantanea
description_nl    : Linphone is een open source softphone voor spraak en video over IP bellen en instant messaging. Het is volledig gebaseerd op SIP, voor alle functies voor bellen, aanwezigheid en IM
description_ru    : Linphone - это программный телефон с открытым исходным кодом для голосовых и видеовызовов по IP и обмена мгновенными сообщениями. Он полностью основан на протоколе SIP и обеспечивает все функции звонков, присутствия и обмена мгновенными сообщениями
audit_schedule    : 
editor            : Belledonne Communications
keywords          : 
licence           : opensource_free,cpe:/a:gnu:gpl_v3,wapt_private
homepage          : https://www.linphone.org/
package_uuid      : 70099ad0-6a97-4684-a739-a2d28231bb00
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 73897b6f03daf2d4bbe00c4d1e75819b9b9f69415cae467997665ddcba080ea5
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2026-03-04T17:26:37.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         : Q1nHW2wQaUNRotIDg7wfHpbDpQ2r3bC10wRlSryglhficcuQlH972YfZRKqw5AunXkxyDUluLYH6ynQh85EphPtxIwQT//3RUqVthO4qdXWKxYDWEPhrC4mrbjRNXKXQ7cjSTF0W1DY3EysuTcKYPxPPImlcDc1r3LAZ221ZY8huNnuhPm5GVh7lBSCPwglzTM9+lJW2p9dyXBN4iCjvFauFP3OB1xaBKi27qwJBmQa3gbhBiiCpDCNrtIZNkHgZOTaCrDGaNBFkBYFlglEGs535dQ9GA/jM2qNcw7jk1aAHhMXsJ41OrjgUsPZWkTfyKbPODgiosG1bxKNuVEECxw==

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


def install():
    bin_name = glob.glob("Linphone-*-mac.dmg")[0]

    install_dmg(
        bin_name,
        key="/Applications/Linphone.app",
        accept_dmg_licence=True
    )


def uninstall():
    uninstall_app("Linphone.app")



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


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    app_name = control.name

    release = wgets(f'https://download.linphone.org/releases/{control.target_os}/RELEASE', proxies=proxies).decode('utf-8')
    version, download_url = release.split('\t')
    latest_bin = download_url.rsplit('/', 1)[-1]
    latest_bin_extension = download_url.rsplit('.', 1)[-1]

    # Downloading latest binaries
    print(f"Latest {app_name} version is: {version}")
    print(f"Download URL is: {download_url}")
    if not isfile(latest_bin):
        print(f"Downloading: {latest_bin}")
        wget(download_url, latest_bin, proxies=proxies)
    else:
        print(f"Binary is present: {latest_bin}")

    # Changing version of the package
    if Version(version) > Version(control.get_software_version()):
        print(f"Software version updated (from: {control.get_software_version()} to: {Version(version)})")
        package_updated = True
    else:
        print(f"Software version up-to-date ({Version(version)})")

    for f in glob.glob(f'*.{latest_bin_extension}'):
        if f != latest_bin:
            remove_file(f)

    control.set_software_version(version)
    control.save_control_to_wapt()

    return package_updated

b528c8108be573e7667518a4903fab0850115846aa656a4e8db7e5eb2e44017c : Linphone-6.1.1-mac.dmg
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
63b7951305d422acc7c5d6a7b76827bcfc4e8227c1340f0a862dca185f1416bd : WAPT/control
73897b6f03daf2d4bbe00c4d1e75819b9b9f69415cae467997665ddcba080ea5 : WAPT/icon.png
b14a5dfdb96e60a170dbbdc8361d353ef65ed2014399bb5b05c54974a3108a54 : luti.json
84609c044c93ed0e17370755f680199e71e0ce87040030b862a1614071f54a92 : setup.py
3ee5e3379f29c34fe2201e2a4880ff94db88871b70e34c7f11a0864d64514b02 : update_package.py