tis-plantronics-hub
3.16.1-1
Plantronics Hub is a client application that allows users to control the settings on their Plantronics audio device.
7903 downloads

Description
- package : tis-plantronics-hub
- version : 3.16.1-1
- architecture : all
- categories : Drivers,Utilities
- maintainer : WAPT Team,Jimmy PELÉ
- description : Plantronics Hub is a client application that allows users to control the settings on their Plantronics audio device.
- locale : all
- target_os : windows
- min_wapt_version : 1.5
- sources : https://www.plantronics.com/us/en/support/downloads-apps/hub-desktop
- installed_size : 321183744
- impacted_process : PLTHub,SpokesUpdateService,CsrDfu,PlantronicsLync2013COM
- 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 :
- description_de :
- description_es :
- description_pt :
- description_it :
- description_nl :
- description_ru :
- editor : Plantronics, Inc.
- licence : Freeware
- signature_date : 2020-05-14T13:59:24.670000
- Homepage : https://www.plantronics.com/
Setup.py
# -*- coding: utf-8 -*-
from setuphelpers import *
uninstallkey = []
# Declaring specific app values (TO CHANGE)
bin_name_string = 'PlantronicsHubInstaller-%s.exe'
silent_args = '/install /quiet /norestart'
uninstallkey_app = ''
def install():
# Specific app values
package_version = control.version.split('-',1)[0]
# Getting the used storage on programfiles before installation (place it on the top)
get_disk_free_space_before = get_disk_free_space(programfiles)
# Installing the package
install_exe_if_needed(bin_name_string % package_version
,silentflags=silent_args
,key=uninstallkey_app
,min_version=package_version)
# Return used storage of the program. (place it on the bottom)
get_disk_free_space_after = get_disk_free_space(programfiles)
free_space_after_diff = get_disk_free_space_before - get_disk_free_space_after
print("Storage used: " + str(free_space_after_diff))
def update_package():
print('Download/Update package content from upstream binary sources')
from waptpackage import PackageEntry
import requests
# Update transition from BeautifulSoup 3 to 4
try:
import bs4 as BeautifulSoup
except:
import BeautifulSoup
# Getting proxy informations from WAPT settings
proxy = {}
if isfile(makepath(application_data(),'waptconsole','waptconsole.ini')):
proxywapt = inifile_readstring(makepath(user_local_appdata(),'waptconsole','waptconsole.ini'),'global','http_proxy')
if proxywapt :
proxy = {'http':proxywapt,'https':proxywapt}
# Specific app values
app_name = control.name
url = control.sources
# Get latest version number from official website
page = requests.get(url,headers={'User-Agent':'Mozilla/5.0 (Windows NT 6.1; Win64; x64)'}).text
bs = BeautifulSoup.BeautifulSoup(page)
# bs = BeautifulSoup.BeautifulSoup(page,features="html.parser") # For bs4 only
bs_raw_string = bs.find('div',{'class':'text_copy text parbase'}).text
version = bs_raw_string.replace(' ','').strip('\n').replace('Version','')
print('Latest ' + app_name + ' version is: ' + version)
url_dl = 'https://www.plantronics.com/content/dam/plantronics/software/PlantronicsHubInstaller.exe'
print('Download url is: ' + url_dl)
latest_bin = bin_name_string % version
# Downloading latest binaries
if not isfile(latest_bin):
print('Downloading: ' + latest_bin)
wget(url_dl,latest_bin,proxies=proxy)
# Change version of the package
print('Writing ' + version + '-0 in WAPT\\control')
pe = PackageEntry()
pe.load_control_from_wapt(os.getcwd())
pe.version = version + '-0'
pe.save_control_to_wapt(os.getcwd())
print('Update package done. You can now build-upload your package')
else:
print('This package is already up-to-date')
# Deleting outdated binaries
for bin_in_dir in glob.glob('*.exe') or glob.glob('*.msi'):
if bin_in_dir != latest_bin :
print('Outdated binary: ' + bin_in_dir + ' Deleted')
remove_file(bin_in_dir)