tis-adobeair icon

Adobe AIR

Silent install package for Adobe AIR

51.3.2.3-1
Development
Development

  • package: tis-adobeair
  • name: Adobe AIR
  • version: 51.3.2.3-1
  • categories: Development
  • maintainer: Kevin Guerineau
  • editor: Adobe
  • locale: all
  • target_os: windows
  • architecture: all
  • signature_date:
  • size: 6.30 Mo
  • installed_size: 40.30 Mo

package           : tis-adobeair
version           : 51.3.2.3-1
architecture      : all
section           : base
priority          : optional
name              : Adobe AIR
categories        : Development
maintainer        : Kevin Guerineau
description       : Adobe AIR is a runtime for software created with Adobe Flash and ActionScript without using a web browser.
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 1.7
sources           : 
installed_size    : 40304640
impacted_process  : 
description_fr    : La technologie AIR d'Adobe est utilisée par les développeurs créer des application internet.
description_pl    : Adobe AIR to runtime dla oprogramowania tworzonego za pomocą Adobe Flash i ActionScript bez użycia przeglądarki internetowej
description_de    : Adobe AIR ist eine Laufzeitumgebung für Software, die mit Adobe Flash und ActionScript erstellt wurde, ohne einen Webbrowser zu verwenden
description_es    : Adobe AIR es un tiempo de ejecución para el software creado con Adobe Flash y ActionScript sin utilizar un navegador web
description_pt    : Adobe AIR é um runtime para software criado com Adobe Flash e ActionScript sem utilizar um web browser
description_it    : Adobe AIR è un runtime per il software creato con Adobe Flash e ActionScript senza utilizzare un browser web
description_nl    : Adobe AIR is een runtime voor software die is gemaakt met Adobe Flash en ActionScript zonder gebruik te maken van een webbrowser
description_ru    : Adobe AIR - это среда выполнения для программного обеспечения, созданного с помощью Adobe Flash и ActionScript без использования веб-браузера
audit_schedule    : 
editor            : Adobe
keywords          : 
licence           : 
homepage          : 
package_uuid      : 53a4b629-7449-4e01-b2e0-199663164df4
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 5.1
max_os_version    : 
icon_sha256sum    : 36028b417347c82607ec453232f6f33df6627b878a025bfd7aaec2cd6df0d7cd
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2026-06-08T14:08:43.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         : NmUAmFaqqrIrqxgMYhSfsP9xQij4wLW1cjVjWElgvdWazKWokX3lZmxY2My7aQTkvOBx0PsHSWh6F+Tr/0dti4rvuD3uS6FXQKmyBmGmyWUz8Ba/ycLS5V9M+KcQB6qf5wnfvt94arnwVEpaWNu/vYZDHvUKFVVgrVZTV57P8NEBN8n7QlE84AW1WArrAYFjwGknOn+0k2XSp5VaW/UcGlByzuSUX8cNpqllfZGa7jX0xcGvcXt3vxQS4MRS2CPDX3S1jHrc7TwbE5Tcbe6FAaJtCYW/hhFaUdZLvB0d1zhyztaT9W7tL/kw4qewS6B4gz4EpLQP0kNM0NwBGr3Kug==

# -*- coding: utf-8 -*-
from setuphelpers import *


def install():
    install_exe_if_needed("AdobeAIR.exe", silentflags="-silent", key="Adobe AIR", min_version=control.get_software_version())
    uninstallkey.remove("Adobe AIR")
    mkdirs(makepath(programfiles, "wapt-files"))
    filecopyto("AdobeAIR.exe", makepath(programfiles, "wapt-files"))


def uninstall():
    uninstaller_dir = makepath(programfiles, "wapt-files")
    uninstaller_path = makepath(uninstaller_dir, "AdobeAIR.exe")
    run('"%s" -uninstall' % uninstaller_path)
    if isfile(uninstaller_path):
        remove_file(uninstaller_path)
    if isdir(uninstaller_dir) and dir_is_empty(uninstaller_dir):
        remove_tree(uninstaller_dir)

# -*- coding: utf-8 -*-
from setuphelpers import *


def update_package():
    # Declaring local variables
    result = False

    wget(
        "http://srvtemplates.ad.tranquil.it/binary_cache/AdobeAIR.exe",
        "AdobeAIR.exe",
        sha256="94551703874da5d909ae4b725b2c7c0bb747fff33841218db231542ce6cbb68f",
    )

    version = get_file_properties("AdobeAIR.exe")["FileVersion"]

    # Changing version of the package
    if Version(version) > Version(control.get_software_version()):
        print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
        result = True
    else:
        print("Software version up-to-date (%s)" % Version(version))
    control.version = "%s-%s" % (Version(version), control.version.split("-", 1)[-1])
    # control.set_software_version(version)
    control.save_control_to_wapt()

94551703874da5d909ae4b725b2c7c0bb747fff33841218db231542ce6cbb68f : AdobeAIR.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
5e8161383718093945e2d4ca77ba0d2a90bc4287c050863175594f6029e2c998 : WAPT/changelog.txt
73f703a1d9f2376dd2dd554694050266005c6b04444ac03e219b48cca6bb3d64 : WAPT/control
36028b417347c82607ec453232f6f33df6627b878a025bfd7aaec2cd6df0d7cd : WAPT/icon.png
692b7b8906f80f9f8823aa9a0384100569445b099ebca3faad0fa5cc5ca4f160 : luti.json
e3b56231936963ae9d39ad9b9226e23c4b9f7c713336d44312d41722a88f6f17 : setup.py
a4819b394418e3d7031c6372e1ba6bf0a2d56befafb89f208779f03e0cf4f01e : update_package.py

32.0.0.125-6

removing wapt-files if possible
split_update_package