- package: tis-qgis
- name: QGIS
- version: 3.42.0-22
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ,Pierre COSSON
- editor: QGIS Development Team
- licence: GNU GPLv2
- locale: all
- target_os: windows
- impacted_process: qgis-bin,qgis-bin-g7,qgis-ltr-bin,qgis-ltr-bin-g7,qgiscrashhandler
- architecture: x64
- signature_date:
- size: 1.33 Go
- installed_size: 2.13 Go
- homepage : https://www.qgis.org/
package : tis-qgis
version : 3.42.0-22
architecture : x64
section : base
priority : optional
name : QGIS
categories : Utilities
maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ,Pierre COSSON
description : QGIS (Quantum GIS) is a free and open-source cross-platform desktop geographic information system (GIS) application that supports viewing, editing, and analysis of geospatial data
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.1
sources : https://www.qgis.org/en/site/forusers/download.html
installed_size : 2128814336
impacted_process : qgis-bin,qgis-bin-g7,qgis-ltr-bin,qgis-ltr-bin-g7,qgiscrashhandler
description_fr : QGIS (Quantum GIS) est un logiciel SIG (système d'information géographique) qui prend en charge la visualisation, l'édition et l'analyse de données géospatiales
description_pl : QGIS (Quantum GIS) jest darmową i otwartą, wieloplatformową aplikacją systemu informacji geograficznej (GIS), która wspiera przeglądanie, edycję i analizę danych geoprzestrzennych
description_de : QGIS (Quantum GIS) ist eine freie und quelloffene, plattformübergreifende Desktop-Anwendung für geografische Informationssysteme (GIS), die die Anzeige, Bearbeitung und Analyse von Geodaten unterstützt
description_es : QGIS (Quantum GIS) es una aplicación de sistema de información geográfica (SIG) de escritorio, gratuita y de código abierto, que permite visualizar, editar y analizar datos geoespaciales
description_pt : QGIS (Quantum GIS) é uma aplicação gratuita e de código aberto de sistema de informação geográfica (GIS) que suporta a visualização, edição e análise de dados geoespaciais
description_it : QGIS (Quantum GIS) è un'applicazione desktop di sistema informativo geografico (GIS) multipiattaforma, gratuita e open-source, che supporta la visualizzazione, la modifica e l'analisi di dati geospaziali
description_nl : QGIS (Quantum GIS) is een vrije en open-source desktop toepassing voor een geografisch informatiesysteem (GIS) dat het bekijken, bewerken en analyseren van geospatiale gegevens ondersteunt
description_ru : QGIS (Quantum GIS) - это бесплатное кроссплатформенное приложение с открытым исходным кодом для настольных географических информационных систем (ГИС), которое поддерживает просмотр, редактирование и анализ геопространственных данных
audit_schedule :
editor : QGIS Development Team
keywords : qgis,gis,geographic,information,system,application,geo,spatial,geospatial,data
licence : GNU GPLv2
homepage : https://www.qgis.org/
package_uuid : ec4f9e4e-0bf7-4a92-84c2-9e45daa4af12
valid_from :
valid_until :
forced_install_on :
changelog : https://www.qgis.org/en/site/forusers/visualchangelogs.html
min_os_version : 6.2
max_os_version :
icon_sha256sum : 66b55efb00a97350a0e1c853a218f5b52e618117b19eb9818a34d19482dff5ff
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-03-01T16:21:25.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 : w+55opEpyk6WNpo+P1m5E52SIwUFbpFL0Gma+HyzzvBTSsstrqUPcu8S2zx2S5PVM2o6/qxNKf1dZ6GtXEZoehKxbIosLMxr2uBy4MTibbz7xddgh6qh18PlURVV+oHLARxQliV9MUH243olPvjS3e/yy0JfmVAbi1HVkhFlB/65rpxiYkqNHwDfXw+hwafjTFgULy8SFVMLc3Nbku3uH6z2dfBRHbljthXKSb+LZ0woPRi0z7bMXc9lbFP6r5RWGgm21J8ZXNYcixwR/nDS7t5Rb/m2CVuoKDx9aWhcQu9fy2Z/lpLeemsYFa1eO4nwC9q7+Uw/pBCPnG3n8fEFqQ==
# -*- coding: utf-8 -*-
from setuphelpers import *
import time
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
bin_contains = "QGIS-OSGeo4W-"
app_name = "QGIS"
def install():
# Declaring local variables
package_version = control.get_software_version()
bin_name = glob.glob("*%s*.msi" % bin_contains)[0]
processes_to_kill = control.impacted_process.split(",")
# Uninstalling all other versions of the software before installation
for uninstall in installed_softwares(app_name):
if uninstall["version"] != package_version:
print("Removing: %s" % uninstall["name"])
killalltasks(processes_to_kill)
try:
run(uninstall_cmd(uninstall["key"]), timeout=1200)
except:
print("Unable to uninstall %s" % uninstall["name"])
folder_path = makepath("\\".join(uninstall["uninstall_string"].split("\\")[:3]))
time.sleep(60)
if isdir(folder_path):
remove_tree(folder_path)
# Installing the software
print("Installing: %s" % bin_name)
install_msi_if_needed(
bin_name,
timeout=1200,
)
# Removing desktop shortcuts
shortcuts_folder = makepath(systemdrive, "Users", "Public", "Desktop", "QGIS %s" % package_version)
if isdir(shortcuts_folder):
remove_tree(shortcuts_folder)
uninstallkey.clear()
def session_setup():
print("Disabling: auto update check")
# AppData\Roaming\QGIS\QGIS3\profiles\default\QGIS\QGIS3.ini
r"""[qgis]
checkVersion=true
[core]
NewsFeed\httpsfeedqgisorg\disabled=false"""
user_conf_folder = makepath(user_appdata, "QGIS", "QGIS3", "profiles", "default", "QGIS")
user_conf_file = makepath(user_conf_folder, "QGIS3.ini")
if not isdir(user_conf_folder):
mkdirs(user_conf_folder)
inifile_writestring(user_conf_file, "qgis", r"checkVersion", "false")
inifile_writestring(user_conf_file, "core", r"NewsFeed\httpsfeedqgisorg\disabled", "true")
def uninstall():
for soft in installed_softwares("QGIS %s" % control.get_software_version()):
run(uninstall_cmd(soft['key']),timeout=1800)
# -*- coding: utf-8 -*-
from setuphelpers import *
import bs4 as BeautifulSoup
def update_package():
# Declaring local variables
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
download_url = "https://www.qgis.org/" + [u.attrs['href'] for u in bs_find_all("https://www.qgis.org/en/site/forusers/download.html",'a','href',proxies=proxies) if 'Latest Version for Windows' in u.text][0]
latest_bin = download_url.split("/")[-1]
# Downloading latest binaries
if not isfile(latest_bin):
result = True
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies, connect_timeout=30)
# Deleting outdated binaries
for u in glob.glob('*.msi'):
if u != latest_bin:
remove_file(u)
# Changing version of the package
control.set_software_version(get_version_from_binary(latest_bin))
# control.set_software_version(version)
control.save_control_to_wapt()
# Validating update-package-sources
return result
cbbd126c29e5befb6d5580b489532ebcee378002b5cabccfb32697356be979a1 : QGIS-OSGeo4W-3.42.0-1.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
3e6bd6e0792f33010aab211bd5ccb6d15a04d6b80d0c387f30ec6535e9a80ac6 : WAPT/control
66b55efb00a97350a0e1c853a218f5b52e618117b19eb9818a34d19482dff5ff : WAPT/icon.png
4cabebb33017ec7304463fda800fcde0d1e869985be4e7bed9b84346433f298d : luti.json
0166523bfc5df732263a33a22a2d37f4534c692a04b2b631604ec4394cc03d8d : setup.py
4cb1135e55bb949fd70901b7bdc8af079fbc9c830d728f90c62911433db837f1 : update_package.py