summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené de Hesselle <dehesselle@web.de>2023-08-14 13:24:28 +0200
committerPhilip Withnall <philip@tecnocode.co.uk>2023-08-16 13:06:40 +0100
commit0c73ff3a084e7e0479044949652e7cb47c4b1c18 (patch)
treea51cfa16d62fe982c3d705dfcff6d8c36e293018
parent73efc47dddc01111d9a5c5b6f220b8b9ce7b6348 (diff)
downloadglib-0c73ff3a084e7e0479044949652e7cb47c4b1c18.tar.gz
meson: Use 'meson setup' to configure
This removes a deprecation warning when using 'meson' without 'setup'.
-rw-r--r--.gitlab-ci.yml26
-rw-r--r--.gitlab-ci/test-msvc.bat2
-rwxr-xr-x.gitlab-ci/test-msys2.sh4
-rw-r--r--docs/reference/glib/building.xml4
4 files changed, 18 insertions, 18 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0a124ac2c..3d9e212f0 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -107,7 +107,7 @@ fedora-x86_64:
variables:
CFLAGS: "-coverage -ftest-coverage -fprofile-arcs"
script:
- - meson ${MESON_COMMON_OPTIONS}
+ - meson setup ${MESON_COMMON_OPTIONS}
--werror
--default-library=both
--prefix=$HOME/glib-installed
@@ -154,7 +154,7 @@ debian-stable-x86_64:
stage: build
needs: []
script:
- - meson ${MESON_COMMON_OPTIONS}
+ - meson setup ${MESON_COMMON_OPTIONS}
--werror
--default-library=both
--prefix=$HOME/glib-installed
@@ -187,7 +187,7 @@ installed-tests:
needs: []
script:
# dtrace is disabled because it breaks the static-link.py test
- - meson ${MESON_COMMON_OPTIONS}
+ - meson setup ${MESON_COMMON_OPTIONS}
--werror
--prefix=/usr --libdir=/usr/lib64
-Dinstalled_tests=true
@@ -224,7 +224,7 @@ G_DISABLE_ASSERT:
stage: build
needs: []
script:
- - meson ${MESON_COMMON_OPTIONS}
+ - meson setup ${MESON_COMMON_OPTIONS}
--werror
-Dsystemtap=true
-Ddtrace=true
@@ -256,7 +256,7 @@ valgrind:
variables:
MESON_TEST_TIMEOUT_MULTIPLIER: 15
script:
- - meson ${MESON_COMMON_OPTIONS}
+ - meson setup ${MESON_COMMON_OPTIONS}
--werror
-Dsystemtap=true
-Ddtrace=true
@@ -298,7 +298,7 @@ cross-android_arm64:
image: $FEDORA_IMAGE
script:
# FIXME: add --werror
- - meson ${MESON_COMMON_OPTIONS} --cross-file=.gitlab-ci/cross_file_android_arm64_31.txt _build
+ - meson setup ${MESON_COMMON_OPTIONS} --cross-file=.gitlab-ci/cross_file_android_arm64_31.txt _build
- ninja -C _build
cross-mingw64:
@@ -310,7 +310,7 @@ cross-mingw64:
PYTHONUTF8: "1"
script:
# FIXME: Add --werror
- - meson ${MESON_COMMON_OPTIONS} --cross-file=/opt/cross_file_mingw64.txt _build
+ - meson setup ${MESON_COMMON_OPTIONS} --cross-file=/opt/cross_file_mingw64.txt _build
- ninja -C _build
artifacts:
reports:
@@ -474,7 +474,7 @@ freebsd-12-x86_64:
# FreeBSD supports xattr, but its API is different from Linux xattr.
# FIXME: extattr(2) support: https://gitlab.gnome.org/GNOME/glib/issues/1404
# localstatedir is needed for access to /var/lib/dbus/machine-id
- - meson ${MESON_COMMON_OPTIONS} --localstatedir=/var -Db_lundef=false -Dxattr=false _build
+ - meson setup ${MESON_COMMON_OPTIONS} --localstatedir=/var -Db_lundef=false -Dxattr=false _build
- ninja -C _build
- bash -x ./.gitlab-ci/run-tests.sh
artifacts:
@@ -503,7 +503,7 @@ freebsd-13-x86_64:
before_script:
- bash .gitlab-ci/show-execution-environment.sh
script:
- - meson ${MESON_COMMON_OPTIONS} --localstatedir=/var -Db_lundef=false -Dxattr=false _build
+ - meson setup ${MESON_COMMON_OPTIONS} --localstatedir=/var -Db_lundef=false -Dxattr=false _build
- ninja -C _build
- bash -x ./.gitlab-ci/run-tests.sh
artifacts:
@@ -557,7 +557,7 @@ macos-x86_64:
# already contains the dependencies. See:
# - https://gitlab.gnome.org/GNOME/glib/merge_requests/388
# - https://gitlab.gnome.org/Infrastructure/Infrastructure/issues/225
- - meson ${MESON_COMMON_OPTIONS}
+ - meson setup ${MESON_COMMON_OPTIONS}
--wrap-mode=default
--werror
_build
@@ -606,7 +606,7 @@ scan-build:
stage: analysis
needs: []
script:
- - meson ${MESON_COMMON_OPTIONS}
+ - meson setup ${MESON_COMMON_OPTIONS}
--werror
--default-library=both
--prefix=$HOME/glib-installed
@@ -635,7 +635,7 @@ scan-build:
# cov-build doesn’t like GLIB_DEPRECATED_ENUMERATOR
CFLAGS: '-DGLIB_DISABLE_DEPRECATION_WARNINGS'
script:
- - meson ${MESON_COMMON_OPTIONS}
+ - meson setup ${MESON_COMMON_OPTIONS}
--werror
--default-library=both
--prefix=$HOME/glib-installed
@@ -679,7 +679,7 @@ dist-job:
- git submodule update --init
- for m in $(git submodule foreach -q 'echo $path'); do git config --global --add safe.directory "${PWD}/${m}"; done
- meson subprojects download
- - meson ${MESON_COMMON_OPTIONS} --buildtype release -Dgtk_doc=true -Dman=true _build
+ - meson setup ${MESON_COMMON_OPTIONS} --buildtype release -Dgtk_doc=true -Dman=true _build
- cd _build
- ninja dist
- ninja glib-doc gobject-doc gio-doc
diff --git a/.gitlab-ci/test-msvc.bat b/.gitlab-ci/test-msvc.bat
index a1b4dbbf3..a0d76d5dd 100644
--- a/.gitlab-ci/test-msvc.bat
+++ b/.gitlab-ci/test-msvc.bat
@@ -13,7 +13,7 @@ set args=%args:~1%
:: FIXME: make warnings fatal
pip3 install --upgrade --user meson==1.0.0 || goto :error
-meson %args% _build || goto :error
+meson setup %args% _build || goto :error
python .gitlab-ci/check-missing-install-tag.py _build || goto :error
ninja -C _build || goto :error
diff --git a/.gitlab-ci/test-msys2.sh b/.gitlab-ci/test-msys2.sh
index b4b83e985..f03e3d5c2 100755
--- a/.gitlab-ci/test-msys2.sh
+++ b/.gitlab-ci/test-msys2.sh
@@ -35,10 +35,10 @@ export PATH CFLAGS
if [[ "$MSYSTEM" == "CLANG64" ]]; then
# FIXME: fix the clang build warnings
# shellcheck disable=SC2086
- meson ${MESON_COMMON_OPTIONS} _build
+ meson setup ${MESON_COMMON_OPTIONS} _build
else
# shellcheck disable=SC2086
- meson ${MESON_COMMON_OPTIONS} --werror _build
+ meson setup ${MESON_COMMON_OPTIONS} --werror _build
fi
cd _build
diff --git a/docs/reference/glib/building.xml b/docs/reference/glib/building.xml
index 2ae52e8dd..b42125f51 100644
--- a/docs/reference/glib/building.xml
+++ b/docs/reference/glib/building.xml
@@ -22,14 +22,14 @@
is thus:
<literallayout>
- <userinput>meson _build</userinput>
+ <userinput>meson setup _build</userinput>
<userinput>ninja -C _build</userinput>
<userinput>ninja -C _build install</userinput>
</literallayout>
On FreeBSD:
<literallayout>
- <userinput>env CPPFLAGS="-I/usr/local/include" LDFLAGS="-L/usr/local/lib -Wl,--disable-new-dtags" meson -Dxattr=false -Dinstalled_tests=true -Db_lundef=false _build</userinput>
+ <userinput>env CPPFLAGS="-I/usr/local/include" LDFLAGS="-L/usr/local/lib -Wl,--disable-new-dtags" meson setup -Dxattr=false -Dinstalled_tests=true -Db_lundef=false _build</userinput>
<userinput>ninja -C _build</userinput>
</literallayout>
</para>