summaryrefslogtreecommitdiffstats
path: root/meta/classes-recipe/vala.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-11-07 13:31:53 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-11-07 13:31:53 +0000
commit8c22ff0d8b70d9b12f0487ef696a7e915b9e3173 (patch)
treeefdc32587159d0050a69009bdf2330a531727d95 /meta/classes-recipe/vala.bbclass
parentd412d2747595c1cc4a5e3ca975e3adc31b2f7891 (diff)
downloadpoky-8c22ff0d8b70d9b12f0487ef696a7e915b9e3173.tar.gz
The poky repository master branch is no longer being updated.
You can either: a) switch to individual clones of bitbake, openembedded-core, meta-yocto and yocto-docs b) use the new bitbake-setup You can find information about either approach in our documentation: https://docs.yoctoproject.org/ Note that "poky" the distro setting is still available in meta-yocto as before and we continue to use and maintain that. Long live Poky! Some further information on the background of this change can be found in: https://lists.openembedded.org/g/openembedded-architecture/message/2179 Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-recipe/vala.bbclass')
-rw-r--r--meta/classes-recipe/vala.bbclass30
1 files changed, 0 insertions, 30 deletions
diff --git a/meta/classes-recipe/vala.bbclass b/meta/classes-recipe/vala.bbclass
deleted file mode 100644
index 460ddb36f0..0000000000
--- a/meta/classes-recipe/vala.bbclass
+++ /dev/null
@@ -1,30 +0,0 @@
1#
2# Copyright OpenEmbedded Contributors
3#
4# SPDX-License-Identifier: MIT
5#
6
7# Everyone needs vala-native and targets need vala, too,
8# because that is where target builds look for .vapi files.
9#
10VALADEPENDS = ""
11VALADEPENDS:class-target = "vala"
12DEPENDS:append = " vala-native ${VALADEPENDS}"
13
14# Our patched version of Vala looks in STAGING_DATADIR for .vapi files
15export STAGING_DATADIR
16# Upstream Vala >= 0.11 looks in XDG_DATA_DIRS for .vapi files
17export XDG_DATA_DIRS = "${STAGING_DATADIR}:${STAGING_LIBDIR}"
18
19# Package additional files
20FILES:${PN}-dev += "\
21 ${datadir}/vala/vapi/*.vapi \
22 ${datadir}/vala/vapi/*.deps \
23 ${datadir}/gir-1.0 \
24"
25
26# Remove vapigen.m4 that is bundled with tarballs
27# because it does not yet have our cross-compile fixes
28do_configure:prepend() {
29 rm -f ${S}/m4/vapigen.m4
30}