From 0e0d31f419c1eaf8b836a59983a421891dd68056 Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Tue, 2 May 2023 12:22:40 +0200 Subject: [PATCH] Update to 5.0.15 And fix upgrades --- Linphone-5.0.14-win64.exe | 3 --- Linphone-5.0.15-win64.exe | 3 +++ WAPT/control | 8 ++++---- setup.py | 9 +++++++-- 4 files changed, 14 insertions(+), 9 deletions(-) delete mode 100644 Linphone-5.0.14-win64.exe create mode 100644 Linphone-5.0.15-win64.exe diff --git a/Linphone-5.0.14-win64.exe b/Linphone-5.0.14-win64.exe deleted file mode 100644 index ccd1140..0000000 --- a/Linphone-5.0.14-win64.exe +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dba2aebe58ebae031816117510db01c1a24c4764d04e7e51ba60bfc82b78e364 -size 69979216 diff --git a/Linphone-5.0.15-win64.exe b/Linphone-5.0.15-win64.exe new file mode 100644 index 0000000..c06c990 --- /dev/null +++ b/Linphone-5.0.15-win64.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9676cbff0fa29aa2176e157c91673e02786a079f546ae78042262e667d270d2f +size 70016208 diff --git a/WAPT/control b/WAPT/control index 7540ef5..f09bd23 100644 --- a/WAPT/control +++ b/WAPT/control @@ -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 \ No newline at end of file diff --git a/setup.py b/setup.py index cceab98..0e1fae9 100644 --- a/setup.py +++ b/setup.py @@ -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():