build: Reformat build_opionts.txt
authorDaniel Wagner <dwagner@suse.de>
Mon, 12 Jun 2023 15:45:14 +0000 (17:45 +0200)
committerDaniel Wagner <wagi@monom.org>
Thu, 22 Jun 2023 12:31:09 +0000 (14:31 +0200)
Reformat the file so that we don't have so long lines. While at it also
sort the options names by name.

Signed-off-by: Daniel Wagner <dwagner@suse.de>
meson_options.txt

index 677942aea892c273c422bf1785d6d3827e512da1..6c0e7dd9eb3eb9e3f229f638c9f1eae1110597a9 100644 (file)
@@ -1,12 +1,66 @@
 # SPDX-License-Identifier: GPL-2.0-or-later
-option('version-tag', type : 'string', description : 'override the git version string')
-option('udevrulesdir', type : 'string', value : 'lib/udev/rules.d', description : 'directory for udev rules files')
-option('dracutrulesdir', type : 'string', value : 'lib/dracut/dracut.conf.d/', description : 'directory for dracut rules files')
-option('systemddir', type : 'string', value : 'lib/systemd/system', description : 'directory for systemd files')
-option('htmldir', type : 'string', value : '', description : 'directory for HTML documentation')
-option('systemctl', type : 'string', value : '/usr/bin/systemctl', description : 'path to systemctl binary')
-option('nvme-tests', type : 'boolean', value : false, description: 'Run tests against real hardware')
-option('docs', type : 'combo', choices : ['false', 'html', 'man', 'all'], description : 'install documentation')
-option('docs-build', type : 'boolean', value : false, description : 'build documentation')
-option('pdc-enabled', type: 'boolean', value : false, description : 'set default Persistent Discovery Controllers behavior')
-option('json-c', type: 'feature', value: 'auto', description: 'JSON suppport')
+option(
+  'docs',
+  type : 'combo',
+  choices : ['false', 'html', 'man', 'all'],
+  description : 'install documentation'
+)
+option(
+  'docs-build',
+  type : 'boolean',
+  value : false,
+  description : 'build documentation'
+)
+option(
+  'dracutrulesdir',
+  type : 'string',
+  value : 'lib/dracut/dracut.conf.d/',
+  description : 'directory for dracut rules files'
+)
+option(
+  'htmldir',
+  type : 'string',
+  value : '',
+  description : 'directory for HTML documentation'
+)
+option(
+  'json-c',
+  type: 'feature',
+  value: 'auto',
+  description: 'JSON suppport'
+)
+option(
+  'nvme-tests',
+  type : 'boolean',
+  value : false,
+  description: 'Run tests against real hardware'
+)
+option(
+  'pdc-enabled',
+  type: 'boolean',
+  value : false,
+  description : 'set default Persistent Discovery Controllers behavior'
+)
+option(
+  'systemctl',
+  type : 'string',
+  value : '/usr/bin/systemctl',
+  description : 'path to systemctl binary'
+)
+option(
+  'systemddir',
+  type : 'string',
+  value : 'lib/systemd/system',
+  description : 'directory for systemd files'
+)
+option(
+  'udevrulesdir',
+  type : 'string',
+  value : 'lib/udev/rules.d',
+  description : 'directory for udev rules files'
+)
+option(
+  'version-tag',
+  type : 'string',
+  description : 'override the git version string'
+)