PDFgear
Paquet d'installation silencieuse pour PDFgear
2.1.15-1
- package: tis-pdfgear
- name: PDFgear
- version: 2.1.15-1
- maintainer: AdministratorWAPT Team,Tranquil IT,Amel FRADJ
- licence: Copyright © 2024 PDFgear
- target_os: windows
- architecture: x64
- signature_date:
- size: 140.32 Mo
- homepage : https://www.pdfgear.com/
package : tis-pdfgear
version : 2.1.15-1
architecture : x64
section : base
priority : optional
name : PDFgear
categories :
maintainer : AdministratorWAPT Team,Tranquil IT,Amel FRADJ
description : Read, edit, convert, merge and sign PDF files on multiple devices, completely free of charge and without registration
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size :
impacted_process :
description_fr : Lisez, modifiez, convertissez, fusionnez et signez des fichiers PDF sur plusieurs appareils, entièrement gratuitement et sans inscription
description_pl : Odczytuj, modyfikuj, konwertuj, scalaj i podpisuj pliki PDF na wielu urządzeniach, całkowicie bezpłatnie i bez rejestracji
description_de : Lesen, bearbeiten, konvertieren, zusammenführen und signieren Sie PDF-Dateien auf mehreren Geräten, völlig kostenlos und ohne Anmeldung
description_es : Lea, edite, convierta, fusione y firme archivos PDF en varios dispositivos, de forma totalmente gratuita y sin necesidad de registrarse
description_pt : Ler, modificar, converter, fundir e assinar ficheiros PDF em vários dispositivos, de forma totalmente gratuita e sem registo
description_it : Leggere, modificare, convertire, unire e firmare file PDF su più dispositivi, in modo completamente gratuito e senza registrazione
description_nl : PDF-bestanden lezen, wijzigen, converteren, samenvoegen en ondertekenen op meerdere apparaten, volledig gratis en zonder registratie
description_ru : Читайте, изменяйте, конвертируйте, объединяйте и подписывайте PDF-файлы на различных устройствах совершенно бесплатно и без регистрации
audit_schedule :
editor :
keywords :
licence : Copyright © 2024 PDFgear
homepage : https://www.pdfgear.com/
package_uuid : f06f1b91-72ea-4887-8b50-704f004b69be
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 0c213fa7c0cc8273c1c3a3e6ee52952c4b84518287ff02d4b1e39caad182f076
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-04-18T08:19:14.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 : hrp06T4iD9SUfChL3iaecl9jYYnFGe9BjHw0oXYZiuD5G0hE5zrv9gOwDTUdRe1vzTcHk0GcFrFnNlKZEknN5EtcGRMTSQoSY6t1Ex4kwN5wTZfYkxIyan/qfaaUF3wZJjmzohYuEAyw7Ak6ia9ejVtsjeHg5tY9XzOjS5acgj4opP1xGUjEZTdIpnBpGPybLyIXlZ3tDE0ytlL1nj5Vzvj0evPtTCqoiEkxSsZMap/5JeIxa3CFZsUPpBibpy84NENEYBPtoyrhUG122QdQDjj4w8sGKayfgyQiFvlUob3LfAgflb30cFYEL4OpGnG8SeN9Irhs13vHPU5PKCb/pQ==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
{
"key":"{7DACF63A-4EE4-4837-9AF9-C65D4509FFB4}_is1",
"name":"PDFgear 2.1.6",
"version":"2.1.6",
"install_date":"2024-08-20 00:00:00",
"install_location":"C:\\Program Files\\PDFgear\\",
"uninstall_string":"\"C:\\Program Files\\PDFgear\\unins000.exe\"",
"publisher":"PDFgear",
"system_component":0,
"win64":true
}
]
"""
# 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('pdfgear_setup_*.exe')[0]
# Installing the software
install_exe_if_needed(bin_name,
silentflags='/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-',
key='{7DACF63A-4EE4-4837-9AF9-C65D4509FFB4}_is1',
min_version=control.get_software_version(),
)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import requests
import glob
import re
def update_package():
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
url = "https://www.pdfgear.com/download/"
headers = {"User-Agent": "Mozilla/5.0"}
r = requests.get(url, headers=headers)
# Search binary with version
match = re.search(r'pdfgear_setup_v([\d\.]+)\.exe', r.text)
if not match:
raise Exception("Version not found")
version = match.group(1)
download_url = f"https://downloadfiles.pdfgear.com/releases/windows/pdfgear_setup_v{version}.exe"
latest_bin = download_url.split("/")[-1]
print("Version:", version)
print("Download URL:", download_url)
# Delete old version sauf le dernier
for f in glob.glob("*.exe"):
if f != latest_bin:
remove_file(f)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
package_updated = True
else:
print("Binary is present: %s" % latest_bin)
control.set_software_version(version)
control.save_control_to_wapt()
return package_updated
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
ee00eeedc2e0e66d12748d4429379cef0613abc17dda4e73d6fd57f242f5fc9a : WAPT/control
0c213fa7c0cc8273c1c3a3e6ee52952c4b84518287ff02d4b1e39caad182f076 : WAPT/icon.png
7eef792308e2bf3842297f2d3cc9df6fbb1e4cd9014b58a6f4180a9048409937 : luti.json
3a37578a08e0723b1bd101482c9e3cfa8f4add4f8854ec0187fc5cf2bfef9fe2 : pdfgear_setup_v2.1.15.exe
76fa5dbc719433faeae19c52424d645769182a84df072779324603fc5533ad9b : setup.py
530e96332835049d95c241197fefa84a33718d416ec01bd78346b7733f90e104 : update_package.py