tis-realpopup icon

RealPopup

Paquet d’installation silencieuse pour RealPopup

12.4-1

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

package           : tis-realpopup
version           : 12.4-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      : 56e591a1-42b1-4bc1-b179-35d12e2aec47
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    : 2025-01-15T12:02:55.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         : QFH4BeNqmACSA5rU+qhF5P311E579A4QKiAmosefmMMdjsQMt58tfm1HmoNZg9Qf9aI6nZukF5Hys/T/L0eX4vVAvz+fvs9Z4lp/FYX6mRWJVryzLideq6rNlL2z004Sz9OpsaPkUl61LDqjwTKaPBdomQZwU/vFMQPmblMUVQ/4MOO1QBtaSS7U64ieIfxkmxQaehlE00/7PYRY3wb1CchGNUIfrEGx0CtOVxmGX0l+hR0uq+eykRJeI3eXV5sIznywOlQVNRi8TrXbj2fO3XNVCEXupy6JphhNtYBXT5EhZ+QvPBiDRva7qEqjKcvs0tGsjtFeeoPJr2PRH7Y1/w==

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

6820a8935d0ad6f70a3abcd559a420a5e6ee3b6a2aeffdc766098f3a1ec84b2f : RealPopupSetup.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
fbab9a05f3d50564c39ae9c5fad429d4f1211d898324f0768be277187d49ff77 : WAPT/control
52b1800d4614117a27a189d7d4af81e02bd9e4c6bf5bf277aa88560e9515d150 : WAPT/icon.png
9dbfc3623cd4ddc42feefa94e9158b7cb28cd49c5efc3034c58c38a14eaddeeb : luti.json
a93dfb130e14639a4c1794ec7d2cf7aaa36ebb50d4fa5dfcee0cc693bd6b040e : setup.py
9ff698cc57c5128e63733dcdb609d0b06c2cd86eccfe5d482e03c34605d7e598 : update_package.py