mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-01-08 10:15:23 +01:00
- Fix deprecation warnings [!300] - Fix introspection annotation for async functions [!318] - Plug some memory leaks [!321] - Translation updates Use GI_TYPELIB_PATH to point to typlib paths in target sysroot Fixes | FAILED: data/Locations.bin | /mnt/b/yoe/master/build/tmp/work/core2-64-yoe-linux-musl/libgweather4/4.4.4/libgweather-4.4.4/build-aux/meson/gen_locations_variant.py ../libgweather-4.4.4/data/Locations.xml data/Locations.bin | Traceback (most recent call last): | File "/mnt/b/yoe/master/build/tmp/work/core2-64-yoe-linux-musl/libgweather4/4.4.4/libgweather-4.4.4/build-aux/meson/gen_locations_variant.py", line 7, in <module> | from gi.repository import GLib | File "/mnt/b/yoe/master/build/tmp/work/core2-64-yoe-linux-musl/libgweather4/4.4.4/recipe-sysroot-native/usr/lib/python3.13/site-packages/gi/importer.py", line 133, in create_module | raise ImportError('cannot import name %s, ' | 'introspection typelib not found' % namespace) | ImportError: cannot import name GLib, introspection typelib not found Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Andreas Müller <schnitzeltony@gmail.com>
33 lines
852 B
BlitzBasic
33 lines
852 B
BlitzBasic
SUMMARY = "A library to access weather information from online services"
|
|
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|
|
|
GNOMEBN = "libgweather"
|
|
S = "${WORKDIR}/${GNOMEBN}-${PV}"
|
|
|
|
inherit gnomebase gsettings gobject-introspection gettext gi-docgen vala features_check
|
|
|
|
REQUIRED_DISTRO_FEATURES = "opengl"
|
|
|
|
SRC_URI += "file://0001-Allow-building-gir-in-cross-environments.patch"
|
|
SRC_URI[archive.sha256sum] = "7017677753cdf7d1fdc355e4bfcdb1eba8369793a8df24d241427a939cbf4283"
|
|
|
|
GTKDOC_MESON_OPTION = "gtk_doc"
|
|
VALA_MESON_OPTION = "enable_vala"
|
|
|
|
export GI_TYPELIB_PATH = "${STAGING_LIBDIR}/girepository-1.0/"
|
|
|
|
DEPENDS = " \
|
|
geocode-glib \
|
|
gtk4 \
|
|
json-glib \
|
|
libsoup-3.0 \
|
|
python3-pygobject-native \
|
|
"
|
|
|
|
FILES:${PN} += " \
|
|
${datadir}/libgweather-4 \
|
|
${libdir}/libgweather-4 \
|
|
"
|