Ugene
Silent install package for Ugene
49.1-2
Bio-informatique
Bio-informatique
- package: tis-ugene
- name: Ugene
- version: 49.1-2
- categories: Bio-informatique
- maintainer: Gaëtan Segat,WAPT Team,Tranquil IT,Pierre COSSON
- editor: Unipro
- licence: opensource_free,cpe:/a:gnu:gpl_v2
- locale: all
- target_os: darwin
- architecture: x64
- signature_date:
- size: 331.28 Mo
- installed_size: 1.62 Go
package : tis-ugene
version : 49.1-2
architecture : x64
section : base
priority : optional
name : Ugene
categories : Bio-informatique
maintainer : Gaëtan Segat,WAPT Team,Tranquil IT,Pierre COSSON
description : UGENE is free open-source cross-platform bioinformatics software
depends :
conflicts :
maturity : PROD
locale : all
target_os : darwin
min_wapt_version : 2.1
sources : http://ugene.net/download-all_html
installed_size : 1619587072
impacted_process :
description_fr : UGENE est une plateforme multiplateforme open source gratuite logiciel de bioinformatique
description_pl : UGENE jest wolnym, otwartym, wieloplatformowym oprogramowaniem bioinformatycznym
description_de : UGENE ist eine kostenlose, plattformübergreifende Open-Source-Bioinformatik-Software
description_es : UGENE es un software bioinformático multiplataforma gratuito y de código abierto
description_pt : UGENE é um software gratuito de bioinformática multiplataforma de código aberto
description_it : UGENE è un software bioinformatico multipiattaforma gratuito e open-source
description_nl : UGENE is gratis open-source cross-platform bioinformaticasoftware
description_ru : UGENE - бесплатное кроссплатформенное программное обеспечение для биоинформатики с открытым исходным кодом
audit_schedule :
editor : Unipro
keywords :
licence : opensource_free,cpe:/a:gnu:gpl_v2
homepage :
package_uuid : f84da9ae-fd74-4989-9929-3f932151da23
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 157a02a13f54a2e39ef0cf5ee77d93f2e17be5522290cb4789fb206558ac96f5
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature : bP1EzRMRPJ8bYMzKFQzCfkLl4FVH1AglyKOgVU4ZvMWAvOZTO4cRg2zKrMvd9SATRO+CjQG+EoeRZAaNeODYnqo+YSzBnkegmX7AD78jDM5JLAvs9YFTgX2LqTijdqw9qPXHbJbnRNsIewWI999SIQwPagGasOE7k1b8FVSpLw5oz9DpOJhUXLoYCOKlrlbEJXxxLc7ieFAhmPNpYing216xhkIVinl7oPuD/oA+vSLEz8ur9q3/QJ1DPXvEFHZ7HSngw4buO0nZ93ovPbO6EY7sg0Au6hc+Li/79Mfpcm32jpCeao7QE/C72X6NP7ctlZGjYjF4bi1MvUR2RY+4eA==
signature_date : 2023-12-01T04:00:48.520227
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
# -*- 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():
install_dmg(glob.glob("*ugene*.dmg")[0])
def uninstall():
shutil.rmtree("/Applications/Unipro UGENE.app")
# -*- 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 *
import platform
import json
def update_package():
# Declaring local variables
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
git_repo = "ugeneunipro/ugene"
url_api = "https://api.github.com/repos/%s/releases/latest" % 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))
bin_content_type = "application/x-apple-diskimage"
for download in json_load["assets"]:
if "ugene" in download["name"] and bin_content_type in download["content_type"]:
url_dl = download["browser_download_url"]
version = json_load["tag_name"].replace("v", "")
latest_bin = download["name"]
break
print("Latest %s version is: %s" % (app_name, version))
print("Download URL is: %s" % url_dl)
# Downloading latest binaries
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(url_dl, latest_bin, proxies=proxies)
# Changing version of the package
if Version(version) > control.get_software_version():
print("Software version updated from: %s to: %s" % (control.get_software_version(), Version(version)))
result = True
control.version = "%s-%s" % (Version(version), control.version.split("-", 1)[-1])
# control.set_software_version(Version(version))
control.save_control_to_wapt()
# Deleting outdated binaries
remove_outdated_binaries(version)
# Validating update-package-sources
return result
0b0be7cbce441bbb3fe08e76d844d68b7404aad9bbe8899efc30ca304c9fa7f2 : setup.py
cc373e84baa98d86003a5b578d7f9e383c09fd1a4c97457260ef59b09b3c24fa : update_package.py
157a02a13f54a2e39ef0cf5ee77d93f2e17be5522290cb4789fb206558ac96f5 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
eb44ccf960a2b9e3918098872b2198fd1d9bed785dba71f946febcca42e63ec0 : luti.json
ab78910618f1ca00c185d8b5cb3ff43f3a27fd11a59c5c3337aa360147795fb7 : ugene-49.1-mac-x86-64.dmg
6302b65c938af24e725eaa12486b7b41d46a5af3679bdc0d255e00f3a7fc9e4c : WAPT/control