tis-kicad8
8.0.5-1
KiCad free electronics design software
404 downloads
Download
See build result See VirusTotal scan

- package : tis-kicad8
- name : kicad
- version : 8.0.5-1
- categories :
- maintainer : Amel FRADJ,Ingrid TALBOT
- editor :
- licence :
- locale :
- target_os : windows
- impacted_process :
- architecture : x64
- signature_date : 2024-10-09 12:08
- size : 1.18 Go
package : tis-kicad8
version : 8.0.5-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 : windows
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 : 3143b79b-f3f7-456f-a16a-b18df3d2088a
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10
max_os_version :
icon_sha256sum : 7f485f94ed44e0647ee98f177fca0571076eebc495ebefddc0525325d3a56832
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2024-10-09T12:08:45.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 : xC/GRQC2FoGU/2NS/XSbI+U1ssDAmRM+yFKISLWmfaegjti1k4QAv+LhoDXl9RaGKW7t7H9bzMvwOSjxH1cUyocg7nkg+Rx6rnu0O/Y6SHK6W/tdNwvt3g1+Cp1TnPd7eN/zz+EXMZpW3MkvO0lZiG4eC5d423Ji0mccji1ho2ivcvsBTZEqurWmZB/afUinvFVVQP8zmrOiBuuczZn/2SFLyXnL1WXQqbfkfIIhFmmyH7TdblDdcebKc5CZ61VsaKt47VJp6vNY7Ekff8hP5ar1OG+3mbfqve9xqZAtC/2rOm4G3pIpVOz8C+kbJ6SxvZpF9pAd7T3zyOnvqfdFtA==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
# 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("kicad-*-x86_64.exe")[0]
# Installing the software
install_exe_if_needed(bin_name,
silentflags=' /allusers /S',
key='KiCad ' + str(Version(control.get_software_version(),2)),
min_version=control.get_software_version(),
timeout=1200
)
# -*- 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" :"-x86_64.exe"
}
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 "x86_64.exe" in download["browser_download_url"] :
download_url = download["browser_download_url"]
filename = download_url.split("/")[-1]
version = filename.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)
version = get_version_from_binary(filename)
control.set_software_version(version)
control.save_control_to_wapt()
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
c73b68b6008f24995043b6657016b5227273a3cd5963a79bd390bcc5cfad02b3 : WAPT/control
7f485f94ed44e0647ee98f177fca0571076eebc495ebefddc0525325d3a56832 : WAPT/icon.png
aeb417c70da6217ddb845a7d848e3abf8b9a0fb11104b389a177a5e638826035 : kicad-8.0.5-x86_64.exe
b53bc6231106e64e6db02d25ef10a65067726f36667d276e43df6e9c934f13f9 : luti.json
ec13eea0732c06480b45abd07cc3030e2eb9c2db8774d7bb1706e3b3201dfe76 : setup.py
095e429ca2908332f965b1c1f8e2fa79422da135e50fc6117cd893265a599213 : update_package.py