Audacity
Paquet d’installation silencieuse pour Audacity
3.7.6-5
Media
Media
- package: tis-audacity
- name: Audacity
- version: 3.7.6-5
- categories: Media
- maintainer: WAPT Team,Tranquil IT
- editor: Audacity Team
- licence: GPLv2
- locale: all
- target_os: darwin
- impacted_process: audacity
- architecture: all
- signature_date:
- size: 29.77 Mo
- installed_size: 75.66 Mo
- homepage : https://www.audacityteam.org
package : tis-audacity
version : 3.7.6-5
architecture : all
section : base
priority : optional
name : Audacity
categories : Media
maintainer : WAPT Team,Tranquil IT
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 : PROD
locale : all
target_os : darwin
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 : 80ab911d-e65a-4ce9-8ce1-140115270e00
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 95077748fbfba32e514a88bb299ebf2caff259838a198ec49c6c5328faa9134e
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-12-09T19:39: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 : dEk0X1zGYwOlTb2y/ZukxULwLraa6bZub79SJBe0gJ5RwQMQyjJCAytluctcyPOf51yyhnlUMZmQohNAGcrt1PsO4D0/l/0wjaqyHyrg0gVHiiZDvcaVZ7MPHkbQonr24O57pZAVeObSK5of9wWkhSdIklf7MRB1SDoxNrF86qkRCBooaAb4X5OiiUyTvNvFd4CJHQVA9wB9nueJEXFBxcCc+UiwgCujjzuyls4a5+8Us+N20AVlyznaJEqINbYz6Itx2cAtodzs7n9yI80/J9RosOnzd8Ax+zysoj1flGMuui95rRFQ0URFCTChxYe3wG81UHPIx19m9LqRPtus2Q==
# -*- coding: utf-8 -*-
from setuphelpers import *
import shutil
def install():
bin_name = glob.glob("*.dmg")[0]
install_dmg(bin_name)
def uninstall():
shutil.rmtree("/Applications/Audacity.app")
# -*- 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"
# 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 ".dmg" 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)
# 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
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
9e56331eeb042e09d4165924dc52f600c88d412274422e414f31b20dd4cb7039 : WAPT/control
95077748fbfba32e514a88bb299ebf2caff259838a198ec49c6c5328faa9134e : WAPT/icon.png
9a9db7b3748446d6cbc9d41596819bbc82f4ef884a7f8b66c727f72e0581f9ac : audacity-macOS-3.7.6-arm64.dmg
6c39ae68dbee5b42d7c5799f9c1d739f7262273b72d9753560564b7b5ea8fe9b : luti.json
c1e3161bf9f97f3820b9782e2658fc2130620e22a53bd8e30f451e297e7c4a71 : setup.py
ce3dd94c5584c048a370bd266be6326f712784208aa7df930332f9303410b77f : update_package.py