
- package: tis-breitbandmessung
- name: Breitbandmessung
- version: 3.7.0-2
- categories: Configuration
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ
- licence: opensource_free,wapt_public
- target_os: windows
- architecture: x64
- signature_date:
- size: 85.46 Mo
- homepage : https://breitbandmessung.de/desktop-app
package : tis-breitbandmessung
version : 3.7.0-2
architecture : x64
section : base
priority : optional
name : Breitbandmessung
categories : Configuration
maintainer : WAPT Team,Tranquil IT,Amel FRADJ
description : Desktop broadband measurement application
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version : 2.3
sources :
installed_size :
impacted_process :
description_fr : Application de bureau de mesure du haut débit
description_pl : Aplikacja do pomiarów szerokopasmowych
description_de : Desktop-Anwendung zur Messung von Breitband
description_es : Aplicación de sobremesa de medición de banda ancha
description_pt : Aplicação de medição de banda larga de secretária
description_it : Applicazione desktop per la misurazione della banda larga
description_nl : Desktop breedbandmeettoepassing
description_ru : Настольное приложение для измерения широкополосных частот
audit_schedule :
editor :
keywords :
licence : opensource_free,wapt_public
homepage : https://breitbandmessung.de/desktop-app
package_uuid : d4f2aea7-f3e3-47e7-ba56-9d8c36d103e0
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 9af9538d3c5b62248b725e75ce5b77b61b1d6980cb09d63acf0bc22925eb4e22
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2024-10-02T13:06:15.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 : sEvz6PK/qcrLkGrejIdgCr37a58Uv+zMwpgl8Ea6HhoM6nxkwal3qlN4d1/KF+76Xkm9hB/tvZ+X5PQl9lJVGCh27C2Jp9PiECuLNK68+6QFghgHN56FC5wG8lVCbFIAWOAMr9a9qf95l0vVoua+jEm+W6UXmdi7JY+h6Ep0U+Ng0mgUnC2wZ17hjAKfpx0wAmoi0U8lYYICzDYnh/szzksD8SBKIXD+hoqWkhE98quuCeGtlLUpJ4LE8ZrGmR0XCcNa/GdnuktbOB3wjoj4zQlQN4TaVgNCHcoJCGeOPEccmbH6cEhmE8sTmmGRDINk5LBgKicl1n/njVZoEn4RrA==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def install():
# Declaring local variables
# Installing the software
print("Installing: Breitbandmessung-win.exe")
install_exe_if_needed('Breitbandmessung-win.exe',
silentflags='/S',
key='14607473-30db-509f-94f0-bb7c085c619e',
min_version=control.get_software_version(),
)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
download_url = "https://download.breitbandmessung.de/bbm/Breitbandmessung-win.exe"
latest_bin = download_url.split("/")[-1]
# Downloading latest binaries
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
package_updated = True
else:
print("Binary is present: %s" % latest_bin)
# Deleting outdated binaries
for f in glob.glob('*.exe'):
if f != latest_bin:
remove_file(f)
version = get_version_from_binary(latest_bin)
# Mettre à jour le package
control.set_software_version(version)
control.save_control_to_wapt()
3d2ebe93baa9175f3c873cc0edce280a0352c51bf0f5e98fec368b440c790a7f : Breitbandmessung-win.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
f76a9bb0f099352cd9c59c19ecdab57c3a5c3d98d5319a0139bdee19fd926272 : WAPT/control
9af9538d3c5b62248b725e75ce5b77b61b1d6980cb09d63acf0bc22925eb4e22 : WAPT/icon.png
6fed2c80bbd723b364691b83f5d6d029ebaa4de5d58caf613c02ea632af07e21 : luti.json
d38ab8fd3bfde48803e99cf6ca172dd02cf54ca863e6929a85d068eb842e9a24 : setup.py
41c31ff8115095dbf598e3d6b214bd5e719a685e5953b41767fa5f0eaf407441 : update_package.py