
QGIS
Paquet d’installation silencieuse pour QGIS
3.44.3-1
Utilities
Utilities
- package: tis-qgis
- name: QGIS
- version: 3.44.3-1
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT
- editor: QGIS Development Team
- licence: GNU GPLv2
- locale: all
- target_os: ubuntu-noble
- impacted_process: qgis-bin,qgis-bin-g7,qgis-ltr-bin,qgis-ltr-bin-g7,qgiscrashhandler
- architecture: x64
- signature_date:
- size: 144.70 Mo
- installed_size: 2.13 Go
- homepage : https://www.qgis.org/
package : tis-qgis
version : 3.44.3-1
architecture : x64
section : base
priority : optional
name : QGIS
categories : Utilities
maintainer : WAPT Team,Tranquil IT
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 : ubuntu-noble
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 : 5c175197-2758-4774-a561-fd83ade9f4f5
valid_from :
valid_until :
forced_install_on :
changelog : https://www.qgis.org/en/site/forusers/visualchangelogs.html
min_os_version :
max_os_version :
icon_sha256sum : 66b55efb00a97350a0e1c853a218f5b52e618117b19eb9818a34d19482dff5ff
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-09-28T10:17:34.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 : eoje53XeFTgTSMeNp57EBb8dSMSZ1sazeprg1gCSR9U9/gupWQPwEGaOv/zS3U9+95juc3hbTbVsx0Tgfda10b2/DY+DAAEFg/GsGX2HGKYtg1BUmfs+bbRLeA2VsAfKSb2XBe3+eDDUGhwobmtiYq55ZixhPVum0W679QupFJeh3wMdfDYmAffJWjQDhNamcJELqt3+GVR8cpTQWZdcpnnyhq1QQ4WYDx5smOKI9mBFTTJ3bOj3+XO7CGAJtWxdLUzxc8ifcC3fcJXxRWQIZCmlB2K63YgN8o7rZE/gqj1FoEqUzVUzgMx1u3GfQHKgU6SDiEX+WKUo8nEDvxQ0Ig==
# -*- 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():
run('LANG=C DEBIAN_FRONTEND=noninteractive apt-get install -y ./*.deb')
def uninstall():
for u in installed_softwares('qgis'):
if u['publisher'] == "https://qgis.org/":
if not [l for l in installed_softwares() if l['key'] == u['key']]:
continue
uninstall_apt(u['key'],autoremove=True)
# -*- coding: utf-8 -*-
from setuphelpers import *
import gzip
from io import BytesIO
from setuphelpers import Version,wgets
from setupdevhelpers import *
import operator
ops = {
'>': operator.gt,
'<': operator.lt,
'==': operator.eq,
'=': operator.eq,
'>=': operator.ge,
'<=': operator.le,
'!=': operator.ne
}
def update_package():
# Declaring local variables
result = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
dict_arch = {"x64": "amd64"}
urldepot = 'https://debian.qgis.org/' + control.target_os.split('-')[0]
dist = control.target_os.split('-')[1]
arch = dict_arch[control.architecture]
package_name_list = ["qgis","qgis-plugin-grass"]
with gzip.open(BytesIO(wgets('%s/dists/%s/main/binary-%s/Packages.gz' % (urldepot,dist,arch),proxies=proxies))) as f:
data = f.read().decode('utf-8')
list_package = listcontrol_to_dict_data(data,'\nPackage: ')
all_dep=[]
last_version= None
list_deb = []
for package_name in package_name_list :
last_package = sorted([u for u in list_package if u['package'] == package_name], key=lambda p: (Version(p['version'].split(':',1)[-1].split('+')[0])), reverse=True)[0]
if not last_version:
last_version = last_package['version'].split(':',1)[-1].split('+')[0]
all_dep.append(last_package)
for s in last_package.get('depends','').split(','):
for p in s.split('|'):
limite_version=None
if '(' in p:
limite_version = p.split('(',1)[1].split(')')[0]
get_all_dep_version_pacakge(list_package,p.split('(')[0].strip(),all_dep,limite_version)
for u in all_dep:
list_deb.append(urldepot + '/' + u['filename'])
list_all_file = []
for f in list_deb:
filename = f.split('/')[-1]
list_all_file.append(filename)
if not isfile(filename):
wget(f,filename,proxies=proxies)
for f in glob.glob('*.deb'):
if not f in list_all_file:
remove_file(f)
control.set_software_version(last_version)
control.save_control_to_wapt()
def listcontrol_to_dict_data(data=None, first_entry=None):
list_package = '\n' + data
list_control=[]
for i in list_package.split(first_entry):
if not i.strip('\n'):
continue
list_control.append(first_entry.replace('\n','') + i)
list_package = []
for pkg in list_control:
entry = {}
gpg = False
for l in pkg.split('\n'):
if '-----BEGIN PGP PUBLIC KEY BLOCK-----' in l:
gpg = True
continue
if '-----END PGP PUBLIC KEY BLOCK-----' in l:
gpg = False
continue
if gpg :
continue
if not l:
continue
if (':' in l) and (not '::' in l) and (not l.startswith(' ')) :
key = l.split(':',1)[0].strip().lower()
value = l.split(':',1)[1].strip()
entry[key] = value.strip('\n')
else:
entry[key] = entry[key].strip('\n') + ' ' if entry[key].strip() else "" + l.strip()
list_package.append(entry)
return list_package
def get_all_dep_version_pacakge(list_package,package_name,all_dep,limite_version=None):
last_package = sorted([u for u in list_package if u['package'] == package_name], key=lambda p: (Version(p['version'].split(':',1)[-1].split('+')[0])), reverse=True)
if last_package:
if limite_version:
for u in last_package:
condition = limite_version.split(' ')[0]
value = limite_version.split(' ',1)[1]
if ops[condition](Version(value), Version((u['version']))):
last_package=u
break
else:
last_package = last_package[0]
all_dep.append(last_package)
else:
return
for k in last_package.get('depends','').split('|'):
for p in k.split(','):
limite_version = None
if '(' in p:
limite_version = p.split('(',1)[1].split(')')[0]
get_all_dep_version_pacakge(list_package,p.split('(')[0].strip(),all_dep,limite_version=limite_version)
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
1b469e3872ed995df2f98a206aef5edf63e0c6293ba4d3395c7bf2028548d52f : WAPT/control
66b55efb00a97350a0e1c853a218f5b52e618117b19eb9818a34d19482dff5ff : WAPT/icon.png
41c11cf326a02bc4aa202926d0719b8e44eea4d3020db9254746edec43993f3e : libqgis-3d3.44.3_3.44.3+40noble_amd64.deb
14ed4947b43080af7013d10132e1863d07ef18081d590d6737f0cb302ed32616 : libqgis-analysis3.44.3_3.44.3+40noble_amd64.deb
cbef68f6e7d6932adf83ef20cd7abf89bbe0038db6fa2c5900508f9ffe59fb8b : libqgis-app3.44.3_3.44.3+40noble_amd64.deb
75b0e845a1cc40a70e29e56db3b21a5869b9807e03699b998cbee292af087a21 : libqgis-core3.44.3_3.44.3+40noble_amd64.deb
25a923bd8b08f4ec6b2af33a67ee083b066ee87baa975948ddcc608e80c0d01d : libqgis-customwidgets_3.44.3+40noble_amd64.deb
6e172634ea6c5438d53e0dfbc268fc777f84b2628a1cb5e3ed902857d91bc276 : libqgis-gui3.44.3_3.44.3+40noble_amd64.deb
4cecd7e2ae9d5fa1134d64c9bf98239963f12822168ca04f7946816b121c0cd0 : libqgis-native3.44.3_3.44.3+40noble_amd64.deb
5f14d5f57d1ccd63536fd974535fa98f9101b10b3843ef4a42a9f364cf9352f2 : libqgis-server3.44.3_3.44.3+40noble_amd64.deb
b8669a263a6d2d60f21d0515afabae78c0ef7968dfdcafa41f77c7aa03e40720 : libqgisgrass8-3.44.3_3.44.3+40noble_amd64.deb
c3ae9db886df26cf2932bb2c7b98f2074e0f3a417e41a238e7fe8a5f98870c87 : libqgispython3.44.3_3.44.3+40noble_amd64.deb
a3f136a9e8d97e300e3cf6c25a48728e989fddb4652543d0d0092ed61821106b : luti.json
ce4daef662e84496d80dff42788772d2c7af1f0090824666d86a1e79cf344836 : python3-qgis-common_3.44.3+40noble_all.deb
6d694d4f245b3c682e63da6260d585ecd14398680464146a91f11899a6ebe25f : python3-qgis_3.44.3+40noble_amd64.deb
3c4f3a29cd6745939a7e8cd223ff035e19449e61e82e1e8e31359293169ce23e : qgis-common_3.44.3+40noble_all.deb
b3f13a8516cfea9f1c0da8d1e16411c2062009251f7bf18c8d71a21f34bb07ff : qgis-plugin-grass-common_3.44.3+40noble_all.deb
e30a1e3f8a89a163d1b16b4f6d94ede0a110e8b105fa02c14aff40d298555498 : qgis-plugin-grass_3.44.3+40noble_amd64.deb
26fef808aee8a97e4bfdfc8c836c16a96f1a07cbdc214fd5094dbad6d43b634a : qgis-provider-grass_3.44.3+40noble_amd64.deb
93c9d945e706a1251d6d0ea6aaf8a9ad5714bee22bcbd55d5a36d401cad2d673 : qgis-providers-common_3.44.3+40noble_all.deb
4815d9b49c22114f2ec3943f3ce55a8b530ee8b38bfda01db5f31f5d9a59907f : qgis-providers_3.44.3+40noble_amd64.deb
f0979867ea6bafe2c0f9babaf27ac55e1efce08b28ad719af865b55543261a43 : qgis_3.44.3+40noble_amd64.deb
4368afe7bd85af8f3a2fa49b54dc3c50c65e4aab391cd1693127ee8c04dd2173 : setup.py
73348fa856c1db8635fc3f0616d234feb4e891379fe0767046ee99a294ece8e1 : update_package.py