Inkscape
Paquet d’installation silencieuse pour Inkscape
1.4.3-4
Utilities
Utilities
- package: tis-inkscape
- name: Inkscape
- version: 1.4.3-4
- categories: Utilities
- maintainer: WAPT Team,Jimmy PELÉ,Simon Fonteneau,Pierre Cosson
- editor: Inkscape.org
- licence: GPLv3+
- locale: all
- target_os: darwin
- impacted_process: inkscape
- architecture: arm
- signature_date:
- size: 155.95 Mo
- homepage : https://inkscape.org/
package : tis-inkscape
version : 1.4.3-4
architecture : arm
section : base
priority : optional
name : Inkscape
categories : Utilities
maintainer : WAPT Team,Jimmy PELÉ,Simon Fonteneau,Pierre Cosson
description : Inkscape is a free vector drawing software under the GNU GPL license
depends :
conflicts :
maturity : PROD
locale : all
target_os : darwin
min_wapt_version : 1.5
sources : https://gitlab.com/inkscape/inkscape
installed_size :
impacted_process : inkscape
description_fr : Inkscape est un logiciel libre de dessin vectoriel sous licence GNU GPL
description_pl : Inkscape jest wolnym programem do rysowania wektorów na licencji GNU GPL
description_de : Inkscape ist ein freies Vektorzeichenprogramm unter der GNU GPL Lizenz
description_es : Inkscape es un software libre de dibujo vectorial bajo la licencia GNU GPL
description_pt : Inkscape é um software livre de desenho vectorial sob a licença GNU GPL
description_it : Inkscape è un software di disegno vettoriale gratuito con licenza GNU GPL
description_nl : Inkscape is een gratis vectortekenprogramma onder de GNU GPL licentie
description_ru : Inkscape - это бесплатная программа для рисования векторов под лицензией GNU GPL
audit_schedule :
editor : Inkscape.org
keywords : inkscape,drawing,vector
licence : GPLv3+
homepage : https://inkscape.org/
package_uuid : 9e5bf002-0a2c-456e-9690-f2dc694a4de9
valid_from :
valid_until :
forced_install_on :
changelog : https://inkscape.org/release
min_os_version :
max_os_version :
icon_sha256sum : a5be046d87b6cd6a121eabb28634bcdd90dbef15495eb163df8ef00c5188caa9
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-01-03T09:06:38.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 : oCTmfWrnSAgxXPB4IKq9f2f7E25qmSlnoWo2VAFmOwKINmiQeMryt/3YP6C9nJOlqMS/t68i8gzFGrA/P06ezygNjoSp6g/Aukfa647SOqgn2PlfKa1WN6lVRDM2O07yj5Ifh4furc50vgzN1vj9uvgFTivo5H32bCxmx/Rv/oWkvM55HZtvGDwyv4rvHVqIvW+jcmfL9JxdPBQj6Zfj/8LNPVjjrMSWdkclwxDZUcsSTIYXEfRReOI74pf3GMpgHJ2HXoTuZB6rMbxRrAVDKTjbwRUBfwViZ/8AhqNNjtEhPSkjUOpgOS8LvYdmFHSTqle55tIXobF3b6YJ/s5M6A==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob('Inkscape-*_arm64.dmg')[0]
install_dmg(bin_name)
def uninstall():
remove_tree("/Applications/Inkscape.app")
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import bs4 as BeautifulSoup
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
url = "https://inkscape.org/release/?latest=1"
# Getting latest version from official website
page = requests.get(url, proxies=proxies).text
bs = BeautifulSoup.BeautifulSoup(page)
bs_raw_string = bs.find("h2", text="Revisions")
label = bs_raw_string.findNext().findNext()
version = label.find("label").get_text(strip=True)
os_dict = {
'x64': f"https://inkscape.org/release/inkscape-{version}/mac-os-x/dmg/dl/",
'arm': f"https://inkscape.org/release/inkscape-{version}/mac-os-x/dmg-arm64/dl/"
}
download_url = "https://inkscape.org/" + wgets(os_dict[control.architecture]).split(".dmg")[0].split("=")[-1] + ".dmg"
latest_bin = download_url.rsplit('/', 1)[-1]
latest_bin_extension = latest_bin.rsplit('.', 1)[-1]
# 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}")
# 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
f4aa9c9b2e06db432c6f81a494ad9aa59b87cb7d9539cd7e6f6000002cb9edff : Inkscape-1.4.3_arm64.dmg
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
224ce8ff40ac10635254dd4c7368e7a9c8bc399fd744e8dde4fa554d8aa230f5 : WAPT/control
a5be046d87b6cd6a121eabb28634bcdd90dbef15495eb163df8ef00c5188caa9 : WAPT/icon.png
5fa594dd7ab4c736c850bb3fc1819a9d44167b3b369a1cc19c47036a9a426ba1 : luti.json
ff0fa0cf2cc4a256c6db278f0f0b6b45629738bc6672e900497a1dfc70c97067 : setup.py
fb090d123bf20cefcb1c46d65bddecaed0cc1522c586efc11a988ad170e34b6d : update_package.py