Canva
Silent install package for Canva
1.121.0-0
Utilities
Utilities
Preprod packages are packages built on LUTI.
They remain in PREPROD usually for 5 days, after which a second VirusTotal scan is performed to verify that the status has not changed.
If the package passes this last check, it is promoted to PROD and published on the store.
- package: tis-canva
- name: Canva
- version: 1.121.0-0
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Ingrid TALBOT
- locale: all
- target_os: macos
- impacted_process: Canva
- architecture: all
- signature_date:
- size: 214.69 Mo
- installed_size: 319.43 Mo
package : tis-canva
version : 1.121.0-0
architecture : all
section : base
priority : optional
name : Canva
categories : Utilities
maintainer : WAPT Team,Tranquil IT,Ingrid TALBOT
description : Canva is a graphic design app.
depends :
conflicts :
maturity : PREPROD
locale : all
target_os : macos
min_wapt_version : 2.3
sources :
installed_size : 319434752
impacted_process : Canva
description_fr :
description_pl :
description_de :
description_es :
description_pt :
description_it :
description_nl :
description_ru :
audit_schedule :
editor :
keywords : graphic,design
licence :
homepage :
package_uuid : 8cbae97f-5d21-462b-a80a-6327b031a5ba
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 6092eaa2beddc4aa2b3166b349b0e2fe32ebbb6a6b316b04fccf2d290091adbb
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2026-02-13T01:43:45.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 : l9XggE0XDFsEqjweWqcxb6XDXL4r3NXkv1MjtviTeEeUKHq1uxBLn6SQi5yuBMVthKishRONebS67dVgoclXd+x9Gue8F8Tm6+XQz7qt+MP8MwWgo0bZS5nsAHBKWo2VtUVi3isKX6mDFGJSPgGPS/QS/89ashYARHzF0nr+jkuK8svlS14HNG+hm4hxOpTBE16bXROUHSAU916sSIQuXXowcethDw5FyDKwdUnh7uNM/6djrUpuVTm8aRj95dVMuBgcCiXYh67hRVPqdCjIdK7xmng04Y1E3UxEZPRiKMzDCfeeD4Cb+oS6RHewj2/n6skYv1nJ1iHjwIkH/C6nKA==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
# Declaring local variables
bin_name = glob.glob("Canva-*-universal.dmg")[0]
install_dmg(bin_name)
def uninstall() :
remove_tree("/Applications/Canva.app")
from setuphelpers import *
import waptlicences
import requests
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
update_dict = {"windows": ".dmg"}
download_url = "https://www.canva.com/download/mac/universal/canva-desktop"
version_url = requests.head('https://www.canva.com/download/mac/universal/canva-desktop', headers = {'user_agent' : 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36'}, allow_redirects = True).url
version = version_url.split("/")[-1].split("-")[1]
latest_bin = f"Canva-{version}-universal.dmg"
# Downloading latest binaries
print(f"Latest version of {control.name} is: {version}")
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
# print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
else:
print("Binary is present: %s" % latest_bin)
# Downloading latest binaries
print(f"Latest version of {control.name} is: {version}")
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
else:
print("Binary is present: %s" % 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)})")
# Deleting binaries
for f in glob.glob("*.dmg"):
if f != latest_bin:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
return package_updated
9cd7fb3c13c716d2dfe59b9af7fd799bbc2b5719247745dd8c70a900e4bef805 : Canva-1.121.0-universal.dmg
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
f03c5aef55336dfacb7cb13bfad6e5a22389f49cc71d1b27b289489829dac05a : WAPT/control
6092eaa2beddc4aa2b3166b349b0e2fe32ebbb6a6b316b04fccf2d290091adbb : WAPT/icon.png
f8cce31543d8bd7cc8c34287973718017fcff18e35dee239f7c4fb9c8ef740b5 : luti.json
c62fae4e00d9289ffc249006f6a39b149407d2f98ee64022c7ce8e846f6ec536 : setup.py
1aee5178dd59a952af836df682712fd6b6869e5430c746cfae2630b415df8b17 : update_package.py