From patchwork Sun May 7 13:23:45 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marek Vasut X-Patchwork-Id: 23506 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 72831C7EE2D for ; Sun, 7 May 2023 13:24:22 +0000 (UTC) Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) by mx.groups.io with SMTP id smtpd.web10.65318.1683465853315331417 for ; Sun, 07 May 2023 06:24:14 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="body hash did not verify" header.i=@denx.de header.s=phobos-20191101 header.b=rHXbbB7V; spf=pass (domain: denx.de, ip: 85.214.62.61, mailfrom: marex@denx.de) Received: from tr.lan (ip-86-49-120-218.bb.vodafone.cz [86.49.120.218]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: marex@denx.de) by phobos.denx.de (Postfix) with ESMTPSA id E8EEC83744; Sun, 7 May 2023 15:24:09 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=denx.de; s=phobos-20191101; t=1683465850; bh=7eTJ+UDqzCa99H/JdkxGwzAJh4spvTRUKOaa8Me6aRU=; h=From:To:Cc:Subject:Date:From; b=rHXbbB7Vrq5dkMRELWOsmjAXDmBlMv9ku0ZiQA54/lRZGFtou92ajp0gAXlaiqVIZ Ctvuow1Gdnd4ATE0SuGxGV1lDIPB+eChKte1sy5eQkGo0dkHGq5hRrHwdz5jMcYZZ6 qWDYvce+fopefYEJFU4/XKWLw4aw54rmYll7coTEkG+Ghla9CC6jf8IwWIdZKxkPvI 4jSmpf+d4owekZyWZgmEIbL4Yp5odcZaPEqpyzaEDSEpd55dUGRDz4r5dRsUSVwvPI LipH9FW7J+WtTAnseLSX7mkNgsRSr87JRtKF4iZocTPE2Pp5fF+GuxBSR/IsMfs0hH ob8DfbSeuwmdg== From: Marek Vasut To: openembedded-devel@lists.openembedded.org Cc: Marek Vasut , Fabio Estevam , Khem Raj , Martin Jansa , Philippe Coval , Philippe Coval Subject: [meta-oe][PATCH 1/5] lvgl: Upgrade lvgl to 8.3.7 and lv-driver to 8.3.0 Date: Sun, 7 May 2023 15:23:45 +0200 Message-Id: <20230507132349.10674-1-marex@denx.de> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 X-Virus-Scanned: clamav-milter 0.103.8 at phobos.denx.de X-Virus-Status: Clean List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Sun, 07 May 2023 13:24:22 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/102327 Both the LVGL and lv-drivers are now available in 8.3.y release, upgrade both to latest 8.3.y release version in lock step. Also, lvgl contains no submodules, drop the gitsm fetcher use. Signed-off-by: Marek Vasut --- Cc: Fabio Estevam Cc: Khem Raj Cc: Martin Jansa Cc: Philippe Coval Cc: Philippe Coval --- .../lvgl/{lv-drivers_7.11.0.bb => lv-drivers_8.3.0.bb} | 5 ++--- .../recipes-graphics/lvgl/{lvgl_8.1.0.bb => lvgl_8.3.7.bb} | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) rename meta-oe/recipes-graphics/lvgl/{lv-drivers_7.11.0.bb => lv-drivers_8.3.0.bb} (89%) rename meta-oe/recipes-graphics/lvgl/{lvgl_8.1.0.bb => lvgl_8.3.7.bb} (89%) diff --git a/meta-oe/recipes-graphics/lvgl/lv-drivers_7.11.0.bb b/meta-oe/recipes-graphics/lvgl/lv-drivers_8.3.0.bb similarity index 89% rename from meta-oe/recipes-graphics/lvgl/lv-drivers_7.11.0.bb rename to meta-oe/recipes-graphics/lvgl/lv-drivers_8.3.0.bb index cf33c6904..d9cde497c 100644 --- a/meta-oe/recipes-graphics/lvgl/lv-drivers_7.11.0.bb +++ b/meta-oe/recipes-graphics/lvgl/lv-drivers_8.3.0.bb @@ -8,9 +8,8 @@ DESCRIPTION = "Collection of drivers: SDL, framebuffer, wayland and more..." LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=d6fc0df890c5270ef045981b516bb8f2" -# TODO: Pin upstream release (current v7.11.0-80-g419a757) -SRC_URI = "git://github.com/lvgl/lv_drivers;protocol=https;nobranch=1" -SRCREV = "419a757c23aaa67c676fe3a2196d64808fcf2254" +SRC_URI = "git://github.com/lvgl/lv_drivers;protocol=https;branch=release/v8.3" +SRCREV = "71830257710f430b6d8d1c324f89f2eab52488f1" DEPENDS = "libxkbcommon lvgl wayland" diff --git a/meta-oe/recipes-graphics/lvgl/lvgl_8.1.0.bb b/meta-oe/recipes-graphics/lvgl/lvgl_8.3.7.bb similarity index 89% rename from meta-oe/recipes-graphics/lvgl/lvgl_8.1.0.bb rename to meta-oe/recipes-graphics/lvgl/lvgl_8.3.7.bb index ea74c5918..a82ab3b74 100644 --- a/meta-oe/recipes-graphics/lvgl/lvgl_8.1.0.bb +++ b/meta-oe/recipes-graphics/lvgl/lvgl_8.3.7.bb @@ -8,8 +8,8 @@ SUMMARY = "Light and Versatile Graphics Library" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENCE.txt;md5=bf1198c89ae87f043108cea62460b03a" -SRC_URI = "gitsm://github.com/lvgl/lvgl;protocol=https;nobranch=1" -SRCREV = "d38eb1e689fa5a64c25e677275172d9c8a4ab2f0" +SRC_URI = "git://github.com/lvgl/lvgl;protocol=https;branch=release/v8.3" +SRCREV = "2b56e04205481daa6575bd5f7ab5df59d11676eb" REQUIRED_DISTRO_FEATURES = "wayland"