dngrep
Paquet d’installation silencieuse pour dngrep
4.7.10.0-2
Office
Office
- 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 : PROD
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 : 28a43586-c139-436c-9362-11348a19bf3b
valid_from :
valid_until :
forced_install_on :
changelog : https://github.com/dnGrep/dnGrep/releases
min_os_version :
max_os_version :
icon_sha256sum : 0ff68159078a8999a1c187c1b7f8c817af929816ff0eef583540f9ed04eba615
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-03-17T11:03:44.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 : JL8y0BLyZO872qstVdpQtV9IadfV4+YZEX6oHjmigTLJQdYE4uzpHujVLmJIbroPhO7ck9+sYyfyHOwQNlxTl2S56Jqqc6Lv5+/NfGsg/NIg2MNXjYVgbE4Tgg1oXpwC9zIRvdDwJkKtgDTHswr7BBm72HY/3b1hKzIlHsr6lFIROXOOIoBEqbqpKnueq1Xh9cIoXp1DjJb4xMmNd7V85Ia3zgCGQQsfIb1WMmfR/byvmgkp77TcrvQfksC1pLCTVtt9Z9s4CxQ+vRQMqFjeF89SnMO3iPz8qcPmNDjtMplVshDVwUpMPFg7vqvUG0pektQdhHhbqTjV50TScAsO7g==
# -*- 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
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
c0a8d2fbb8722c7a620387773c73915238505c54f06b8a9b984d03c8a449005a : WAPT/control
0ff68159078a8999a1c187c1b7f8c817af929816ff0eef583540f9ed04eba615 : WAPT/icon.png
e7aa89df02c0baae10f02fd0dc5c0d7debe53e7c633479366240f0ceda6c9d47 : dnGREP.4.7.10.x86.msi
45949661c487cf7daee0ece16e806427451b2e46b544dc01955cbfadb6e964f1 : luti.json
d3a9759719dc1d420223ac89bc98230eca901ff4e54d85004eed964357f31cb6 : setup.py
7c654a899779899a9b93206519db525ab95a9c4c5752025d269aab1069b5530a : update_package.py