- package: tis-virtio
- name: VirtIO Drivers
- version: 0.1.262-2
- categories: Drivers
- maintainer: WAPT Team,Jimmy PELÉ
- editor: Red Hat, Inc.
- target_os: windows
- architecture: x86
- signature_date:
- size: 1.76 Mo
package : tis-virtio
version : 0.1.262-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 : e3e2dfbd-52b5-4130-9ee3-c9ee82807b0d
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 : yYBP7Fg0FA6r5SLN3Br+0GvtV29LooNqfiLnz1jJCGZLTIzeyatd/A+koJRbhfeXNMc7RzR8vDpdi6rZbJaXFUI8vNepjKMPgKg/pMPvCpxME52ZNViNnLinyDKSJIDmGO6azTNOtThw9Qy6b1sZid9GbgG5VmEcJyqNlPcNMO9wL4I8N0i6fA+XNl4zBRvvBHlGt9J4sab+kycqyqslA7JNn98Rh/Ipp4x+h0nib3+BBmCCpItlI6mUKjLWPUVP35bGj33THq61HuuLMJv/Wm7PyF9rxlPxTWya+05wnzgKXSiUBboTkvWzu+y0vUs5iKJbQ9CoDWRitQZLpNxJQQ==
signature_date : 2024-08-28T13:03:59.235742
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
650c1de3e7c0aa266645da8d587a294155a059b06bf3914ee344f40623da7bcc : virtio-win-gt-x86-0.1.262.msi
eb5be51c77d5971c9f02b3cef17eb476b80529121e0f7c87acbada48021770d9 : luti.json
adb13af90bb804aa12397bbab741e3a3d81015865693ca9d902c5aaf06f33861 : WAPT/control