Pidgin
Paquet d’installation silencieuse pour Pidgin
2.14.13-22
Messaging
Messaging
- package: tis-pidgin
- name: Pidgin
- version: 2.14.13-22
- categories: Messaging
- maintainer: WAPT Team,Tranquil IT,Simon Fonteneau
- editor: Mark Spencer et Sean Egan
- licence: GNUV2
- locale: all
- target_os: windows
- impacted_process: pidgin.exe
- architecture: all
- signature_date:
- size: 32.31 Mo
- homepage : https://pidgin.im/
package : tis-pidgin
version : 2.14.13-22
architecture : all
section : base
priority : optional
name : Pidgin
categories : Messaging
maintainer : WAPT Team,Tranquil IT,Simon Fonteneau
description : Instant Messaging for Jabber, AIM, Sametime, XMPP, GTK libraries and Rocket.chat plugin
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.0
sources : https://sourceforge.net/projects/pidgin/files/Pidgin/
installed_size :
impacted_process : pidgin.exe
description_fr : Messagerie instantanee pour Jabber, AIM, Sametime, XMPP, inclus les librairies GTK et le plugin Rocket.chat
description_pl : Instant Messaging dla Jabbera, AIM, Sametime, XMPP, biblioteki GTK i wtyczka Rocket
description_de : Instant Messaging für Jabber, AIM, Sametime, XMPP, GTK-Bibliotheken und Rocket
description_es : Mensajería instantánea para Jabber, AIM, Sametime, XMPP, bibliotecas GTK y plugin Rocket
description_pt : Mensagens Instantâneas para Jabber, AIM, Sametime, XMPP, bibliotecas GTK e plugin Rocket
description_it : Messaggistica istantanea per Jabber, AIM, Sametime, XMPP, librerie GTK e plugin Rocket
description_nl : Instant Messaging voor Jabber, AIM, Sametime, XMPP, GTK bibliotheken en Rocket
description_ru : Мгновенный обмен сообщениями для Jabber, AIM, Sametime, XMPP, библиотеки GTK и плагин Rocket
audit_schedule :
editor : Mark Spencer et Sean Egan
keywords :
licence : GNUV2
homepage : https://pidgin.im/
package_uuid : 78da2257-4e76-45c7-919b-b070bdb4b6d6
valid_from :
valid_until :
forced_install_on :
changelog : https://pidgin.im/post/
min_os_version :
max_os_version :
icon_sha256sum : 23dfe4d9d4a5853615d1b696aa578b7a7361d35965ed443cea3f648f5d08f60e
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature : yKnotPhnRqwOrXF5HUZvqMNJURk86RisajbOMrrgkLzXKBTYtQJDTS91jxO1qJUQT/5we2ss9GoCleS0yL6ok4O9csNg8mcLyjstAzY6HhWVir7bvpexsSVELhdCYOeKVMWjTFhTuHk96459d7bNMN3ZbOlLxGpKiIeWEOpR8Qsm5tf8aUdAWc0jyluIwlXUWBnZmBRiTsfa6oXbks3wv/XysTb7jTuLlHVV4oMiCdldSyolNzzRbmtHt5hydT3ewtQuq2/9N+XV7FagQB42eLn/2q+Uw302GQEuSiz9xSujZsWcPpyuEyjT0dneBx5/vF4wkkQtGnxfLgMyO7wW1A==
signature_date : 2024-02-28T14:01:21.627758
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 -*-
from setuphelpers import *
def install():
# Declaring local variables
bin_name = glob.glob("pidgin-*-offline.exe")[0]
# Installing the package
print("Installing: %s" % bin_name)
install_exe_if_needed(
bin_name,
silentflags="/S",
key="Pidgin",
min_version=control.get_software_version(),
)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import bs4 as BeautifulSoup
def update_package():
# Declaring local variables
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
html_source = wgets("https://pidgin.im/install",proxies=proxies).splitlines()
for line in html_source:
if "-offline.exe" in line:
version = line.split('-')[-2]
latest_bin = f'pidgin-{version}-offline.exe'
url_dl = f'https://sourceforge.net/projects/pidgin/files/Pidgin/{version}/pidgin-{version}-offline.exe'
# Getting latest version information from official sources
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, connect_timeout=30)
# Checking version from file
version_from_file = get_version_from_binary(latest_bin)
if version != version_from_file and version_from_file != "":
print("Changing version to the version number of the binary (from: %s to: %s)" % (version, version_from_file))
os.rename(latest_bin, latest_bin.replace(version, version_from_file))
version = version_from_file
else:
print("Already up to date, skipped")
# Changing version of the package
if Version(version) != control.get_software_version():
print("Software updated to version: %s" % Version(version))
result = True
control.version = "%s-%s" % (version, control.version.split("-", 1)[-1])
# control.set_software_version(version)
control.save_control_to_wapt()
# Deleting outdated binaries
remove_outdated_binaries(version)
# Validating update-package-sources
return True
c24517c78e2fb1e4bb5b946e98aab799940ed33bd0dee4046646634b00735773 : setup.py
d7666d2671da109eb1ad3b1888a5b54a62d3740eb9b64c1f345720ea0ab8c295 : update_package.py
23dfe4d9d4a5853615d1b696aa578b7a7361d35965ed443cea3f648f5d08f60e : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
34f02b533845d0d54c05c3f69ad750aa71c9ed715d666c3ba3b93646be276ee9 : luti.json
85b07dcddb160e0861aa4169527309a81e2ab449bf1bb019c7a21673d1c0c76b : pidgin-2.14.13-offline.exe
cb3cafcb1806e6374e3b55c2fb108543c89314e9e1c344ee14888255bd85380f : WAPT/control