Audacity
Silent install package for Audacity
3.7.7-5
Media
Media
Preprod packages are packages built on LUTI.
They remain in PREPROD usually for 5 days, after which a new VirusTotal scan is performed.
If the package passes this last check, it is promoted to PROD and published on the store.
- package: tis-audacity
- name: Audacity
- version: 3.7.7-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.7-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 : PREPROD
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 : 23fd7c5b-ba09-4872-9240-982c300175c6
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 95077748fbfba32e514a88bb299ebf2caff259838a198ec49c6c5328faa9134e
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2025-12-11T20:34:10.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 : r2000oN7ojosVQ4UI/egUvXWmMPV/XUhtrXuem1EW8l7tzCadUOjjuI9BOqRo68AJG1ijg9iEbsrINfVHxh00cqsk0JgjqXUkP3etQPxCf8S/M6OiMB2hm9ByvE5Pj94pKgqQ/QPuVKeUZkKKP2+r8DQqezOsP/dnzvXUa2LO7MJTIfh/EHwx9bB70oM2xahJoXa6KNaW7AV98Olepno38KU8EZvxGWr7dUSys2VgYlPBCY8sRnFXKlNCvYKWA7DvdyVSbvgsIGFan3/hbZj84ZQdvWcSxTJTZJ1u3/JRi4fR5ZrK5GhI08S+0WqPeHZRPk4V6GjwnXL2zBWtw8Qlg==
# -*- 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
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
35e5f722cafb1c21ce79f51cefe02aed5b99077e06829bd9c79bf5cc4e4b6356 : WAPT/control
95077748fbfba32e514a88bb299ebf2caff259838a198ec49c6c5328faa9134e : WAPT/icon.png
8b3c43a06eef2977bd81fd14f349d93c6295f1760a93fc5bd4dba86c0ec104eb : audacity-macOS-3.7.7-arm64.dmg
aea7fc9e33b856792a757ccfe963fbaacaabf600028473534878d08de1986f8f : luti.json
c1e3161bf9f97f3820b9782e2658fc2130620e22a53bd8e30f451e297e7c4a71 : setup.py
ce3dd94c5584c048a370bd266be6326f712784208aa7df930332f9303410b77f : update_package.py