forked from sk1project/sk1-wx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup-sk1.py
333 lines (293 loc) · 10.5 KB
/
setup-sk1.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
#!/usr/bin/env python
#
# Setup script for sK1 2.x
#
# Copyright (C) 2013-2018 by Igor E. Novikov
#
# 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 <https://www.gnu.org/licenses/>.
from __future__ import print_function
"""
Usage:
--------------------------------------------------------------------------
to build package: python setup-sk1.py build
to install package: python setup-sk1.py install
to remove installation: python setup-sk1.py uninstall
--------------------------------------------------------------------------
to create source distribution: python setup-sk1.py sdist
--------------------------------------------------------------------------
to create binary RPM distribution: python setup-sk1.py bdist_rpm
--------------------------------------------------------------------------
to create binary DEB distribution: python setup-sk1.py bdist_deb
--------------------------------------------------------------------------.
Help on available distribution formats: --help-formats
"""
from distutils.core import setup
import datetime
import os
import shutil
import sys
import utils.deb
import utils.rpm
from utils import build
from utils import fsutils
from utils import po
import dependencies
from native_mods import make_modules
sys.path.insert(1, os.path.abspath('./src'))
CURRENT_PATH = os.path.dirname(os.path.abspath(__file__))
from sk1 import appconst
############################################################
# Flags
############################################################
UPDATE_MODULES = False
DEB_PACKAGE = False
RPM_PACKAGE = False
CLEAR_BUILD = False
############################################################
# Package description
############################################################
NAME = appconst.APPNAME
VERSION = appconst.VERSION + appconst.REVISION
DESCRIPTION = 'Vector graphics editor for prepress'
AUTHOR = 'Igor E. Novikov'
AUTHOR_EMAIL = 'sk1.project.org@gmail.com'
MAINTAINER = AUTHOR
MAINTAINER_EMAIL = AUTHOR_EMAIL
LICENSE = 'GPL v3'
URL = 'https://sk1project.net'
DOWNLOAD_URL = URL
CLASSIFIERS = [
'Development Status :: 5 - Stable',
'Environment :: Desktop',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: LGPL v2',
'License :: OSI Approved :: GPL v3',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: C',
"Topic :: Multimedia :: Graphics :: Editors :: Vector-Based",
]
LONG_DESCRIPTION = '''
sK1 is an open source vector graphics editor similar to CorelDRAW,
Adobe Illustrator, or Freehand. First of all sK1 is oriented for prepress
industry, therefore works with CMYK color space and produces CMYK-based PDF
and postscript output.
sK1 Project (https://sk1project.net),
Copyright (C) 2004-%s sK1 Project Team
''' % str(datetime.date.today().year)
LONG_DEB_DESCRIPTION = ''' .
sK1 is an open source vector graphics editor similar to CorelDRAW,
Adobe Illustrator, or Freehand. First of all sK1 is oriented for prepress
industry, therefore works with CMYK color space and produces CMYK-based PDF
and postscript output.
.
sK1 Project (https://sk1project.net),
Copyright (C) 2004-%s sK1 Project Team
.
''' % str(datetime.date.today().year)
############################################################
# Build data
############################################################
install_path = '/usr/lib/%s-wx-%s' % (NAME, VERSION)
os.environ["APP_INSTALL_PATH"] = "%s" % (install_path,)
src_path = 'src'
include_path = '/usr/include'
modules = []
scripts = ['src/script/sk1', ]
deb_scripts = []
data_files = [
('/usr/share/applications', ['src/sk1.desktop', ]),
('/usr/share/pixmaps', ['src/sk1.png', 'src/sk1.xpm', ]),
('/usr/share/icons/hicolor/scalable/apps', ['src/sk1.svg', ]),
(install_path, ['LICENSE', ]),
]
EXCLUDES = ['sword', ]
############################################################
deb_depends = ''
rpm_depends = ''
############################################################
dirs = fsutils.get_dirs_tree('src/sk1/share')
share_dirs = []
for item in dirs:
share_dirs.append(os.path.join(item[8:], '*.*'))
package_data = {
'sk1': share_dirs,
}
############################################################
# Main build procedure
############################################################
if len(sys.argv) == 1:
print('Please specify build options!')
print(__doc__)
sys.exit(0)
if len(sys.argv) > 1:
if sys.argv[1] == 'bdist_rpm':
CLEAR_BUILD = True
RPM_PACKAGE = True
sys.argv[1] = 'sdist'
rpm_depends = dependencies.get_sk1_rpm_depend()
elif sys.argv[1] == 'build_update':
UPDATE_MODULES = True
CLEAR_BUILD = True
sys.argv[1] = 'build'
elif sys.argv[1] == 'bdist_deb':
DEB_PACKAGE = True
CLEAR_BUILD = True
sys.argv[1] = 'build'
deb_depends = dependencies.get_sk1_deb_depend()
elif sys.argv[1] == 'uninstall':
if os.path.isdir(install_path):
# removing sk1 folder
print('REMOVE: ' + install_path)
os.system('rm -rf ' + install_path)
# removing scripts
for item in scripts:
filename = os.path.basename(item)
print('REMOVE: /usr/bin/' + filename)
os.system('rm -rf /usr/bin/' + filename)
# removing data files
for item in data_files:
location = item[0]
file_list = item[1]
for file_item in file_list:
filename = os.path.basename(file_item)
filepath = os.path.join(location, filename)
if not os.path.isfile(filepath):
continue
print('REMOVE: ' + filepath)
os.system('rm -rf ' + filepath)
print('Desktop database update: ', end=' ')
os.system('update-desktop-database')
print('DONE!')
else:
print('sK1 installation is not found!')
sys.exit(0)
elif sys.argv[1] == 'update_pot':
paths = ['src/sk1', 'src/uc2']
po.build_pot(paths, 'po-sk1/sk1.pot', False)
sys.exit(0)
elif sys.argv[1] == 'build_locales':
src_path = 'po-sk1'
dest_path = 'src/sk1/share/locales'
po.build_locales(src_path, dest_path, 'sk1')
sys.exit(0)
# Preparing start script
src_script = 'src/script/sk1.tmpl'
dst_script = 'src/script/sk1'
fileptr = open(src_script, 'rb')
fileptr2 = open(dst_script, 'wb')
while True:
line = fileptr.readline()
if line == '':
break
if '$APP_INSTALL_PATH' in line:
line = line.replace('$APP_INSTALL_PATH', install_path)
fileptr2.write(line)
fileptr.close()
fileptr2.close()
# Preparing MANIFEST.in and setup.cfg
############################################################
shutil.copy2('MANIFEST.in_sk1', 'MANIFEST.in')
fileptr = open('setup.cfg_sk1', 'rb')
fileptr2 = open('setup.cfg', 'wb')
content = fileptr.read()
if rpm_depends:
content += '\nrequires = ' + rpm_depends
fileptr2.write(content)
fileptr.close()
fileptr2.close()
############################################################
# Native extensions
############################################################
modules += make_modules(src_path, include_path)
############################################################
# Setup routine
############################################################
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
license=LICENSE,
url=URL,
download_url=DOWNLOAD_URL,
long_description=LONG_DESCRIPTION,
classifiers=CLASSIFIERS,
packages=build.get_source_structure(excludes=EXCLUDES),
package_dir=build.get_package_dirs(excludes=EXCLUDES),
package_data=package_data,
data_files=data_files,
scripts=scripts,
ext_modules=modules)
############################################################
# .py source compiling
############################################################
if not UPDATE_MODULES:
build.compile_sources()
############################################################
# This section for developing purpose only
# Command 'python setup.py build_update' allows
# automating build and copying of native extensions
# into package directory
############################################################
if UPDATE_MODULES:
build.copy_modules(modules)
############################################################
# Implementation of bdist_deb command
############################################################
if DEB_PACKAGE:
utils.deb.DebBuilder(
name=NAME,
version=VERSION,
maintainer='%s <%s>' % (AUTHOR, AUTHOR_EMAIL),
depends=deb_depends,
homepage=URL,
description=DESCRIPTION,
long_description=LONG_DEB_DESCRIPTION,
section='graphics',
package_dirs=build.get_package_dirs(excludes=EXCLUDES),
package_data=package_data,
scripts=scripts,
data_files=data_files,
deb_scripts=deb_scripts,
dst=install_path)
############################################################
# Implementation of bdist_rpm command
############################################################
if RPM_PACKAGE:
utils.rpm.RpmBuilder(
name=NAME,
version=VERSION,
release='0',
arch='',
maintainer='%s <%s>' % (AUTHOR, AUTHOR_EMAIL),
summary=DESCRIPTION,
description=LONG_DESCRIPTION,
license=LICENSE,
url=URL,
depends=rpm_depends.split(' '),
build_script='setup-sk1.py',
install_path=install_path,
data_files=data_files, )
os.chdir(CURRENT_PATH)
if CLEAR_BUILD:
build.clear_build()
for item in ['MANIFEST', 'MANIFEST.in', 'src/script/sk1', 'setup.cfg']:
if os.path.lexists(item):
os.remove(item)