[gtk/ebassi/dist-docs] build: Dist the API references
- From: Emmanuele Bassi <ebassi src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk/ebassi/dist-docs] build: Dist the API references
- Date: Tue, 30 Mar 2021 14:45:13 +0000 (UTC)
commit 5da330857213430ecc3e3e1cd9b518da6f7d9bc9
Author: Emmanuele Bassi <ebassi gnome org>
Date: Tue Mar 30 15:42:40 2021 +0100
build: Dist the API references
Copy them into the dist root from the build root, so that they will be
available in the release archive.
build-aux/meson/dist-data.py | 39 +++++++++++++++++++++++++++++++++++++++
build-aux/meson/dist-theme.py | 19 -------------------
meson.build | 2 +-
3 files changed, 40 insertions(+), 20 deletions(-)
---
diff --git a/build-aux/meson/dist-data.py b/build-aux/meson/dist-data.py
new file mode 100644
index 0000000000..da14c03c40
--- /dev/null
+++ b/build-aux/meson/dist-data.py
@@ -0,0 +1,39 @@
+#!/usr/bin/env python3
+
+import os
+import shutil
+import subprocess
+
+from pathlib import PurePath
+
+
+stylesheets = [
+ 'gtk/theme/Adwaita/Adwaita.css',
+ 'gtk/theme/Adwaita/Adwaita-dark.css',
+ 'gtk/theme/HighContrast/HighContrast.css',
+ 'gtk/theme/HighContrast/HighContrast-dark.css',
+]
+
+references = [
+ 'docs/reference/gtk/gtk4',
+ 'docs/reference/gsk/gsk4',
+ 'docs/reference/gdk/gdk4',
+ 'docs/reference/gdk/gdk4-wayland',
+ 'docs/reference/gdk/gdk4-x11',
+]
+
+sourceroot = os.environ.get('MESON_SOURCE_ROOT')
+buildroot = os.environ.get('MESON_BUILD_ROOT')
+distroot = os.environ.get('MESON_DIST_ROOT')
+
+for stylesheet in stylesheets:
+ stylesheet_path = PurePath(stylesheet)
+ src = PurePath(sourceroot, stylesheet_path.with_suffix('.scss'))
+ dst = PurePath(distroot, stylesheet_path)
+ subprocess.call(['sassc', '-a', '-M', '-t', 'compact', src, dst])
+
+for reference in references:
+ src_path = os.path.join(buildroot, reference)
+ if os.path.isdir(src_path):
+ dst_path = os.path.join(distroot, reference)
+ shutil.copytree(src_path, dst_path)
diff --git a/meson.build b/meson.build
index e25dec77c4..da84d5054b 100644
--- a/meson.build
+++ b/meson.build
@@ -818,7 +818,7 @@ else
endif
if not meson.is_subproject()
- meson.add_dist_script('build-aux/meson/dist-theme.py')
+ meson.add_dist_script('build-aux/meson/dist-data.py')
endif
if host_machine.system() != 'windows'
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]