tis-vld
2.5.9-1
Visual Leak Detector is a free, robust and open source memory leak detection system for Visual C++
143 downloads
Download
See build result See VirusTotal scan

- package : tis-vld
- name : Visual Leak Detector
- version : 2.5.9-1
- categories : Development
- maintainer : WAPT Team,Tranquil IT,Amel FRADJ
- installed_size :
- editor :
- licence : opensource_free,wapt_public
- signature_date : 2024-09-24T08:02:54.000000
- size : 3.48 Mo
- locale :
- target_os : windows
- impacted_process :
- architecture : x64
- Homepage : https://github.com/Azure/vld
package : tis-vld
version : 2.5.9-1
architecture : x64
section : base
priority : optional
name : Visual Leak Detector
categories : Development
maintainer : WAPT Team,Tranquil IT,Amel FRADJ
description : Visual Leak Detector is a free, robust and open source memory leak detection system for Visual C++
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version : 2.3
sources :
installed_size :
impacted_process :
description_fr : Visual Leak Detector est un système de détection de fuites de mémoire gratuit, robuste et open source pour Visual C++
description_pl : Visual Leak Detector to darmowy, solidny i otwarty system wykrywania wycieków pamięci dla Visual C++
description_de : Visual Leak Detector ist ein kostenloses, robustes und Open-Source-System zur Erkennung von Speicherlecks für Visual C++
description_es : Visual Leak Detector es un sistema de detección de fugas de memoria gratuito, robusto y de código abierto para Visual C++
description_pt : O Visual Leak Detetor é um sistema de deteção de fugas de memória gratuito, robusto e de código aberto para o Visual C++
description_it : Visual Leak Detector è un sistema di rilevamento delle perdite di memoria gratuito, robusto e open source per Visual C++
description_nl : Visual Leak Detector is een gratis, robuust en open-source geheugenlekdetectiesysteem voor Visual C++
description_ru : Visual Leak Detector - это бесплатная, надежная и открытая система обнаружения утечек памяти для Visual C++
audit_schedule :
editor :
keywords :
licence : opensource_free,wapt_public
homepage : https://github.com/Azure/vld
package_uuid : 3b23598a-539e-4d99-8c16-7e192baba2c8
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 7a93aaa48d9f94ea4a8aff8b9cb69e59c7ac1d300f42603873209ea78ec83211
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2024-09-24T08:02:54.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 : OxHVanZnFDDMQHEAg6Y+4DL/SRGq2SFikyx3i7DjXFprBUA9+Grn0RSHooPbKPUwjpMpFk/gxq608Yf1YUYGm36/5rHA4azDnZqSE8lvqWte21OMKxIM5CPzTYgIzaDkPYnw9ajmP5BVxVGZYEbwRZvYXtuZvYmki3ol6P555dQQgzg8dG0nuEGJnqpg/kB1yase1dSc2UtdZ2FE8tZgaO4c3R3kqgP6twRL/yKMEo0aBIyci8P3t7Awd3yYHxTHyK4guY+NnsKNZqOuWuYpDipXxjX+zRpdtvVKEM8bTpLNA3JIKB+8+pJjQlVOLvErdDMaV5MRCQ/o7auWZYh3IA==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
{
"key":"{851FBFF7-5148-40A2-A654-942BE80F5B90}_is1",
"name":"Visual Leak Detector version 2.5.9",
"version":"2.5.9",
"install_date":"2024-09-19 00:00:00",
"install_location":"C:\\Program Files (x86)\\Visual Leak Detector\\",
"uninstall_string":"\"C:\\Program Files (x86)\\Visual Leak Detector\\unins000.exe\"",
"publisher":"VLD Team",
"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('vld-*-setup.exe')[0]
# Installing the software
install_exe_if_needed(bin_name,
silentflags='/VERYSILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS /NORESTART',
key='{851FBFF7-5148-40A2-A654-942BE80F5B90}_is1',
min_version=control.get_software_version(),
)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import json
import msilib
import waptlicences
# 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()
git_repo = "Azure/vld"
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') :
url_dl = download["browser_download_url"]
version = json_load["tag_name"].replace("v","")
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
768bbd72c99e4dfff844304e2c8f14c63b79120da6b537ff015dd153e5716191 : WAPT/control
7a93aaa48d9f94ea4a8aff8b9cb69e59c7ac1d300f42603873209ea78ec83211 : WAPT/icon.png
198ae2358eab932e08e0df1950b4bc7b1ce226cf56553cc8b34059387319152a : luti.json
86063c748c607cf684d02f9c9f5ae6b91cb5ced4e2d885ef3c57b40289d50696 : setup.py
17cc1c515a8791f244b46fede35fb7f9474ac0b87662dedafdf8862e6ce86c58 : update_package.py
f9b510b003b19730efc129c9db77f11ca14a1bbf6491745c2adc8db77b508040 : vld-2.5.9-setup.exe