forked from zim-desktop-wiki/zim-desktop-wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·344 lines (273 loc) · 8.94 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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
#!/usr/bin/env python3
import os
import sys
import shutil
import subprocess
import glob
# Check if we run the correct python version
REQUIRED_MINIMUM_PYTHON_VERSION = (3, 6)
USED_PYTHON_VERSION = sys.version_info
if USED_PYTHON_VERSION < REQUIRED_MINIMUM_PYTHON_VERSION:
error_message = 'zim needs python >= {major}.{minor}'.format(
major=REQUIRED_MINIMUM_PYTHON_VERSION[0],
minor=REQUIRED_MINIMUM_PYTHON_VERSION[1],
)
sys.stderr.write(error_message)
sys.exit(1)
try:
import py2exe
except ImportError:
py2exe = None
from setuptools import setup, Command
from setuptools.command.sdist import sdist as sdist_class
from setuptools.command.build import build as build_class
from setuptools.command.install import install as install_class
from zim import __version__, __url__
import msgfmt # also distributed with zim
import makeman # helper script
# Some constants
PO_FOLDER = 'translations'
LOCALE_FOLDER = 'locale'
# Helper routines
# Function copied from `distutils.dep_util` to avoid complicated import when switching to setuptools
def newer(source, target):
"""Return true if 'source' exists and is more recently modified than
'target', or if 'source' exists and 'target' doesn't. Return false if
both exist and 'target' is the same age or younger than 'source'.
Raise DistutilsFileError if 'source' does not exist.
"""
if not os.path.exists(source):
raise DistutilsFileError("file '%s' does not exist" % os.path.abspath(source))
if not os.path.exists(target):
return 1
from stat import ST_MTIME
mtime1 = os.stat(source)[ST_MTIME]
mtime2 = os.stat(target)[ST_MTIME]
return mtime1 > mtime2
def find_scripts_in_build_dir():
scripts = glob.glob('./build/scripts-*/*.py')
assert len(scripts) > 0
return scripts
def collect_packages():
# Search for python packages below zim/
packages = []
for dir, dirs, files in os.walk('zim'):
if '__init__.py' in files:
package = '.'.join(dir.split(os.sep))
packages.append(package)
#~ print('Pakages: ', packages)
return packages
def get_mopath(pofile):
# Function to determine right locale path for a .po file
lang = os.path.basename(pofile)[:-3] # len('.po') == 3
modir = os.path.join(LOCALE_FOLDER, lang, 'LC_MESSAGES')
mofile = os.path.join(modir, 'zim.mo')
return modir, mofile
def include_file(file):
# Check to exclude hidden and temp files
if file.startswith('.'):
return False
else:
for ext in ('~', '.bak', '.swp', '.pyc'):
if file.endswith(ext):
return False
return True
def collect_data_files():
# Search for data files to be installed in share/
data_files = [
('share/man/man1', ['man/zim.1']),
('share/applications', ['xdg/org.zim_wiki.Zim.desktop']),
('share/mime/packages', ['xdg/org.zim_wiki.Zim.xml']),
('share/metainfo', ['xdg/org.zim_wiki.Zim.appdata.xml']),
]
# xdg/hicolor -> PREFIX/share/icons/hicolor
for dir, dirs, files in os.walk('xdg/hicolor'):
if files:
target = os.path.join('share', 'icons', dir[4:])
files = [os.path.join(dir, f) for f in files]
data_files.append((target, files))
# mono icons -> PREFIX/share/icons/ubuntu-mono-light | -dark
for theme in ('ubuntu-mono-light', 'ubuntu-mono-dark'):
file = os.path.join('icons', theme, 'zim-panel.svg')
target = os.path.join('share', 'icons', theme, 'apps', '22')
data_files.append((target, [file]))
# data -> PREFIX/share/zim
for dir, dirs, files in os.walk('data'):
if '.zim' in dirs:
dirs.remove('.zim')
target = os.path.join('share', 'zim', dir[5:])
if files:
files = list(filter(include_file, files))
files = [os.path.join(dir, f) for f in files]
data_files.append((target, files))
# .po files -> PREFIX/share/locale/..
for pofile in [f for f in os.listdir(PO_FOLDER) if f.endswith('.po')]:
pofile = os.path.join(PO_FOLDER, pofile)
modir, mofile = get_mopath(pofile)
target = os.path.join('share', modir)
data_files.append((target, [mofile]))
#~ import pprint
#~ print('Data files: ')
#~ pprint.pprint(data_files)
return data_files
def fix_dist():
# Generate man page
makeman.make()
# Add the changelog to the manual
# print('copying CHANGELOG.txt -> data/manual/Changelog.txt')
# shutil.copy('CHANGELOG.txt', 'data/manual/Changelog.txt')
# Copy the zim icons a couple of times
# Paths for mimeicons taken from xdg-icon-resource
# xdg-icon-resource installs:
# /usr/local/share/icons/hicolor/.../mimetypes/application-x-zim-notebook.png
# /usr/local/share/icons/hicolor/.../apps/org.zim_wiki.Zim.png
if os.path.exists('xdg/hicolor'):
shutil.rmtree('xdg/hicolor')
os.makedirs('xdg/hicolor/scalable/apps')
os.makedirs('xdg/hicolor/scalable/mimetypes')
for name in (
'apps/org.zim_wiki.Zim.svg',
'mimetypes/application-x-zim-notebook.svg'
):
shutil.copy('icons/zim48.svg', 'xdg/hicolor/scalable/' + name)
for size in ('16', '22', '24', '32', '48'):
dir = size + 'x' + size
os.makedirs('xdg/hicolor/%s/apps' % dir)
os.makedirs('xdg/hicolor/%s/mimetypes' % dir)
for name in (
'apps/org.zim_wiki.Zim.png',
'mimetypes/application-x-zim-notebook.png'
):
shutil.copy('icons/zim%s.png' % size, 'xdg/hicolor/' + dir + '/' + name)
# Overloaded commands
class zim_sdist_class(sdist_class):
# Command to build source distribution
# make sure _version.py gets build and included
def initialize_options(self):
sdist_class.initialize_options(self)
self.force_manifest = 1 # always re-generate MANIFEST
def run(self):
fix_dist()
sdist_class.run(self)
class zim_build_trans_class(Command):
# Compile mo files
description = 'Build translation files'
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
for pofile in [f for f in os.listdir(PO_FOLDER) if f.endswith('.po')]:
pofile = os.path.join(PO_FOLDER, pofile)
modir, mofile = get_mopath(pofile)
if not os.path.isdir(modir):
os.makedirs(modir)
if not os.path.isfile(mofile) or newer(pofile, mofile):
print('compiling %s' % mofile)
msgfmt.MESSAGES.clear() # prevent "spill over" between translations - see github #664
msgfmt.make(pofile, mofile)
else:
#~ print('skipping %s - up to date' % mofile)
pass
class zim_build_class(build_class):
# Generate _version.py etc. and call build_trans as a subcommand
# And put list of default plugins in zim/plugins/__init__.py
sub_commands = build_class.sub_commands + [('build_trans', None)]
def run(self):
fix_dist()
build_class.run(self)
# Adjust bin/zim.py -> bin/zim
if os.name == 'posix' and not self.dry_run:
for script in find_scripts_in_build_dir():
if script.endswith('.py'):
print('renaming %s to %s' % (script, script[:-3]))
os.rename(script, script[:-3]) # len('.py') == 3
## Set default plugins
plugins = []
for name in os.listdir('./zim/plugins'):
if name.startswith('_') or name == 'base':
continue
elif '.' in name:
if name.endswith('.py'):
name, x = name.rsplit('.', 1)
plugins.append(name)
else:
continue
else:
plugins.append(name)
assert len(plugins) > 20, 'Did not find plugins'
file = os.path.join(self.build_lib, 'zim', 'plugins', '__init__.py')
print('Setting plugin list in %s' % file)
assert os.path.isfile(file)
fh = open(file)
lines = fh.readlines()
fh.read()
for i, line in enumerate(lines):
if line.startswith('\t\tplugins = set('):
lines[i] = '\t\tplugins = set(%r) # DEFAULT PLUGINS COMPILED IN BY SETUP.PY\n' % sorted(plugins)
break
else:
assert False, 'Missed line for plugin list'
fh = open(file, 'w')
fh.writelines(lines)
fh.close()
class zim_install_class(install_class):
def run(self):
install_class.run(self)
mimedir = os.path.join(self.install_data, 'share', 'mime')
print(
'To register zim with the desktop environment, please run\n'
'the following two commands:\n'
'* update-desktop-database\n'
'* update-mime-database %s\n' % mimedir
)
# Distutils parameters, and main function
scripts = ['zim.py']
if py2exe:
py2exeoptions = {
'windows': [{
'script': 'zim.py',
'icon_resources': [(1, 'icons/zim.ico')]
# Windows 16x16, 32x32, and 48x48 icon based on PNG
}],
'zipfile': None,
'options': {
'py2exe': {
'compressed': 1,
'optimize': 2,
'ascii': 1,
'bundle_files': 3,
'packages': ['encodings', 'cairo', 'atk', 'pangocairo', 'zim'],
'dll_excludes': {
'DNSAPI.DLL'
},
'excludes': ['Tkconstants', 'Tkinter', 'tcl']
}
}
}
else:
py2exeoptions = {}
if __name__ == '__main__':
setup(
# wire overload commands
cmdclass = {
'sdist': zim_sdist_class,
'build': zim_build_class,
'build_trans': zim_build_trans_class,
'install': zim_install_class,
},
# provide package properties
name = 'zim',
version = __version__,
description = 'Zim desktop wiki',
author = 'Jaap Karssenberg',
author_email = '[email protected]',
license = 'GPL v2+',
url = __url__,
scripts = scripts,
packages = collect_packages(),
data_files = collect_data_files(),
requires = ['gi', 'xdg'],
**py2exeoptions
)