mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Michael Olbrich <m.olbrich@pengutronix.de>
To: ptxdist@pengutronix.de
Cc: "Sven Püschel" <s.pueschel@pengutronix.de>
Subject: Re: [ptxdist] [APPLIED] protobuf-c: version bump 1.4.1 -> 1.5.2
Date: Fri,  7 Nov 2025 09:53:25 +0100	[thread overview]
Message-ID: <20251107085325.2208851-1-m.olbrich@pengutronix.de> (raw)
In-Reply-To: <20251028143921.512916-3-s.pueschel@pengutronix.de>

Thanks, applied as 4823d482d84c1ca16dfea8566594883ded52780a.

Michael

[sent from post-receive hook]

On Fri, 07 Nov 2025 09:53:25 +0100, Sven Püschel <s.pueschel@pengutronix.de> wrote:
> protobuf-c compiles fine without a dependency on the host protobuf-c.
> Therefore remove the dependency.
> 
> The license md5sum changed due to an updated year.
> 
> Signed-off-by: Sven Püschel <s.pueschel@pengutronix.de>
> Message-Id: <20251028143921.512916-3-s.pueschel@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/host-protobuf-c.make b/rules/host-protobuf-c.make
> index c63134ff0401..da27428722f7 100644
> --- a/rules/host-protobuf-c.make
> +++ b/rules/host-protobuf-c.make
> @@ -17,6 +17,11 @@ HOST_PACKAGES-$(PTXCONF_HOST_PROTOBUF_C) += host-protobuf-c
>  HOST_PROTOBUF_C_CONF_TOOL	:= autoconf
>  HOST_PROTOBUF_C_CONF_OPT	:= \
>  	$(HOST_AUTOCONF) \
> -	--disable-static
> +	$(GLOBAL_LARGE_FILE_OPTION) \
> +	--disable-static \
> +	--enable-protoc \
> +	--disable-valgrind-tests \
> +	--disable-code-coverage \
> +	--$(call ptx/endis, PTXDIST_Y2038)-year2038
>  
>  # vim: syntax=make
> diff --git a/rules/protobuf-c.in b/rules/protobuf-c.in
> index 921f70471a92..0258c6ffa3dd 100644
> --- a/rules/protobuf-c.in
> +++ b/rules/protobuf-c.in
> @@ -2,7 +2,6 @@
>  
>  config PROTOBUF_C
>  	tristate
> -	select HOST_PROTOBUF_C
>  	prompt "protobuf-c                    "
>  	help
>  	  A C implementation of the Protocol Buffers data serialization
> diff --git a/rules/protobuf-c.make b/rules/protobuf-c.make
> index 60f7f6494520..2131a75b7e28 100644
> --- a/rules/protobuf-c.make
> +++ b/rules/protobuf-c.make
> @@ -14,15 +14,15 @@ PACKAGES-$(PTXCONF_PROTOBUF_C) += protobuf-c
>  #
>  # Paths and names
>  #
> -PROTOBUF_C_VERSION	:= 1.4.1
> -PROTOBUF_C_MD5		:= 4c17d70317ce9fc4cca9690377284659
> +PROTOBUF_C_VERSION	:= 1.5.2
> +PROTOBUF_C_MD5		:= 0612ee47cccaaf4ad1c4f0c8bdc13abf
>  PROTOBUF_C		:= protobuf-c-$(PROTOBUF_C_VERSION)
>  PROTOBUF_C_SUFFIX	:= tar.gz
>  PROTOBUF_C_URL		:= https://github.com/protobuf-c/protobuf-c/releases/download/v$(PROTOBUF_C_VERSION)/protobuf-c-$(PROTOBUF_C_VERSION).$(PROTOBUF_C_SUFFIX)
>  PROTOBUF_C_SOURCE	:= $(SRCDIR)/$(PROTOBUF_C).$(PROTOBUF_C_SUFFIX)
>  PROTOBUF_C_DIR		:= $(BUILDDIR)/$(PROTOBUF_C)
>  PROTOBUF_C_LICENSE	:= BSD-2-Clause
> -PROTOBUF_C_LICENSE_FILES := file://LICENSE;md5=9f725889e0d77383e26cb42b0b62cea2
> +PROTOBUF_C_LICENSE_FILES := file://LICENSE;md5=bd8de4f63e06b1ccc06e9f8dc5b1aa97
>  
>  # ----------------------------------------------------------------------------
>  # Prepare
> @@ -34,8 +34,12 @@ PROTOBUF_C_LICENSE_FILES := file://LICENSE;md5=9f725889e0d77383e26cb42b0b62cea2
>  PROTOBUF_C_CONF_TOOL	:= autoconf
>  PROTOBUF_C_CONF_OPT	:= \
>  	$(CROSS_AUTOCONF_USR) \
> +	$(GLOBAL_LARGE_FILE_OPTION) \
> +	--disable-static \
>  	--disable-protoc \
> -	--disable-static
> +	--disable-valgrind-tests \
> +	--disable-code-coverage \
> +	--$(call ptx/endis, PTXDIST_Y2038)-year2038
>  
>  # ----------------------------------------------------------------------------
>  # Target-Install



  reply	other threads:[~2025-11-07  8:53 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-28 14:38 [ptxdist] [PATCH 1/4] host-abseil-cpp: new package Sven Püschel
2025-10-28 14:38 ` [ptxdist] [PATCH 2/4] protobuf: version bump 3.7.1 -> 33.0 Sven Püschel
2025-11-07  8:53   ` [ptxdist] [APPLIED] " Michael Olbrich
2025-10-28 14:38 ` [ptxdist] [PATCH 3/4] protobuf-c: version bump 1.4.1 -> 1.5.2 Sven Püschel
2025-11-07  8:53   ` Michael Olbrich [this message]
2025-10-28 14:38 ` [ptxdist] [PATCH 4/4] nanopb: version bump 0.4.8 -> 0.4.9.1 Sven Püschel
2025-11-07  8:53   ` [ptxdist] [APPLIED] " Michael Olbrich
2025-11-07  8:53 ` [ptxdist] [APPLIED] host-abseil-cpp: new package Michael Olbrich

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=20251107085325.2208851-1-m.olbrich@pengutronix.de \
    --to=m.olbrich@pengutronix.de \
    --cc=ptxdist@pengutronix.de \
    --cc=s.pueschel@pengutronix.de \
    /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