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
|
project('xkeyboard-config',
version: '2.43',
license: 'MIT/Expat',
meson_version: '>= 0.56.0')
dir_data = join_paths(get_option('prefix'), get_option('datadir'))
dir_xkb_base = join_paths(dir_data, 'X11', 'xkb')
dir_xkb_rules = join_paths(dir_xkb_base, 'rules')
dir_man7 = join_paths(get_option('prefix'), get_option('mandir'), 'man7')
dir_pkgconfig = join_paths(dir_data, 'pkgconfig')
i18n = import('i18n')
pkgconfig = import('pkgconfig')
pkgconfig.generate(
filebase: 'xkeyboard-config',
name: 'XKeyboardConfig',
description: 'X Keyboard configuration data',
version: meson.project_version(),
variables: [
'datadir=@0@'.format(dir_data),
'xkb_base=@0@'.format(dir_xkb_base),
],
install_dir: dir_pkgconfig,
dataonly: true,
)
# KcG.T only need to be installed as-is
foreach dir: ['compat', 'geometry', 'keycodes', 'types']
install_subdir(dir,
exclude_files: ['custom'],
install_dir: dir_xkb_base)
endforeach
# Rules and symbols are a bit more complicated
subdir('rules')
subdir('symbols')
# man page
xsltproc = find_program('xsltproc', required: false)
if xsltproc.found()
man_substs = configuration_data()
man_substs.set('xkb_base', dir_xkb_base)
# emulating what the macros do for vendorversion, hardcoding the man
# suffixes
man_substs.set('vendorversion', '"@0@ @1@" "X Version 11"'.format(meson.project_name(), meson.project_version()))
xsl = configure_file(input: 'man/man.xsl',
output: 'man.xsl',
configuration: man_substs,
install: false)
# evdev_ruleset is set by rules/meson.build
manpage = custom_target('man page',
output: 'xkeyboard-config.7',
build_by_default: true,
command: [xsltproc, '-nonet', xsl, evdev_ruleset],
capture: true,
install:true,
install_dir: dir_man7)
verify_group_names = find_program('tests/verify-group-names.sh')
test('verify group names', verify_group_names)
endif
# If needed, copy our data files over to the build directory
# so we can use the builddir as XKB_CONFIG_ROOT
pymod = import('python')
python = pymod.find_installation('python3',
modules: ['pytest'],
required: false)
pytest = find_program('pytest-3', 'pytest', required: false)
enable_pytest = python.found() and pytest.found()
if get_option('non-latin-layouts-list') or enable_pytest
foreach dir: ['compat', 'geometry', 'keycodes', 'symbols', 'types']
# Copy directory but exclude some symbols files that are generated
# to include compatibility sections
run_command(
'tests/copydir.py',
dir,
dir == 'symbols' ? compat_symbols : [],
check: true
)
endforeach
endif
# Latin layout list
# Needed e.g. for a distribution installer, in order to check if user can
# input required Latin characters and if not add automatically a US layout.
if get_option('non-latin-layouts-list')
python = pymod.find_installation('python3',
modules: ['yaml'],
required: true)
xkbcli = find_program('xkbcli', required: true)
pyregistry = find_program('scripts/registry.py', required: true)
# Both rules sets are expected to provide the same results, but are
# nevertheless generated for completeness.
foreach ruleset: ['base', 'evdev']
custom_target('non-latin-layouts-list-@0@'.format(ruleset),
build_by_default: true,
command: [pyregistry,
'--xkb-root', meson.project_build_root(),
'--rules', ruleset,
'layouts',
'--non-latin',
'--csv', '@OUTPUT@'],
output: 'non-latin-layouts-@0@.csv'.format(ruleset),
install: false)
endforeach
endif
# pytest suite
if enable_pytest
pytest_args = ['--verbose', '--log-level=DEBUG']
if get_option('compat-rules')
pytest_args += [
'tests',
'--layout-compat-config', layout_mappings,
'--layout-compat-config', variant_mappings,
]
endif
# use pytest xdist if available, it really speeds up the tests cases
optional_python_modules = ['xdist']
if pymod.find_installation('python3', modules: optional_python_modules, required: false).found()
pytest_args += ['-n', 'auto']
endif
test('pytest', pytest,
args: pytest_args,
env: ['XKB_CONFIG_ROOT=@0@'.format(meson.project_build_root())],
workdir: meson.project_source_root(),
timeout: 60)
endif
subdir('po')
|