tis-kicad8

8.0.6-1
KiCad free electronics design software
404 downloads
Download
See build result See VirusTotal scan
tis-kicad8 icon
  • package : tis-kicad8
  • name : kicad
  • version : 8.0.6-1
  • categories :
  • maintainer : Amel FRADJ,Ingrid TALBOT
  • editor :
  • licence :
  • locale :
  • target_os : darwin
  • impacted_process :
  • architecture : x64
  • signature_date : 2024-11-13 15:09
  • size : 1.58 Go
package           : tis-kicad8
version           : 8.0.6-1
architecture      : x64
section           : base
priority          : optional
name              : kicad
categories        : 
maintainer        : Amel FRADJ,Ingrid TALBOT
description       : KiCad free electronics design software
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : darwin
min_wapt_version  : 
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : KiCad logiciel libre de conception électronique
description_pl    : KiCad darmowe oprogramowanie do projektowania elektroniki
description_de    : KiCad freie Software für Elektronikdesign
description_es    : Software gratuito de diseño electrónico KiCad
description_pt    : Software de desenho eletrónico gratuito KiCad
description_it    : Software di progettazione elettronica gratuito KiCad
description_nl    : Gratis elektronica-ontwerpsoftware KiCad
description_ru    : KiCad - бесплатное программное обеспечение для проектирования электроники
audit_schedule    : 
editor            : 
keywords          : 
licence           : 
homepage          : 
package_uuid      : ddb94880-8773-4a55-a824-f3d2f7be2d29
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 7f485f94ed44e0647ee98f177fca0571076eebc495ebefddc0525325d3a56832
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2024-11-13T15:09:05.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         : fEc8fT2+uU7jL9l1psQHh1DDmr0gyTLEpIf3PHCtWsrDsuX6/ueWxRDr3P6B3uO/DdxXz0/o6d2jqv0OmzdkD9O1jfJEAUX3XjefywFJDWeFu+znBO02Hv8LpZDY5j5zzOzKkRfcflS+6FqGxlnoy91m55fPeQ2lqIV7Jh61qlcBfBdqj/r23X9H7IcmteTaYtE79GgB4Qowb8V0ar4CMOBzgdcf7kLIFNoMDIdKTlPDvdL4xlroo6xDdVdSHXE/gOrmNsqlJK7BzteE4DCc0tuVt0m/A3omwsaU9kI6VWrMtxgdGcawhzzKuc8aXqrn16rTJrlhP03N5jluqCSZ9g==
# -*- coding: utf-8 -*-
##################################################
# This file is part of WAPT Enterprise
# All right reserved, (c) Tranquil IT Systems 2023
# For more information please refer to
# https://wapt.tranquil.it/store/licences.html
##################################################
from setuphelpers import *


def install():
    dmg_mount_path = mount_dmg(glob.glob('kicad*.dmg')[0])
    try:
        copytree2(os.path.join(dmg_mount_path, 'KiCad'), "/Applications/KiCad")
        unmount_dmg(dmg_mount_path)
    except Exception:
        unmount_dmg(dmg_mount_path)
        raise


def uninstall():
    remove_tree("/Applications/KiCad")
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import json

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


def update_package():
    result = False
    proxies = get_proxies()

    if not proxies:
        proxies = get_proxies_from_wapt_console()
    dict_arch ={
        "x64" :".dmg"
    }
    git_repo = "KiCad/kicad-source-mirror"
    url_api = "https://api.github.com/repos/%s/releases" % git_repo   
    # Getting latest version information from official sources
    print("API used is: %s" % url_api)
    json_load = json.loads(wgets(url_api, proxies=proxies))

    for data in json_load:
        if "8.0" in data["name"] :
            for download in data["assets"]:
                if ".dmg" in download["browser_download_url"] :
                    download_url = download["browser_download_url"]
                    filename = download_url.split("/")[-1]
                    version  = filename.rsplit(".",1)[0].split('-')[-1]

                    break
                else : 
                    continue
                break
            break

    if not isfile(filename):
        package_updated = True
        wget(download_url,filename,proxies=proxies)

    #nettoyer les fichiers temporaires
    for f in glob.glob('*.dmg'):
        if f != filename:
            remove_file(f)

    control.set_software_version(version)
    control.save_control_to_wapt()
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
ee42160c6e537c4bc00d6b625b3ff661e9fd0d0c433d66570dc8d2878e30e025 : WAPT/control
7f485f94ed44e0647ee98f177fca0571076eebc495ebefddc0525325d3a56832 : WAPT/icon.png
000689904e1566d2199d25dcdd28e7710daf956398681147ba4845e83952b566 : kicad-unified-universal-8.0.6.dmg
161491a224dc437565f1f937ec640427f35fd7cac673db49cdd7a3b96276f8a3 : luti.json
2c83026f9bbdd04cf2aab8a85316cf793f4f82c3324b58e8d44bbadef9e374e1 : setup.py
1c537f1a55f6e53b1606b97004f5662b62338cadb8853ef3d54d7ecacd78d043 : update_package.py