File: uninstall.py

package info (click to toggle)
persepolis 3.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,840 kB
  • sloc: python: 26,196; sh: 4; makefile: 3
file content (79 lines) | stat: -rw-r--r-- 2,492 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env python3
# coding: utf-8
#    This program is free software: you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation, either version 3 of the License, or
#    (at your option) any later version.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
#





import platform
import glob
import os
import shutil
import sys

os_type = platform.system()

if os_type == 'Linux':
    path_list = ['/usr/share/man/man1/persepolis.1.gz',
    '/usr/share/pixmaps/persepolis.svg',
    '/usr/share/pixmaps/persepolis-tray.svg',
    '/usr/share/applications/persepolis.desktop',
    '/usr/bin/persepolis']

    #finding persepolis directories in /usr/lib/python3.6/site-packages/
    pattern = os.path.join('/usr/lib/python3.6/site-packages/', 'persepolis*')
    for folder in  glob.glob(pattern):
        path_list.append(folder)

elif os_type == 'FreeBSD' or os_type == 'OpenBSD':
    path_list = ['/usr/local/share/man/man1/persepolis.1.gz',
    '/usr/local/share/pixmaps/persepolis.svg',
    '/usr/local/share/pixmaps/persepolis-tray.svg',
    '/usr/local/share/applications/persepolis.desktop',
    '/usr/local/bin/persepolis']

    #finding persepolis directories in /usr/lib/python3.6/site-packages/
    pattern = os.path.join('/usr/local/lib/python3.6/site-packages/', 'persepolis*')
    for folder in  glob.glob(pattern):
        path_list.append(folder)


    #finding persepolis directories in /usr/lib/python3.6/site-packages/
    pattern = os.path.join('/usr/local/lib/python3.5/site-packages/', 'persepolis*')
    for folder in  glob.glob(pattern):
        path_list.append(folder)

else:
    print('This script is for Linux and BSD')
    sys.exit(1)

uid = os.getuid()
if uid != 0:
    print('run this script as root.')
    sys.exit(1)


for path in path_list:
    if os.path.exists(path):
        if os.path.isfile(path): # if path is for file 
            os.remove(path) # removing file
        else:
            shutil.rmtree(path)  # removing folder
        print(str(path) + ' is removed!')

print('uninstallation is complete!')