tis-qbittorrent-enhanced icon

qbittorrent-enhanced

Silent install package for qbittorrent-enhanced

5.1.1.10-1

  • package: tis-qbittorrent-enhanced
  • name: qbittorrent-enhanced
  • version: 5.1.1.10-1
  • maintainer: Amel FRADJ
  • licence: GNU GENERAL PUBLIC LICENSE
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 27.81 Mo
  • homepage : https://github.com/c0re100/qBittorrent-Enhanced-Edition

package           : tis-qbittorrent-enhanced
version           : 5.1.1.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      : a3ef3e0f-ea8a-4cbc-ad4c-f8e8eb0833d0
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-04T00:00:16.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         : gqEzhUyD2QFL8E5o3ZNZ9GLVGukag/tFoaTfe+j5KZM5iz6RBZAR4GCTpPOECzGA3jVVf9lVTieVF89qTexQeX7vhgas+x+SW/CVaU8OMsga6YhDK7AX+QhvGoMUUm6KJ6YMIu6ap7lh7kUQCLX/g6wPSK/ZucjUmkn8QRbKHcvsAZojO1GP5nwlESisp17bQ9MsC4TFCkfnt64ZX0sjd9diJMymFZZu6dke4FGiOotbAoC/bm5jK4q1KKBp0lRKvgK3F82/Y82neTZsRU6rmmOov2HGBJGUA79EUGz74nXPNk5EFRarS48GLzcBVCjcZFUMQ58Dy92KzEVb35mZxQ==

# -*- 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
f74599dbbb08049937d8a5ded0084223b900e9e297b036eba27b4f0562c18b17 : WAPT/control
e2f3a4fd8dd3d8613db60de59aa044ee550cc9ff75ca7a86d9cf95f1ead68c33 : WAPT/icon.png
c3d22f1e8a56a781e444c2f6208109551149b86f47a6ae233857faa9e77ed4f0 : luti.json
dfd83fe350208d7372b1d1e95e17989c410755d128cb559c9b8d01fecf8606b5 : qbittorrent_enhanced_5.1.1.10_x64_setup.exe
77c980ae7966e4225218ee08310d075958fe41b870120dc0857028b3936ab035 : setup.py
9f663155fb0bc0979218a6c82f752c72a0a625483abab22b7d1528a32ed754f7 : update_package.py