From: Adolf Belka <adolf.belka@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH] whois: Update to version 5.5.17
Date: Thu, 18 May 2023 20:43:28 +0200 [thread overview]
Message-ID: <20230518184328.172754-11-adolf.belka@ipfire.org> (raw)
In-Reply-To: <20230518184328.172754-1-adolf.belka@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 4510 bytes --]
- 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(a)ipfire.org>
---
lfs/whois | 18 ++++++++----------
1 file changed, 8 insertions(+), 10 deletions(-)
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(a)ipfire.org> #
+# Copyright (C) 2007-2023 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,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)
--
2.40.1
prev parent reply other threads:[~2023-05-18 18:43 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-18 18:43 [PATCH] diffutils: Update to version 3.9 Adolf Belka
2023-05-18 18:43 ` [PATCH] ed: Update to version 1.19 Adolf Belka
2023-05-18 18:43 ` [PATCH] gawk: Update to vesrion 5.2.2 Adolf Belka
2023-05-18 18:43 ` [PATCH] go: Update to version 1.20.4 Adolf Belka
2023-05-18 18:43 ` [PATCH] grep: Update to version 3.11 Adolf Belka
2023-05-18 18:43 ` [PATCH] less: Update to version 633 Adolf Belka
2023-05-18 18:43 ` [PATCH] man: Update to version 2.11.2 Adolf Belka
2023-05-18 18:43 ` [PATCH] procps: Update to version v4.0.3 Adolf Belka
2023-05-18 18:43 ` [PATCH] sqlite: Update to version 3420000 Adolf Belka
2023-05-18 18:43 ` [PATCH] texinfo: Update to version 7.0.3 Adolf Belka
2023-05-18 18:43 ` Adolf Belka [this message]
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=20230518184328.172754-11-adolf.belka@ipfire.org \
--to=adolf.belka@ipfire.org \
--cc=development@lists.ipfire.org \
/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