Update to 7.3

GLPI #35484
This commit is contained in:
Daniel Berteaud 2019-02-15 15:55:39 +01:00
parent 0638cc3859
commit 23d783eb09
4 changed files with 8 additions and 5 deletions

BIN
AppleApplicationSupport.msi (Stored with Git LFS)

Binary file not shown.

BIN
AppleApplicationSupport64.msi (Stored with Git LFS)

Binary file not shown.

View File

@ -1,5 +1,5 @@
package : fws-apple-application-support
version : 7.2-3
version : 7.3-2
architecture : all
section : base
priority : optional

View File

@ -25,6 +25,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 ['AppleApplicationSupport.msi', 'AppleApplicationSupport64.msi' ]:
if isfile(file):
remove_file(file)
os.rename(makepath('temp','32','AppleApplicationSupport.msi'),'AppleApplicationSupport.msi')
os.rename(makepath('temp','64','AppleApplicationSupport64.msi'),'AppleApplicationSupport64.msi')
pe.version = version + '-0'