Page 1 of 1

Package: tis-pidgin

Published: April 23, 2015 - 11:25 AM
by ssamson
Picture tis-pidgin
Description:
Instant messaging

Re: Package: tis-pidgin

Published: January 19, 2017 - 8:12 PM
by f4242
Good morning,

I noticed that the tis-pidgin package was out of date. I updated it and took the opportunity to improve it. Here it is; feel free to use it on the public repository.

Code: Select all

from setuphelpers import *

version = '2.11.0'
installer = 'pidgin-%s-offline.exe' % version

uninstallkey = ['Pidgin']

def install():
    print('installing pidgin')
    install_exe_if_needed(installer, silentflags='/S', key='Pidgin', min_version=version, killbefore='pidgin.exe')

def update_package():
    if not isfile(installer):
        print('downloading pidgin')
        wget('http://sourceforge.net/projects/pidgin/files/Pidgin/' + version + '/' + installer + '/download', installer)

if __name__ == '__main__':
    update_package()
Good day!

Re: Package: tis-pidgin

Published: January 23, 2017 - 3:22 PM
by sfonteneau
Good morning

Thank you, it has been updated! ;)

For your information:

Code: Select all

uninstallkey = ['Pidgin']
is not necessary since it is learned in the install_exe_if_needed function

https://github.com/tranquilit/WAPT/blob ... s.py#L3685

Simon