* [PATCH] strace: Update to version 5.5
@ 2020-04-02 11:21 Erik Kapfer
2020-04-02 11:32 ` Michael Tremer
0 siblings, 1 reply; 2+ messages in thread
From: Erik Kapfer @ 2020-04-02 11:21 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2189 bytes --]
The version jump from 4.7 to 5.5 includes several bugfixes and improvements.
For a full overview --> https://github.com/strace/strace/releases .
Signed-off-by: Erik Kapfer <ummeegge(a)ipfire.org>
---
config/rootfiles/packages/strace | 1 +
lfs/strace | 10 +++++-----
2 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/config/rootfiles/packages/strace b/config/rootfiles/packages/strace
index 4730d8caf..d789520c7 100644
--- a/config/rootfiles/packages/strace
+++ b/config/rootfiles/packages/strace
@@ -1,4 +1,5 @@
usr/bin/strace
#usr/bin/strace-graph
#usr/bin/strace-log-merge
+#usr/share/man/man1/strace-log-merge.1
#usr/share/man/man1/strace.1
diff --git a/lfs/strace b/lfs/strace
index 11d7c49f6..53e93b1ec 100644
--- a/lfs/strace
+++ b/lfs/strace
@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2018 IPFire Team <info(a)ipfire.org> #
+# Copyright (C) 2007-2020 IPFire Team <info(a)ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -24,7 +24,7 @@
include Config
-VER = 4.7
+VER = 5.5
SUP_ARCHES = x86_64 i586 armv5tel
THISAPP = strace-$(VER)
@@ -33,9 +33,9 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = strace
-PAK_VER = 1
+PAK_VER = 2
-DEPS =
+DEPS = ""
###############################################################################
# Top-level Rules
@@ -45,7 +45,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_MD5 = 6054c3880a00c6703f83b57f15e04642
+$(DL_FILE)_MD5 = dbce2e84632b39a4ed86b9fc60447af9
install : $(TARGET)
--
2.12.2
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] strace: Update to version 5.5
2020-04-02 11:21 [PATCH] strace: Update to version 5.5 Erik Kapfer
@ 2020-04-02 11:32 ` Michael Tremer
0 siblings, 0 replies; 2+ messages in thread
From: Michael Tremer @ 2020-04-02 11:32 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2425 bytes --]
Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>
> On 2 Apr 2020, at 12:21, Erik Kapfer <ummeegge(a)ipfire.org> wrote:
>
> The version jump from 4.7 to 5.5 includes several bugfixes and improvements.
> For a full overview --> https://github.com/strace/strace/releases .
>
> Signed-off-by: Erik Kapfer <ummeegge(a)ipfire.org>
> ---
> config/rootfiles/packages/strace | 1 +
> lfs/strace | 10 +++++-----
> 2 files changed, 6 insertions(+), 5 deletions(-)
>
> diff --git a/config/rootfiles/packages/strace b/config/rootfiles/packages/strace
> index 4730d8caf..d789520c7 100644
> --- a/config/rootfiles/packages/strace
> +++ b/config/rootfiles/packages/strace
> @@ -1,4 +1,5 @@
> usr/bin/strace
> #usr/bin/strace-graph
> #usr/bin/strace-log-merge
> +#usr/share/man/man1/strace-log-merge.1
> #usr/share/man/man1/strace.1
> diff --git a/lfs/strace b/lfs/strace
> index 11d7c49f6..53e93b1ec 100644
> --- a/lfs/strace
> +++ b/lfs/strace
> @@ -1,7 +1,7 @@
> ###############################################################################
> # #
> # IPFire.org - A linux based firewall #
> -# Copyright (C) 2007-2018 IPFire Team <info(a)ipfire.org> #
> +# Copyright (C) 2007-2020 IPFire Team <info(a)ipfire.org> #
> # #
> # This program is free software: you can redistribute it and/or modify #
> # it under the terms of the GNU General Public License as published by #
> @@ -24,7 +24,7 @@
>
> include Config
>
> -VER = 4.7
> +VER = 5.5
> SUP_ARCHES = x86_64 i586 armv5tel
>
> THISAPP = strace-$(VER)
> @@ -33,9 +33,9 @@ DL_FROM = $(URL_IPFIRE)
> DIR_APP = $(DIR_SRC)/$(THISAPP)
> TARGET = $(DIR_INFO)/$(THISAPP)
> PROG = strace
> -PAK_VER = 1
> +PAK_VER = 2
>
> -DEPS =
> +DEPS = ""
>
> ###############################################################################
> # Top-level Rules
> @@ -45,7 +45,7 @@ objects = $(DL_FILE)
>
> $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
>
> -$(DL_FILE)_MD5 = 6054c3880a00c6703f83b57f15e04642
> +$(DL_FILE)_MD5 = dbce2e84632b39a4ed86b9fc60447af9
>
> install : $(TARGET)
>
> --
> 2.12.2
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-04-02 11:32 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-02 11:21 [PATCH] strace: Update to version 5.5 Erik Kapfer
2020-04-02 11:32 ` Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox