-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
203 lines (167 loc) · 7.62 KB
/
setup.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
#!/usr/bin/python3
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
# Mugshot - Lightweight user configuration utility
# Copyright (C) 2013-2020 Sean Davis <[email protected]>
#
# 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 warranties of
# MERCHANTABILITY, SATISFACTORY QUALITY, 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 os
import sys
import subprocess
try:
import DistUtilsExtra.auto
except ImportError:
sys.stderr.write("To build mugshot you need "
"https://launchpad.net/python-distutils-extra\n")
sys.exit(1)
assert DistUtilsExtra.auto.__version__ >= '2.18', \
'needs DistUtilsExtra.auto >= 2.18'
def update_config(libdir, values={}):
"""Update the configuration file at installation time."""
filename = os.path.join(libdir, 'mugshot_lib', 'mugshotconfig.py')
oldvalues = {}
try:
fin = open(filename, 'r')
fout = open(filename + '.new', 'w')
for line in fin:
fields = line.split(' = ') # Separate variable from value
if fields[0] in values:
oldvalues[fields[0]] = fields[1].strip()
line = "%s = %s\n" % (fields[0], values[fields[0]])
fout.write(line)
fout.flush()
fout.close()
fin.close()
os.rename(fout.name, fin.name)
except (OSError, IOError):
print(("ERROR: Can't find %s" % filename))
sys.exit(1)
return oldvalues
def move_icon_file(root, target_data):
"""Move the icon files to their installation prefix."""
old_icon_path = os.path.normpath(os.path.join(root, target_data, 'share',
'mugshot', 'media'))
for icon_size in ['16x16', '22x22', '24x24', '48x48', '64x64', 'scalable']:
if icon_size == 'scalable':
old_icon_file = os.path.join(old_icon_path, 'mugshot.svg')
else:
old_icon_file = os.path.join(old_icon_path,
'mugshot_%s.svg' %
icon_size.split('x')[0])
icon_path = os.path.normpath(os.path.join(root, target_data, 'share',
'icons', 'hicolor', icon_size, 'apps'))
icon_file = os.path.join(icon_path, 'mugshot.svg')
old_icon_file = os.path.realpath(old_icon_file)
icon_file = os.path.realpath(icon_file)
if not os.path.exists(old_icon_file):
print(("ERROR: Can't find", old_icon_file))
sys.exit(1)
if not os.path.exists(icon_path):
os.makedirs(icon_path)
if old_icon_file != icon_file:
print(("Moving icon file: %s -> %s" % (old_icon_file, icon_file)))
os.rename(old_icon_file, icon_file)
# Media is now empty
if len(os.listdir(old_icon_path)) == 0:
print(("Removing empty directory: %s" % old_icon_path))
os.rmdir(old_icon_path)
return icon_file
def get_desktop_file(root, target_data):
"""Move the desktop file to its installation prefix."""
desktop_path = os.path.realpath(os.path.join(root, target_data, 'share',
'applications'))
desktop_file = os.path.join(desktop_path, 'org.bluesabre.Mugshot.desktop')
return desktop_file
def update_desktop_file(filename, script_path):
"""Update the desktop file with prefixed paths."""
try:
fin = open(filename, 'r', -1, 'utf-8')
fout = open(filename + '.new', 'w', -1, 'utf-8')
for line in fin:
if 'Exec=' in line:
cmd = line.split("=")[1].split(None, 1)
line = "Exec=%s" % os.path.join(script_path, 'mugshot')
if len(cmd) > 1:
line += " %s" % cmd[1].strip() # Add script arguments back
line += "\n"
fout.write(line)
fout.flush()
fout.close()
fin.close()
os.rename(fout.name, fin.name)
except (OSError, IOError):
print(("ERROR: Can't find %s" % filename))
sys.exit(1)
def write_appdata_file(filename_in):
filename_out = filename_in.rstrip('.in')
cmd = ["intltool-merge", "-x", "-d", "po", filename_in, filename_out]
print(" ".join(cmd))
subprocess.call(cmd, shell=False)
# Update AppData with latest translations first.
write_appdata_file("data/metainfo/mugshot.appdata.xml.in")
class InstallAndUpdateDataDirectory(DistUtilsExtra.auto.install_auto):
"""Command Class to install and update the directory."""
def run(self):
"""Run the setup commands."""
DistUtilsExtra.auto.install_auto.run(self)
print(("=== Installing %s, version %s ===" %
(self.distribution.get_name(), self.distribution.get_version())))
if not self.prefix:
self.prefix = ''
if self.root:
target_data = os.path.relpath(self.install_data, self.root) + \
os.sep
target_pkgdata = os.path.join(target_data, 'share', 'mugshot', '')
target_scripts = os.path.join(self.install_scripts, '')
data_dir = os.path.join(self.prefix, 'share', 'mugshot', '')
script_path = os.path.join(self.prefix, 'bin')
else:
# --user install
self.root = ''
target_data = os.path.relpath(self.install_data) + os.sep
target_pkgdata = os.path.join(target_data, 'share', 'mugshot', '')
target_scripts = os.path.join(self.install_scripts, '')
# Use absolute paths
target_data = os.path.realpath(target_data)
target_pkgdata = os.path.realpath(target_pkgdata)
target_scripts = os.path.realpath(target_scripts)
data_dir = target_pkgdata
script_path = target_scripts
print(("Root: %s" % self.root))
print(("Prefix: %s\n" % self.prefix))
print(("Target Data: %s" % target_data))
print(("Target PkgData: %s" % target_pkgdata))
print(("Target Scripts: %s\n" % target_scripts))
print(("Mugshot Data Directory: %s" % data_dir))
values = {'__mugshot_data_directory__': "'%s'" % (data_dir),
'__version__': "'%s'" % self.distribution.get_version()}
update_config(self.install_lib, values)
desktop_file = get_desktop_file(self.root, target_data)
print(("Desktop File: %s\n" % desktop_file))
move_icon_file(self.root, target_data)
update_desktop_file(desktop_file, script_path)
DistUtilsExtra.auto.setup(
name='mugshot',
version='0.4.3',
license='GPL-3+',
author='Sean Davis',
author_email='[email protected]',
description='lightweight user configuration utility',
long_description='A lightweight user configuration utility. It allows you '
'to easily set profile image and user details for your '
'user profile and any supported applications.',
url='https://github.com/bluesabre/mugshot',
data_files=[('share/man/man1', ['mugshot.1']),
('share/metainfo/', ['data/metainfo/mugshot.appdata.xml'])],
cmdclass={'install': InstallAndUpdateDataDirectory}
)