qbittorrent-enhanced
Silent install package for qbittorrent-enhanced
5.2.3.10-1
- package: tis-qbittorrent-enhanced
- name: qbittorrent-enhanced
- version: 5.2.3.10-1
- maintainer: Amel FRADJ
- licence: GNU GENERAL PUBLIC LICENSE
- target_os: windows
- architecture: x64
- signature_date:
- size: 28.99 Mo
- homepage : https://github.com/c0re100/qBittorrent-Enhanced-Edition
package : tis-qbittorrent-enhanced
version : 5.2.3.10-1
architecture : x64
section : base
priority : optional
name : qbittorrent-enhanced
categories :
maintainer : Amel FRADJ
description : qBittorrent is a bittorrent client programmed in C++ / Qt that uses libtorrent (sometimes called libtorrent-rasterbar) by Arvid Norberg
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size :
impacted_process :
description_fr : qBittorrent est un client bittorrent programmé en C++ / Qt qui utilise libtorrent (parfois appelé libtorrent-rasterbar) par Arvid Norberg
description_pl : qBittorrent to klient bittorrent zaprogramowany w C++ / Qt, który wykorzystuje libtorrent (czasami nazywany libtorrent-rasterbar) autorstwa Arvida Norberga
description_de : qBittorrent ist ein in C++ / Qt programmierter Bittorrent-Client, der libtorrent (manchmal auch libtorrent-rasterbar genannt) von Arvid Norberg verwendet
description_es : qBittorrent es un cliente bittorrent programado en C++ / Qt que utiliza libtorrent (a veces llamado libtorrent-rasterbar) por Arvid Norberg
description_pt : qBittorrent é um cliente bittorrent programado em C++ / Qt que usa libtorrent (às vezes chamado libtorrent-rasterbar) por Arvid Norberg
description_it : qBittorrent è un client bittorrent programmato in C++ / Qt che utilizza libtorrent (talvolta chiamato libtorrent-rasterbar) di Arvid Norberg
description_nl : qBittorrent is een bittorrent-client die is geprogrammeerd in C++ / Qt en gebruikmaakt van libtorrent (soms libtorrent-rasterbar genoemd) van Arvid Norberg
description_ru : qBittorrent - это битторрент-клиент, написанный на C++ / Qt и использующий libtorrent (иногда называемый libtorrent-rasterbar) от Арвида Норберга
audit_schedule :
editor :
keywords :
licence : GNU GENERAL PUBLIC LICENSE
homepage : https://github.com/c0re100/qBittorrent-Enhanced-Edition
package_uuid : cd3c504b-2b67-4f0c-b1f3-849b8bfa1ad8
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10.0
max_os_version :
icon_sha256sum : e2f3a4fd8dd3d8613db60de59aa044ee550cc9ff75ca7a86d9cf95f1ead68c33
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-07-25T09:07:23.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 : qWKY65phNAPLa9Qg8ISYCeLzIw6x+TKZfkaIxwO28s18QkNRbR6Gs6LJBitHfSDysIK4Vv8UYSLgvZmePNlI8WLjdui9LMHxdf9ztTqwmoZkVy7+BF9XMxxVc8Oo5wfQQ56e+fdB+8JzjpweHw6Hjl9C7YK8MzQCB4EHOBTmGJXXc8i4PpdOTawX+yFLXAAOK8kZVL+Ndy2vEHG9+8N5N7moQ6ksb5b+4sNf6y/auj1BhfnD0865+KsbhNs1OBwoGSumfYLascTO+D18aq6lIke9OCIC08ftgzhDKkfkOGawj4K7eNgfUBwjnDNGMt60cmB0CIeS8n0uDdJjiMRZ1g==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
{
"key":"qBittorrent",
"name":"qBittorrent",
"version":"4.6.4.10",
"install_date":"",
"install_location":"",
"uninstall_string":"\"C:\\Program Files\\qBittorrent\\uninst.exe\"",
"publisher":"The qBittorrent project",
"system_component":0,
"win64":false
}
"""
# 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('qbittorrent_enhanced_*_x64_setup.exe')[0]
# Installing the software
install_exe_if_needed(bin_name,
silentflags='/S',
key='qBittorrent',
min_version=control.get_software_version(),
)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import json
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def update_package():
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
dict_arch = {
"x64":"_x64_setup.exe",
}
git_repo = "c0re100/qBittorrent-Enhanced-Edition"
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["name"][30:]
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)
version = get_version_from_binary(filename)
control.set_software_version(version)
control.save_control_to_wapt()
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
55a4d54918c84009e4d98d6b3b5ee6ee31fcddcfeed95038832ce80d6b660464 : WAPT/control
e2f3a4fd8dd3d8613db60de59aa044ee550cc9ff75ca7a86d9cf95f1ead68c33 : WAPT/icon.png
9ba5cc3f242154d1e38d2586627c49891159e0b2c26429a1fddc12c7ffd9146b : luti.json
5b19a1e734505a64d077a994bb9f8bcd52569308841fe4372f75c55df47d0340 : qbittorrent_enhanced_5.2.3.10_x64_setup.exe
77c980ae7966e4225218ee08310d075958fe41b870120dc0857028b3936ab035 : setup.py
9f663155fb0bc0979218a6c82f752c72a0a625483abab22b7d1528a32ed754f7 : update_package.py