forked from gvalkov/python-evdev
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
executable file
·150 lines (116 loc) · 5.13 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·150 lines (116 loc) · 5.13 KB
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
#!/usr/bin/env python
# encoding: utf-8
importos
importsys
importtextwrap
fromos.pathimportabspath, dirname, joinaspjoin
#-----------------------------------------------------------------------------
try:
fromsetuptoolsimportsetup, Extension, Command
fromsetuptools.commandimportbuild_extas_build_ext
exceptImportError:
fromdistutils.coreimportsetup, Extension, Command
fromdistutils.commandimportbuild_extas_build_ext
#-----------------------------------------------------------------------------
here=abspath(dirname(__file__))
#-----------------------------------------------------------------------------
classifiers= [
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Operating System :: POSIX :: Linux',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: Implementation :: CPython',
]
#-----------------------------------------------------------------------------
cflags= ['-std=c99', '-Wno-error=declaration-after-statement']
input_c=Extension('evdev._input', sources=['evdev/input.c'], extra_compile_args=cflags)
uinput_c=Extension('evdev._uinput', sources=['evdev/uinput.c'], extra_compile_args=cflags)
ecodes_c=Extension('evdev._ecodes', sources=['evdev/ecodes.c'], extra_compile_args=cflags)
#-----------------------------------------------------------------------------
kw= {
'name': 'evdev',
'version': '1.0.0',
'description': 'Bindings to the Linux input handling subsystem',
'long_description': open(pjoin(here, 'README.rst')).read(),
'author': 'Georgi Valkov',
'author_email': 'georgi.t.valkov@gmail.com',
'license': 'Revised BSD License',
'keywords': 'evdev input uinput',
'url': 'https://github.com/gvalkov/python-evdev',
'classifiers': classifiers,
'packages': ['evdev'],
'ext_modules': [input_c, uinput_c, ecodes_c],
'include_package_data': False,
'zip_safe': True,
'cmdclass': {},
}
#-----------------------------------------------------------------------------
defcreate_ecodes(headers=None):
ifnotheaders:
headers= [
'/usr/include/linux/input.h',
'/usr/include/linux/input-event-codes.h',
]
headers= [headerforheaderinheadersifos.path.isfile(header)]
ifnotheaders:
msg='''\
The 'linux/input.h' and 'linux/input-event-codes.h' include files
are missing. You will have to install the kernel header files in
order to continue:
yum install kernel-headers-$(uname -r)
apt-get install linux-headers-$(uname -r)
emerge sys-kernel/linux-headers
pacman -S kernel-headers
In case they are installed in a non-standard location, you may use
the '--evdev-headers' option to specify one or more colon-separated
paths. For example:
python setup.py \\
build \\
build_ecodes --evdev-headers path/input.h:path/input-event-codes.h \\
build_ext --include-dirs path/ \\
install
'''
sys.stderr.write(textwrap.dedent(msg))
sys.exit(1)
fromsubprocessimportcheck_call
print('writing ecodes.c (using %s)'%' '.join(headers))
cmd='%s genecodes.py %s > ecodes.c'% (sys.executable, ' '.join(headers))
check_call(cmd, cwd="%s/evdev"%here, shell=True)
#-----------------------------------------------------------------------------
classbuild_ecodes(Command):
description='generate ecodes.c'
user_options= [
('evdev-headers=', None, 'colon-separated paths to input subsystem headers'),
]
definitialize_options(self):
self.evdev_headers=None
deffinalize_options(self):
ifself.evdev_headers:
self.evdev_headers=self.evdev_headers.split(':')
defrun(self):
create_ecodes(self.evdev_headers)
classbuild_ext(_build_ext.build_ext):
defhas_ecodes(self):
ecodes_path=os.path.join(here, 'evdev/ecodes.c')
res=os.path.exists(ecodes_path)
ifres:
print('ecodes.c already exists ... skipping build_ecodes')
returnnotres
defrun(self):
forcmd_nameinself.get_sub_commands():
self.run_command(cmd_name)
_build_ext.build_ext.run(self)
sub_commands= [('build_ecodes', has_ecodes)] +_build_ext.build_ext.sub_commands
#-----------------------------------------------------------------------------
kw['cmdclass']['build_ext'] =build_ext
kw['cmdclass']['build_ecodes'] =build_ecodes
#-----------------------------------------------------------------------------
if__name__=='__main__':
setup(**kw)