
vfox
Paquet d’installation silencieuse pour vfox
0.6.7-1
- package: tis-vfox
- name: vfox
- version: 0.6.7-1
- maintainer: Amel FRADJ
- licence: Apache-2.0 license
- target_os: windows
- architecture: x64
- signature_date:
- size: 6.42 Mo
- homepage : vfox.lhan.me
package : tis-vfox
version : 0.6.7-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 : 0e66ee1a-aab1-4018-bf43-449a85367b61
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-23T03:00:17.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 : Op1cpESvV779v04jYa2sWI7qv0L4spWgMIKPXIu5YxImkUWd6qFmV2jBsll79c/OYajogJh6SyVdigUVptQZJmD/sJNEO3tUD8tWvlgqwBvh1ZfFRvC1zF5R4hkIEYszqIB7qgp5m/u0/9BC7q3fUXT8l3GaogZhA5qeQJ2gwG5yHh9vVWIjLqAxquXakXZHzDHhq1G5ot2aEiVth+8o/2Je/9n3oGhzk6JhHPwiVUwWjigO7D6VGdKwYwqPo87o2y1xLmCwvKYO/baJQglGV/tgqnxINWxsyq1SV6Tqrnjljpsu1lI2XhlXs7mX0PM15HHvfGkD/9AQ+/9Dr9MN+g==
# -*- 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
0f63476a292c56b6bf4644a8c1a5ea308d462b28ccd83bbc139d642bceec0ef9 : WAPT/control
9cf30893e54654d4830602beb7b906746d4842c894338ed246fbf72b9dfbeea8 : WAPT/icon.png
e4c19029172ea6428ff0932f20c48fbefe9d6ca8d5d04a515d3bed5a6bb01595 : luti.json
f6a90705f634990beca302c9f61b3d4228e6686c14e7e59d166374182e31314e : setup.py
04aa5ab436d1fc2afc93157f240e4ab669dc6944daabf1976dac49747eff6477 : update_package.py
e343459301d36e7a669028f0c1014954698271f78e859daab323d566adf70641 : vfox_0.6.7_windows_setup_x86_64.exe