dngrep
Paquet d’installation silencieuse pour dngrep
4.7.10.0-2
Office
Office
Les paquets PREPROD sont des paquets construits via LUTI.
Ils restent généralement 5 jours en PREPROD, après quoi un deuxième scan VirusTotal est effectué pour vérifier que le status n'a pas changé.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.
- package: tis-dngrep
- name: dngrep
- version: 4.7.10.0-2
- categories: Office
- maintainer: WAPT Team,Tranquil IT,Ingrid TALBOT
- editor: dnGrep Community Contributors
- licence: opensource_free,cpe:/a:gnu:gpl_v3,wapt_private
- locale: all
- target_os: windows
- impacted_process: dnGREP
- architecture: x86
- signature_date:
- size: 65.23 Mo
- installed_size: 180.88 Mo
- homepage : https://dngrep.github.io/
package : tis-dngrep
version : 4.7.10.0-2
architecture : x86
section : base
priority : optional
name : dngrep
categories : Office
maintainer : WAPT Team,Tranquil IT,Ingrid TALBOT
description : dnGrep is a local search engine that allows Windows users to search and find phrases or parts of phrases quickly in any file on the computer
depends :
conflicts :
maturity : PREPROD
locale : all
target_os : windows
min_wapt_version : 2.3
sources :
installed_size : 180878136
impacted_process : dnGREP
description_fr : dnGrep est un moteur de recherche local qui permet aux utilisateurs de Windows de rechercher et de trouver rapidement des phrases ou des parties de phrases dans n'importe quel fichier de l'ordinateur
description_pl : dnGrep to lokalna wyszukiwarka, która pozwala użytkownikom systemu Windows szybko wyszukiwać i znajdować frazy lub ich części w dowolnym pliku na komputerze
description_de : dnGrep ist eine lokale Suchmaschine, die es Windows-Benutzern ermöglicht, Sätze oder Teile von Sätzen schnell in jeder Datei auf dem Computer zu suchen und zu finden
description_es : dnGrep es un motor de búsqueda local que permite a los usuarios de Windows buscar y encontrar frases o partes de frases rápidamente en cualquier archivo del ordenador
description_pt : O dnGrep é um motor de busca local que permite aos utilizadores do Windows pesquisar e encontrar rapidamente frases ou partes de frases em qualquer ficheiro do computador
description_it : dnGrep è un motore di ricerca locale che consente agli utenti di Windows di cercare e trovare rapidamente frasi o parti di frasi in qualsiasi file del computer
description_nl : dnGrep is een lokale zoekmachine waarmee Windows-gebruikers snel zinnen of delen van zinnen kunnen zoeken en vinden in elk bestand op de computer
description_ru : dnGrep - это локальная поисковая система, которая позволяет пользователям Windows быстро находить фразы или части фраз в любом файле на компьютере
audit_schedule :
editor : dnGrep Community Contributors
keywords : search,regex,file
licence : opensource_free,cpe:/a:gnu:gpl_v3,wapt_private
homepage : https://dngrep.github.io/
package_uuid : 1a607473-ca56-41a1-a247-e454325a7df3
valid_from :
valid_until :
forced_install_on :
changelog : https://github.com/dnGrep/dnGrep/releases
min_os_version :
max_os_version :
icon_sha256sum : 0ff68159078a8999a1c187c1b7f8c817af929816ff0eef583540f9ed04eba615
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2026-03-12T10:47:11.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 : JBxkfl1DO9kh7N0lz+SKuoXvEoW1TvHLcJ9NmTkx1gDIW7yQSSTq7qGrohdAfCHQPyigeH71rSKGI82Prg1c50fxlPwkmSlnyIgKrezByy/MyO/U+fcmbWHuQRqpguzclXaVjnDHzb2MebXgOJoeQwFATAFYLe/rzmmsebofKrkcP1+KEHpTbdvqVMCopt8rRLPTw7ziuhkMzHfzJ6QBre+hY6bZO5EgR+f4EV5joJbjPCNP4rYs8ge3p0IipsZZS1HEv2h0aOtavpfp5AI905nJZpTanVPeKVSO8wQdXqxKGM+4xm211yDgKh2zBr0sfw35Lri2E9xnzE5LwVBWYg==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
# Uninstalling older versions of the software that can remain
for to_uninstall in installed_softwares(name="dnGrep"):
if (Version(to_uninstall["version"]) < Version(control.get_software_version()) or
control.architecture not in to_uninstall['name']):
print(f"Removing: {to_uninstall['name']} ({to_uninstall['version']})")
killalltasks(ensure_list(control.impacted_process))
run(uninstall_cmd(to_uninstall["key"]))
wait_uninstallkey_absent(to_uninstall["key"])
bin_name = glob.glob(f"dnGREP.*.{control.architecture}.msi")[0]
install_msi_if_needed(
bin_name,
min_version=control.get_software_version(),
name=f"dnGrep {Version(control.get_software_version(), 3)} \({control.architecture}\)"
)
# -*- coding: utf-8 -*-
from setuphelpers import *
import waptlicences
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
update_dict = {
"windows-x64": "x64.msi",
"windows-x86": "x86.msi",
"windows-arm64": "ARM64.msi"
}
os_type = control.target_os + "-" + ensure_list(control.architecture)[0]
api_url = "https://api.github.com/repos/dnGrep/dnGrep/releases/latest"
# Get data from API
releases_dict = wgets(api_url, proxies=proxies, as_json=True)
for asset in releases_dict["assets"]:
if asset["name"].endswith(update_dict[os_type]):
download_url = asset["browser_download_url"]
latest_bin = asset["name"]
latest_bin_extension = latest_bin.rsplit('.', 1)[-1]
version = releases_dict["tag_name"].strip('v')
break
# Downloading latest binaries
print(f"Latest {app_name} version is: {version}")
print(f"Download URL is: {download_url}")
if not isfile(latest_bin):
print(f"Downloading: {latest_bin}")
wget(download_url, latest_bin, proxies=proxies)
else:
print(f"Binary is present: {latest_bin}")
expected_issuer = "SignPath Foundation"
sign_name = waptlicences.check_msi_signature(latest_bin)[0]
if sign_name != expected_issuer:
error(f'Bad issuer {sign_name} != {expected_issuer} ')
# Changing version of the package
if Version(version) > Version(control.get_software_version()):
print(f"Software version updated (from: {control.get_software_version()} to: {Version(version)})")
package_updated = True
else:
print(f"Software version up-to-date ({Version(version)})")
for f in glob.glob(f'*.{latest_bin_extension}'):
if f != latest_bin:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
return package_updated
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
356f3124f47ceba7cbd56768b8c056d06fab97fabab3a4c90f6a0cc9e9f9d6b0 : WAPT/control
0ff68159078a8999a1c187c1b7f8c817af929816ff0eef583540f9ed04eba615 : WAPT/icon.png
e7aa89df02c0baae10f02fd0dc5c0d7debe53e7c633479366240f0ceda6c9d47 : dnGREP.4.7.10.x86.msi
45949661c487cf7daee0ece16e806427451b2e46b544dc01955cbfadb6e964f1 : luti.json
d3a9759719dc1d420223ac89bc98230eca901ff4e54d85004eed964357f31cb6 : setup.py
7c654a899779899a9b93206519db525ab95a9c4c5752025d269aab1069b5530a : update_package.py