whois: Update to version 5.5.17

Message ID 20230518184328.172754-11-adolf.belka@ipfire.org
State Accepted
Commit 642e18d96b5e5eed9e63d9ad3047613c1033a1d4
Headers
Series whois: Update to version 5.5.17 |

Commit Message

Adolf Belka May 18, 2023, 6:43 p.m. UTC
  - Update from version 5.5.13 to 5.5.17
- Update of rootfile not required
- Previous versions of whois were taken from debian files. However these are taken from
   the whois github page and then repackaged from gz to xz. It therefore seemed sensible
   to me that we should take the source from this package from the github repo that
   the developer is using. Therefore some changes to naming convention of the source file.
- Changelog
	whois (5.5.17) unstable; urgency=medium
	  * Added the .cd TLD server.
	  * Updated the -kg NIC handles server name.
	  * Removed 2 new gTLDs which are no longer active.
	whois (5.5.16) unstable; urgency=medium
	  * Add bash completion support, courtesy of Ville Skyttä.
	  * Updated the .tr TLD server.
	  * Removed support for -metu NIC handles.
	whois (5.5.15) unstable; urgency=medium
	  * Updated the .bd, .nz and .tv TLD servers.
	  * Added the .llyw.cymru, .gov.scot and .gov.wales SLD servers.
	  * Updated the .ac.uk and .gov.uk SLD servers.
	  * Recursion has been enabled for whois.nic.tv.
	  * Updated the list of new gTLDs with four generic TLDs assigned in
	    October 2013 which were missing due to a bug.
	  * Removed 4 new gTLDs which are no longer active.
	  * Added the Georgian translation, contributed by Temuri Doghonadze.
	  * Updated the Finnish translation, contributed by Lauri Nurmi.
	whois (5.5.14) unstable; urgency=medium
	  * Added the .bf and .sd TLD servers.
	  * Removed the .gu TLD server.
	  * Updated the .dm, .fj, .mt and .pk TLD servers.
	  * Updated the charset for whois.nic.tr.
	  * Updated the list of new gTLDs.
	  * Removed whois.nic.fr from the list of RIPE-like servers, because it
	    is not one anymore. (Closes: #1021110)
	  * Renamed whois.arnes.si to whois.register.si in the list of RIPE-like
	    servers.
	  * Added the hiding string for whois.auda.org.au.
	  * Fixed uclibc builds, because uclibc does not have NLS support.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/whois | 18 ++++++++----------
 1 file changed, 8 insertions(+), 10 deletions(-)
  

Patch

diff --git a/lfs/whois b/lfs/whois
index 19989af36..7715f5c29 100644
--- a/lfs/whois
+++ b/lfs/whois
@@ -1,7 +1,7 @@ 
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2022  IPFire Team  <info@ipfire.org>                     #
+# 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        #
@@ -24,16 +24,14 @@ 
 
 include Config
 
-VER        = 5.5.13
+VER        = 5.5.17
 
-THISAPP    = whois_$(VER)
-DL_FILE    = $(THISAPP).tar.xz
+THISAPP    = whois-$(VER)
+DL_FILE    = $(THISAPP).tar.gz
 DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 
-PROG       = whois
-
 ###############################################################################
 # Top-level Rules
 ###############################################################################
@@ -42,7 +40,7 @@  objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 6ce90ad907c4ea79301adbcda5a402344df9f283ac258a3186f5c405e0abfb97f603f3f163652f1cf03a1fc60290b8f9f54b509bf7d9fd3cec12189eeeaaffe5
+$(DL_FILE)_BLAKE2 = 2c60c3e9725fc31d1ff159c25a9be8ce42784db8331820a7459c2359364d0312395632a9e478995ddf787e363f073f9018982a2fb95739357a45a826ce8f79ee
 
 install : $(TARGET)
 
@@ -74,11 +72,11 @@  $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
 	$(UPDATE_AUTOMAKE)
 
-	cd $(DIR_SRC)/$(PROG) && make $(MAKETUNING) \
+	cd $(DIR_SRC)/$(THISAPP) && make $(MAKETUNING) \
 	                            CONFIG_FILE=/etc/whois.conf \
 	                            whois
-	cd $(DIR_SRC)/$(PROG) && make prefix=/usr install-whois
-	cd $(DIR_SRC)/$(PROG) && install -v -m 644 whois.conf -t /etc/
+	cd $(DIR_SRC)/$(THISAPP) && make prefix=/usr install-whois
+	cd $(DIR_SRC)/$(THISAPP) && install -v -m 644 whois.conf -t /etc/
 
 	@rm -rf $(DIR_APP)
 	@$(POSTBUILD)