tis-nextcloud-talk icon

Nextcloud Talk

Silent install package for Nextcloud Talk

2.0.5-0
Media
Messaging
Office
Media
Messaging
Office

  • package: tis-nextcloud-talk
  • name: Nextcloud Talk
  • version: 2.0.5-0
  • categories: Media,Messaging,Office
  • maintainer: WAPT Team,Tranquil IT,Gwenaël ADAM
  • editor: Nextcloud GmbH
  • licence: opensource_free,cpe:/a:gnu:gpl_v2,wapt_public
  • locale: all
  • target_os: darwin
  • impacted_process: nextcloud,nextcloudcmd
  • architecture: x64
  • signature_date:
  • size: 279.31 Mo
  • homepage : https://nextcloud.com/talk/

package           : tis-nextcloud-talk
version           : 2.0.5-0
architecture      : x64
section           : base
priority          : optional
name              : Nextcloud Talk
categories        : Media,Messaging,Office
maintainer        : WAPT Team,Tranquil IT,Gwenaël ADAM
description       : The first privacy-respecting communication platform for online collaboration through meetings, chat and webinars. All in one application.
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : darwin
min_wapt_version  : 2.1
sources           : https://github.com/nextcloud/talk-desktop#-install
installed_size    : 
impacted_process  : nextcloud,nextcloudcmd
description_fr    : La première solution complète de collaboration conforme au RGPD : réunions en ligne, chats et webinaires dans une seule application.
description_pl    : Pierwsza platforma komunikacyjna szanująca prywatność do współpracy online poprzez spotkania, czaty i webinary. Wszystko w jednym wniosku.
description_de    : Die erste DSGVO-konforme Komplettlösung für Zusammenarbeit: Online-Meetings, Chats und Webinare in einer Anwendung.
description_es    : La primera plataforma de colaboración que cumple con el RGPD para reuniones en línea, chat y seminarios web. Todo en una sola aplicación.
description_pt    : A primeira plataforma de comunicação que respeita a privacidade para colaboração online através de reuniões, chat e webinars. Tudo numa só aplicação.
description_it    : La prima piattaforma di collaborazione conforme al GDPR per riunioni online, chat e webinar. Tutto in un’unica applicazione.
description_nl    : Het eerste privacyrespecterende communicatieplatform voor online samenwerking via vergaderingen, chat en webinars. Alles in één applicatie.
description_ru    : Первая платформа для коммуникации, уважающая конфиденциальность, для онлайн-сотрудничества через встречи, чаты и вебинары. Всё в одном приложении.
audit_schedule    : 
editor            : Nextcloud GmbH
keywords          : 
licence           : opensource_free,cpe:/a:gnu:gpl_v2,wapt_public
homepage          : https://nextcloud.com/talk/
package_uuid      : 80d6bb09-19e3-4595-9fdd-65a585c67438
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://github.com/nextcloud/talk-desktop/releases/latest
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 1151ba48674e21f0e26c7bebad851fcc669cd869201ae559fa6e253d64b9401d
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2026-01-03T14:01:56.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         : q5qsrvt/v/cHCY205rDL3+wUutjPntXSDmlqeegHNB6cSsSgdss5i+Qiqx9nhNeXO4HXZmoorEr8pqN+QQAWXsXiZj83kmnjDwiKnQPZRq/o7MAlRDfrbXSEniJZKHracWDQuTOx9/psvCaNElmuXM6TJBWFpkXxUZ3dXVL7IGPGDqPGmchagLzNbyVCat24Qnt72q5zWzo5p1+bb13o2f72gP+G/mNDXjuKAei4+xcm1iVSRWWC8WRA+o+0ca2yw4EcfFwuGPiXPhTO52YI+vjh4RvPPSAjHu288ucr+kBp2QS1o5ZmYko67iRUeWqw/0XcfSzZC7mBR+XPzM0S2A==

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

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

def uninstall():
    remove_tree("/Applications/Nextcloud Talk.app")

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

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

    api_url = "https://api.github.com/repos/nextcloud-releases/talk-desktop/releases/latest"
    download_dict = {
        "windows": "x64.msi",
        "linux": "x64.zip",
        "darwin": ".dmg",
    }
    releases_dict = wgets(api_url, proxies=proxies, as_json=True)

    for asset in releases_dict["assets"]:
        if asset["browser_download_url"].endswith(download_dict[control.target_os]):
            download_url = asset["browser_download_url"]
            latest_bin = download_url.rsplit('/')[-1]
            version = releases_dict["tag_name"][1:]
            break

    # Downloading latest binaries
    print("Latest %s version is: %s" % (control.name, version))
    print("Download URL is: %s" % download_url)

    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(download_url, latest_bin, proxies=proxies)
    else:
        print("Binary is present: %s" % latest_bin)

    # Changing version of the package
    if Version(version, 4) > Version(control.get_software_version(), 4):
        print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
        package_updated = True
    else:
        print("Software version up-to-date (%s)" % Version(version))
    control.set_software_version(version)
    control.save_control_to_wapt()

    return package_updated

3658b6cfc7b202ae56dc02f01e21faf88821b64dc97f481a5adc1a6ce252e20c : Nextcloud.Talk-macos-universal.dmg
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
7a6d848d28661c9d3dc330132977fe711a62f3632a10fcdf8e59d0b3b35fd2f6 : WAPT/control
1151ba48674e21f0e26c7bebad851fcc669cd869201ae559fa6e253d64b9401d : WAPT/icon.png
bb2cce5b41ca2afafe2abd69ad041418c6cbaa0e92c33821e90c3caab2e7decc : luti.json
5496ff12716cee940ab4879d54a37adb081923545330faf4964d8f5f7e4a9288 : setup.py
67880c59eb0ace2c45ed2f3e57896612798aa508756b9bd58f80b98cf5870fd8 : update_package.py