tis-plantronics-hub icon

Plantronics Hub

Paquet d’installation silencieuse pour Plantronics Hub

3.25.53799.37131-10

  • package: tis-plantronics-hub
  • name: Plantronics Hub
  • version: 3.25.53799.37131-10
  • categories: Drivers,Utilities
  • maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ
  • editor: Plantronics, Inc.
  • licence: Freeware
  • locale: all
  • target_os: mac
  • impacted_process: PLTHub
  • architecture: all
  • signature_date:
  • size: 80.74 Mo
  • installed_size: 180.49 Mo
  • homepage : https://www.poly.com/

package           : tis-plantronics-hub
version           : 3.25.53799.37131-10
architecture      : all
section           : base
priority          : optional
name              : Plantronics Hub
categories        : Drivers,Utilities
maintainer        : WAPT Team,Tranquil IT,Jimmy PELÉ
description       : Plantronics Hub is a client application that allows users to control the settings on their Plantronics audio device
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : mac
min_wapt_version  : 2.0
sources           : https://www.poly.com/us/en/support/downloads-apps/hub-desktop
installed_size    : 180490240
impacted_process  : PLTHub
description_fr    : Plantronics Hub est une application client permettant aux utilisateurs finaux de contrôler les paramètres de leur périphérique audio Plantronics
description_pl    : Plantronics Hub to aplikacja kliencka, która pozwala użytkownikom kontrolować ustawienia w ich urządzeniu audio Plantronics
description_de    : Plantronics Hub ist eine Client-Anwendung, mit der Benutzer die Einstellungen ihres Plantronics-Audiogeräts steuern können
description_es    : Plantronics Hub es una aplicación cliente que permite a los usuarios controlar los ajustes de su dispositivo de audio Plantronics
description_pt    : Plantronics Hub é uma aplicação cliente que permite aos utilizadores controlar as definições no seu dispositivo de áudio Plantronics
description_it    : Plantronics Hub è un'applicazione client che consente agli utenti di controllare le impostazioni del proprio dispositivo audio Plantronics
description_nl    : Plantronics Hub is een client-toepassing waarmee gebruikers de instellingen op hun Plantronics-audioapparaat kunnen beheren
description_ru    : Plantronics Hub - это клиентское приложение, которое позволяет пользователям управлять настройками аудиоустройства Plantronics
audit_schedule    : 
editor            : Plantronics, Inc.
keywords          : plantronics,hub,audio,device,soft,phone
licence           : Freeware
homepage          : https://www.poly.com/
package_uuid      : cdae6ce8-dd50-4fc9-9c58-8e6baf5d531a
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://www.plantronics.com/us/en/support/knowledge-base/kb-article-page?type=Product_Information__kav&lang=en_US&urlName=Hub-Release-Notes&t=All&k=hub%20release%20notes
min_os_version    : 6.1
max_os_version    : 
icon_sha256sum    : c8cd10a9145285467ded8dc6473fa07575f538eae6b60f9838d6ac209d525e1f
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : GdLLbiK02dFUKr3/iDig3Ly8piynt4g7f1gEFOefWGR4SH8iue5+9arm/LfgrfbhVe/71DrHbyrX//TpXOO1snt43SIO2CkwepRzmk/0CWX1yalm8VBCoZt+HS2pWO2PhtEGrAlBY9wuyFzUZIiSdGR1muZEd65Zft52oKfrlX1xDvnc46jeqg3EA/XgqIRFVcA6wiaJDraKnIvVT/9VInV44oHVpmnNTeXVepKtzCi7evLEprj++nR64sr4i0630/zpMNAx38sQxnAK32qVLwfvlj2Pngtm51QDJaTuNTQGAgFCyvkM80T9FSJ0hWOd3kTPIk2MeYKyTYf0+AEuLA==
signature_date    : 2022-12-21T02:01:40.826456
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 *


def install():
    # Declaring local variables
    bin_name = glob.glob("*PlantronicsHubInstaller*.dmg")[0]

    # Installing the software
    print("Installing: %s" % bin_name)
    install_dmg(bin_name)


def uninstall():
    # Uninstalling the software
    uninstall_app("Plantronics Hub")
    uninstall_pkg('Plantronics-Inc..Plantronics-Hub')

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

# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
bin_contains = "PlantronicsHubInstaller"


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

    download_url = "https://www.poly.com/content/dam/www/software/PlantronicsHubInstaller.dmg"
    latest_bin = "PlantronicsHubInstaller.dmg"

    print("Download url is: %s" % download_url)

    # Downloading latest binaries
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(download_url, latest_bin, proxies=proxies)

    # Installation to check the version
    install_dmg(latest_bin)
    for soft in installed_softwares() :
        if 'Plantronics Hub' == soft['name'] :
            version=soft['version']



    control.set_software_version(version)
    control.save_control_to_wapt()

    # Validating or not update-package-sources
    return result

5e2c237a3a1f5876fb39c2044ca4c7a133481280ac065e2b4318bcea3bb87062 : setup.py
c0987a1ac0134752432b1798669341ac0d267f35c639765535f638c71fbf625c : update_package.py
c8cd10a9145285467ded8dc6473fa07575f538eae6b60f9838d6ac209d525e1f : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
3ffaa2a5138e454ce1c75fb0c21dc20a24aa8a2f353e7edf016b1292ab0451e5 : luti.json
eed83a70e05dde51ead7ae7bbd1c013864a8fd994cd1b576dd06de8b64524948 : PlantronicsHubInstaller.dmg
730f451c7deb35363e2366f8e61dbd0df8cb9b0ea416f999e66534d5efa0054f : WAPT/control