tis-vfox icon

vfox

Paquet d’installation silencieuse pour vfox

0.6.6-1

  • package: tis-vfox
  • name: vfox
  • version: 0.6.6-1
  • maintainer: Amel FRADJ
  • licence: Apache-2.0 license
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 6.59 Mo
  • homepage : vfox.lhan.me

package           : tis-vfox
version           : 0.6.6-1
architecture      : x64
section           : base
priority          : optional
name              : vfox
categories        : 
maintainer        : Amel FRADJ
description       : vfoxis a cross-platform version manager (similar to nvm, fvm, sdkman, asdf-vm, etc.), extensible via plugins. It lets you install
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : vfoxest un gestionnaire de versions multiplateforme (similaire à nvm, fvm, sdkman, asdf-vm, etc.), extensible via des plugins . Il vous permet d'installer
description_pl    : vfox to wieloplatformowy menedżer wersji (podobny do nvm, fvm, sdkman, asdf-vm itp.), rozszerzalny za pomocą wtyczek. Pozwala na instalację
description_de    : vfoxist ein plattformübergreifender Versionsmanager (ähnlich wie nvm, fvm, sdkman, asdf-vm usw.), der über Plugins erweitert werden kann . Er ermöglicht es Ihnen, Folgendes zu installieren
description_es    : vfox es un gestor de versiones multiplataforma (similar a nvm, fvm, sdkman, asdf-vm, etc.), extensible mediante plugins. Permite instalar
description_pt    : O vfox é um gestor de versões multi-plataforma (semelhante ao nvm, fvm, sdkman, asdf-vm, etc.), extensível através de plugins. Permite-lhe instalar
description_it    : vfox è un gestore di versioni multipiattaforma (simile a nvm, fvm, sdkman, asdf-vm, ecc.), estensibile tramite plugin. Permette di installare
description_nl    : vfox is een cross-platform versiebeheerder (vergelijkbaar met nvm, fvm, sdkman, asdf-vm, enz.), uitbreidbaar via plugins. Hiermee kunt u het volgende installeren
description_ru    : vfox - это кроссплатформенный менеджер версий (подобный nvm, fvm, sdkman, asdf-vm и т.д.), расширяемый с помощью плагинов. Он позволяет устанавливать
audit_schedule    : 
editor            : 
keywords          : 
licence           : Apache-2.0 license
homepage          : vfox.lhan.me
package_uuid      : 8dbb05f6-7e60-4f37-9ba8-644d2d15cc3a
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 9cf30893e54654d4830602beb7b906746d4842c894338ed246fbf72b9dfbeea8
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-05-05T08:00:12.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         : x9F9cDFVBIYln9XoIcnXiteocrpY3CYJGedeNVOArZqaLdipJNJlLz23Bt7WyPJzHYd9X2nzjyWy2tF+AXUfBamnDNG7bVCbZGRmigpU+DH6tkp0KpXefRN9BeVgnIJNk4QemW6R+v+/Lvz/LDcHDFT0ZOOCI09kyI5vuCZ44pa22lXGTpt+/9JD9Me5jyyR258+LlgUrNL9fBTnmWCpZ/KKs57qQqqw3uE4GltvLRpM0l9MAef53buGm4Ns1+X7uGCGvCqBsm7X/SoMtwvcghXkca9brjNOS9NnntGxLCNuTbkYf5wARlkohKvuJv44CyWVpEn9o4WjPdhMnNUiYw==

# -*- 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('vfox_*_windows_setup_x86_64.exe')[0]
    # Installing the software
    
    install_exe_if_needed(bin_name,
        silentflags='/S /SILENT  /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- /LOG',
        key='vfox-fc742fc3-7013-49b7-adcb-96f2d6ddbda0_is1',
        min_version=control.get_software_version(),
    )



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


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    
    dict_arch = {
        "x64": "_windows_setup_x86_64.exe"
    }
    
    git_repo = "version-fox/vfox"
    url_api = "https://api.github.com/repos/%s/releases/latest" % git_repo
    # Getting latest version information from official sources
    print("API used is: %s" % url_api)
    json_load = json.loads(wgets(url_api, proxies=proxies))

    for download in json_load["assets"]:
        if download["browser_download_url"].endswith(".exe")  and dict_arch[control.architecture] in download["browser_download_url"] :
            url_dl = download["browser_download_url"]
            version = json_load["tag_name"].replace("v", "")
            filename = download["name"]
            break

    if not isfile(filename):
        package_updated = True
        wget(url_dl,filename,proxies=proxies)

    #nettoyer les fichiers temporaires
    for f in glob.glob('*.exe'):
        if f != filename:
            remove_file(f)
    
    control.set_software_version(version)
    control.save_control_to_wapt()

38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
7f7dac469a59c35517fb834120cd2cf503134cccf08a35b4a945491f1463d730 : WAPT/control
9cf30893e54654d4830602beb7b906746d4842c894338ed246fbf72b9dfbeea8 : WAPT/icon.png
d797391f1963ddc5b970c05641fd774b301ab52a1209f385d8ac8ac4f5c62bb7 : luti.json
f6a90705f634990beca302c9f61b3d4228e6686c14e7e59d166374182e31314e : setup.py
04aa5ab436d1fc2afc93157f240e4ab669dc6944daabf1976dac49747eff6477 : update_package.py
0d21a9cfde41b8b2d854539780c9c180a0e96d936dab7b9fbcef512e53776be2 : vfox_0.6.6_windows_setup_x86_64.exe