Files
bpfire/lfs/iputils
Adolf Belka 7b877b140e iputils: Update to version 20231222
- Update from version 20221126 to 20231222
- Update of rootfile not required
- Changelog
    20231222
	* arping
		- fix: Properly fix -Wpedantic warnings (commit: 80a580a, PR: #505)
	* clockdiff
		- fix: Set ppoll timeout minimum to 1ms (commit: 471942d, issue: #326, PR:
		  #459)
	* ping
		- feature: Add option -H to force reverse DNS resolution (commit: dd5a81a,
		  issue: #421, https://bugs.debian.org/650479, PR: #494)
		- feature: Decode unreachable codes added in RFC 4443 (commit: c4c7d52, PR:
		  #447)
		- feature: Allow over-PMTU-sized packets with DF set using PMTUDISC_PROBE
		  (commit: e123cab, PR: #448)
		- fix: Revert "ping: use random value for the identifier field" to use PID
		  again (commit: d466aab, issue: #489, PR: #503, regression from s20200821)
		- fix: Fix support for DSCP (Traffic Class, option -Q) (commit: 425f711,
		  PR: #468, broken since s20060425)
		- fix: Fix the errno handling for strtod (commit: 33e78be, PR: #450,
		  regression from s20190324)
		- fix: Drop redundant setsockopt(IPV6_TCLASS) call (commit: d38519a, PR:
		  #468, regression from s20150815)
		- fix: Fix overflow on negative -i (commit: 2a63b94, issue: #465)
		- fix: Fix sporadically missing DNS record on targets with multiple IP
		  addresses (commit: 80a580a, PR: #505, regression from s20200821)
		- fix: Handle interval correctly in the first second after booting (commit:
		  7448c33, PR: #499)
		- fix: Fix presentation of IPv6 addresses with no reverse DNS (commit:
		  bc3f2e3, issue: #455, PR: #478)
		- fix: Add missing whitespace in IPv6 output (commit: 14472fc, PR: #455)
		- fix: Allow to localize help (commit: e13508a)
		- fix: Use print target when empty ai_canonname (commit: c68afd5, issue:
		  #421)
		- Improve interval error message (commit: fb75557, PR: #487)
		- man: Mention broadcast and multicast limit for non-root (commit: e7aafa7,
		  PR: #486)
		- man: Document collisions and pid_max (commit: c515a0d, PR: #507)
		- man: Add missing parameter for -e (commit: 2400215)
		- man: Update TTL details (commit: 2beff77, issue: #488, PR: #497)
		- man: Describe the defaults for -n option, reword (commit: a6e6d24)
	* tracepath
		- fix: Restore the MTU probing behavior") (commit: a75feb0, PR: #448,
		  regression from s20190709)
		- fix: Fix behavior during the first second after booting (commit:
		  c64bcd8, PR: #499)
		- Add NULL pointer assert() check (commit: 065daad, PR: #498)
		- man: Fix output related docs (commit: 40c7bc3, issue: #469, PR: #470)
		- man: Document error messages (commit: 90371d2, issue: #463, PR: #495)
	* CI
		- Add Add CentOS Stream 9 and Rocky Linux 8 and 9 (commit: 26edb41,
		  0ce30ae, PR: #457, #476)
	* localization
		- 100% translated: Chinese (Simplified), Czech, English, French, Georgian,
		  German, Korean, Portuguese (Brazil), Ukrainian
		- > 90% Finnish, Turkish, Japanese, Indonesian

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
2024-01-03 21:17:04 +00:00

85 lines
3.3 KiB
Plaintext

###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2023 IPFire Team <info@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 #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
# #
###############################################################################
###############################################################################
# Definitions
###############################################################################
include Config
VER = 20231222
THISAPP = iputils-$(VER)
DL_FILE = $(THISAPP).tar.xz
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
###############################################################################
# Top-level Rules
###############################################################################
objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_BLAKE2 = a76d4e9741c4ce8d2a2b6337873400543c5bb51d61a794fdfed8c8f4228c41020f5203c8af7ca44a36877d246d4f67019d31f1a58e48c6fca7964d6ebc9d764b
install : $(TARGET)
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
download :$(patsubst %,$(DIR_DL)/%,$(objects))
b2 : $(subst %,%_BLAKE2,$(objects))
###############################################################################
# Downloading, checking, b2sum
###############################################################################
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
@$(CHECK)
$(patsubst %,$(DIR_DL)/%,$(objects)) :
@$(LOAD)
$(subst %,%_BLAKE2,$(objects)) :
@$(B2SUM)
###############################################################################
# Installation Details
###############################################################################
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
cd $(DIR_APP) && meson builddir -Dprefix=/usr
cd $(DIR_APP) && make $(MAKETUNING)
cd $(DIR_APP) && make install
# Allow execution of /usr/bin/ping by other users than "root"
setcap cap_net_raw+ep /usr/bin/ping
# Some scripts expect ping in /bin/ping.
ln -svf ../usr/bin/ping /bin/ping
@rm -rf $(DIR_APP)
@$(POSTBUILD)