RStudio
Paquet d’installation silencieuse pour RStudio
								
								2025.9.1-4
								
							
							
                                   
                                       
                                           Development
                                       
                                   
                                
								
							
                               
                                   
                                       Development
                                   
                               
							
							
						- package: tis-rstudio
 - name: RStudio
 - version: 2025.9.1-4
 - categories: Development
 - maintainer: WAPT Team,Tranquil IT,Pierre Cosson,Jimmy PELE
 - editor: Posit, PBC
 - licence: GPLv3
 - locale: all
 - target_os: windows
 - impacted_process: rpostback,rsession-utf8,rsession,rsinverse,rstudio,rsession
 - architecture: all
 - signature_date:
 - size: 287.61 Mo
 - installed_size: 809.18 Mo
 - homepage : https://posit.co/
 
package           : tis-rstudio
version           : 2025.9.1-4
architecture      : all
section           : base
priority          : optional
name              : RStudio
categories        : Development
maintainer        : WAPT Team,Tranquil IT,Pierre Cosson,Jimmy PELE
description       : RStudio is an integrated development environment for R, a programming language for statistical computing and graphics
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.1
sources           : https://posit.co/download/rstudio-desktop/#download
installed_size    : 809176509
impacted_process  : rpostback,rsession-utf8,rsession,rsinverse,rstudio,rsession
description_fr    : RStudio est un environnement de développement intégré pour R, un langage de programmation pour le calcul statistique et les graphiques
description_pl    : RStudio to zintegrowane środowisko programistyczne dla R, języka programowania dla obliczeń statystycznych i grafiki
description_de    : RStudio ist eine integrierte Entwicklungsumgebung für R, eine Programmiersprache für statistische Berechnungen und Grafiken
description_es    : RStudio es un entorno de desarrollo integrado para R, un lenguaje de programación para la computación estadística y los gráficos
description_pt    : RStudio é um ambiente de desenvolvimento integrado para R, uma linguagem de programação para computação estatística e gráfica
description_it    : RStudio è un ambiente di sviluppo integrato per R, un linguaggio di programmazione per il calcolo statistico e la grafica
description_nl    : RStudio is een geïntegreerde ontwikkelomgeving voor R, een programmeertaal voor statistische berekeningen en grafische toepassingen
description_ru    : RStudio - это интегрированная среда разработки для R, языка программирования для статистических вычислений и графики
audit_schedule    : 
editor            : Posit, PBC
keywords          : rstudio,development,environment,r,programming,language,statistical
licence           : GPLv3
homepage          : https://posit.co/
package_uuid      : 24ee6e47-56b5-4a07-87ab-9f1f2962236c
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://www.rstudio.com/products/rstudio/release-notes/
min_os_version    : 
max_os_version    : 
icon_sha256sum    : ae6c2ef2ed42041524718ab7db6332894c8121e6a502937dc4590702419aed60
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-10-06T20:04:25.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         : ffJCO3AWWonZn5sxuJjb/WCBwu1z4mbgfAw8Q7wUBXw3v1g6fV2su3BQo2Vc+xcU2eAYfoKN9g1oxHDRUKAMHsoKr8LKwWU6ruOap3nU2iMQWx1iKxTPnSQLto1WwOu4gxXJzWEw4vQxzUtsX+iPQ4i26wrzcI6cMpw5Oz0NnDmDkGjlZv7GKzOebYuLuBslMwqTP8q0IosnMfTqMsLle8OMbfG+nw44/uM2++H3QQ45EuiSXzdZyKxRb930Nbyn0VC3v0PpddgVJwAr4turWR3zVKgpcHq0e0+vfFl8ZXqHjBxASVH4561tWgTEf4/CyF6wnwFmgg1FuUWdUXQGfg==
                        # -*- coding: utf-8 -*-
from setuphelpers import *
def install():
    bin_name = glob.glob("RStudio*.exe")[0]
    install_exe_if_needed(
        bin_name,
        silentflags="/S",
        key="RStudio",
        min_version=control.get_software_version(),
        get_version=get_soft_version,
    )
def get_soft_version(key):
    return key["version"].split("+", 1)[0]
                            # -*- coding: utf-8 -*-
from setuphelpers import *
def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    url = "https://posit.co/download/rstudio-desktop/#download"
    os_dict = {
        "windows": ".exe",
        "debian_based": ".deb",
        "darwin": ".dmg",
    }
    # Getting latest version from official sources
    print("URL used is: %s" % url)
    for bs_search in bs_find_all(
        url,
        "a",
        "class",
        "justify-self-center md:justify-self-start text-center md:text-left col-span-12 md:col-span-5 link-md-light flex-inhe",
        proxies=proxies,
    ):
        if os_dict[control.target_os] in bs_search["href"]:
            download_url = bs_search["href"]
            latest_bin = bs_search["href"].split("/")[-1]
            version = latest_bin.split("-")[1]
            break
    # Downloading latest binaries
    print("Latest %s version is: %s" % (control.name, version))
    print("Download URL is: %s" % download_url)
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(download_url, latest_bin, proxies=proxies)
    else:
        print("Binary is present: %s" % latest_bin)
    # Changing version of the package
    if Version(version) > Version(control.get_software_version()):
        print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
        package_updated = True
    else:
        print("Software version up-to-date (%s)" % Version(version))
    control.set_software_version(version)
    control.save_control_to_wapt()
    # Validating or not update-package-sources
    return package_updated
                            bca050ad2d0e0ceb64f3bf42f46ff52fc56d7145cfdcafef778599f5ca9642bb : RStudio-2025.09.1-401.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
36ddd04bb67b20d94032c4dd993448999a10f7f352eb7d3376eced72fa527075 : WAPT/changelog.txt
6efd82c885b1424d54e62f2bbf78f66ec3da7967acbc3ea792ea917b9a916d92 : WAPT/control
ae6c2ef2ed42041524718ab7db6332894c8121e6a502937dc4590702419aed60 : WAPT/icon.png
2dfdcce330f93b8f1265a1c8de98999aca06fa6386e9c8f2fa53d4dccec3de4a : luti.json
d7d8789fcb04e15d1b49973077024ea075e860b3a7a9932273836c263bf88c1c : setup.py
b74c7098749e5abe2f8f433d212c301a6e4f4a7cc43a341719de04a97e35db66 : update_package.py
                        
                            
                                https://www.rstudio.com/products/rstudio/release-notes/
                            
                            
                                
                    2022.7.2-4
===
Improving package in all aspect
Using new download source