tis-audacity icon

Audacity

Paquet d’installation silencieuse pour Audacity

3.7.6-1
Media
Media

Les paquets PREPROD sont des paquets construits via LUTI. Ils restent généralement 5 jours en PREPROD, après quoi un scan VirusTotal est effectué.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.

  • package: tis-audacity
  • name: Audacity
  • version: 3.7.6-1
  • categories: Media
  • maintainer: Tranquil IT,Jimmy PELÉ
  • editor: Audacity Team
  • licence: GPLv2
  • locale: all
  • target_os: windows
  • impacted_process: audacity
  • architecture: x64
  • signature_date:
  • size: 17.95 Mo
  • installed_size: 75.66 Mo
  • homepage : https://www.audacityteam.org

package           : tis-audacity
version           : 3.7.6-1
architecture      : x64
section           : base
priority          : optional
name              : Audacity
categories        : Media
maintainer        : Tranquil IT,Jimmy PELÉ
description       : Audacity is an easy-to-use, multi-track audio editor and recorder for Windows, Mac OS X, GNU/Linux and other operating systems.
depends           : 
conflicts         : 
maturity          : PREPROD
locale            : all
target_os         : windows
min_wapt_version  : 2.0
sources           : https://www.audacityteam.org/download/
installed_size    : 75657216
impacted_process  : audacity
description_fr    : Audacity est un logiciel d'enregistrement de son numérique et d'édition de sources audionumériques sous différents formats (mp3, Wave, AIFF, Flac, Ogg...).
description_pl    : Audacity to łatwy w użyciu, wielościeżkowy edytor i rejestrator audio dla systemów operacyjnych Windows, Mac OS X, GNU/Linux i innych
description_de    : Audacity ist ein einfach zu bedienender, mehrspuriger Audio-Editor und Recorder für Windows, Mac OS X, GNU/Linux und andere Betriebssysteme
description_es    : Audacity es una aplicación informática multiplataforma libre, que se puede usar para grabación y edición de audio, distribuido bajo la licencia GPLv2+.
description_pt    : Audacity é um editor e gravador de áudio multi-faixa fácil de usar para Windows, Mac OS X, GNU/Linux e outros sistemas operativos
description_it    : Audacity è un editor e registratore audio multitraccia facile da usare per Windows, Mac OS X, GNU/Linux e altri sistemi operativi
description_nl    : Audacity is een eenvoudig te gebruiken multi-track audio-editor en recorder voor Windows, Mac OS X, GNU/Linux en andere besturingssystemen
description_ru    : Audacity - это простой в использовании многодорожечный аудиоредактор и рекордер для Windows, Mac OS X, GNU/Linux и других операционных систем
audit_schedule    : 
editor            : Audacity Team
keywords          : audio,editor,recorder,multi-track,multi,track
licence           : GPLv2
homepage          : https://www.audacityteam.org
package_uuid      : 2e2e9864-d2cc-4de4-83ea-6fb120b709b9
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 6.1
max_os_version    : 
icon_sha256sum    : 95077748fbfba32e514a88bb299ebf2caff259838a198ec49c6c5328faa9134e
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2025-12-05T07:42:48.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         : VcFMn+o+iRY3tF9MZqM+Mph6ZigyrVGPv1qytrfCj1p0FpzQBHiq9fC3KQbByckL8GYvHCNLnOX1EUQ/Fo4c9PBF87fKJ7xEzff9P3/njKPluoXFu2I5VtAx3BK9NwuxWDpQ9jKzUcsvL+TtuIUHBRmkuORAPcvC2zPqaopxIkWiz1XtUu7gOIvBjtRv1Ds2PluI18WXSFWDn9C1KG7TBuPbG0vRDKPdz6MzqXiqFBAWJEgS2u0yChHNTwQr3BLKVQzfm7TW+FbXKmwouVb+9+iVbUuKBsXa4f1kYQm3R7z7IE2rDcs7C+G6kul2Z1QpXPITdEppMe8CusILR7A0GA==

# -*- coding: utf-8 -*-
from setuphelpers import *


def install():
    bin_name = glob.glob("audacity-win-*.exe")[0]
    install_exe_if_needed(
        bin_name,
        silentflags="/VERYSILENT",
        key="Audacity_is1",
        min_version=control.get_software_version(),
    )

# -*- coding: utf-8 -*-
from setuphelpers import *
import json


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    app_name = control.name
    api_url = "https://api.github.com/repos/audacity/audacity/releases/latest"
    if control.architecture == "x64":
        arch_contains = "-64bit.exe"
        arch_contains2 = "x64.exe"
    else:
        arch_contains = "-32bit.exe"
        arch_contains2 = "x32.exe"

    # Getting latest version information from official sources
    print("API used is: %s" % api_url)
    json_load = json.loads(wgets(api_url, proxies=proxies))
    for download in json_load["assets"]:
        if arch_contains in download["name"] or arch_contains2 in download["name"]:
            download_url = download["browser_download_url"]
            version = json_load["tag_name"].split("-")[-1]
            latest_bin = download["name"]
            break

    # Downloading latest binaries
    print("Latest %s version is: %s" % (app_name, version))
    print("Download URL is: %s" % download_url)
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(download_url, latest_bin, proxies=proxies)
    else:
        print("Binary is present: %s" % latest_bin)

    # Checking version from file
    version_from_file = get_file_properties(latest_bin)["FileDescription"].split(" ")[1]
    # if not version_from_file.startswith(version) and version_from_file != '':
    if Version(version_from_file) != Version(version) and version_from_file != "":
        print("Changing version to the version number of the binary")
        os.rename(latest_bin, latest_bin.replace(version, version_from_file))
        version = version_from_file
    else:
        print("Binary file version corresponds to online version")

    # Changing version of the package
    if Version(version) > Version(control.get_software_version()):
        print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
        package_updated = True
    else:
        print("Software version up-to-date (%s)" % Version(version))
    control.set_software_version(version)
    control.save_control_to_wapt()

    # Deleting outdated binaries
    remove_outdated_binaries(version)

    # Validating update-package-sources
    return package_updated

01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
836a1ec502b878121c98c176f6dabbe48b9ae0c20cd94473aeb98191a4b6b8a4 : WAPT/control
95077748fbfba32e514a88bb299ebf2caff259838a198ec49c6c5328faa9134e : WAPT/icon.png
8f88e52fe75e67e4cf74446e5dbb3b0db00f2e6894df819a180afe56e8f57b04 : audacity-win-3.7.6-64bit.exe
925fbfc1d76f91129a2ef2f573d5b89b65017259fee012aa817910b362f0556e : luti.json
12f006c25aba215a0110a7852e99c141e38426375d6641212b646c627767cd09 : setup.py
eb498b25e067554d1647e2746271ef343db51b7edd3a4b8987e63baea870b74d : update_package.py