
- package: tis-breitbandmessung
- name: Breitbandmessung
- version: 3.9.0-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.0-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 : 3fa65a55-86ec-476d-9df2-b50400e64a14
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-06-22T10:00: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 : BIHDNO1W3GUhTaTGZDYW64n2DaR+RTRHQo6Qp5jx7b1sRYpDCFT5GuL+LMNA+y+U//hmpB0f9z6g0ny0Smw17PYqr3cTdHeNsYRx+zv88HGM/DadylWwSsCYKCukYQmRq6wwu0uqUyz+9tqvtYxT4zVLIFJev/NypuCPIjmlFhgF2Ir/9HZoRBtv24fkHvKjQLgiZZrC64C5YnNhd3oSux6yE/ayfhYBWmjOm8Eu2VCJ41MXUFSCfIGqlVUkOrsdGX9/jQgLtPAFbvYcNVQS+uswTJO0I0JkqvKfVhri8uI+0Xuk7qX327MEckX0MsJvToyId1jQzwrHCI5ivlvRxQ==
# -*- 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()
3a2a0c717ee9bda0c997b49d72b0df61ebb6524523dd536cdb2657d8fb018ace : Breitbandmessung-win.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
10735955f3925541d1d1084780afb428004f57e2a4d691b7d45d423819a549bb : WAPT/control
9af9538d3c5b62248b725e75ce5b77b61b1d6980cb09d63acf0bc22925eb4e22 : WAPT/icon.png
0ff3c8f80c643ef890190819104bf9d05e236651533f615e4d3d20a82a115152 : luti.json
d38ab8fd3bfde48803e99cf6ca172dd02cf54ca863e6929a85d068eb842e9a24 : setup.py
41c31ff8115095dbf598e3d6b214bd5e719a685e5953b41767fa5f0eaf407441 : update_package.py