tis-glary-utilities
6.23.0.27-2
Includes over 20+ system utilities to improve your computer performance.
4874 downloads
Download
See build result See VirusTotal scan

- package : tis-glary-utilities
- name : Glary Utilities
- version : 6.23.0.27-2
- categories : Utilities
- maintainer : WAPT Team,Tranquil IT,Pierre Cosson
- editor : Glarysoft
- licence : proprietary
- locale : all
- target_os : windows
- impacted_process : Integrator
- architecture : all
- signature_date : 2025-03-22 11:24
- size : 27.96 Mo
- installed_size : 62.91 Mo
- homepage : https://www.glarysoft.com/
package : tis-glary-utilities
version : 6.23.0.27-2
architecture : all
section : base
priority : optional
name : Glary Utilities
categories : Utilities
maintainer : WAPT Team,Tranquil IT,Pierre Cosson
description : Includes over 20+ system utilities to improve your computer performance.
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.0
sources : https://www.glarysoft.com/
installed_size : 62910805
impacted_process : Integrator
description_fr : Comprend plus de 20 utilitaires système pour améliorer les performances de votre ordinateur
description_pl : Zawiera ponad 20+ narzędzi systemowych do poprawy wydajności komputera
description_de : Enthält mehr als 20 Systemdienstprogramme zur Verbesserung der Leistung Ihres Computers
description_es : Incluye más de 20 utilidades del sistema para mejorar el rendimiento de tu ordenador
description_pt : Inclui mais de 20+ utilitários de sistema para melhorar o desempenho do seu computador
description_it : Include oltre 20 utility di sistema per migliorare le prestazioni del computer
description_nl : Bevat meer dan 20+ systeemhulpprogramma's om uw computerprestaties te verbeteren
description_ru : Включает более 20+ системных утилит для повышения производительности компьютера
audit_schedule :
editor : Glarysoft
keywords :
licence : proprietary
homepage : https://www.glarysoft.com/
package_uuid : 0dc56bbf-33af-4469-aa94-228df4003d99
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 35e894fee965236bd9c8abffb456c639e678e4c2e340b95c446c99380ef52236
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-03-22T11:24:00.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 : UsOpBCq+OZiIrrC++PVOgoE+C7hdQSFRZGFAlc1JdU+otKtjf9jsojlOCTCHSHfshKGimbwLfj7tYJ2fhRtWCA3t8PeuLs77PKG3mj+LG8sJg2v+62UKyIRf4OZ3lo3aOEjdA6cHeudCdZOpwiHPgmsZ96qrVJBUSjiGM5L8TRGF8kuK2kTpwr5yGqdE89XrQXIS9Ybr2WdB4vPHHnjMbb984YVmomlncMT/P30mupuGcJSBh/raye0JDFTLKELZHu+WtMBYhmg4VpmiZfJdpaFKlIj7eJo/IEnosJ+aFYOcevcNl6UEnjMmA2iM6vk+EoDV2WKeWuNXLHNCVS3qMA==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
short_version = control.get_software_version().split(".")[0]
bin_name = glob.glob(f"gu{short_version}setup.exe")[0]
# Installing the software
install_exe_if_needed(
bin_name,
silentflags="/S",
key="Glary Utilities",
min_version=control.get_software_version(),
)
# -*- coding: utf-8 -*-
from setuphelpers import *
import requests
def update_package():
# Declaring local variables
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
url = "https://www.glarysoft.com/aff/download.php?s=GU"
download_url = requests.head(url, allow_redirects=True).url
latest_bin = download_url.split("/")[-1]
print("Download URL is: %s" % download_url)
# Downloading latest binaries
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
version = get_version_from_binary(latest_bin)
control.version = "%s-%s" % (Version(version), control.version.split("-", 1)[-1])
# control.set_software_version(version)
control.save_control_to_wapt()
# Deleting outdated binaries
remove_outdated_binaries(version)
# Validating or not update-package-sources
return result
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 : WAPT/changelog.txt
ea1a4e57a3055786f83489bb37c404d57f1b3287ef3b9ecd7bf3a35b57846a8d : WAPT/control
35e894fee965236bd9c8abffb456c639e678e4c2e340b95c446c99380ef52236 : WAPT/icon.png
1bdd1db5cac6b48087dfb56698a4fdef0f727cf529030b0e38d0c5605e567b53 : gu6setup.exe
b87a4df67ecc84fa07e4d9abbe1dc12ae400568d75caa5b1eac75ec121b57abb : luti.json
66280d2b78065685cabb8685f8d6355ff212ea91d8bd1d06693089d2df669249 : setup.py
875bc76300088dc4d0c90533113e743290dcc0703a6d35aa66506e0cc2d0e41a : update_package.py