- package: tis-warp
- name: Cloudflare WARP
- version: 24.6.473.0-1
- categories: Internet
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ,
- licence: opensource_free,wapt_private
- target_os: windows
- architecture: x64
- signature_date:
- size: 119.64 Mo
package : tis-warp
version : 24.6.473.0-1
architecture : x64
section : base
priority : optional
name : Cloudflare WARP
categories : Internet
maintainer : WAPT Team,Tranquil IT,Amel FRADJ,
description : Free cloudflare VPN WARP The free application that makes your Internet more secure
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version : 2.3
sources :
installed_size :
impacted_process :
description_fr : VPN cloudflare gratuit WARP L'application gratuite qui rend votre Internet plus sûr
description_pl : Darmowy cloudflare VPN WARP Darmowa aplikacja, dzięki której Twój Internet będzie bezpieczniejszy
description_de : Kostenloses cloudflare VPN WARP Die kostenlose Anwendung, die Ihr Internet sicherer macht
description_es : Cloudflare VPN WARP gratis La aplicación gratuita que hace que tu Internet sea más seguro
description_pt : Free cloudflare VPN WARP A aplicação gratuita que torna a sua Internet mais segura
description_it : VPN gratuita cloudflare WARP L'applicazione gratuita che rende Internet più sicuro
description_nl : Gratis cloudflare VPN WARP De gratis toepassing die uw internet veiliger maakt
description_ru : Бесплатный cloudflare VPN WARP Бесплатное приложение, которое делает ваш интернет более безопасным
audit_schedule :
editor :
keywords :
licence : opensource_free,wapt_private
homepage :
package_uuid : 7ecdee68-7812-448a-89b6-2196ce9ef6ef
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10.0
max_os_version :
icon_sha256sum : 1f319dffb3cf88af6bbd606fa9bd940d4449db9149d5a606e69ce4a9b4d42f19
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2024-09-07T08:00:36.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 : Xvkp28u6zvhukCN5YYCgOa/5gXevRFAsfLXxzaZkW8DMInt0+fzPlT1KV1IRNYMjj+/BVGNDiVQcPagyeR6ksUSLvIAZSG7Nwjmzo/EtWD3+KXmZLKGc6uAeXayW6KLY8Como/PxVAYbOD9fLl8yXLZiP6Gr/2lqJt2iF4HjZ6/jYwHwCcGU1QG0ifU489tFi09PKO8QKdhtGZERoI+Qp8WnV7k8d9DWdRkP+EhPC2LKFvinua1hiup97fHVbhDmm0lzxM880Ze+rvQEdpxVMthyCMjj9zvlyqGsAQROwfyD1oIWWWP6/uWGS8sAG0yfdUq75ldRzPip/tNP/GqFxg==
# -*- 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
install_msi_if_needed("Cloudflare_WARP_Release-x64.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://1111-releases.cloudflareclient.com/windows/Cloudflare_WARP_Release-x64.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("*.exe"):
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()
540fb26438a66c6e9f0817a5e50296852070e48544e3d983517e5e4df741ccf8 : Cloudflare_WARP_Release-x64.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
2d9a5ef8b3cd79ecc4f9679349ebca0bd576da2a47e661fddec5c69be56b052f : WAPT/control
1f319dffb3cf88af6bbd606fa9bd940d4449db9149d5a606e69ce4a9b4d42f19 : WAPT/icon.png
72201cfa8424f372e989759791dc527812e368633d99260f335868c33a6c9250 : luti.json
e4771d61d4e9646509ff76e567608e4015153fac0706547270b71134465b9e5a : setup.py
869258591b798d7b285f4208944f1b870ce438a5050ac4bd36673ebdf93b036c : update_package.py