- package: tis-canva
- name: Canva
- version: 1.115.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.11 Mo
- installed_size: 319.43 Mo
package : tis-canva
version : 1.115.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 : PROD
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 : b992f2d2-544b-458c-bdf2-db3f62ed65db
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 6092eaa2beddc4aa2b3166b349b0e2fe32ebbb6a6b316b04fccf2d290091adbb
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-09-15T06:00:20.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 : juFWgnI3ldVqxi9Ha3Afwz5Uan8UbjUOaMEqyixsibUMsaK8Q21W8pxqajNhwjdns/HkczQQIXiNAAtkU0KjM4J+i+lqGy9PE2+4c4n3OwM/OtLfiitM45Co34W2mFp9xQ4ksjFQvpO48I9skd5yzGby4T0WOrWcLnQi1Lj5WJFuH19GXRl/jCoaDOL0ujPpzWNjpuK8c/HSNEywcdM3l3jmvAnwAmb5QoMsWpjfJ4rSgaxwM3Hg1XdRa4xBbU4oL1GclX7XKsuO5ixHOdyZk2LxAU37NdctX84C4TL8O1uKB4Iprpfc+OyveSbGpGEKhjRRtYM8xcm4mbJpVV9KYQ==
# -*- 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
438db7d0000998f3f2f076e90227d3fe7d335a8c2e939216ebcdf7c1ea04f679 : Canva-1.115.0-universal.dmg
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
ef3a28f8bb0c789407e4115404f268a614a8422d83e340625b2ad42315e16165 : WAPT/control
6092eaa2beddc4aa2b3166b349b0e2fe32ebbb6a6b316b04fccf2d290091adbb : WAPT/icon.png
f4331a5a1a26f3c2a2a488d69114002033a8c1b55cb3d17b467ad3a257f33172 : luti.json
c62fae4e00d9289ffc249006f6a39b149407d2f98ee64022c7ce8e846f6ec536 : setup.py
1aee5178dd59a952af836df682712fd6b6869e5430c746cfae2630b415df8b17 : update_package.py