
qbittorrent-enhanced
Silent install package for qbittorrent-enhanced
5.1.2.10-1
- package: tis-qbittorrent-enhanced
- name: qbittorrent-enhanced
- version: 5.1.2.10-1
- maintainer: Amel FRADJ
- licence: GNU GENERAL PUBLIC LICENSE
- target_os: windows
- architecture: x64
- signature_date:
- size: 27.71 Mo
- homepage : https://github.com/c0re100/qBittorrent-Enhanced-Edition
package : tis-qbittorrent-enhanced
version : 5.1.2.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 : bccc8223-5aa2-4f3e-9df9-eb85d0546181
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 : 2025-07-14T06: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 : dEaUTpv8df1uoH8co/5NtewqJzepVWBSqU9SDGD7/+CWv6cQKvU5iIpvuuQ3USRGGwn/HR+zTVZii4A665ladf0aXshNaKS3njbh1g5DWWK55QfkmkN//5LYEQP4yt+HI1sDjyxiQT2Iha4dTOP6ZD9563xKa1SlOnArtsKf3M4wg9VFwBrZcriTvOvY1ZmTKpD0Gqy4aBqAxZTzPd/Beq3Ry2k3UpHtmxeNBFbOfda3Vj0XSkuOUpf584rDuCgeQ0xLEbZR6fwdpkTQ2eEQfR9WEG7jXs9kX8tqVYgUx97fzzmIc6z3lmB9vH5EzzugOdhd1mSKI+1saUseMUaE5g==
# -*- 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
a5808423eb10e5248dc7b54ddbeba84c690076caf68ad908d14c30740fb01b5f : WAPT/control
e2f3a4fd8dd3d8613db60de59aa044ee550cc9ff75ca7a86d9cf95f1ead68c33 : WAPT/icon.png
b32354aaf5336156697cb76a9e2669bf99bed5cf600cab5e3cd4db5f1c5e5fd8 : luti.json
7908cb34bad76a313b69fb7b770c81ee2e3abc7510f5bc7ec4312030304f92f4 : qbittorrent_enhanced_5.1.2.10_x64_setup.exe
77c980ae7966e4225218ee08310d075958fe41b870120dc0857028b3936ab035 : setup.py
9f663155fb0bc0979218a6c82f752c72a0a625483abab22b7d1528a32ed754f7 : update_package.py