- package: tis-virtio
- name: VirtIO Drivers
- version: 0.1.248-2
- categories: Drivers
- maintainer: WAPT Team,Jimmy PELÉ
- editor: Red Hat, Inc.
- target_os: windows
- architecture: x86
- signature_date:
- size: 1.53 Mo
package : tis-virtio
version : 0.1.248-2
architecture : x86
section : base
priority : optional
name : VirtIO Drivers
categories : Drivers
maintainer : WAPT Team,Jimmy PELÉ
description : VirtIO Drivers
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version : 2.0
sources :
installed_size :
impacted_process :
description_fr :
description_pl :
description_de :
description_es :
description_pt :
description_it :
description_nl :
description_ru :
audit_schedule :
editor : Red Hat, Inc.
keywords :
licence :
homepage :
package_uuid : 36cb1351-cf98-4867-9da6-d5f8c091721e
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10
max_os_version :
icon_sha256sum : 56874702c1f83ba25b6e5aadd3433770deb7bc5891baff85c8aa4b5707225326
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature : V1TUyvHeoKuCFBgciAsB/wxqWvAYPAeYSNW20gqmPIvm3y0GBNeG5xtHqOUWIDFEGqCkT32NCrLrBbxSt28LVW8lGCwxaxH8rXZdjqfdbrafCU3D1OwDXnrIktv+Hbr9ggLBve3rM+zfYDEqBUrv90FvTmYuDKV5NvCTT72onYXMC5HkQc9CBFQKnNdQA8Fg0k4ULIomdV8lpKlexPnS8i35+UkXqIMg0cHczN1TCpWkBZDD3lqHc9FrxPM2eSuVjwTHS+xflbmzc+jbqDMvv1JChn+KsY8S+oAuCuR+ylr35/ic1bx+2p+md6c0pDEMaAQIKNotCC31sdk7LyjuNQ==
signature_date : 2024-03-04T03:00:37.714446
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
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
# Specific app values
package_version = control.get_software_version()
bin_name = "virtio-win-gt-x86-%s.msi" % package_version
# Add "Red Hat, Inc." to Trusted Publishers
run('"%s" -addstore TrustedPublisher "%s"' % (makepath(system32, "certutil.exe"), makepath(basedir, "redhat-drivers.cer")))
run('"%s" -addstore TrustedPublisher "%s"' % (makepath(system32, "certutil.exe"), makepath(basedir, "redhat-drivers2.cer")))
# Installing the package
install_msi_if_needed(bin_name)
# -*- coding: utf-8 -*-
from setuphelpers import *
import platform
# Declaring specific app values (TO CHANGE)
real_bin_name = "virtio-win-gt-x86.msi"
bin_name_string = "virtio-win-gt-x86-%s.msi"
def update_package():
print("Download/Update package content from upstream binary sources")
# Getting proxy informations from WAPT settings
proxy = {}
if platform.system() == "Windows" and isfile(makepath(user_local_appdata(), "waptconsole", "waptconsole.ini")):
proxywapt = inifile_readstring(makepath(user_local_appdata(), "waptconsole", "waptconsole.ini"), "global", "http_proxy")
if proxywapt:
proxy = {"http": proxywapt, "https": proxywapt}
# Specific app values
url_dl = "https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/latest-virtio/%s" % real_bin_name
# Downloading latest binaries
if isfile(real_bin_name):
remove_file(real_bin_name)
if not isfile(real_bin_name):
print("Downloading: " + real_bin_name)
wget(url_dl, real_bin_name, proxies=proxy)
# Get version from file
version = get_msi_properties(real_bin_name)["ProductVersion"]
os.rename(real_bin_name, bin_name_string % version)
# Change version of the package
control.version = "%s-%s" % (version, int(control.version.split("-", 1)[1]) + 1)
control.save_control_to_wapt()
print("Changing version to " + control.version + " in WAPT\\control")
print("Update package done. You can now build-upload your package")
else:
print("This package is already up-to-date")
051ad353a3fdc12faa3b2500401cb543aa273c36dd356aac558e263a6b68b0ba : redhat-drivers.cer
3c49efe4ce3720a81bafc7acce584fa34ee2dea3e59257199b63f6c88f3e5db0 : redhat-drivers2.cer
31b3b81a37aef77350988da836af549b27348760b01560319baffd22c627ffe4 : setup.py
8f6101de06a06b177fd9862fdc9ca0f1c5a3245e1b9741777acc520c57833995 : update_package.py
56874702c1f83ba25b6e5aadd3433770deb7bc5891baff85c8aa4b5707225326 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
e51f71aaf35786afbadeec08a6692d797a476366f2a47c84ed8d2c82caa44c57 : luti.json
d654406d06937bdd788b4fe7380956159f8100db9c2181d8b682c60ecbd40e89 : virtio-win-gt-x86-0.1.248.msi
3c4098eab1a5d1fcc770314246df8ac885b66760288a20ce8c292223909b0296 : WAPT/control