Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Seiderer via buildroot <buildroot@buildroot.org>
To: Pierre-Yves Kerbrat via buildroot <buildroot@buildroot.org>
Cc: Pierre-Yves Kerbrat <pyk@foss.peewhy.fr>,
	Kieran Bingham <kieran.bingham@ideasonboard.com>,
	Marcus Folkesson <marcus.folkesson@gmail.com>
Subject: Re: [Buildroot] [PATCH v2] package/libcamera: bump to v0.7.0
Date: Fri, 6 Feb 2026 10:52:42 +0100	[thread overview]
Message-ID: <20260206105242.0f66fb07@pc-1> (raw)
In-Reply-To: <20260206085907.55734-1-pyk@foss.peewhy.fr>

Hello Pierre-Yves,

On Fri,  6 Feb 2026 09:59:07 +0100, Pierre-Yves Kerbrat via buildroot <buildroot@buildroot.org> wrote:

> Changelog:
> https://git.linuxtv.org/libcamera.git/tag/?h=v0.7.0
> 
> Add missing licenses hash:
> - LICENSES/Apache-2.0.txt
> Added with: https://git.linuxtv.org/libcamera.git/commit/LICENSES/Apache-2.0.txt?id=ce02faa088dd3128a097b0f7ac6ce4e507e89f98

License was not added with this commit, but only renamed, see [1]...

This license was omitted back in 2020 with the comment (see [2]):
	'Apache-2.0 omitted - applies only for android code'

Not sure if this is still valid with the current version (and apologize for not
leaving a comment in libcamera.mk)...

> - LICENSES/CC-BY-4.0.txt
> Added with: https://git.linuxtv.org/libcamera.git/commit/LICENSES/CC-BY-4.0.txt?id=b4e31a88d304e09e200af9d1e00760074cc854c2

According to the commit 'Documentation: theme: Specify license of search.png' this one is only for the file 'search.png'....

Regards,
Peter

[1] https://git.linuxtv.org/libcamera.git/commit/?id=ce02faa088dd3128a097b0f7ac6ce4e507e89f98
[2] https://gitlab.com/buildroot.org/buildroot/-/commit/f63d6b54591680e11e7f5c7e129ea6b08aaf3f0d

> 
> Signed-off-by: Pierre-Yves Kerbrat <pyk@foss.peewhy.fr>
> 
> ---
> Changes v1 -> v2:
> - add missing licenses libcamera.mk
> - reorder licenses entries alphabetically
> ---
>  package/libcamera/libcamera.hash |  4 +++-
>  package/libcamera/libcamera.mk   | 29 +++++++++++++++++------------
>  2 files changed, 20 insertions(+), 13 deletions(-)
> 
> diff --git a/package/libcamera/libcamera.hash b/package/libcamera/libcamera.hash
> index 4e79be844e60..bddff77cda21 100644
> --- a/package/libcamera/libcamera.hash
> +++ b/package/libcamera/libcamera.hash
> @@ -1,10 +1,12 @@
>  # Locally computed
> -sha256  85d85409d6e04bcf2e1ed57d9b59ebcc9fb770e5d39690d7ac233e9784835b89  libcamera-v0.6.0-git4.tar.gz
> +sha256  9e684bfcb8679e5e7ec7fb0da9dec68e71f0b75a6b0c8edcd892b26a92726a92  libcamera-v0.7.0-git4.tar.gz
>  
>  # license files
> +sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  LICENSES/Apache-2.0.txt
>  sha256  fd38b2c053c0cce46d9c5ef3545a6e34d157a240ba99c9b8dca5d37a8147da6c  LICENSES/BSD-2-Clause.txt
>  sha256  e11af671c491efac2f94c1d752bea92f4308ca2450c7d11e582e4b48c40e4de1  LICENSES/BSD-3-Clause.txt
>  sha256  6a573fb2f9082662978cf21fb153096df0a1981deaea7dbc10a11046fe005d9f  LICENSES/CC0-1.0.txt
> +sha256  d557539df68e771cc1eedcc91d13f70fca930e508d11eedcafa4b15db49e3744  LICENSES/CC-BY-4.0.txt
>  sha256  ec3732087acf8c52429a020d6bba362ff578705bdb53365a21744485ec15b0e6  LICENSES/CC-BY-SA-4.0.txt
>  sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  LICENSES/GPL-2.0-only.txt
>  sha256  606aa26338f69ce178f1cbc648b7574aec4b5bbaeb20f4df36ff49010cb8fbbd  LICENSES/GPL-2.0-or-later.txt
> diff --git a/package/libcamera/libcamera.mk b/package/libcamera/libcamera.mk
> index e86e05328c1c..67a4bdaeb1dd 100644
> --- a/package/libcamera/libcamera.mk
> +++ b/package/libcamera/libcamera.mk
> @@ -5,7 +5,7 @@
>  ################################################################################
>  
>  LIBCAMERA_SITE = https://git.linuxtv.org/libcamera.git
> -LIBCAMERA_VERSION = v0.6.0
> +LIBCAMERA_VERSION = v0.7.0
>  LIBCAMERA_SITE_METHOD = git
>  LIBCAMERA_DEPENDENCIES = \
>  	host-openssl \
> @@ -23,23 +23,28 @@ LIBCAMERA_CONF_OPTS = \
>  	-Dwerror=false
>  LIBCAMERA_INSTALL_STAGING = YES
>  LIBCAMERA_LICENSE = \
> -	LGPL-2.1+ (library), \
> -	GPL-2.0+ (utils), \
> -	MIT (qcam/assets/feathericons), \
> +	Apache-2.0 (library),\
>  	BSD-2-Clause (raspberrypi), \
> -	GPL-2.0 with Linux-syscall-note or BSD-3-Clause (linux kernel headers), \
> +	BSD-3-Clause (utils library), \
> +	CC-BY-4.0 (doc), \
> +	CC-BY-SA-4.0 (doc), \
>  	CC0-1.0 (meson build system), \
> -	CC-BY-SA-4.0 (doc)
> +	GPL-2.0 with Linux-syscall-note or BSD-3-Clause (linux kernel headers), \
> +	GPL-2.0+ (utils), \
> +	LGPL-2.1+ (library), \
> +	MIT (qcam/assets/feathericons)
>  LIBCAMERA_LICENSE_FILES = \
> -	LICENSES/LGPL-2.1-or-later.txt \
> -	LICENSES/GPL-2.0-or-later.txt \
> -	LICENSES/MIT.txt \
> +	LICENSES/Apache-2.0.txt \
>  	LICENSES/BSD-2-Clause.txt \
> -	LICENSES/GPL-2.0-only.txt \
> -	LICENSES/Linux-syscall-note.txt \
>  	LICENSES/BSD-3-Clause.txt \
> +	LICENSES/CC-BY-4.0.txt \
> +	LICENSES/CC-BY-SA-4.0.txt \
>  	LICENSES/CC0-1.0.txt \
> -	LICENSES/CC-BY-SA-4.0.txt
> +	LICENSES/GPL-2.0-only.txt \
> +	LICENSES/GPL-2.0-or-later.txt \
> +	LICENSES/LGPL-2.1-or-later.txt \
> +	LICENSES/Linux-syscall-note.txt \
> +	LICENSES/MIT.txt
>  
>  ifeq ($(BR2_TOOLCHAIN_GCC_AT_LEAST_7),y)
>  LIBCAMERA_CXXFLAGS = -faligned-new

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

  reply	other threads:[~2026-02-06  9:52 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-02-05 17:35 [Buildroot] [PATCH] package/libcamera: bump to v0.7.0 Pierre-Yves Kerbrat via buildroot
2026-02-05 18:17 ` Kieran Bingham
2026-02-05 22:18 ` Julien Olivain via buildroot
2026-02-06  8:59   ` [Buildroot] [PATCH v2] " Pierre-Yves Kerbrat via buildroot
2026-02-06  9:52     ` Peter Seiderer via buildroot [this message]
2026-02-06 14:56       ` [Buildroot] [PATCH v3] " Pierre-Yves Kerbrat via buildroot
2026-02-06 21:37         ` Julien Olivain via buildroot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260206105242.0f66fb07@pc-1 \
    --to=buildroot@buildroot.org \
    --cc=kieran.bingham@ideasonboard.com \
    --cc=marcus.folkesson@gmail.com \
    --cc=ps.report@gmx.net \
    --cc=pyk@foss.peewhy.fr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox