mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH 2/2] host-libevent: Follow target libevent bump. 2.1.12 -> 2.1.13
@ 2026-07-08 17:45 Christian Melki
  2026-07-08 17:45 ` [ptxdist] [PATCH 1/2] libevent: Version " Christian Melki
  2026-07-15 10:01 ` [ptxdist] [APPLIED] host-libevent: Follow target libevent " Michael Olbrich
  0 siblings, 2 replies; 4+ messages in thread
From: Christian Melki @ 2026-07-08 17:45 UTC (permalink / raw)
  To: ptxdist

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 rules/host-libevent.make | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/rules/host-libevent.make b/rules/host-libevent.make
index ff8445d87..4867b729a 100644
--- a/rules/host-libevent.make
+++ b/rules/host-libevent.make
@@ -32,6 +32,16 @@ HOST_LIBEVENT_CONF_OPT	:= \
 	--disable-samples \
 	--enable-function-sections \
 	--disable-verbose-debug \
-	--enable-clock-gettime
+	--enable-clock-gettime \
+	--disable-doxygen-doc \
+	--disable-doxygen-dot \
+	--disable-doxygen-man \
+	--disable-doxygen-rtf \
+	--disable-doxygen-xml \
+	--disable-doxygen-chm \
+	--disable-doxygen-chi \
+	--disable-doxygen-html \
+	--disable-doxygen-ps \
+	--disable-doxygen-pdf
 
 # vim: syntax=make
-- 
2.43.0




^ permalink raw reply	[flat|nested] 4+ messages in thread

* [ptxdist] [PATCH 1/2] libevent: Version bump. 2.1.12 -> 2.1.13
  2026-07-08 17:45 [ptxdist] [PATCH 2/2] host-libevent: Follow target libevent bump. 2.1.12 -> 2.1.13 Christian Melki
@ 2026-07-08 17:45 ` Christian Melki
  2026-07-15 10:01   ` [ptxdist] [APPLIED] " Michael Olbrich
  2026-07-15 10:01 ` [ptxdist] [APPLIED] host-libevent: Follow target libevent " Michael Olbrich
  1 sibling, 1 reply; 4+ messages in thread
From: Christian Melki @ 2026-07-08 17:45 UTC (permalink / raw)
  To: ptxdist

Mostly security, compile fixes.
https://raw.githubusercontent.com/libevent/libevent/release-2.1.13-stable/ChangeLog

* Adjust build options.

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 rules/libevent.make | 18 +++++++++++++++---
 1 file changed, 15 insertions(+), 3 deletions(-)

diff --git a/rules/libevent.make b/rules/libevent.make
index e8cae6109..9d5c83d0b 100644
--- a/rules/libevent.make
+++ b/rules/libevent.make
@@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_LIBEVENT) += libevent
 #
 # Paths and names
 #
-LIBEVENT_VERSION	:= 2.1.12
-LIBEVENT_SHA256		:= 92e6de1be9ec176428fd2367677e61ceffc2ee1cb119035037a27d346b0403bb
+LIBEVENT_VERSION	:= 2.1.13
+LIBEVENT_SHA256		:= f7e9383b8c0baa81b687e5b5eecc01beefaf1b19b64151d95ed61647fe7a315c
 LIBEVENT		:= libevent-$(LIBEVENT_VERSION)-stable
 LIBEVENT_SUFFIX		:= tar.gz
 LIBEVENT_URL		:= https://github.com/libevent/libevent/releases/download/release-$(LIBEVENT_VERSION)-stable/$(LIBEVENT).$(LIBEVENT_SUFFIX)
@@ -47,7 +47,19 @@ LIBEVENT_CONF_OPT	:= \
 	--enable-function-sections \
 	--disable-verbose-debug \
 	--enable-clock-gettime \
-	$(GLOBAL_LARGE_FILE_OPTION)
+	$(GLOBAL_LARGE_FILE_OPTION) \
+	--disable-doxygen-doc \
+	--disable-doxygen-dot \
+	--disable-doxygen-man \
+	--disable-doxygen-rtf \
+	--disable-doxygen-xml \
+	--disable-doxygen-chm \
+	--disable-doxygen-chi \
+	--disable-doxygen-html \
+	--disable-doxygen-ps \
+	--disable-doxygen-pdf \
+	--$(call ptx/endis, PTXDIST_Y2038)-year2038
+
 
 # ----------------------------------------------------------------------------
 # Target-Install
-- 
2.43.0




^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [ptxdist] [APPLIED] libevent: Version bump. 2.1.12 -> 2.1.13
  2026-07-08 17:45 ` [ptxdist] [PATCH 1/2] libevent: Version " Christian Melki
@ 2026-07-15 10:01   ` Michael Olbrich
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Olbrich @ 2026-07-15 10:01 UTC (permalink / raw)
  To: ptxdist; +Cc: Christian Melki

Thanks, applied as c237540af38d46ea70f3810c21d171a659c0c1e6.

Michael

[sent from post-receive hook]

On Wed, 15 Jul 2026 12:01:53 +0200, Christian Melki <christian.melki@t2data.com> wrote:
> Mostly security, compile fixes.
> https://raw.githubusercontent.com/libevent/libevent/release-2.1.13-stable/ChangeLog
> 
> * Adjust build options.
> 
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20260708174508.621527-2-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/libevent.make b/rules/libevent.make
> index e8cae610906e..9d5c83d0b19d 100644
> --- a/rules/libevent.make
> +++ b/rules/libevent.make
> @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_LIBEVENT) += libevent
>  #
>  # Paths and names
>  #
> -LIBEVENT_VERSION	:= 2.1.12
> -LIBEVENT_SHA256		:= 92e6de1be9ec176428fd2367677e61ceffc2ee1cb119035037a27d346b0403bb
> +LIBEVENT_VERSION	:= 2.1.13
> +LIBEVENT_SHA256		:= f7e9383b8c0baa81b687e5b5eecc01beefaf1b19b64151d95ed61647fe7a315c
>  LIBEVENT		:= libevent-$(LIBEVENT_VERSION)-stable
>  LIBEVENT_SUFFIX		:= tar.gz
>  LIBEVENT_URL		:= https://github.com/libevent/libevent/releases/download/release-$(LIBEVENT_VERSION)-stable/$(LIBEVENT).$(LIBEVENT_SUFFIX)
> @@ -47,7 +47,19 @@ LIBEVENT_CONF_OPT	:= \
>  	--enable-function-sections \
>  	--disable-verbose-debug \
>  	--enable-clock-gettime \
> -	$(GLOBAL_LARGE_FILE_OPTION)
> +	$(GLOBAL_LARGE_FILE_OPTION) \
> +	--disable-doxygen-doc \
> +	--disable-doxygen-dot \
> +	--disable-doxygen-man \
> +	--disable-doxygen-rtf \
> +	--disable-doxygen-xml \
> +	--disable-doxygen-chm \
> +	--disable-doxygen-chi \
> +	--disable-doxygen-html \
> +	--disable-doxygen-ps \
> +	--disable-doxygen-pdf \
> +	--$(call ptx/endis, PTXDIST_Y2038)-year2038
> +
>  
>  # ----------------------------------------------------------------------------
>  # Target-Install



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [ptxdist] [APPLIED] host-libevent: Follow target libevent bump. 2.1.12 -> 2.1.13
  2026-07-08 17:45 [ptxdist] [PATCH 2/2] host-libevent: Follow target libevent bump. 2.1.12 -> 2.1.13 Christian Melki
  2026-07-08 17:45 ` [ptxdist] [PATCH 1/2] libevent: Version " Christian Melki
@ 2026-07-15 10:01 ` Michael Olbrich
  1 sibling, 0 replies; 4+ messages in thread
From: Michael Olbrich @ 2026-07-15 10:01 UTC (permalink / raw)
  To: ptxdist; +Cc: Christian Melki

Thanks, applied as 44d3533ef5131f7a163a217aee16608989d1597d.

Michael

[sent from post-receive hook]

On Wed, 15 Jul 2026 12:01:54 +0200, Christian Melki <christian.melki@t2data.com> wrote:
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20260708174508.621527-1-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/host-libevent.make b/rules/host-libevent.make
> index ff8445d87662..4867b729a9d8 100644
> --- a/rules/host-libevent.make
> +++ b/rules/host-libevent.make
> @@ -32,6 +32,16 @@ HOST_LIBEVENT_CONF_OPT	:= \
>  	--disable-samples \
>  	--enable-function-sections \
>  	--disable-verbose-debug \
> -	--enable-clock-gettime
> +	--enable-clock-gettime \
> +	--disable-doxygen-doc \
> +	--disable-doxygen-dot \
> +	--disable-doxygen-man \
> +	--disable-doxygen-rtf \
> +	--disable-doxygen-xml \
> +	--disable-doxygen-chm \
> +	--disable-doxygen-chi \
> +	--disable-doxygen-html \
> +	--disable-doxygen-ps \
> +	--disable-doxygen-pdf
>  
>  # vim: syntax=make



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-07-15 10:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-08 17:45 [ptxdist] [PATCH 2/2] host-libevent: Follow target libevent bump. 2.1.12 -> 2.1.13 Christian Melki
2026-07-08 17:45 ` [ptxdist] [PATCH 1/2] libevent: Version " Christian Melki
2026-07-15 10:01   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-07-15 10:01 ` [ptxdist] [APPLIED] host-libevent: Follow target libevent " Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox