Docfetcher
Silent install package for Docfetcher
1.1.27-2
- package: tis-docfetcher
- name: Docfetcher
- version: 1.1.27-2
- maintainer: Jordan ARNAUD
- licence: the Eclipse Public License (EPL
- target_os: darwin
- architecture: x64
- signature_date:
- size: 114.09 Mo
- homepage : https://docfetcher.sourceforge.io/en/download.html
package : tis-docfetcher
version : 1.1.27-2
architecture : x64
section : base
priority : optional
name : Docfetcher
categories :
maintainer : Jordan ARNAUD
description : DocFetcher is an Open Source desktop search application. It allows you to search the contents of files on your computer
depends :
conflicts :
maturity : PROD
locale :
target_os : darwin
min_wapt_version :
sources : https://sourceforge.net/projects/docfetcher/best_release.json
installed_size :
impacted_process :
description_fr : DocFetcher est une application de recherche de bureau Open Source. Elle vous permet de rechercher le contenu des fichiers de votre ordinateur
description_pl : DocFetcher to aplikacja Open Source do wyszukiwania na pulpicie. Umożliwia przeszukiwanie zawartości plików na komputerze
description_de : DocFetcher ist eine Open Source Desktop-Suchanwendung. Sie ermöglicht es Ihnen, den Inhalt von Dateien auf Ihrem Computer zu durchsuchen
description_es : DocFetcher es una aplicación de búsqueda de escritorio de código abierto. Le permite buscar en el contenido de los archivos de su ordenador
description_pt : O DocFetcher é uma aplicação de pesquisa de secretária de código aberto. Permite-lhe pesquisar o conteúdo dos ficheiros no seu computador
description_it : DocFetcher è un'applicazione di ricerca desktop open source. Consente di ricercare il contenuto dei file sul computer
description_nl : DocFetcher is een Open Source desktop zoekapplicatie. Hiermee kunt u de inhoud van bestanden op uw computer doorzoeken
description_ru : DocFetcher - это приложение для поиска файлов на рабочем столе с открытым исходным кодом. Оно позволяет искать содержимое файлов на вашем компьютере
audit_schedule :
editor :
keywords :
licence : the Eclipse Public License (EPL
homepage : https://docfetcher.sourceforge.io/en/download.html
package_uuid : 56971357-776b-4dfe-a5a8-decf384fff8e
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 321bdf784e57a9a8c1bc4bf1fdf6ee3cc581506139bb3917663d7207f4445cb3
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-07-22T09:19:24.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 : h+T9900b2eQU/XNwV494zkdJvdTRtRaopRtUfiGxLoU34e0b6PB0f/y5IlSrNdsV9gFR14lAEFuVFkfAimVZ3fpQDFsTjQWM96utbrj2wmNpWQCKtHUfZUdrYDvJtwkwWgw1ChXEAWbJeeLwKKOT/WUtay7DC3KPg+brfOA7VFhE2a24Wc39wkbtD+8HTawk6eGZdlPQ829hai4VmCjCWclInwmW5XbUj7otEKPUe9SzY5rXH/+uSCVU018P2TYBQGszOTm8qZmAx1+1aj8DLRXPT3q6p7osCigLSRR99jpvdB+JjP1y8Aar33hpb366EZy2Fu926EQrLt76X1P5tw==
# -*- coding: utf-8 -*-
##################################################
# This file is part of WAPT Enterprise
# All right reserved, (c) Tranquil IT Systems 2023
# For more information please refer to
# https://wapt.tranquil.it/store/licences.html
##################################################
from setuphelpers import *
def install():
install_dmg(glob.glob("DocFetcher-*.dmg")[0])
def uninstall():
remove_tree("/Applications/DocFetcher.app")
# -*- coding: utf-8 -*-
from setuphelpers import *
import json
def update_package():
# Declaring local variables
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
api_url = "https://sourceforge.net/projects/docfetcher/best_release.json"
bin_contains = "DocFetcher-"
# Getting latest version information from official sources
print("API used is: %s" % api_url)
json_load = json.loads(wgets(api_url, proxies=proxies))
for download in json_load["platform_releases"]:
latest_bin = json_load["platform_releases"][download]["filename"].split("/")[-1]
if bin_contains in latest_bin and latest_bin.endswith(".dmg"):
if "RC" in latest_bin:
error("ERROR: Don't release RC version or found a workaround with the version number")
download_url = json_load["platform_releases"][download]["url"]
version = latest_bin.split("-")[1]
break
# Downloading latest binaries
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
control.set_software_version(version)
control.save_control_to_wapt()
# Deleting outdated binaries
remove_outdated_binaries(version)
# Validating update-package-sources
return result
081061af1925f782307a0f23e05277a7299a650575354cbd6b977ba2a8c550d6 : DocFetcher-1.1.27-macOS-64bit-NonPortable.dmg
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
128bec8e2652262563bb65ba5620f5c10ac2c85373779e35d1ebd0a6e99d83ff : WAPT/control
321bdf784e57a9a8c1bc4bf1fdf6ee3cc581506139bb3917663d7207f4445cb3 : WAPT/icon.png
be7f5ad5bc05ae9f9a55f378a3f91dff9919ed495b5874ff3b36505bd0f004a7 : luti.json
0a8cf06c073d7055569d33b7598323a96eeb14d42194ca26cc8f994a6eca848e : setup.py
d59c7d03f7eda2a87e0abc0295c114ebd9eb413e8a2874ec016354ad6695f2fa : update_package.py