
OpenRefine
Silent install package for OpenRefine
3.9.3-1
- package: tis-openrefine
- name: OpenRefine
- version: 3.9.3-1
- maintainer: Amel FRADJ
- licence: BSD 3-Clause "New" or "Revised" License
- target_os: windows
- architecture: all
- signature_date:
- size: 174.66 Mo
- homepage : https://openrefine.org/
package : tis-openrefine
version : 3.9.3-1
architecture : all
section : base
priority : optional
name : OpenRefine
categories :
maintainer : Amel FRADJ
description : OpenRefine (previously Google Refine) is a Java-based power tool for working with messy data: cleaning it; transforming it from one format into another; and extending it with web services and external data
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version :
sources : https://github.com/OpenRefine/OpenRefine/releases
installed_size :
impacted_process :
description_fr : OpenRefine (anciennement Google Refine) est un outil puissant basé sur Java pour travailler avec des données désordonnées : les nettoyer, les transformer d'un format à un autre et les étendre avec des services web et des données externes
description_pl : OpenRefine (wcześniej Google Refine) to oparte na Javie narzędzie do pracy z nieuporządkowanymi danymi: ich czyszczenia, przekształcania z jednego formatu na inny oraz rozszerzania o usługi sieciowe i dane zewnętrzne
description_de : OpenRefine (ehemals Google Refine) ist ein Java-basiertes Power-Tool für die Arbeit mit unordentlichen Daten: Bereinigung, Umwandlung von einem Format in ein anderes und Erweiterung um Webdienste und externe Daten
description_es : OpenRefine (antes Google Refine) es una potente herramienta basada en Java para trabajar con datos desordenados: limpiarlos, transformarlos de un formato a otro y ampliarlos con servicios web y datos externos
description_pt : O OpenRefine (anteriormente Google Refine) é uma ferramenta poderosa baseada em Java para trabalhar com dados confusos: limpá-los, transformá-los de um formato para outro e ampliá-los com serviços Web e dados externos
description_it : OpenRefine (precedentemente Google Refine) è un potente strumento basato su Java per lavorare con dati disordinati: pulirli, trasformarli da un formato all'altro ed estenderli con servizi web e dati esterni
description_nl : OpenRefine (voorheen Google Refine) is een op Java gebaseerde krachtige tool voor het werken met rommelige gegevens: opschonen, transformeren van het ene formaat naar het andere en uitbreiden met webservices en externe gegevens
description_ru : OpenRefine (ранее Google Refine) - это мощный инструмент на базе Java для работы с грязными данными: их очистки, преобразования из одного формата в другой и расширения с помощью веб-сервисов и внешних данных
audit_schedule :
editor :
keywords :
licence : BSD 3-Clause "New" or "Revised" License
homepage : https://openrefine.org/
package_uuid : f9a4a8f0-959f-4603-9d08-022b8848ad94
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 8b7b6f5ff2141ec5d9fc6230fdb53fb9406f0e29f27ea6777d806d9a50fde7b7
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-04-22T15: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 : Qq0GARkigo6JV9t/ga0+givFHdCvXM1qAvxLSu9UEUtAlg+Y4RX2XFFgx9ig2pajxW3s8m1HH6mS6hYdj2FhUslka0NkBE6n7Qnlh8a2GFHQEU53XzoajaBB7TQU6Aow0bXQJ/Wvu/1or7P5AtmuQg7p+wUqrfpwwUYlvpj3NVLfJ1AD+RH/BwBuMlTcq9X4XQA4i5iVixi/9Yq0dC0GbicoHM1waZumC9OGWem+I/6x8C3LYQ4oApHLcv6zcDNOWbUbHvfwA4rzHBCnlCVAT2DFuFixpwyrZvzrjnTB5ZlufSHlg60H5QwVKcZMqt5e6xNATbrTlrsCptHC9/g03A==
# -*- 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('openrefine-win-with-java-installer-*.exe')[0]
# Installing the software
install_exe_if_needed(bin_name,
silentflags='/VERYSILENT /ALLUSERS',
key='{93542BFF-1616-4802-B3EF-316F701ADC06}_is1',
min_version=control.get_software_version(),
)
# -*- 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()
git_repo = "OpenRefine/OpenRefine"
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))
for download in json_load["assets"]:
if download["browser_download_url"].endswith('.exe'):
url_dl = download["browser_download_url"]
version = json_load["name"][11:].replace("v", "")
filename = download["name"]
break
if not isfile(filename):
package_updated = True
wget(url_dl,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
59c9d76137df597a3a6e3e7612f175f4dac5ccc338d32a0da2c1de519c65d11f : WAPT/control
8b7b6f5ff2141ec5d9fc6230fdb53fb9406f0e29f27ea6777d806d9a50fde7b7 : WAPT/icon.png
099c2f4c26919502540b895c8b54c97c77975a38e15348e7784d4ec0e130fd7c : luti.json
20f820cb1c096f40a6fce9c597351da8f937876786274f8b347ff2a70e68fc9a : openrefine-win-with-java-installer-3.9.3.exe
523d43bb513904038747a54375119ed8bdc984e093fab4438c9c7ba7efb28be7 : setup.py
cfe0c64f5c751711ccde5a205f7f0a967b31a3140638cd4c58f977b6da39e84a : update_package.py