
- package: tis-vim
- name: Vi IMproved
- version: 179-4
- categories: System and network
- maintainer: WAPT Team,Jordan ARNAUD
- editor: macvim-dev
- licence: Free software
- locale: all
- target_os: darwin
- impacted_process: vi,vim
- architecture: all
- signature_date:
- size: 21.39 Mo
- homepage : https://www.vim.org/
package : tis-vim
version : 179-4
architecture : all
section : base
priority : optional
name : Vi IMproved
categories : System and network
maintainer : WAPT Team,Jordan ARNAUD
description : Vim - the text editor - for macOS
depends :
conflicts :
maturity : PROD
locale : all
target_os : darwin
min_wapt_version : 2.3
sources : https://github.com/vim/vim
installed_size :
impacted_process : vi,vim
description_fr : Vim - l'éditeur de texte - pour macOS
description_pl : Vim - edytor tekstu - dla macOS
description_de : Vim - der Texteditor - für macOS
description_es : Vim - el editor de texto - para macOS
description_pt : Vim - o editor de texto - para macOS
description_it : Vim - l'editor di testo - per macOS
description_nl : Vim - de teksteditor - voor macOS
description_ru : Vim - текстовый редактор - для macOS
audit_schedule :
editor : macvim-dev
keywords : vi,vim,text,editor
licence : Free software
homepage : https://www.vim.org/
package_uuid : a6f526fe-78f7-4eb6-8fc8-ea018a2911b9
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : b5c4b8b5426dfceb9931cfce83053abe8af08a603b719b50cb75c8de34486501
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature : LjBtx6SIFGiI2jfyL9Cg3Dq3V9b04ht5b9Y+1ssQ8NlW2QgrEG6S6prxbfG9SOUP9TznllVuRg9Anu9qe8dnO0O7md4+N291X5/46VU81GgyGh+3TyVCjT/KxQILMN7xCexLSh2DuRvTJ3xaZd3JysUfi2RP+Xop7yzKhPNUG6UnzSuEUCsj5kR4LpqRHbKsQcVeaJ3AW6C4JKHz7I+SqGpzCeOdXfhJ6cuOBfzYFpD3/lYVnf/98AFovV2EWKDQxY9r9L+WXmV4LJRMyGLGGybcKT4iCGxwo7cK46K+vSfc4P1swLJ12OLCDGiy6fWYdxRlbLFk/oPZA9ANwV+hWA==
signature_date : 2024-07-30T11:01:21.521332
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
# -*- coding: utf-8 -*-
##################################################
# This file is part of WAPT Enterprise
# All right reserved, (c) Tranquil IT Systems 2023
# For more information please refer to
# https://wapt.tranquil.it/store/licences.html
##################################################
from setuphelpers import *
def install():
install_dmg(glob.glob("*.dmg")[0])
def uninstall():
remove_tree("/Applications/MacVim.app")
# -*- coding: utf-8 -*-
##################################################
# This file is part of WAPT Enterprise
# All right reserved, (c) Tranquil IT Systems 2023
# For more information please refer to
# https://wapt.tranquil.it/store/licences.html
##################################################
from setuphelpers import *
import json
makepath
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
api_url = "https://api.github.com/repos/macvim-dev/macvim/releases/latest"
os_dict = {"windows": ".exe", "debian_based": ".deb", "redhat_based": ".rpm", "darwin": ".dmg"}
# Getting latest version information from official sources
print("API used is: %s" % api_url)
json_load = json.loads(wgets(api_url, proxies=proxies))
for to_download in json_load["assets"]:
if os_dict[control.target_os] in to_download["name"]:
download_url = to_download["browser_download_url"]
version = json_load["tag_name"].split("-")[-1].replace("v", "")
latest_bin = to_download["name"]
break
# Deleting outdated binaries
remove_outdated_binaries(version)
# 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 update-package-sources
return package_updated
a5812106638769b994aad152987dab805d26e98cbf5b8f1bfcc1dd756b4d6bae : setup.py
d8fbd58f0fe272b8d295dcb3caa425429d023ca304919e4e1fc69004b03547d0 : update_package.py
b5c4b8b5426dfceb9931cfce83053abe8af08a603b719b50cb75c8de34486501 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
81eaa54ae8e684eafefb52adabb07afbc8d9c49a10b618b36a6c918078f10af1 : luti.json
61b16fea605558a4753f225a5b426d1f00322d7e3b2429415287528536610084 : MacVim.dmg
a9946b100f02fc1cefaecb0e4c3da33f7eaf872eec97bf271d31e272a614dd5d : WAPT/control