
- package: tis-breitbandmessung
- name: Breitbandmessung
- version: 3.9.1-1
- categories: Configuration
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ
- licence: opensource_free,wapt_public
- target_os: windows
- architecture: x64
- signature_date:
- size: 117.02 Mo
- homepage : https://breitbandmessung.de/desktop-app
package : tis-breitbandmessung
version : 3.9.1-1
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 : cec0b895-e028-4a24-82bf-355a38239c9a
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 : 2025-07-07T12:03:17.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 : S1vIYoG/P39WXN5hW5nRJWUY8EDNmZ1IbPZ5XdstWOcGbuJShRhZ79Y/+HwZ+LFywmsm8rprk1khjA1cspIIDWvK2zUIPr+KkROTIUJ2Eg1F97t6c6jDZ29l014WuvKzPQ7RBJRtNbSLEzt3af5utr/MpB0+a3JMGLXVC10yQn6VjecCQLaep3x4mOKMAZEC1Hn6HxYm8FRttmPsPM55Wx/W6o5ysCky/C3ibp0bP0yu9+722/2h0XfjXuV3NRR52nRNwhTodwbrCGWW08Dgmm8+VDvDOiPLWf1wxacku/CC+BhqZlmmrl3DFhDk+64CyJFSy6GwFDQ0HmxUkhILGw==
# -*- 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()
d35293df0cc0c115c0a3053cceae9c92b86c46350c8bae2118bb9c54535926d0 : Breitbandmessung-win.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
804ace15e31f6b8ad19a309a15eacad0e611e8500149002cd75adf9bb52a8fe3 : WAPT/control
9af9538d3c5b62248b725e75ce5b77b61b1d6980cb09d63acf0bc22925eb4e22 : WAPT/icon.png
cea235d05ea46ed867f1b8c116b1b8dae3638cbbe5f68a17374e849944591ef1 : luti.json
d38ab8fd3bfde48803e99cf6ca172dd02cf54ca863e6929a85d068eb842e9a24 : setup.py
41c31ff8115095dbf598e3d6b214bd5e719a685e5953b41767fa5f0eaf407441 : update_package.py