* [PATCH] mtr: Update to version 0.95
@ 2022-04-28 21:25 Adolf Belka
2022-04-29 18:35 ` Peter Müller
0 siblings, 1 reply; 2+ messages in thread
From: Adolf Belka @ 2022-04-28 21:25 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 3513 bytes --]
- Update from version 0.94 to 0.95
- Update of rootfile not required
- Changelog
V0.95
Aaron Lipinski (27):
move net_send_batch call to its caller
addr -> hostent for consistency
re-init source too
additional call from net_reopen
refactor - group local, remote inits
reset ctl address family at net_reopen
accept only value used in structure
tell dns process if we want 4 or 6
resolve ipv6 only if we have ipv6
remove wrapper only function
init structures correctly wired up
prepare host with h_addr_list
remove temporaries
extract convert_addrinfo_to_hostent function
move conversion call to caller
use addrinfo
remove conversion function
switch gui to addrinfo
export DEFAULT_AF
reset addr family before searching again
freeaddrinfo
export get_hostent_from_name
make Hostname as const
rename function
dont show json option if not available
Egor Panov (1):
Updated Readme
R.E. Wolff (2):
Slight cleanup, but no fix for code that came up in a bugreport.
increased max length suggested by YVS2014
Roger Wolff (12):
Rogier Wolff (2):
Code formatting for Zenithal pull
added clarification to readme suggested by Zenithal
Sergei Trofimovich (1):
ui/curses: always use "%s"-style format for printf()-style functions
Vincent Bernat (3):
ui: don't cast to void* when calling display_rawhost()
net: fix MPLS display for curses and report
report: fix display of MPLS labels when using --report
Zenithal (1):
Add display of destination with resolved addr under curses mode
a1346054 (5):
fix wrong bash completion flag
fix shellcheck warnings
unify codestyle
fix spelling
trim trailing whitespace
gaamox(a)tutanota.com (1):
Report secondary servers when CSV + wide report is enabled
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
lfs/mtr | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/lfs/mtr b/lfs/mtr
index aadb71d5b..dd190a90f 100644
--- a/lfs/mtr
+++ b/lfs/mtr
@@ -26,7 +26,7 @@ include Config
SUMMARY = Ping and Traceroute Network Diagnostic Tool
-VER = 0.94
+VER = 0.95
THISAPP = mtr-$(VER)
DL_FILE = $(THISAPP).tar.gz
@@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = mtr
-PAK_VER = 5
+PAK_VER = 6
DEPS =
@@ -48,7 +48,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 08f646774eaa323861863f08aa6f91995135923f1597d26790d3dce9d617700b41120686f71105054fb7f75b558c8753119dc5431c4584d88f8bef5629e0ebfa
+$(DL_FILE)_BLAKE2 = 3c972675b97945b96562802c5d0f10de963160682c93c0ea2991b72eca33d136d18948c5e746ca3dfb280ebc9c3ab154e7774f8409ed4e5f7470a8feb128e71b
install : $(TARGET)
@@ -82,6 +82,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
$(UPDATE_AUTOMAKE)
+ cd $(DIR_APP) && ./bootstrap.sh
cd $(DIR_APP) && ./configure --prefix=/usr
cd $(DIR_APP) && make $(MAKETUNING)
cd $(DIR_APP) && make install
--
2.36.0
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] mtr: Update to version 0.95
2022-04-28 21:25 [PATCH] mtr: Update to version 0.95 Adolf Belka
@ 2022-04-29 18:35 ` Peter Müller
0 siblings, 0 replies; 2+ messages in thread
From: Peter Müller @ 2022-04-29 18:35 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 3757 bytes --]
Reviewed-by: Peter Müller <peter.mueller(a)ipfire.org>
> - Update from version 0.94 to 0.95
> - Update of rootfile not required
> - Changelog
> V0.95
> Aaron Lipinski (27):
> move net_send_batch call to its caller
> addr -> hostent for consistency
> re-init source too
> additional call from net_reopen
> refactor - group local, remote inits
> reset ctl address family at net_reopen
> accept only value used in structure
> tell dns process if we want 4 or 6
> resolve ipv6 only if we have ipv6
> remove wrapper only function
> init structures correctly wired up
> prepare host with h_addr_list
> remove temporaries
> extract convert_addrinfo_to_hostent function
> move conversion call to caller
> use addrinfo
> remove conversion function
> switch gui to addrinfo
> export DEFAULT_AF
> reset addr family before searching again
> freeaddrinfo
> export get_hostent_from_name
> make Hostname as const
> rename function
> dont show json option if not available
> Egor Panov (1):
> Updated Readme
> R.E. Wolff (2):
> Slight cleanup, but no fix for code that came up in a bugreport.
> increased max length suggested by YVS2014
> Roger Wolff (12):
> Rogier Wolff (2):
> Code formatting for Zenithal pull
> added clarification to readme suggested by Zenithal
> Sergei Trofimovich (1):
> ui/curses: always use "%s"-style format for printf()-style functions
> Vincent Bernat (3):
> ui: don't cast to void* when calling display_rawhost()
> net: fix MPLS display for curses and report
> report: fix display of MPLS labels when using --report
> Zenithal (1):
> Add display of destination with resolved addr under curses mode
> a1346054 (5):
> fix wrong bash completion flag
> fix shellcheck warnings
> unify codestyle
> fix spelling
> trim trailing whitespace
> gaamox(a)tutanota.com (1):
> Report secondary servers when CSV + wide report is enabled
>
> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
> ---
> lfs/mtr | 7 ++++---
> 1 file changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/lfs/mtr b/lfs/mtr
> index aadb71d5b..dd190a90f 100644
> --- a/lfs/mtr
> +++ b/lfs/mtr
> @@ -26,7 +26,7 @@ include Config
>
> SUMMARY = Ping and Traceroute Network Diagnostic Tool
>
> -VER = 0.94
> +VER = 0.95
>
> THISAPP = mtr-$(VER)
> DL_FILE = $(THISAPP).tar.gz
> @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE)
> DIR_APP = $(DIR_SRC)/$(THISAPP)
> TARGET = $(DIR_INFO)/$(THISAPP)
> PROG = mtr
> -PAK_VER = 5
> +PAK_VER = 6
>
> DEPS =
>
> @@ -48,7 +48,7 @@ objects = $(DL_FILE)
>
> $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
>
> -$(DL_FILE)_BLAKE2 = 08f646774eaa323861863f08aa6f91995135923f1597d26790d3dce9d617700b41120686f71105054fb7f75b558c8753119dc5431c4584d88f8bef5629e0ebfa
> +$(DL_FILE)_BLAKE2 = 3c972675b97945b96562802c5d0f10de963160682c93c0ea2991b72eca33d136d18948c5e746ca3dfb280ebc9c3ab154e7774f8409ed4e5f7470a8feb128e71b
>
> install : $(TARGET)
>
> @@ -82,6 +82,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
> @$(PREBUILD)
> @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
> $(UPDATE_AUTOMAKE)
> + cd $(DIR_APP) && ./bootstrap.sh
> cd $(DIR_APP) && ./configure --prefix=/usr
> cd $(DIR_APP) && make $(MAKETUNING)
> cd $(DIR_APP) && make install
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-04-29 18:35 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-28 21:25 [PATCH] mtr: Update to version 0.95 Adolf Belka
2022-04-29 18:35 ` Peter Müller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox