Update to 12.9.3.3

GLPI #35484
This commit is contained in:
Daniel Berteaud 2019-02-15 15:56:35 +01:00
parent f9e4efac97
commit 8e7020894a
4 changed files with 8 additions and 5 deletions

View File

@ -1,5 +1,5 @@
package : fws-itunes
version : 12.9.2.6-6
version : 12.9.3.3-2
architecture : all
section : base
priority : optional

BIN
iTunes.msi (Stored with Git LFS)

Binary file not shown.

BIN
iTunes64.msi (Stored with Git LFS)

Binary file not shown.

View File

@ -43,6 +43,9 @@ def update_package():
control = pe.load_control_from_wapt('.')
if Version(version) > Version(control['version'].split('-',1)[0]):
print('New iTunes version %s' % version)
for file in ['iTunes.msi', 'iTunes64.msi']:
if isfile(file):
remove_file(file)
os.rename(makepath('temp','32','iTunes.msi'),'iTunes.msi')
os.rename(makepath('temp','64','iTunes64.msi'),'iTunes64.msi')
pe.version = version + '-0'