- package: tis-pidgin
- name: Pidgin
- version: 2.14.12-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: 34.99 Mo
- homepage : https://pidgin.im/
package : tis-pidgin
version : 2.14.12-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 : a14630b2-16c7-4148-b01a-3ce507f24ba2
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 : PHqSuxcZJmz6YcRSefyuLPzbwa3bQDxKZsBzis/JLYCf6iddoxnXS+wGgOBLV0ykyl2IvHGPMCeZCMx4qUkPYmCHTQ6Dxwy+S5Wqx6M278SAUEQqF+8IzfQP2abtr+usAgzecpmiO4qhfVBBw140Yl2fxOJH4l4atfHaMxauDAt54gDjM8cLGAMKqV0958/SZxtMj468Yk20axKq6LCE0jXQn4iGrBnvfYcFlMreLn29lekir7E7bVGuHZB0wFDoJu/wPJPurL98GeytSO1FvN7ex++/Q4dpcSdT7U1vIjEv1rSVwT434pwWnEiGxQBk7av3lv9FAjmX3BU9KUxMhQ==
signature_date : 2023-08-19T19:03:28.450438
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
36803ca9ff708df4c07d3de7bc8a8ec6f510e37d350082840302aa7938a7ed9b : pidgin-2.14.12-offline.exe
d7666d2671da109eb1ad3b1888a5b54a62d3740eb9b64c1f345720ea0ab8c295 : update_package.py
23dfe4d9d4a5853615d1b696aa578b7a7361d35965ed443cea3f648f5d08f60e : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
c5400ad4b3b08c2cc6c4654febf0336b046c8164c1546c8adfa2122f04bb16d4 : luti.json
a71449671e9550d6c1edd57420ab19b0e3a85dd545042e39475a7700780b0fd9 : WAPT/control