- package: tis-virtio
- name: VirtIO Drivers
- version: 0.1.266-2
- categories: Drivers
- maintainer: WAPT Team,Jimmy PELÉ
- editor: Red Hat, Inc.
- target_os: windows
- architecture: x64
- signature_date:
- size: 4.91 Mo
package : tis-virtio
version : 0.1.266-2
architecture : x64
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 : b74f8187-4514-4e16-b284-9ad9f68cee89
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_date : 2024-11-23T11:11:48.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 : X01pL4xkrz9vDVPwFDJGIj3sFgMpiotj2QmdDiswCd1U8HgKG0MVGyAkZ/RTW73qNperNe8ZZv5U3/et3SNTTxK2Ymm0PYwXHMi2/ATUHeIcGBYgnK2zWxhaj72qhFIT/HjEbgQRfWo6RLh0HpYVDpQsvnD9IOnxnPrij6DhcXSus0eUvt+2D/Cn9gbAraHwkjyY/mXXYbADCJRYWWiZ0qHMekbGlSM6zJZH3Aj5N0ZlrZbFlvYvq0rIH9bm7I3pXPABKofntMHGDR1ia5F8JqVOPKGKv40DVf9QrD0xkXcd1hB69N1wwT+sKz4NA7rXlJmU0C59yhK10LX3oLFE2Q==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
# Specific app values
package_version = control.version.split("-")[0]
bin_name = "virtio-win-gt-x64-%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-x64.msi"
bin_name_string = "virtio-win-gt-x64-%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")
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
ce0100e976b21916e2545925a7526b8b7a9ee2d6cd9b96e1b1e3a542815f591c : WAPT/control
56874702c1f83ba25b6e5aadd3433770deb7bc5891baff85c8aa4b5707225326 : WAPT/icon.png
8267fda3b4d797d419c56947bda5649670ce5ee353163fd1e7b4eb2b88739955 : luti.json
051ad353a3fdc12faa3b2500401cb543aa273c36dd356aac558e263a6b68b0ba : redhat-drivers.cer
3c49efe4ce3720a81bafc7acce584fa34ee2dea3e59257199b63f6c88f3e5db0 : redhat-drivers2.cer
509d3db36ef4192010222e6debf898108c5ab7d0295626d16e144dc0666d4772 : setup.py
0423d9609baf5abacddfc22df997b6f4533babb2185f089825e5c91dabfd6956 : update_package.py
37b9ee622cff30ad6e58dea42fd15b3acfc05fbb4158cf58d3c792b98dd61272 : virtio-win-gt-x64-0.1.266.msi