tis-ocenaudio icon

ocenaudio

Silent install package for ocenaudio

3.14.10-1

  • package: tis-ocenaudio
  • name: ocenaudio
  • version: 3.14.10-1
  • categories: Media
  • maintainer: WAPT Team,Tranquil IT,
  • licence: proprietary_free,wapt_public
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 38.35 Mo

package           : tis-ocenaudio
version           : 3.14.10-1
architecture      : x64
section           : base
priority          : optional
name              : ocenaudio
categories        : Media
maintainer        : WAPT Team,Tranquil IT,
description       : Simple, fast and powerful audio editor
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 2.3
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : Éditeur audio simple, rapide et puissant
description_pl    : Prosty, szybki i wydajny edytor audio
description_de    : Einfacher, schneller und leistungsstarker Audio-Editor
description_es    : Editor de audio sencillo, rápido y potente
description_pt    : Editor de áudio simples, rápido e poderoso
description_it    : Editor audio semplice, veloce e potente
description_nl    : Eenvoudige, snelle en krachtige audio-editor
description_ru    : Простой, быстрый и мощный аудиоредактор
audit_schedule    : 
editor            : 
keywords          : 
licence           : proprietary_free,wapt_public
homepage          : 
package_uuid      : a353f875-66af-4e8f-9d33-20df53247e2f
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : e7a264b60a86911bd7d375eec4ffed07b16bad669853a2d6ad1d65d123d47878
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-03-04T19:31:21.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         : dijS2/aEOH2ZsVuqSYHzd7eWx1KazFSTVQChMhHRld6+TcVprF736BzlDRxU+Q2E6u5tQt+rhfDtLfXfAkIAnI1hGm1UmRw3kAVgKkNvDEmmEvwsPjXEF2p8nS6p0jc7w7kYrk87pb3KOWtHqXnFk4hG0EUMmjV4tFv4WFaHQJ9UUVJV52DY5RqpDxdqOxbqnLe03i1GZsQSHxOrS8B8Itf0pazDNq8HLVDCiUxruvk8iW1ru8yAZA3o6O2/EcNo+GFIYFGawF4qoLr4Glp0bqxXBrB6Tf029ikK89dVV9eIUHQjnmiXdipH8E5uke7Jl5yxA6Zr4WnsiNHNweG5/w==

# -*- 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
    bin_name= glob.glob('ocenaudio_windows*.exe')[0]
    # Installing the software
    
    install_exe_if_needed(bin_name,
        silentflags='/S /ALLUSERS',
        key='ocenaudio',
        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()

  
    data = requests.head('https://www.ocenaudio.com/downloads/index.php/ocenaudio_windows64.exe?',allow_redirects=True,proxies=proxies)
    download_url = data.url  
    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()    
        

38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
f4e634447a5bf4f916c90e48852d13e3d18ff81886521e7d887e207dd56da43d : WAPT/control
e7a264b60a86911bd7d375eec4ffed07b16bad669853a2d6ad1d65d123d47878 : WAPT/icon.png
589b0d2f93c6a3bec306e0ed1424db91e21a5dbb8768cf912075f228e780ec7c : luti.json
f816151c4aae05b9c6f43ea57b103cce615271f9cd7c53c18056222b5d48ff0e : ocenaudio_windows64.exe
4c777f3592115d0715869ab2cdf4e2cb3d5978855b464cbaea717c5d0b8bea50 : setup.py
5387f0785f0b074e0edfc7581fae8981a1b3bbb031976cd05211af83b4a44647 : update_package.py