Update to 5.0.15

And fix upgrades
This commit is contained in:
Daniel Berteaud 2023-05-02 12:22:40 +02:00
parent 596001aa08
commit 0e0d31f419
4 changed files with 14 additions and 9 deletions

BIN
Linphone-5.0.14-win64.exe (Stored with Git LFS)

Binary file not shown.

BIN
Linphone-5.0.15-win64.exe (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,5 +1,5 @@
package : eht-linphone
version : 5.0.14-2
version : 5.0.15-3
architecture : x64
section : base
priority : optional
@ -29,7 +29,7 @@ editor :
keywords : messaging,voip
licence : GNU GPL
homepage : https://linphone.com/
package_uuid : f3a98ab7-7eca-44af-9940-2ad6964b2203
package_uuid : 226dab29-dab3-4742-a2f6-10a04017fb51
valid_from :
valid_until :
forced_install_on :
@ -39,6 +39,6 @@ max_os_version :
icon_sha256sum : 235cc84c6c1646975c8a349fd5ac2371ebb806633c2186b148aea9b1db0b29ad
signer : dbd
signer_fingerprint: e9156ec73f1ea6b50f33e0d9f580e8ae56db147100894bb5d2d4648a46f07ed1
signature : P3ybpRIK2WX4BiE/ucSzzx1+d5AsRObNCIZaDgP2w0PgkGD6kRF6jiXLBfQz7N3mR43luYHpq49BF6qY6u59dLoUdc3kuBLrLYBBMVe+ZCRvjVClEGtSQkoikzYdLzjwJDVXb7szlvsWa1K7zmpZL/U7W1Eky+oCPw0V9W5Af3d+L1g229mk9cxx+MIqkPA4ZtV94HQQm5sljbtEyUhVAorkCz4HJN9T+Q6Hm9s0s7nYoqZqdWgAWij3A8pLDoAxZaIL8wIfhy5q9qUx2hwvVBo3GZi4P1A3R8rYVctZ6lPQlcFzI+kAR6Ecis0IoiQ2/B/9ROw5BdyjGhTsvk81IQ==
signature_date : 2023-03-29T17:39:10.589565
signature : LUQKU0OsvYAwU7sJLAN2osDLsyN6w3OGrDUYcPHPb54LNNfQ4paP5UyqMHblJD+2zj9PjYOxbE8VKmfVfDiAeQTNtW6hBL3BUUZTDvow6VIisuYt/RHird7GJbAc7aVML3nQmul3kORF/AcK8l6Y+I4M3GAU/WUrxShirVc+Zoh4bqj/oXAqHzkky3dvby+O++Q+evxzU4hAixdhTMUczyaSA9JkTGHs9ivFDgODE6yY8hJ/s2m/Rbi8kq0g6SZxD5YjRwN2d2zTGsDqS6aKyVcVdb6I9qIadtTxsUty4c9dFAVd4XKTOB/HCjjrmrxBBqUzkSYvcDwweKPtalZlMA==
signature_date : 2023-05-02T12:21:23.005713
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

View File

@ -9,8 +9,13 @@ def install():
version = control['version'].split('-',1)[0]
parameters = '/S'
install_exe_if_needed('Linphone-%s-win64.exe' % version, parameters, key='Linphone', min_version=version)
install_exe_if_needed(
'Linphone-%s-win64.exe' % version,
parameters,
key='Linphone',
min_version=version,
remove_old_version=True
)
def update_package():