tis-realpopup icon

RealPopup

Paquet d’installation silencieuse pour RealPopup

12.3-1

  • package: tis-realpopup
  • name: RealPopup
  • version: 12.3-1
  • categories: Messaging
  • maintainer: WAPT Team,Tranquil IT,
  • licence: proprietary_restricted,wapt_private
  • target_os: windows
  • architecture: all
  • signature_date:
  • size: 31.75 Mo

package           : tis-realpopup
version           : 12.3-1
architecture      : all
section           : base
priority          : optional
name              : RealPopup
categories        : Messaging
maintainer        : WAPT Team,Tranquil IT,
description       : RealPopup LAN chat is a small tool that replaces the old WinPopup or "net send" command with a full-featured messaging tool that's as stable and simple as its predecessor
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 2.3
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : RealPopup LAN chat est un petit outil qui remplace l'ancienne commande WinPopup ou « net send » par un outil de messagerie complet qui reste stable et simple comme son prédécesseur
description_pl    : RealPopup LAN chat to małe narzędzie, które zastępuje stare WinPopup lub polecenie "net send" kompletnym narzędziem do przesyłania wiadomości, które jest równie stabilne i proste jak jego poprzednik
description_de    : RealPopup LAN chat ist ein kleines Tool, das den alten WinPopup-Befehl oder "net send" durch ein vollständiges E-Mail-Tool ersetzt, das wie sein Vorgänger stabil und einfach bleibt
description_es    : RealPopup LAN chat es una pequeña herramienta que sustituye al antiguo WinPopup o comando "net send" por una completa herramienta de mensajería tan estable y sencilla como su predecesora
description_pt    : O RealPopup LAN chat é uma pequena ferramenta que substitui o antigo WinPopup ou o comando "net send" por uma ferramenta de mensagens completa que é tão estável e simples como o seu antecessor
description_it    : RealPopup LAN chat è un piccolo strumento che sostituisce il vecchio WinPopup o il comando "net send" con uno strumento di messaggistica completo, stabile e semplice come il suo predecessore
description_nl    : RealPopup LAN chat is een kleine tool die het oude WinPopup of "net send" commando vervangt door een complete messaging tool die net zo stabiel en eenvoudig is als zijn voorganger
description_ru    : RealPopup LAN chat - это небольшой инструмент, который заменяет старый WinPopup или команду "net send" полноценным средством обмена сообщениями, таким же стабильным и простым, как и его предшественник
audit_schedule    : 
editor            : 
keywords          : 
licence           : proprietary_restricted,wapt_private
homepage          : 
package_uuid      : 40185927-7227-4424-ab58-c8adcb74938e
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 52b1800d4614117a27a189d7d4af81e02bd9e4c6bf5bf277aa88560e9515d150
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2024-10-07T11:00:10.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         : uYeQ9lHRYbTWksvlL2GDIBB1TnQVectsuXV67ys4WYOEu5F9qWqzXFUBjGIzm8ZYzyO52K1aTofhyq2UEcI6z0a1fwZUROLfes4QY09J5EOsbdks8Hp/kPQrgyY2kUBpoyw4qHGxjed66WqhmRAXO8h6tkQqGk5OBJX1IGoGPJ6TBDJtW5GioN9QVJdqZhgoLMyFewHVJsF3ILZsBIDvH/PUhHhekkrB5EOJOPSw+2XVxTzzc2oQqTesMysjRzLMrUChygRrBzmRB//yS8eIcX/PxCdvPe31YEEYiR0WeSe6XMx4NzETPwKQ5lMx/3SQ4TytaiWGzuRp4gp4BdBRsQ==

# -*- 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

    # Installing the software
    print("Installing: RealPopupSetup.msi")
    install_msi_if_needed('RealPopupSetup.msi')




# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob



def update_package():
    # Declaring local variables
    package_updated = False
    
    proxies = get_proxies_from_wapt_console()
    if not proxies:
        proxies = get_proxies()

  
    download_url = "https://www.realpopup.it/files/RealPopupSetup.msi"  
    latest_bin = download_url.split("/")[-1]
    

    # Downloading latest binaries
    print("Download URL is: %s" % download_url)
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(download_url, latest_bin, proxies=proxies)
        package_updated = True
    else:
        print("Binary is present: %s" % latest_bin)


    # Deleting outdated binaries
    for f in glob.glob('*.msi'):
        if f != latest_bin:
            remove_file(f)

           
    version = get_version_from_binary(latest_bin)
    # Mettre à jour le package
    control.set_software_version(version)
    control.save_control_to_wapt()    
        

47b8198634424718a9a22258ab00054e225c5dd2d407969766837affc98117e2 : RealPopupSetup.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
5ac998b7ffd711a03fd9f0827aa416b1f2099dd402b233aca6516a6b1286c086 : WAPT/control
52b1800d4614117a27a189d7d4af81e02bd9e4c6bf5bf277aa88560e9515d150 : WAPT/icon.png
3547244139f4333ef5b0e5df8129b84b0b36f00eafb27a1db3bb26cf540a3e8e : luti.json
a93dfb130e14639a4c1794ec7d2cf7aaa36ebb50d4fa5dfcee0cc693bd6b040e : setup.py
9ff698cc57c5128e63733dcdb609d0b06c2cd86eccfe5d482e03c34605d7e598 : update_package.py