tis-podman-cli icon

podman

Silent install package for podman

6.0.0-2
System and network
System and network

  • package: tis-podman-cli
  • name: podman
  • version: 6.0.0-2
  • categories: System and network
  • maintainer: WAPT Team,Tranquil IT,Ingrid TALBOT, Kevin Cherel
  • editor: Red Hat Inc.
  • licence: opensource_free,cpe:/a:apache:license_2.0,wapt_public
  • locale: all
  • target_os: macos
  • impacted_process: podman
  • architecture: arm
  • signature_date:
  • size: 60.39 Mo
  • installed_size: 64.85 Mo
  • homepage : https://podman.io/

package           : tis-podman-cli
version           : 6.0.0-2
architecture      : arm
section           : base
priority          : optional
name              : podman
categories        : System and network
maintainer        : WAPT Team,Tranquil IT,Ingrid TALBOT, Kevin Cherel
description       : Podman ("POD manager") is an open-source tool for developing, managing and running containers on Linux systems
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : macos
min_wapt_version  : 2.3
sources           : https://podman.io/
installed_size    : 64854413
impacted_process  : podman
description_fr    : Podman ("POD manager") est un outil open-source pour le développement, la gestion et l'exécution de conteneurs sur les systèmes Linux
description_pl    : Podman ("POD manager") to narzędzie typu open-source do tworzenia, zarządzania i uruchamiania kontenerów w systemach Linux
description_de    : Podman ("POD manager") ist ein Open-Source-Tool für die Entwicklung, Verwaltung und Ausführung von Containern auf Linux-Systemen
description_es    : Podman ("POD manager") es una herramienta de código abierto para desarrollar, gestionar y ejecutar contenedores en sistemas Linux
description_pt    : O Podman ("POD manager") é uma ferramenta de código aberto para desenvolver, gerir e executar contentores em sistemas Linux
description_it    : Podman ("POD manager") è uno strumento open-source per lo sviluppo, la gestione e l'esecuzione di container su sistemi Linux
description_nl    : Podman ("POD manager") is een open-source tool voor het ontwikkelen, beheren en uitvoeren van containers op Linux-systemen
description_ru    : Podman ("менеджер POD") - это инструмент с открытым исходным кодом для разработки, управления и запуска контейнеров в системах Linux
audit_schedule    : 
editor            : Red Hat Inc.
keywords          : pods,containers
licence           : opensource_free,cpe:/a:apache:license_2.0,wapt_public
homepage          : https://podman.io/
package_uuid      : 7dc106ea-afd5-4b41-a56d-8144ca85a252
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : f457e972a6782b75c31b9329a2ea50a0043341dae1d9a3aaa608dc17ddec967b
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2026-07-01T16:52:51.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         : CQEvNBJ9Eyl1zmJQD2zPHhYxGpkpz9S1X2Agn/o114FmmnEj6qO+WaUj4ogwPhI/5v/aRmgj/qDKSWb7s4+QscyqRUczwDcG2pLH2MY4RUKBLhktFC47D0AhC+7AtxmXq8IyQ/XPtUXBTMpFCahEE1UVLKMYe7l1CqbQvpYHhwRG4lPKh2rR0CILfPXUVUVcMd/UzFmN4TZ5JaE8+mvHbzUr4pJXtFCVjs4HTjdtxpubQbzBxnbYRfnKvT1M/Wf0cc8pm6PjeYcox8d8Ffa+fGVueWrAHnxH5daolnxklZlMbl6enwr23p5MdaB//tttld+misyscYVQ6dk8xELdBw==

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

def install():
    bin_name = glob.glob("podman-installer-macos-arm64.pkg")[0]
    install_pkg(bin_name, key = "pkgid:com.redhat.podman",min_version=control.get_software_version())


def uninstall():
    uninstall_pkg('com.redhat.podman')


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


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    update_dict = {"windows": ".exe", "debian_based" : ".tar.gz","macos": "arm64.pkg"}
    api_url = "https://api.github.com/repos/containers/podman/releases/latest"

    # Get data from API
    releases_dict = json.loads(wgets(api_url, proxies=proxies))
    pkg_found = False  # Flag pour indiquer la découverte d'un fichier .pkg
    for release in releases_dict:
        if pkg_found:
            break
        for asset in releases_dict["assets"]:
            if asset["browser_download_url"].endswith(".pkg") and update_dict[control.target_os] in asset["browser_download_url"]:
                url_download = asset["browser_download_url"]
                latest_bin = url_download.split("/")[-1]
                version = releases_dict["name"].replace("v", "")
                pkg_found = True  # Mettre à jour le flag pour indiquer qu'un pkg a été trouvé
                break

    # Deleting binaries
    for f in glob.glob("*.pkg"):
        if f != latest_bin:
            remove_file(f)

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

    control.set_software_version(version)
    control.save_control_to_wapt()

38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
8540fb85228a810734ce554eac7ca5bd3139178f64ec5400d33846984b5fefe4 : WAPT/control
f457e972a6782b75c31b9329a2ea50a0043341dae1d9a3aaa608dc17ddec967b : WAPT/icon.png
375066a14c638857ceb463eeeb0269c68b3730c7cfe89e5564647bd404498a56 : luti.json
af5c35fe677196b82327d51ea8b5ee932f1bd1f8dae5293ee59baed9f9169dd3 : podman-installer-macos-arm64.pkg
1dca9692b069083b3f36a52085c71c2a4a8a2405b19b688ae7c5e21f34035e4d : setup.py
ba2dc9fb3b99573eb723784323c1a2e72a356a55b1c5b8f1dadc7dcb8d7c9f4c : update_package.py