- package: tis-glary-utilities
- name: Glary Utilities
- version: 6.27.0.31-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:
- size: 27.97 Mo
- installed_size: 62.91 Mo
- homepage : https://www.glarysoft.com/
package : tis-glary-utilities
version : 6.27.0.31-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 : 3a5de0ad-e1f3-4f19-b4e1-b063489ab325
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-07-05T09:02:22.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 : qbX7pI86vDUEevMQryIC/pgxTdOnFLJJSW0f0/zYlnVcOL35y79OB/12YEQCIhPnb5In+m9wU/p8fPdOsBNH3OnQ5A04lUlTdirgt3jNsCSmZhNdAexu7IK37q4NHQjAx3PI1E88bEmr4S9yLRKG8K6TVl1TmWSdZdVk8ISAqaRQAvmtWVrk+P6ob8FhcccXmwoXNvMM8eX69XDEr0UjGNPW8wwG3v6YPkvp/yOmNoYyT7nsKJIWBIJ0Z3TRh0w6no5pc8+wxeLBrU4/h5JoqddPFaMKyq6eBenTG/ecR7WR+HcxLrMt2evk8cWbLKz2kyeGDSJK8D5WiW3axEcTRg==
# -*- 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
5d8da54ecfba1ff617d004fae3fbcb290fc2035be885feb72e7831371bb42598 : WAPT/control
35e894fee965236bd9c8abffb456c639e678e4c2e340b95c446c99380ef52236 : WAPT/icon.png
a967a51f66157f67a0353018855215eb564bcd833474edd43fea7d204780b2f6 : gu6setup.exe
758eef948584e730cff9a586439b8436d5276b680e73f4aad676750f4b55ecc7 : luti.json
66280d2b78065685cabb8685f8d6355ff212ea91d8bd1d06693089d2df669249 : setup.py
875bc76300088dc4d0c90533113e743290dcc0703a6d35aa66506e0cc2d0e41a : update_package.py