tis-firealpaca icon

FireAlpaca

Silent install package for FireAlpaca

2.13.25-1

  • package: tis-firealpaca
  • name: FireAlpaca
  • version: 2.13.25-1
  • categories: Education
  • maintainer: WAPT Team,Tranquil IT,Amel FRADJ,
  • licence: proprietary_free,wapt_private
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 57.00 Mo
  • homepage : https://firealpaca.com/

package           : tis-firealpaca
version           : 2.13.25-1
architecture      : x64
section           : base
priority          : optional
name              : FireAlpaca
categories        : Education
maintainer        : WAPT Team,Tranquil IT,Amel FRADJ,
description       : FireAlpaca is the free paint tool that is available in 10 languages
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 2.3
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : FireAlpaca est un outil de peinture gratuit disponible en 10 langues
description_pl    : FireAlpaca to darmowe narzędzie do malowania dostępne w 10 językach
description_de    : FireAlpaca ist das kostenlose Malwerkzeug, das in 10 Sprachen verfügbar ist
description_es    : FireAlpaca es la herramienta de pintura gratuita disponible en 10 idiomas
description_pt    : FireAlpaca é a ferramenta de pintura gratuita que está disponível em 10 línguas
description_it    : FireAlpaca è uno strumento di pittura gratuito disponibile in 10 lingue
description_nl    : FireAlpaca is de gratis schildertool die beschikbaar is in 10 talen
description_ru    : FireAlpaca - это бесплатный инструмент для рисования, который доступен на 10 языках
audit_schedule    : 
editor            : 
keywords          : 
licence           : proprietary_free,wapt_private
homepage          : https://firealpaca.com/
package_uuid      : 72ce4430-6629-40b5-a38a-826e3861414f
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 10.0
max_os_version    : 
icon_sha256sum    : 73a4f8d234baf09bb20aca028d2bcd552e4f81549fe208e0199983ec300580ad
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-09-17T02:00:18.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         : a6my+FVW++AQYiQ0NDajPCXbAsbPoT8HzvSdqrIddBlmDI9EeUIIj5mz6w4EU/dS+1eE8SeIuILBWNxpFpomaRPD/xgt/3HaIJVCwIvUyM4wJ8QSUtYelL5TZfXapNOmvzukpzvEl9qoJPFfr74+ex2g4LPV3EbJs0xek/5BasMKG455lYzkWsJzwoPwsio52LcGadvE6DGRQ2iwo4Wk5wNKMVIzq9l3OfuuFmuD4ox5q4WM9/Y1fD7UhzJ3QbKIle3MxxXccqwrarAivtkp4eX149R5WfquT4t2t6hLbS0iSRI6Kmk3Nm90CTlW6iL7M5h9SkkX7gnPtFGuHrae0Q==

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

r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
{
   "key":"FireAlpaca64_is1",
   "name":"FireAlpaca 2.12.1 (64bit)",
   "version":"2.12.1",
   "install_date":"2024-08-21 00:00:00",
   "install_location":"C:\\Program Files\\FireAlpaca\\FireAlpaca64\\FireAlpaca20\\",
   "uninstall_string":"\"C:\\Program Files\\FireAlpaca\\FireAlpaca64\\FireAlpaca20\\unins000.exe\"",
   "publisher":"firealpaca.com",
   "system_component":0,
   "win64":true
  }

"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls


def install():
    # Declaring local variables
    bin_name = glob.glob("FireAlpaca*.exe")[0]
    # Installing the software

    install_exe_if_needed(bin_name, silentflags="/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-", key="FireAlpaca64_is1", min_version=control.get_software_version(),
    )


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



def update_package():
    # Declaring local variables
    package_updated = False
    
    proxies = get_proxies_from_wapt_console()
    if not proxies:
        proxies = get_proxies()

    download_url = 'https://firealpaca.com/download/win64'
    data = requests.head(download_url,allow_redirects=True,proxies=proxies)
    latest_bin = data.headers['Content-disposition'].split('=')[-1]
    version = latest_bin.replace("_",".").split('FireAlpaca64.setup.')[-1].rsplit('.exe')[0]

    # Downloading latest binaries
    print("Download URL is: %s" % download_url)
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(download_url, latest_bin, proxies=proxies)
        package_updated = True
    else:
        print("Binary is present: %s" % latest_bin)


    # Deleting outdated binaries
    for f in glob.glob('*.exe'):
        if f != latest_bin:
            remove_file(f)

           
    version = get_version_from_binary(latest_bin)
    # Mettre à jour le package
    control.set_software_version(version)
    control.save_control_to_wapt()    
        

482b9eaca0bbbf13e371f385a5e436e527635de01bae1563757f4bd752baf993 : FireAlpaca64_setup_2_13_25.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
70f869495eac00ed7ace86b8e97536f09dd2d47e129a16a835f56a25029915db : WAPT/control
73a4f8d234baf09bb20aca028d2bcd552e4f81549fe208e0199983ec300580ad : WAPT/icon.png
2874f2458dd42032e665984fb8e46b9845778292bc37fa5e9dbf4267c63b3323 : luti.json
bb542628084f8551fb9d30d8017713de52247bbe42b3689ee58ace41fe9db604 : setup.py
be66191887d883b2211bb99398f65e518533ada6776cb57d5c0e60e76029a780 : update_package.py