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
|
#!/usr/bin/env python
from distutils.core import setup
from distutils.command.build import build
from distutils.command.install_data import install_data
from distutils.dep_util import newer
from distutils.log import error
import glob
import os
import re
import subprocess
import sys
from sos import __version__ as VERSION
PO_DIR = 'po'
MO_DIR = os.path.join('build', 'mo')
class BuildData(build):
def run(self):
build.run(self)
for po in glob.glob(os.path.join(PO_DIR, '*.po')):
lang = os.path.basename(po[:-3])
mo = os.path.join(MO_DIR, lang, 'sos.mo')
directory = os.path.dirname(mo)
if not os.path.exists(directory):
os.makedirs(directory)
if newer(po, mo):
try:
rc = subprocess.call(['msgfmt', '-o', mo, po])
if rc != 0:
raise Warning("msgfmt returned %d" % (rc,))
except Exception as e:
error("Failed gettext.")
sys.exit(1)
class InstallData(install_data):
def run(self):
self.data_files.extend(self._find_mo_files())
install_data.run(self)
def _find_mo_files(self):
data_files = []
for mo in glob.glob(os.path.join(MO_DIR, '*', 'sos.mo')):
lang = os.path.basename(os.path.dirname(mo))
dest = os.path.join('share', 'locale', lang, 'LC_MESSAGES')
data_files.append((dest, [mo]))
return data_files
# Workaround https://bugs.python.org/issue644744
def copy_file (self, filename, dirname):
(out, _) = install_data.copy_file(self, filename, dirname)
# match for man pages
if re.search(r'/man/man\d/.+\.\d$', out):
return (out+".gz", _)
return (out, _)
setup(
name='sos',
version=VERSION,
description=("""A set of tools to gather troubleshooting"""
""" information from a system."""),
author='Bryn M. Reeves',
author_email='bmr@redhat.com',
maintainer='Jake Hunsaker',
maintainer_email='jhunsake@redhat.com',
url='https://github.com/sosreport/sos',
license="GPLv2+",
scripts=['bin/sos', 'bin/sosreport', 'bin/sos-collector'],
data_files=[
('/', ['sos.conf']),
('share/man/man1', ['man/en/sosreport.1', 'man/en/sos-report.1',
'man/en/sos.1', 'man/en/sos-collect.1',
'man/en/sos-collector.1', 'man/en/sos-clean.1',
'man/en/sos-mask.1']),
('share/man/man5', ['man/en/sos.conf.5']),
('share/licenses/sos', ['LICENSE']),
('share/doc/sos', ['AUTHORS', 'README.md'])
],
packages=[
'sos', 'sos.policies', 'sos.report', 'sos.report.plugins',
'sos.collector', 'sos.collector.clusters', 'sos.cleaner',
'sos.cleaner.mappings', 'sos.cleaner.parsers'
],
cmdclass={'build': BuildData, 'install_data': InstallData},
requires=['pexpect']
)
# vim: set et ts=4 sw=4 :
|