tis-1password icon

1Password

Silent install package for 1Password

8.11.8-2

  • package: tis-1password
  • name: 1Password
  • version: 8.11.8-2
  • categories: Security
  • maintainer: WAPT Team,Tranquil IT,Amel FRADJ
  • licence: opensource_free,wapt_private
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 190.54 Mo
  • homepage : https://1password.com/downloads/windows

package           : tis-1password
version           : 8.11.8-2
architecture      : x64
section           : base
priority          : optional
name              : 1Password
categories        : Security
maintainer        : WAPT Team,Tranquil IT,Amel FRADJ
description       : Password manager for Windows
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 2.5
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : Gestionnaire de mots de passe pour Windows
description_pl    : Menedżer haseł dla systemu Windows
description_de    : Passwort-Manager für Windows
description_es    : Gestor de contraseñas para Windows
description_pt    : Gestor de palavras-passe para Windows
description_it    : Gestore di password per Windows
description_nl    : Wachtwoordmanager voor Windows
description_ru    : Менеджер паролей для Windows
audit_schedule    : 
editor            : 
keywords          : 
licence           : opensource_free,wapt_private
homepage          : https://1password.com/downloads/windows
package_uuid      : 693c6817-1580-42d4-aaf7-69e1d093e1bd
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 10.0
max_os_version    : 
icon_sha256sum    : 398df5ca51a569a2f1621473ac25315eff6680ba1910f01da89690cc8f7dd6b5
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-09-01T00:03:04.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         : k6m/E7a9gr5BA2wdPUsqMRCxlKdiiSq+/nLlbMXf4ADD5eHDfSr6uIDDnZklfzsz0rGuf5onuL0psVBf9knBKXKtcMe5SgJA7Lqw1kfPrT6rzVQZSufOIGDEp3IyRv7pb4pz7Sz5l283PRVmCBOidOpdEaBe7QlVM6YDiSFjKV62nMkdW5Tza16LIa5s3LAIAdOZcogjGNysSMIcz90kHl192g9VNsnwsl9L/Y+LEW3NUZbSnJDDr2NJL5DgdmLS3zOjxMjWNaG0o/oAJDEVTKGKRe/A01kV6pBzgGThGA/aAKJI0aIyj3EwaMmKOzQ9e7bb97KLTyl4Sr3rpnyOdg==

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

r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()

"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls


def install():
    
    #Disables autoinstall and autoupdate
    
    properties = {
    "MANAGED_INSTALL": 1,
    "MANAGED_UPDATE": 1
    }
    
    # Installing the software
    install_msi_if_needed(glob.glob("*.msi")[0],properties=properties)

# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob
import msilib
import waptlicences


def update_package():
    # Declaring local variables
    package_updated = False

    proxies = get_proxies_from_wapt_console()
    if not proxies:
        proxies = get_proxies()

    download_url = "https://downloads.1password.com/win/1PasswordSetup-latest.msi"
    latest_bin = download_url.split("/")[-1]

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

    # Check signature bin
    expected_issuer = 'Agilebits'
    sign_name = waptlicences.check_msi_signature(latest_bin)[0]
    if sign_name != expected_issuer:
        error('Bad issuer %s != %s ' % (sign_name,expected_issuer))

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

    version = get_version_from_binary(latest_bin)
    # Mettre à jour le package
    control.set_software_version(version)
    control.save_control_to_wapt()

3bf4ef47b760d65d602d8484bc015e4a4ebcab5541ce4474fa3c2391083a6b42 : 1PasswordSetup-latest.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
3fd68cf04c000befe97d07705db26d94f93e3ca15a60c681da573e212eb10fa0 : WAPT/control
398df5ca51a569a2f1621473ac25315eff6680ba1910f01da89690cc8f7dd6b5 : WAPT/icon.png
2bed3872504578af0da6b1636c057a2d4695e57573005ca3539cb54ec1ffad87 : luti.json
d42cee4522378ed3414d74e2e8ada1253a9a38ecf7198ee5697c769036d2f3eb : setup.py
d12c5b766233758af68d29aee35985af297bc9bd24b30e30d03043e89a99a6f1 : update_package.py