mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Michael Olbrich <m.olbrich@pengutronix.de>
To: ptxdist@pengutronix.de
Cc: Thorsten Scherer <t.scherer@eckelmann.de>
Subject: Re: [ptxdist] [APPLIED] latrace: Remove after one year in staging
Date: Mon, 18 May 2026 09:53:49 +0200	[thread overview]
Message-ID: <20260518075349.51088-1-m.olbrich@pengutronix.de> (raw)
In-Reply-To: <20260504121331.57729-12-t.scherer@eckelmann.de>

Thanks, applied as 0b748a180a0654a8c7671b02c2f63904744490be.

Michael

[sent from post-receive hook]

On Mon, 18 May 2026 09:53:49 +0200, Thorsten Scherer <t.scherer@eckelmann.de> wrote:
> Signed-off-by: Thorsten Scherer <t.scherer@eckelmann.de>
> Message-Id: <20260504121331.57729-12-t.scherer@eckelmann.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/patches/latrace-0.5.11/0001-Buildsystem-fix-configure-creation.patch b/patches/latrace-0.5.11/0001-Buildsystem-fix-configure-creation.patch
> deleted file mode 100644
> index 8da3bceaec00..000000000000
> --- a/patches/latrace-0.5.11/0001-Buildsystem-fix-configure-creation.patch
> +++ /dev/null
> @@ -1,25 +0,0 @@
> -From: Juergen Borleis <jbe@pengutronix.de>
> -Date: Fri, 11 Nov 2016 10:47:48 +0100
> -Subject: [PATCH] Buildsystem: fix configure creation
> -
> -According to the AC_DEFINE documentation no parameter is possible, but it
> -fails to create the configure script
> -
> -Signed-off-by: Juergen Borleis <jbe@pengutronix.de>
> ----
> - configure.ac | 2 +-
> - 1 file changed, 1 insertion(+), 1 deletion(-)
> -
> -diff --git a/configure.ac b/configure.ac
> -index 2c287d128f28..42bb7ec78e0f 100644
> ---- a/configure.ac
> -+++ b/configure.ac
> -@@ -88,7 +88,7 @@ AC_DEFINE(CONFIG_VERSION, "AC_PACKAGE_VERSION", [Version of latrace.])
> - if test "$unamem" = "x86_64" -o\
> - 	"$unamem" = "i686" -o\
> - 	"$unamem" = "arm"; then
> --	AC_DEFINE(CONFIG_ARCH_HAVE_ARGS)
> -+	AC_DEFINE(CONFIG_ARCH_HAVE_ARGS, [], [argument display support])
> - 	AC_SUBST(CONFIG_ARCH_HAVE_ARGS, "y")
> - else
> - 	AC_MSG_WARN([Arguments display support disabled])
> diff --git a/patches/latrace-0.5.11/0002-Buildsystem-fix-cross-compilation.patch b/patches/latrace-0.5.11/0002-Buildsystem-fix-cross-compilation.patch
> deleted file mode 100644
> index 359228fb68e6..000000000000
> --- a/patches/latrace-0.5.11/0002-Buildsystem-fix-cross-compilation.patch
> +++ /dev/null
> @@ -1,53 +0,0 @@
> -From: Juergen Borleis <jbe@pengutronix.de>
> -Date: Fri, 11 Nov 2016 10:48:21 +0100
> -Subject: [PATCH] Buildsystem: fix cross compilation
> -
> -Its a really bad idea to use build host's 'uname'...
> -
> -Signed-off-by: Juergen Borleis <jbe@pengutronix.de>
> ----
> - configure.ac | 16 ++++++++--------
> - 1 file changed, 8 insertions(+), 8 deletions(-)
> -
> -diff --git a/configure.ac b/configure.ac
> -index 42bb7ec78e0f..4671c2e0c9a5 100644
> ---- a/configure.ac
> -+++ b/configure.ac
> -@@ -75,19 +75,19 @@ AC_TYPE_UINT8_T
> - AC_SYS_LARGEFILE
> - 
> - date=`date "+%B %G"`
> --unamem=`uname -m | sed -e 's/i.86/i686/' -e 's/^armv.*/arm/'`
> -+AC_CACHE_VAL([latrace_arch], [latrace_arch=`uname -m | sed -e 's/i.86/i686/' -e 's/^armv.*/arm/'`])
> - 
> - AC_SUBST(CONFIG_DATE, "$date")
> --AC_SUBST(CONFIG_SYSDEP_DIR, "$unamem")
> -+AC_SUBST(CONFIG_SYSDEP_DIR, "$latrace_arch")
> - AC_SUBST(CONFIG_VERSION, "AC_PACKAGE_VERSION")
> - 
> - AC_DEFINE(CONFIG_LT_CONFIG, "/tmp/lt-config", [Temporary directory prefix.])
> - AC_DEFINE(CONFIG_VERSION, "AC_PACKAGE_VERSION", [Version of latrace.])
> - 
> - # for following architectures we have argument display support
> --if test "$unamem" = "x86_64" -o\
> --	"$unamem" = "i686" -o\
> --	"$unamem" = "arm"; then
> -+if test "$latrace_arch" = "x86_64" -o\
> -+	"$latrace_arch" = "i686" -o\
> -+	"$latrace_arch" = "arm"; then
> - 	AC_DEFINE(CONFIG_ARCH_HAVE_ARGS, [], [argument display support])
> - 	AC_SUBST(CONFIG_ARCH_HAVE_ARGS, "y")
> - else
> -@@ -95,9 +95,9 @@ else
> - fi
> - 
> - # for following architectures we have automated tests support
> --if test "$unamem" = "x86_64" -o\
> --	"$unamem" = "i686" -o\
> --	"$unamem" = "arm" ; then
> -+if test "$latrace_arch" = "x86_64" -o\
> -+	"$latrace_arch" = "i686" -o\
> -+	"$latrace_arch" = "arm" ; then
> - 	AC_SUBST(CONFIG_ARCH_HAVE_TEST, "y")
> - else
> - 	AC_MSG_WARN([No automated test support])
> diff --git a/patches/latrace-0.5.11/0003-Fix-scanner-config-for-flex-2.6.x.patch b/patches/latrace-0.5.11/0003-Fix-scanner-config-for-flex-2.6.x.patch
> deleted file mode 100644
> index 6d7f2e3f9546..000000000000
> --- a/patches/latrace-0.5.11/0003-Fix-scanner-config-for-flex-2.6.x.patch
> +++ /dev/null
> @@ -1,30 +0,0 @@
> -From: Clemens Gruber <clemens.gruber@pqgruber.com>
> -Date: Tue, 6 Jun 2017 16:10:51 +0200
> -Subject: [PATCH] Fix scanner config for flex 2.6.x
> -
> -Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com>
> ----
> - src/config-flex.l | 4 +---
> - 1 file changed, 1 insertion(+), 3 deletions(-)
> -
> -diff --git a/src/config-flex.l b/src/config-flex.l
> -index 433992f26c34..dd59614da6d3 100644
> ---- a/src/config-flex.l
> -+++ b/src/config-flex.l
> -@@ -108,15 +108,13 @@ OPTIONS				{ BEGIN(options); return OPTIONS; }
> - 
> - %%
> - 
> --#ifndef yywrap
> --int yywrap()
> -+int lt_config_wrap()
> - {
> - 	return 1;
> - 	/* XXX not to get the compiler 'not used' warning */
> - 	yyunput(0, NULL);
> - 	input();
> - }
> --#endif
> - 
> - void lt_config_error(const char *m)
> - {
> diff --git a/patches/latrace-0.5.11/autogen.sh b/patches/latrace-0.5.11/autogen.sh
> deleted file mode 120000
> index 9f8a4cb7ddcb..000000000000
> --- a/patches/latrace-0.5.11/autogen.sh
> +++ /dev/null
> @@ -1 +0,0 @@
> -../autogen.sh
> \ No newline at end of file
> diff --git a/patches/latrace-0.5.11/series b/patches/latrace-0.5.11/series
> deleted file mode 100644
> index e5fca867e395..000000000000
> --- a/patches/latrace-0.5.11/series
> +++ /dev/null
> @@ -1,6 +0,0 @@
> -# generated by git-ptx-patches
> -#tag:base --start-number 1
> -0001-Buildsystem-fix-configure-creation.patch
> -0002-Buildsystem-fix-cross-compilation.patch
> -0003-Fix-scanner-config-for-flex-2.6.x.patch
> -# 4d5dd32b0e94ea16d76445cc06c509e6  - git-ptx-patches magic
> diff --git a/rules/latrace.in b/rules/latrace.in
> deleted file mode 100644
> index c9dba1bb9eb3..000000000000
> --- a/rules/latrace.in
> +++ /dev/null
> @@ -1,28 +0,0 @@
> -## SECTION=staging
> -## old section:
> -### SECTION=debug_tools
> -
> -menuconfig LATRACE
> -	tristate
> -	prompt "latrace                       "
> -	select HOST_FLEX
> -	select BINUTILS if LATRACE_DEMANGLE
> -	help
> -	  A tool to trace library calls and get their statistics in a
> -	  manner similar to the strace utility
> -
> -	  STAGING: remove in PTXdist 2026.03.0
> -	  Unmaintained in PTXdist, upstream dead and fails to build with
> -	  current toolchains.
> -
> -if LATRACE
> -
> -config LATRACE_DEMANGLE
> -	bool
> -	prompt "demangle support"
> -	default y
> -	help
> -	  Enable support for the demangle feature, required to trace C++ libraries
> -	  for example.
> -
> -endif
> diff --git a/rules/latrace.make b/rules/latrace.make
> deleted file mode 100644
> index aaa448ead908..000000000000
> --- a/rules/latrace.make
> +++ /dev/null
> @@ -1,75 +0,0 @@
> -# -*-makefile-*-
> -#
> -# Copyright (C) 2016 by Juergen Borleis <jbe@pengutronix.de>
> -#
> -# For further information about the PTXdist project and license conditions
> -# see the README file.
> -#
> -
> -#
> -# We provide this package
> -#
> -PACKAGES-$(PTXCONF_ARCH_ARM)-$(PTXCONF_LATRACE) += latrace
> -PACKAGES-$(PTXCONF_ARCH_X86)-$(PTXCONF_LATRACE) += latrace
> -#
> -# Paths and names
> -#
> -LATRACE_VERSION	:= 0.5.11
> -LATRACE_MD5	:= 138457c7b9eaf3246eddb7856702cddf
> -LATRACE		:= latrace-$(LATRACE_VERSION)
> -LATRACE_SUFFIX	:= tar.bz2
> -LATRACE_URL	:= http://people.redhat.com/jolsa/latrace/dl/$(LATRACE).$(LATRACE_SUFFIX)
> -LATRACE_SOURCE	:= $(SRCDIR)/$(LATRACE).$(LATRACE_SUFFIX)
> -LATRACE_DIR	:= $(BUILDDIR)/$(LATRACE)
> -LATRACE_LICENSE	:= GPL-3.0-only
> -
> -# ----------------------------------------------------------------------------
> -# Prepare
> -# ----------------------------------------------------------------------------
> -
> -LATRACE_ARCH	:= $(PTXCONF_ARCH_STRING)
> -ifeq ($(PTXCONF_ARCH_X86)-$(PTXCONF_ARCH_X86_64),y-)
> -LATRACE_ARCH	:= "i686"
> -endif
> -
> -LATRACE_CONF_ENV := \
> -	$(CROSS_ENV) \
> -	latrace_arch=$(LATRACE_ARCH) \
> -	ac_cv_path_ASCIIDOC=: \
> -	ac_cv_path_XMLTO=:
> -#
> -# autoconf
> -#
> -LATRACE_CONF_TOOL	:= autoconf
> -LATRACE_CONF_OPT	:= \
> -	$(CROSS_AUTOCONF_USR) \
> -	$(GLOBAL_LARGE_FILE_OPTION)
> -
> -# autotools, but hand-made Makefile m(
> -LATRACE_MAKE_PAR := NO
> -
> -# ----------------------------------------------------------------------------
> -# Target-Install
> -# ----------------------------------------------------------------------------
> -
> -$(STATEDIR)/latrace.targetinstall:
> -	@$(call targetinfo)
> -
> -	@$(call install_init, latrace)
> -	@$(call install_fixup, latrace,PRIORITY,optional)
> -	@$(call install_fixup, latrace,SECTION,base)
> -	@$(call install_fixup, latrace,AUTHOR,"Juergen Borleis <jbe@pengutronix.de>")
> -	@$(call install_fixup, latrace,DESCRIPTION,"library call tracer")
> -
> -	@$(call install_alternative, latrace, 0, 0, 0644, /etc/latrace.d/latrace.conf)
> -	@$(call install_tree, latrace, 0, 0, -, /etc/latrace.d/headers/)
> -
> -	@$(call install_copy, latrace, 0, 0, 0755, -, /usr/bin/latrace)
> -	@$(call install_link, latrace, latrace, /usr/bin/latrace-ctl)
> -	@$(call install_lib, latrace, 0, 0, 0644, libltaudit)
> -
> -	@$(call install_finish, latrace)
> -
> -	@$(call touch)
> -
> -# vim: syntax=make



  reply	other threads:[~2026-05-18  7:55 UTC|newest]

Thread overview: 85+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-04 12:12 [ptxdist] [PATCH 00/42] treewide: " Thorsten Scherer
2026-05-04 12:12 ` [ptxdist] [PATCH 01/42] archivemount: " Thorsten Scherer
2026-05-18  7:53   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:12 ` [ptxdist] [PATCH 02/42] argtable2: " Thorsten Scherer
2026-05-18  7:53   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:12 ` [ptxdist] [PATCH 03/42] bing: " Thorsten Scherer
2026-05-18  7:53   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:12 ` [ptxdist] [PATCH 04/42] calibrator: " Thorsten Scherer
2026-05-18  7:53   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:12 ` [ptxdist] [PATCH 05/42] daemonize: " Thorsten Scherer
2026-05-18  7:53   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:12 ` [ptxdist] [PATCH 06/42] dhex: " Thorsten Scherer
2026-05-18  7:53   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:12 ` [ptxdist] [PATCH 07/42] dialog: " Thorsten Scherer
2026-05-18  7:53   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:12 ` [ptxdist] [PATCH 08/42] frodo: " Thorsten Scherer
2026-05-18  7:53   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:12 ` [ptxdist] [PATCH 09/42] gnuplot: " Thorsten Scherer
2026-05-18  7:53   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:12 ` [ptxdist] [PATCH 10/42] latencytop: " Thorsten Scherer
2026-05-18  7:53   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:13 ` [ptxdist] [PATCH 11/42] latrace: " Thorsten Scherer
2026-05-18  7:53   ` Michael Olbrich [this message]
2026-05-04 12:13 ` [ptxdist] [PATCH 12/42] libcli: " Thorsten Scherer
2026-05-18  7:53   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:13 ` [ptxdist] [PATCH 13/42] libgee: " Thorsten Scherer
2026-05-18  7:53   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:13 ` [ptxdist] [PATCH 14/42] libiodbc: " Thorsten Scherer
2026-05-18  7:53   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:13 ` [ptxdist] [PATCH 15/42] liblockfile: " Thorsten Scherer
2026-05-18  7:53   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:13 ` [ptxdist] [PATCH 16/42] libmikmod: " Thorsten Scherer
2026-05-18  7:53   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:13 ` [ptxdist] [PATCH 17/42] liburcu: " Thorsten Scherer
2026-05-18  7:53   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:13 ` [ptxdist] [PATCH 18/42] links: " Thorsten Scherer
2026-05-18  7:53   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:13 ` [ptxdist] [PATCH 19/42] lsuio: " Thorsten Scherer
2026-05-18  7:53   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:52 ` [ptxdist] [PATCH 20/42] ltt-control: " Thorsten Scherer
2026-05-18  7:53   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:52 ` [ptxdist] [PATCH 21/42] lua-filesystem: " Thorsten Scherer
2026-05-18  7:53   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:52 ` [ptxdist] [PATCH 22/42] media-session: " Thorsten Scherer
2026-05-18  7:53   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:52 ` [ptxdist] [PATCH 23/42] mtd-oopslog: " Thorsten Scherer
2026-05-18  7:53   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:53 ` [ptxdist] [PATCH 24/42] openct: " Thorsten Scherer
2026-05-18  7:54   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:53 ` [ptxdist] [PATCH 25/42] pcmciautils: " Thorsten Scherer
2026-05-18  7:54   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:53 ` [ptxdist] [PATCH 26/42] pslib: " Thorsten Scherer
2026-05-18  7:54   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:53 ` [ptxdist] [PATCH 27/42] sched_switch: " Thorsten Scherer
2026-05-18  7:54   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:53 ` [ptxdist] [PATCH 28/42] schedtool: " Thorsten Scherer
2026-05-18  7:54   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:53 ` [ptxdist] [PATCH 29/42] sdl-gfx: " Thorsten Scherer
2026-05-18  7:54   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:53 ` [ptxdist] [PATCH 30/42] sdl-ttf: " Thorsten Scherer
2026-05-18  7:54   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:53 ` [ptxdist] [PATCH 31/42] sdl: " Thorsten Scherer
2026-05-18  7:54   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:53 ` [ptxdist] [PATCH 32/42] sdl_image: " Thorsten Scherer
2026-05-18  7:54   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:53 ` [ptxdist] [PATCH 33/42] sdl_mixer: " Thorsten Scherer
2026-05-18  7:54   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:53 ` [ptxdist] [PATCH 34/42] setserial: " Thorsten Scherer
2026-05-18  7:54   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:53 ` [ptxdist] [PATCH 35/42] smtpclient: " Thorsten Scherer
2026-05-18  7:54   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:53 ` [ptxdist] [PATCH 36/42] ssmtp: " Thorsten Scherer
2026-05-18  7:54   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:53 ` [ptxdist] [PATCH 37/42] supertux: " Thorsten Scherer
2026-05-18  7:54   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:53 ` [ptxdist] [PATCH 38/42] utelnetd: " Thorsten Scherer
2026-05-18  7:54   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:53 ` [ptxdist] [PATCH 39/42] wireshark: " Thorsten Scherer
2026-05-18  7:54   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:53 ` [ptxdist] [PATCH 40/42] xerces: " Thorsten Scherer
2026-05-18  7:54   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:53 ` [ptxdist] [PATCH 41/42] xterm: " Thorsten Scherer
2026-05-18  7:54   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-05-04 12:53 ` [ptxdist] [PATCH 42/42] zsync: " Thorsten Scherer
2026-05-18  7:54   ` [ptxdist] [APPLIED] " 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=20260518075349.51088-1-m.olbrich@pengutronix.de \
    --to=m.olbrich@pengutronix.de \
    --cc=ptxdist@pengutronix.de \
    --cc=t.scherer@eckelmann.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