tis-intellij-idea-community icon

IntelliJ IDEA Community

Paquet d’installation silencieuse pour IntelliJ IDEA Community

2025.2.1-2

  • package: tis-intellij-idea-community
  • name: IntelliJ IDEA Community
  • version: 2025.2.1-2
  • categories: Development
  • maintainer: WAPT Team,Tranquil IT,Flavien SCHELFAUT
  • editor: JetBrains
  • licence: Freemium
  • locale: all
  • target_os: debian_based
  • impacted_process: idea64,idea,jetbrains_client64,jetbrains_client
  • architecture: x64
  • signature_date:
  • size: 1.21 Go
  • installed_size: 3.37 Go
  • homepage : https://www.jetbrains.com/webstorm/

package           : tis-intellij-idea-community
version           : 2025.2.1-2
architecture      : x64
section           : base
priority          : optional
name              : IntelliJ IDEA Community
categories        : Development
maintainer        : WAPT Team,Tranquil IT,Flavien SCHELFAUT
description       : IntelliJ IDEA Community is an integrated development environment (IDE) written in Java for developing computer software written in Java, Kotlin, Groovy, and other JVM-based languages
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : debian_based
min_wapt_version  : 2.4
sources           : 
installed_size    : 3366191772
impacted_process  : idea64,idea,jetbrains_client64,jetbrains_client
description_fr    : IntelliJ IDEA Community est un environnement de développement intégré (IDE) écrit en Java pour développer des logiciels écrits en Java, Kotlin, Groovy et autres langages basés sur la JVM
description_pl    : IntelliJ IDEA Community to zintegrowane środowisko programistyczne (IDE) napisane w języku Java do tworzenia oprogramowania komputerowego napisanego w językach Java, Kotlin, Groovy i innych językach opartych na JVM
description_de    : IntelliJ IDEA Community ist eine in Java geschriebene integrierte Entwicklungsumgebung (IDE) für die Entwicklung von Computersoftware, die in Java, Kotlin, Groovy und anderen JVM-basierten Sprachen geschrieben wurde
description_es    : IntelliJ IDEA Community es un entorno de desarrollo integrado (IDE) escrito en Java para desarrollar software informático escrito en Java, Kotlin, Groovy y otros lenguajes basados en JVM
description_pt    : O IntelliJ IDEA Community é um ambiente de desenvolvimento integrado (IDE) escrito em Java para desenvolver software de computador escrito em Java, Kotlin, Groovy e outras linguagens baseadas em JVM
description_it    : IntelliJ IDEA Community è un ambiente di sviluppo integrato (IDE) scritto in Java per lo sviluppo di software informatico scritto in Java, Kotlin, Groovy e altri linguaggi basati su JVM
description_nl    : IntelliJ IDEA Community is een geïntegreerde ontwikkelomgeving (IDE) geschreven in Java voor het ontwikkelen van computersoftware geschreven in Java, Kotlin, Groovy en andere JVM-gebaseerde talen
description_ru    : IntelliJ IDEA Community - это интегрированная среда разработки (IDE), написанная на Java и предназначенная для разработки программного обеспечения на Java, Kotlin, Groovy и других языках, основанных на JVM
audit_schedule    : 
editor            : JetBrains
keywords          : intellij,idea,ide,integrated,development,environment
licence           : Freemium
homepage          : https://www.jetbrains.com/webstorm/
package_uuid      : 4ebfc94b-0afb-4173-805b-de5160d2d724
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 9f31eb1ae0060823265242b972a22055f243876f8a1740fbe88dcce3afc70a73
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-09-09T12:07: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         : uOZb1bJ8X6hyNw3lWa16w5kQkaUIiNAPfspuql9VW0Q1IjiBmbKurzYN/bJ4dNNeuXs4OcMc2Qa5I90RwK1zwS1HoMj9ykNWxGZ7IX2juVOxfCVrsfc2KFuwrqJ2n/dpxZ97Q/x8G9sZrBhFdCUP1R9QzC8a5KDhe2WQ+BQ5xSQWODLOnWsDJAVjoxXSZ5sBkcrIcP3iVRzXznXYVlhiFW/rlNhSncmkhQtcIfI+T3leCyOzvEQ3pClKDjMSzJL78e4PHIF07V1G0MSEQPTHaw4ee77IA4Q/1zI0Rw78CeqDBeAmDHyB9xa/y4HVNjeEvfkA4fq5Nb4+7Aq1PH0BsQ==

# -*- coding: utf-8 -*-
from setuphelpers import *
import tarfile

bin_path = "/usr/local/bin/ideaIC"
app_path = "/opt/ideaIC"


def extract_tar_gz(filename, path="."):
    with tarfile.open(filename, "r:gz") as tar:
        tar.extractall(path)

def install():
    archive_file = glob.glob("ideaIC*.tar.gz")[0]
    temp_extract_folder = makepath(basedir, "ideaIC")

    # Delete older version
    if isdir(app_path):
        remove_tree(app_path)

    extract_tar_gz(archive_file, path=temp_extract_folder)

    folder_app = glob.glob(f"{temp_extract_folder}/*")[0]

    copytree2(folder_app, app_path)

    if isfile(bin_path) or os.path.islink(bin_path):
        print("Removing existing symlink")
        remove_file(bin_path)
        
    print(f"Creating intellij-idea alias in path")
    os.symlink(f"{app_path}/bin/idea.sh", bin_path)

    # Delete extracted folder
    if isdir(temp_extract_folder):
        remove_tree(temp_extract_folder)

    
def uninstall():
    # Removing of symlink
    if isfile(bin_path) or os.path.islink(bin_path):
        remove_file(bin_path)

    # Removing of the software 
    if isdir(app_path):
        remove_tree(app_path)

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


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

    releases = wgets("https://data.services.jetbrains.com/products/releases?code=IIC&latest=true&type=release",proxies=proxies, as_json=True)['IIC'][0]
    version = releases['version']
    downloads = releases['downloads']

    download_dict = {
        'windows-x64': downloads['windows']['link'],
        'debian_based-x64': downloads['linux']['link'],
        'debian_based-arm': downloads['linuxARM64']['link'],
        'darwin-x64': downloads['mac']['link'],
        'darwin-arm': downloads['macM1']['link']
    }

    os_type = control.target_os + "-" + ensure_list(control.architecture)[0]
    download_url = download_dict[os_type]
    latest_bin = download_url.rsplit("/", 1)[-1]
    latest_bin_extension = 'tar.gz'

    # Downloading latest binaries
    print(f"Latest {app_name} version is: {version}")
    print(f"Download URL is: {download_url}")
    if not isfile(latest_bin):
        print(f"Downloading: {latest_bin}")
        wget(download_url, latest_bin, proxies=proxies)
    else:
        print(f"Binary is present: {latest_bin}")

    # Changing version of the package
    if Version(version) > Version(control.get_software_version()):
        print(f"Software version updated (from: {control.get_software_version()} to: {Version(version)})")
        package_updated = True
    else:
        print(f"Software version up-to-date ({Version(version)})")

    for f in glob.glob(f'*.{latest_bin_extension}'):
        if f != latest_bin:
            remove_file(f)

    control.set_software_version(version)
    control.save_control_to_wapt()

    return package_updated

38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
27f7f188622765d7b214c9722e88765a4458915162361bb96f10cc0f5b381168 : WAPT/control
9f31eb1ae0060823265242b972a22055f243876f8a1740fbe88dcce3afc70a73 : WAPT/icon.png
fc76fe8b6693b18d5d7385bb005f415287dbd5897b313287b9ef56dd0df9d5bd : ideaIC-2025.2.1.tar.gz
978a1216250b3fc9db0dbb3889df2646177af40b1dcab8ae6587fdfb1665ee0b : luti.json
b0601befc3d062791919c47c62cc5d67f27a90735b10033249b1d63c0e50b41d : setup.py
8f02186f6b0beae37689c5be33380d8c4d1a59a6635c8d3914eaa8d3cb7bc8e9 : update_package.py