package/libqrtr-glib: bump version to 1.2.2

Project switched to meson.
Use gitlab.freedesktop.org for download (previous URL did not work for
meson), thus moving to tar.gz archive.

Disable gtkdocize (not only to follow Buildroot approach, but also to avoid
build failure: ERROR: Program 'gtkdoc-scan' not found or not executable).

License file got renamed:
974e4231ea

Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Petr Vorel 2024-01-15 23:39:52 +01:00 committed by Thomas Petazzoni
parent d5524c0065
commit b50bb98220
2 changed files with 11 additions and 9 deletions

View File

@ -1,3 +1,3 @@
# Locally computed
sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 COPYING.LIB
sha256 30d879b2ade6f8f461def3a677755db5c0238babf688d5c83c03b3e6abe35cee libqrtr-glib-1.0.0.tar.xz
sha256 c5cdf5ea91cbd2cf2758b2896064c7b1dfe7156063267df905f957ac69b6b763 libqrtr-glib-1.2.2.tar.gz
sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 LICENSES/LGPL-2.1-or-later.txt

View File

@ -4,19 +4,21 @@
#
################################################################################
LIBQRTR_GLIB_VERSION = 1.0.0
LIBQRTR_GLIB_SITE = http://www.freedesktop.org/software/libqmi
LIBQRTR_GLIB_SOURCE = libqrtr-glib-$(LIBQRTR_GLIB_VERSION).tar.xz
LIBQRTR_GLIB_VERSION = 1.2.2
LIBQRTR_GLIB_SITE = https://gitlab.freedesktop.org/mobile-broadband/libqrtr-glib/-/archive/$(LIBQRTR_GLIB_VERSION)
LIBQRTR_GLIB_LICENSE = LGPL-2.1+
LIBQRTR_GLIB_LICENSE_FILES = COPYING.LIB
LIBQRTR_GLIB_LICENSE_FILES = LICENSES/LGPL-2.1-or-later.txt
LIBQRTR_GLIB_INSTALL_STAGING = YES
LIBQRTR_GLIB_DEPENDENCIES = libglib2
ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
LIBQRTR_GLIB_CONF_OPTS += --enable-introspection
LIBQRTR_GLIB_CONF_OPTS += -Dintrospection=true
LIBQRTR_GLIB_DEPENDENCIES += gobject-introspection
else
LIBQRTR_GLIB_CONF_OPTS += --disable-introspection
LIBQRTR_GLIB_CONF_OPTS += -Dintrospection=false
endif
$(eval $(autotools-package))
# disable gtkdocize
LIBQRTR_GLIB_CONF_OPTS += -Dgtk_doc=false
$(eval $(meson-package))