-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
260 lines (215 loc) · 9.71 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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
#!/usr/bin/python3
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
# MenuLibre - Advanced fd.o Compliant Menu Editor
# Copyright (C) 2012-2024 Sean Davis <sean@bluesabre.org>
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 3, as published
# by the Free Software Foundation.
#
# 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 subprocess
import sys
try:
import DistUtilsExtra.auto
except ImportError:
sys.stderr.write("To build menulibre 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, 'menulibre_lib', 'menulibreconfig.py')
oldvalues = {}
try:
fin = open(filename, 'r', encoding='utf-8')
fout = open(filename + '.new', 'w', encoding='utf-8')
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, prefix):
"""Move the icon files to their installation prefix."""
icon_file = None
old_icon_path = os.path.normpath(
os.path.join(root, target_data, 'share', 'menulibre', 'media'))
for icon_size in ['16x16', '24x24', '32x32', '48x48', '64x64', 'scalable',
'pixmap']:
# Install menulibre.png to share/pixmaps
if icon_size == 'pixmap':
old_icon_file = os.path.join(old_icon_path, 'menulibre.png')
icon_path = os.path.normpath(
os.path.join(root, target_data, 'share', 'pixmaps'))
icon_file = os.path.join(icon_path, 'menulibre.png')
# Install everything else to share/icons/hicolor
else:
if icon_size == 'scalable':
old_icon_file = os.path.join(old_icon_path, 'menulibre.svg')
else:
old_icon_file = os.path.join(old_icon_path,
'menulibre_%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, 'menulibre.svg')
# Get the real paths.
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 remove_appdata_in_file(root, target_data):
metainfo = os.path.normpath(
os.path.join(root, target_data, 'share', 'menulibre', 'metainfo'))
appdata_in = os.path.join(metainfo, 'menulibre.appdata.xml.in')
os.remove(appdata_in)
os.rmdir(metainfo)
def remove_empty_data_directory(root, target_data):
"""Remove to no-longer-needed data directory."""
old_data_path = os.path.normpath(
os.path.join(root, target_data, 'share', 'menulibre'))
# Media is now empty
if len(os.listdir(old_data_path)) == 0:
print(("Removing empty directory: %s" % old_data_path))
os.rmdir(old_data_path)
def get_desktop_file(root, target_data, prefix):
"""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, 'menulibre.desktop')
return desktop_file
def update_desktop_file(filename, script_path):
"""Update the desktop file with prefixed paths."""
try:
fin = open(filename, 'r', encoding='utf-8')
fout = open(filename + '.new', 'w', encoding='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, 'menulibre')
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 generate_changelog():
try:
script_path = os.path.dirname(os.path.abspath(__file__))
git_path = os.path.join(script_path, ".git")
if os.path.exists(git_path):
cmd = ['git', 'log', '--pretty=format:"%ad %h %s"',
'--no-merges', '--date=short']
data = subprocess.check_output(cmd).decode("UTF-8")
commits = data.split("\n")
if len(commits) > 0:
changelog_path = os.path.join(script_path, "ChangeLog")
with open(changelog_path, "w") as outfile:
for line in commits:
outfile.write("%s\n" % line[1:-1])
except BaseException:
pass
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/menulibre.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)
generate_changelog()
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', 'menulibre',
'')
target_scripts = os.path.join(self.install_scripts, '')
data_dir = os.path.join(self.prefix, 'share', 'menulibre', '')
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', 'menulibre',
'')
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(("MenuLibre Data Directory: %s" % data_dir))
values = {'__menulibre_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, self.prefix)
print(("Desktop File: %s\n" % desktop_file))
move_icon_file(self.root, target_data, self.prefix)
remove_appdata_in_file(self.root, target_data)
update_desktop_file(desktop_file, script_path)
remove_empty_data_directory(self.root, target_data)
DistUtilsExtra.auto.setup(
name='menulibre',
version='2.4.0',
license='GPL-3',
author='Sean Davis',
author_email='sean@bluesabre.org',
description='advanced menu editor with support for Unity actions',
long_description='An advanced menu editor that provides modern features '
'and full Unity action support. Suitable for lightweight '
'desktop environments.',
url='https://github.com/bluesabre/menulibre',
data_files=[('share/man/man1', ['menulibre.1',
'menulibre-menu-validate.1']),
('share/metainfo/', ['data/metainfo/menulibre.appdata.xml'])],
cmdclass={'install': InstallAndUpdateDataDirectory}
)