
qbittorrent-enhanced
Silent install package for qbittorrent-enhanced
5.1.0.10-1
- package: tis-qbittorrent-enhanced
- name: qbittorrent-enhanced
- version: 5.1.0.10-1
- maintainer: Amel FRADJ
- licence: GNU GENERAL PUBLIC LICENSE
- target_os: windows
- architecture: x64
- signature_date:
- size: 27.61 Mo
- homepage : https://github.com/c0re100/qBittorrent-Enhanced-Edition
package : tis-qbittorrent-enhanced
version : 5.1.0.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 : c6599405-c8f1-4002-a3eb-e466ef6f86ca
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-05-22T09:00: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 : d3LZcmfrNJaZEyt3HaIm6aFrBpN+uWadhsxsDpdABfPx+IoeegGwAZeMxHBORASRVYKYuVCpBvoVywAggHpctrT3j4mGtVYxtn1Jrp4zg6AFqxKU4p6mjoTQYBdKIUX8KdLQXM6zh4uXSeTPd+OXARNzJxXfwg6f1dj3nRT/i1PNYKl0+HXtu72dywXBGeBZ95ZiP9mWCPsg8I03qODiKvSyaHrPNsPr3ea/5tccj8hosx01mvhw+bJ8SveCo0PKNlJ2OpL+Tg1AN/npiaJNJM3UhT2JArjqk4SeWZzRyTz8Sz2pnTWIgerTNMwP1/ARG78pKOHOb9XClMV8NCARSA==
# -*- 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
d0ee9ec143d7f2187ae41b2a9e6a9b8ed15067b645d6d466859377504dad1808 : WAPT/control
e2f3a4fd8dd3d8613db60de59aa044ee550cc9ff75ca7a86d9cf95f1ead68c33 : WAPT/icon.png
35452697877e2b17fc3fa09ef8226c3b4336c198e5550481880cd701803932ec : luti.json
ddd6d1a53fece506a0cc502fc84376729f660823049fb74f8ad4c25e19c3c0bb : qbittorrent_enhanced_5.1.0.10_x64_setup.exe
77c980ae7966e4225218ee08310d075958fe41b870120dc0857028b3936ab035 : setup.py
9f663155fb0bc0979218a6c82f752c72a0a625483abab22b7d1528a32ed754f7 : update_package.py