2020-06-18 00:31:31 +00:00
|
|
|
docs_logo_files = [
|
|
|
|
'logo-banner-dark-256.png',
|
|
|
|
'logo-banner-dark-800.png',
|
|
|
|
'logo-banner-dark.svg',
|
|
|
|
'logo-banner-light-256.png',
|
|
|
|
'logo-banner-light-800.png',
|
|
|
|
'logo-banner-light.svg',
|
|
|
|
'logo-base.svg',
|
|
|
|
'logo-square-128.png',
|
|
|
|
'logo-square-192.png',
|
|
|
|
'logo-square-256.png',
|
|
|
|
'logo-square-96.png',
|
|
|
|
'logo-square-powered-128.png',
|
|
|
|
'logo-square-powered-192.png',
|
|
|
|
'logo-square-powered-256.png',
|
|
|
|
'logo-square-powered-96.png',
|
|
|
|
'logo-square-powered.svg',
|
|
|
|
'logo-square.svg',
|
|
|
|
'logo-sticker-hexagon.svg',
|
|
|
|
'logo-sticker-square.svg',
|
|
|
|
]
|
|
|
|
|
|
|
|
install_data(docs_logo_files, install_dir: docs_html_dir / 'logos')
|
|
|
|
|
|
|
|
foreach file : docs_logo_files
|
2020-07-23 16:40:12 +00:00
|
|
|
# This hack enables us to view the web pages
|
|
|
|
# from within the uninstalled build tree
|
meson: Work around configure_file(copy:true) deprecation
In our meson scripts, we use configure_file(copy:true) to copy
files from srcdir into builddir. However, as of meson-0.64.0,
this is deprecated [1] in favor of using:
fs = import('fs')
fs.copyfile(in, out)
Except, the submodule's new method wasn't introduced until
0.64.0. And since we can't bump the minimal meson version we
require, we have to work with both: new and old versions.
Now, the fun part: fs.copyfile() is not a drop in replacement as
it returns different type (a custom_target object). This is
incompatible with places where we store the configure_file()
retval in a variable to process it further.
While we could just replace 'copy:true' with a dummy
'configuration:...' (say 'configuration: configmake_conf') we
can't do that for binary files (like src/fonts/ or src/images/).
Therefore, places where we are not interested in the retval can
be switched to fs.copyfile() and places where we are interested
in the retval will just use a dummy 'configuration:'.
Except, src/network/meson.build. In here we not just copy the
file but also specify alternative install dir and that's not
something that fs.copyfile() can handle. Yet, using 'copy: true'
is viewed wrong [2].
1: https://mesonbuild.com/Release-notes-for-0-64-0.html#fscopyfile-to-replace-configure_filecopy-true
2: https://github.com/mesonbuild/meson/pull/10042
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Martin Kletzander <mkletzan@redhat.com>
2023-03-23 10:11:42 +00:00
|
|
|
if meson.version().version_compare('>=0.64.0')
|
|
|
|
fs.copyfile(file)
|
|
|
|
else
|
|
|
|
configure_file(input: file, output: file, copy: true)
|
|
|
|
endif
|
2020-07-23 16:40:12 +00:00
|
|
|
|
|
|
|
install_web_files += '@0@:@1@'.format(meson.current_source_dir() / file, docs_html_dir / 'logos')
|
2020-06-18 00:31:31 +00:00
|
|
|
endforeach
|
2023-02-14 14:03:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
html_xslt_gen_install_dir = docs_html_dir / 'logos'
|
|
|
|
html_xslt_gen = []
|
|
|
|
|
|
|
|
# README.rst is formatted as index.html for viewing
|
|
|
|
html_xslt_gen += {
|
|
|
|
'name': 'index',
|
|
|
|
'file': docs_rst2html5_gen.process('README.rst'),
|
|
|
|
'source': 'docs' / 'logos' / 'README.rst',
|
|
|
|
'href_base': '../',
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# --- begin of XSLT processing ---
|
|
|
|
|
|
|
|
foreach data : html_xslt_gen
|
|
|
|
html_filename = data['name'] + '.html'
|
|
|
|
|
|
|
|
html_file = custom_target(
|
|
|
|
html_filename,
|
|
|
|
input: data.get('file', data['name'] + '.html.in'),
|
|
|
|
output: html_filename,
|
|
|
|
command: [
|
|
|
|
xsltproc_prog,
|
|
|
|
'--stringparam', 'pagesrc', data.get('source', ''),
|
|
|
|
'--stringparam', 'builddir', meson.project_build_root(),
|
|
|
|
'--stringparam', 'timestamp', docs_timestamp,
|
|
|
|
'--stringparam', 'href_base', data.get('href_base', ''),
|
|
|
|
'--nonet',
|
|
|
|
site_xsl,
|
|
|
|
'@INPUT@',
|
|
|
|
],
|
|
|
|
depends: data.get('depends', []),
|
|
|
|
depend_files: [ page_xsl ],
|
|
|
|
capture: true,
|
|
|
|
install: true,
|
|
|
|
install_dir: html_xslt_gen_install_dir,
|
|
|
|
)
|
|
|
|
|
|
|
|
install_web_deps += html_file
|
|
|
|
install_web_files += html_file.full_path() + ':' + html_xslt_gen_install_dir
|
|
|
|
endforeach
|
|
|
|
|
|
|
|
html_xslt_gen = []
|
|
|
|
|
|
|
|
# --- end of XSLT processing ---
|