-
Notifications
You must be signed in to change notification settings - Fork 156
/
setup.py
146 lines (123 loc) · 4.18 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
#!/usr/bin/env python3
# -*- mode: python; -*-
#
# Copyright 2015 Canonical, Ltd.
#
# 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 package 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/>.
"""
subiquity
=========
Ubuntu Server Installer
"""
import glob
import os
import subprocess
import sys
from setuptools import (
Command,
find_packages,
setup,
)
# any remaining distutils must be imported after setuptools
# https://github.com/pypa/setuptools/issues/2591 discusses build.build and
# alternatives
import distutils.command.build
def spawn(cmd):
print(' '.join(cmd))
subprocess.run(cmd, check=True)
class build_i18n(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
data_files = self.distribution.data_files
with open('po/POTFILES.in') as in_fp:
with open('po/POTFILES.in.tmp', 'w') as out_fp:
for line in in_fp:
if line.startswith('['):
continue
out_fp.write('../' + line)
os.chdir('po')
spawn([
'xgettext',
'--directory=.',
'--add-comments',
'--from-code=UTF-8',
'--keyword=pgettext:1c,2',
'--output=subiquity.pot',
'--files-from=POTFILES.in.tmp',
])
os.chdir('..')
os.unlink('po/POTFILES.in.tmp')
for po_file in glob.glob("po/*.po"):
lang = os.path.basename(po_file[:-3])
mo_dir = os.path.join("build", "mo", lang, "LC_MESSAGES")
mo_file = os.path.join(mo_dir, "subiquity.mo")
if not os.path.exists(mo_dir):
os.makedirs(mo_dir)
distutils.spawn.spawn(["msgfmt", po_file, "-o", mo_file])
targetpath = os.path.join("share/locale", lang, "LC_MESSAGES")
data_files.append((targetpath, (mo_file,)))
class build(distutils.command.build.build):
sub_commands = distutils.command.build.build.sub_commands + [
("build_i18n", None)]
with open(os.path.join(os.path.dirname(__file__),
'subiquitycore', '__init__.py')) as init:
lines = [line for line in init if 'i18n' not in line]
ns = {}
exec('\n'.join(lines), ns)
version = ns['__version__']
if sys.argv[-1] == 'clean':
print("Cleaning up ...")
os.system('rm -rf subiquity.egg-info build dist')
sys.exit()
setup(name='subiquity',
version=version,
description="Ubuntu Server Installer",
long_description=__doc__,
author='Canonical Engineering',
author_email='[email protected]',
url='https://github.com/canonical/subiquity',
license="GPLv3",
packages=find_packages(exclude=["tests"]),
scripts=[
'bin/console-conf-wait',
'bin/console-conf-wrapper',
'bin/subiquity-debug',
'bin/subiquity-loadkeys',
'bin/subiquity-service',
'bin/subiquity-server',
'bin/subiquity-cmd',
'system_scripts/subiquity-umockdev-wrapper',
'system_scripts/subiquity-legacy-cloud-init-extract',
'system_scripts/subiquity-legacy-cloud-init-validate',
],
entry_points={
'console_scripts': [
'subiquity-tui = subiquity.cmd.tui:main',
'console-conf-tui = console_conf.cmd.tui:main',
('console-conf-write-login-details = '
'console_conf.cmd.write_login_details:main'),
],
},
data_files=[
('po', ['po/POTFILES.in']),
],
cmdclass={
'build': build,
'build_i18n': build_i18n,
},
)