tis-kicad7
7.0.11-1
KiCad logiciel libre de conception électronique
190 téléchargements
Télécharger
Voir le résultat de la construction Voir l'analyse de VirusTotal

- package : tis-kicad7
- name : kicad 7.0
- version : 7.0.11-1
- categories :
- maintainer : Amel FRADJ,Ingrid TALBOT
- editor :
- licence :
- locale :
- target_os : macos
- impacted_process :
- architecture : x64
- signature_date : 2024-10-08 16:02
- size : 1.65 Go
package : tis-kicad7
version : 7.0.11-1
architecture : x64
section : base
priority : optional
name : kicad 7.0
categories :
maintainer : Amel FRADJ,Ingrid TALBOT
description : KiCad free electronics design software
depends :
conflicts :
maturity : PROD
locale :
target_os : macos
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 : 5a578d98-cd37-47dc-893c-8f7a405495d9
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-10-08T16:02:21.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 : fm8mEfGlvC8Y9hAmrYaksXVwQeMW8sPIHKYD6UuZr6O4yjFVXNiKEBHJ96E46bh56IwHkw+lvmrtaAjDqpKMcorBFecfzanLHQ5m0zBaEYxIYjupIMl2mVtXiFRX0AJioIHij//foGhxKH9phHW1pJJR92hP3XAIslBCZMyWcv5d3jdLNFUzboQ9ya3m7CFweHVZXMnCiIepN3MXnT9soCi4DHacG1qfEZyPj70/xveRxaWbFCc7/FOlBOA/EUqkfNFzfH8WBIAQ4jVt1R0Y390vWvHFUKwZ6J3A759WiCBiJIVbBd5EQLGq19fJalkmwv2krzzSf5ZtCHPGOTuwQA==
# -*- 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")
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 "7.0" in data["name"] :
for download in data["assets"]:
if download["browser_download_url"].endswith(".dmg") and dict_arch[control.architecture] 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('*.exe'):
if f != filename:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
fe5f192ae43312471e6932e9387d428b3f6d8bd678acc43dc33c345114b3cdf2 : WAPT/control
7f485f94ed44e0647ee98f177fca0571076eebc495ebefddc0525325d3a56832 : WAPT/icon.png
18217146ce23e57a103fb49d8cdc3afd9f9a5b18bae05f2aa3712fdc85d71096 : kicad-unified-universal-7.0.11.dmg
7379cd1a3395ce6aadfbfd8124d9a329b575c4e3179c1f997386b81a1a565dfd : luti.json
2c83026f9bbdd04cf2aab8a85316cf793f4f82c3324b58e8d44bbadef9e374e1 : setup.py
e5ae2af882001186a1c13489dc68464fb447594fa3a766ccb4c16113170d02fd : update_package.py