Détails du package
smp-ebeamdeviceservice
Revenir à la liste des packages
Fichier control :
package : smp-ebeamdeviceservice
version : 2.5.0.18-5
architecture : all
section : base
priority : optional
name :
categories :
maintainer : simon fonteneau
description : automatic package for eBeam Device Service (Luidia, Inc.)
depends :
conflicts :
maturity :
locale :
target_os : windows
min_os_version :
max_os_version :
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 : aa2295f1-70db-413b-b239-38d807722379
valid_from :
valid_until :
forced_install_on :
changelog :
signer : wapt.lesfourmisduweb.org
signer_fingerprint: 1e54425be03a2a3ea1a264b40d984c31f17a6a489a3b722acb993cbf6561e903
signature : QYJNiEq/0XjWhAdchN4PV/lI35nLmOg0/k0OhaOG7XAT2l9twTomQhe7rSlA5agAbTQXm/31PyK2xGq6Bp9Kon1enRn95RurYasa6DNr+p/t9e42vJZ2TQ2yaadimcLFMfO/2rLEmgWFL+tn5CDUj+hQMYvOtNl/RtzWeM+9lcj6aXa3gXZ7ITFtSyvL7b5SrLM+9ZpsxLYcUXO5sEXGM+tsjadM9EFlKgAikDJ/Xrp/Zut9azKJSCRQB0/yXoWz4dhRl63hKSxcUk7bK8Vd7N30GQAY3oRpfSNNjHjlYoJuZ8eIb8+DjqNOV1baA5x8CT5r8lp0J71ugPbwfm1SJA==
signature_date : 2020-07-04T01:18:51.262133
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_os_version,max_os_version,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,signer,signer_fingerprint,signature_date,signed_attributes
Fichier setup.py :
# -*- coding: utf-8 -*-
from setuphelpers import *
# registry key(s) where WAPT will find how to remove the application(s)
uninstallkey = ["eBeamDeviceService_is1"]
# command(s) to launch to remove the application(s)
uninstallstring = []
# list of required parameters names (string) which can be used during install
required_params = []
def install():
# if you want to modify the keys depending on environment (win32/win64... params..)
global uninstallkey
global uninstallstring
softname = 'eBeam Device Service 2.5.0.18'
check_installed = installed_softwares(softname)
# si cette liste globale n est pas vide, on check chaque logiciel
if check_installed:
print(u'The software is already installed and its version is newer than the version of the package' )
return (0);
for tbi in ('eBeamDeviceServiceMain.exe','eBeamDeviceServiceUI.exe','eBeamDevice.exe'):
if isrunning(tbi):
print ("closing %s" % tbi)
killalltasks(tbi)
print('installing tis-ebeamdeviceservice')
run(r'"eBeamDeviceServiceSetup.exe" /VERYSILENT')