-
Notifications
You must be signed in to change notification settings - Fork 66
/
setup.py
103 lines (97 loc) · 4.42 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
import sys, os
from setuptools import setup, Extension
from subprocess import Popen, PIPE, check_output
def call(*cmd):
cmd = Popen(cmd,
stdout=PIPE, stderr=PIPE,
universal_newlines=True)
if cmd.wait() == 0:
return cmd.returncode, cmd.stdout.read()
else:
return cmd.returncode, cmd.stderr.read()
def pkgconfig(package, **kw):
pkg_version = package.replace('-', '_').upper() + '_VERSION'
flag_map = {'-I': 'include_dirs', '-L': 'library_dirs', '-l': 'libraries'}
pkgconf = os.getenv('PKG_CONFIG', 'pkg-config')
status, result = call(pkgconf, '--libs', '--cflags', package)
if status != 0:
return status, result
for token in result.split():
kw.setdefault(flag_map.get(token[:2]), []).append(token[2:])
# allow version detection to be overridden using environment variables
version = os.getenv(pkg_version)
if not version:
version = check_output([pkgconf, '--modversion', package],
universal_newlines=True).strip()
pair = (pkg_version, version)
defines = kw.setdefault('define_macros', [])
if pair not in defines:
defines.append(pair)
return status, kw
def lib(*names, **kw):
if '--version' in sys.argv:
return {}
results = []
for name in names:
status, result = pkgconfig(name, **kw)
if status == 0:
return result
results.append(result)
sys.stderr.write('Cannot find ' + ' or '.join(names) + ':\n\n'
+ '\n'.join(results) + '\n')
sys.exit(status)
version = '235'
defines = {'define_macros':[('PACKAGE_VERSION', '"{}"'.format(version))]}
_journal = Extension('systemd/_journal',
sources = ['systemd/_journal.c',
'systemd/pyutil.c'],
extra_compile_args=['-std=c99', '-Werror=implicit-function-declaration'],
**lib('libsystemd', 'libsystemd-journal', **defines))
_reader = Extension('systemd/_reader',
sources = ['systemd/_reader.c',
'systemd/pyutil.c',
'systemd/strv.c'],
extra_compile_args=['-std=c99', '-Werror=implicit-function-declaration'],
**lib('libsystemd', 'libsystemd-journal', **defines))
_daemon = Extension('systemd/_daemon',
sources = ['systemd/_daemon.c',
'systemd/pyutil.c',
'systemd/util.c'],
extra_compile_args=['-std=c99', '-Werror=implicit-function-declaration'],
**lib('libsystemd', 'libsystemd-daemon', **defines))
id128 = Extension('systemd/id128',
sources = ['systemd/id128.c',
'systemd/pyutil.c'],
extra_compile_args=['-std=c99', '-Werror=implicit-function-declaration'],
**lib('libsystemd', 'libsystemd-id128', **defines))
login = Extension('systemd/login',
sources = ['systemd/login.c',
'systemd/pyutil.c',
'systemd/strv.c'],
extra_compile_args=['-std=c99', '-Werror=implicit-function-declaration'],
**lib('libsystemd', 'libsystemd-login', **defines))
setup (name = 'systemd-python',
version = version,
description = 'Python interface for libsystemd',
author_email = '[email protected]',
maintainer = 'systemd developers',
maintainer_email = '[email protected]',
url = 'https://github.com/systemd/python-systemd',
license = 'LGPLv2+',
classifiers = [
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Logging',
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
],
py_modules = ['systemd.journal', 'systemd.daemon',
'systemd.test.test_daemon',
'systemd.test.test_journal',
'systemd.test.test_login',
'systemd.test.test_id128'],
ext_modules = [_journal,
_reader,
_daemon,
id128,
login])