- package: tis-spotify
- name: Spotify
- version: 1.2.53.438-32
- categories: Media
- maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ
- editor: Spotify AB
- licence: proprietary_free,wapt_public
- locale: all
- target_os: macos
- impacted_process: Spotify
- architecture: all
- signature_date:
- size: 139.83 Mo
- installed_size: 251.58 Mo
- homepage : https://www.spotify.com/download
- conflicts :
package : tis-spotify
version : 1.2.53.438-32
architecture : all
section : base
priority : optional
name : Spotify
categories : Media
maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ
description : Spotify Desktop Client
depends :
conflicts : tis-spotify-uwp
maturity : PROD
locale : all
target_os : macos
min_wapt_version : 2.3
sources : https://www.spotify.com
installed_size : 251578703
impacted_process : Spotify
description_fr : Client Spotify pour Bureau
description_pl : Spotify Desktop Client
description_de : Spotify Client für den Desktop
description_es : Spotify Desktop Client
description_pt : Spotify Desktop Client
description_it : Spotify Desktop Client
description_nl : Spotify Desktop Client
description_ru : Spotify Desktop Client
audit_schedule :
editor : Spotify AB
keywords : spotify,music,online,listen,streaming,play,digital,album,artist,playlist
licence : proprietary_free,wapt_public
homepage : https://www.spotify.com/download
package_uuid : b9c51bf1-582b-4f68-8451-040a617e4336
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : ae600e0d4b046ee3db8d5e373a749f75516a4e39f2e7295753ace7c30682e8a6
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2024-12-25T14:02:45.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 : CZ4rrVbYdnxzbqB52cKuKmbYIfPN5dlwFlOJipGd12qpqWhV7rqw+WMJ4h9Nv4HJXTIB9CDBVe4P1PLLoBBMdMjvNuFguVXpczyQLolcGhG9VtFX3P2eQN7xKTNVeqetj03qtSMjPv9mzphZ37LYvRTwd3+A0XtgJEkICb0kzY7+PkURsaYSdZwHnWmrS9TpZ5Xyj9SDicIpbX65CEegVOLnS20IYsidOR4dwSp/d3gRlIJiO+iVVtTnQT5mXJxGVmIMWJvQWnxY7RpDlnttnxlCGFUVqqobFS+OioSvviY6d0B7V4Jd75H0l8hhJAQkkjqU/8cV1K69Z+dU9igaWg==
# -*- coding: utf-8 -*-
from setuphelpers import *
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
app_dir = "/Applications/Spotify.app"
def install():
if isdir("/Applications/SpotifyInstaller"):
remove_tree("/Applications/SpotifyInstaller")
install_dmg("Spotify.dmg")
def uninstall():
# Uninstalling the software
if isdir(app_dir):
remove_tree(app_dir)
# -*- coding: utf-8 -*-
from setuphelpers import *
def update_package():
# Declaring local variables
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
url_dl = "http://download.spotify.com/Spotify.dmg"
latest_bin = url_dl.split("/")[-1]
print("Download url is: %s" % url_dl)
# Downloading latest binaries
if isfile(latest_bin):
remove_file(latest_bin)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(url_dl, latest_bin, proxies=proxies)
mount_dmg(latest_bin)
version = get_plist_obj("/Volumes/Spotify/Spotify.app/Contents/Info.plist")['CFBundleVersion']
unmount_dmg("/Volumes/Spotify")
# Getting version from binary and renaming binary
# version = get_product_props(latest_bin)["FileVersion"]
# 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)))
result = True
else:
print("Software version up-to-date (%s)" % Version(version))
control.version = "%s-%s" % (Version(version), control.version.split("-", 1)[-1])
# control.set_software_version(version)
control.save_control_to_wapt()
# Validating update-package-sources
return result
35aa02ac4afa96b6e26d23fbcccca6b1014001d7b48f15728851debaff70665a : Spotify.dmg
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
ddd4df34a6bb13f2d5e83698ecad5ecb633df0aff54f4b76c1fd27d015cf0567 : WAPT/control
ae600e0d4b046ee3db8d5e373a749f75516a4e39f2e7295753ace7c30682e8a6 : WAPT/icon.png
3cebdb949aede27b3aebff148c9990f598136c8e89c10b55084a5673422302e9 : luti.json
43b631e0ee180af1643a0f22e876e6ea3d308568a7bb9f00cb005eadbc935438 : setup.py
8c5ce57776d089b350dd9d31ef765c0a0c1e93527023f055df1d26be86d182be : update_package.py