-
Notifications
You must be signed in to change notification settings - Fork 655
/
uninstall.py
executable file
·92 lines (72 loc) · 3.4 KB
/
uninstall.py
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
80
81
82
83
84
85
86
87
88
89
90
91
92
#!/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/com.github.persepolisdm.persepolis.svg',
'/usr/share/pixmaps/persepolis-tray.svg',
'/usr/share/applications/com.github.persepolisdm.persepolis.desktop',
'/usr/share/metainfo/com.github.persepolisdm.persepolis.appdata.xml',
'/usr/bin/persepolis',
'/usr/local/share/man/man1/persepolis.1.gz',
'/usr/local/share/pixmaps/com.github.persepolisdm.persepolis.svg',
'/usr/local/share/pixmaps/persepolis-tray.svg',
'/usr/local/share/applications/com.github.persepolisdm.persepolis.desktop',
'/usr/local/share/metainfo/com.github.persepolisdm.persepolis.appdata.xml',
'/usr/local/bin/persepolis']
elif os_type in ('FreeBSD', 'OpenBSD'):
path_list = ['/usr/local/share/man/man1/persepolis.1.gz',
'/usr/local/share/pixmaps/com.github.persepolisdm.persepolis.svg',
'/usr/local/share/pixmaps/persepolis-tray.svg',
'/usr/local/share/applications/com.github.persepolisdm.persepolis.desktop',
'/usr/local/share/metainfo/com.github.persepolisdm.persepolis.appdata.xml',
'/usr/local/bin/persepolis']
else:
print('This script is for Linux and BSD')
sys.exit(1)
# finding persepolis directories in /usr/lib/python3.6/site-packages/
python_version_list = ['python3.5', 'python3.6', 'python3.7', 'python3.8', 'python3.9', 'python3.10', 'python3.11', 'python3.12', 'python3.13']
for python_version in python_version_list:
# for BSD
if os_type == 'Linux':
pattern = '/usr/lib/' + python_version + '/site-packages/persepolis*'
for folder in glob.glob(pattern):
path_list.append(folder)
pattern2 = '/usr/local/lib/' + python_version + '/site-packages/persepolis*'
for folder in glob.glob(pattern2):
path_list.append(folder)
elif os_type == 'FreeBSD' or os_type == 'OpenBSD':
pattern = '/usr/local/lib/' + python_version + '/site-packages/persepolis*'
for folder in glob.glob(pattern):
path_list.append(folder)
print(path_list)
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!')