Files
bpfire/lfs/knot
Adolf Belka 374b2d8d57 knot: Update to version 3.3.8
- Update from version 3.3.5 to 3.3.8
- Update of rootfile not required
- Changelog
    3.3.8
	Features:
	 - libzscanner,libknot: added support for 'dohpath' and 'ohttp' SVCB parameters
	 - libzscanner,libknot: added support for WALLET rrtype
	 - keymgr: new commands for keystore testing (see 'keystore-test' and 'keystore-bench')
	 - knotd: new configuration option for setting default TTL (see 'zone.default-ttl')
	Improvements:
	 - libknot: added error codes to better describe some failures
	Bugfixes:
	 - knotd: DNSSEC signing doesn't remove NSEC records for non-authoritative nodes
	 - knotd: DNSSEC signing not scheduled on secondary if nothing to be reloaded
	 - libknot: TCP over XDP doesn't ignore SYN+ACK packets on the server side
    3.3.7
	Improvements:
	 - libs: upgraded embedded libngtcp2 to 1.6.0
	Bugfixes:
	 - knotd: insufficient metadata check can cause journal corruption
	 - knotd: missing zone timers initialization upon purge
	 - knotd: missing RCU lock in zone flush and refresh
	 - knotd: defective assert in zone refresh
    3.3.6
	Features:
	 - knotd: configurable control socket backlog size (see 'control.backlog')
	 - knotd: optional configuration of congruency of generated keytags (see 'policy.keytag-modulo')
	 - knotc: support for exporting configuration schema in JSON (see 'conf-export') #912
	 - mod-dnstap: configuration of sink allows TCP address specification
	Improvements:
	 - knotd: last-signed serial is stored to KASP even if not a secondary zone
	 - knotd: allowed catalog role member in a catalog template configuration
	 - knotd: some references in a zone configuration can be set empty to override a template
	 - knotd: allowed zone backup during a zone transaction
	 - knotd: add remote TSIG key name to outgoing event logs
	 - knotc: zone backup with '+keysonly' silently uses all defaults as 'off'
	 - kxdpgun: host name can be used for target specification
	 - libs: upgraded embedded libngtcp2 to 1.5.0
	 - doc: various fixes and updates
	Bugfixes:
	 - knotd: reset TCP connection not removed from a connection pool
	 - knotd: server wrongly tries to remove removed ZONEMD
	 - knotd: failed to parse empty list from a textual configuration
	 - knotd: blocking zone signing in combination with an open transaction causes a deadlock
	 - knotd: missing RCU lock when sending NOTIFY
	 - kdig: QNAME letter case isn't preserved if IDN is enabled
	 - kdig: failed to parse empty QNAME (do not fill question section)
	 - kxdpgun: floating point exception on SIGUSR1 #927
	 - libknot: incorrect handling of regular QUIC tokens in incoming initials
	 - python: failed to set an empty configuration value

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2024-08-14 09:09:54 +00:00

89 lines
3.4 KiB
Plaintext

###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2024 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 = 3.3.8
THISAPP = knot-$(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 = a51e756f34d8641b2bc8ce32cb37c68c19ce1b5e13e981647e165634644ee005bb0a31b869148d50b3cd0a040f6952857df726e8ff67c5a46204270fa02396c5
install : $(TARGET)
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
download :$(patsubst %,$(DIR_DL)/%,$(objects))
b2 : $(subst %,%_BLAKE2,$(objects))
dist:
@$(PAK)
###############################################################################
# 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 Jxf $(DIR_DL)/$(DL_FILE)
cd $(DIR_APP) && ./configure \
--prefix=/usr \
--enable-static=no \
--disable-fastparser \
--disable-daemon \
--disable-modules \
--enable-maxminddb=no \
--disable-documentation
cd $(DIR_APP)/src && make $(MAKETUNING) kdig
cd $(DIR_APP)/src/.libs && cp -av kdig /usr/bin
cd $(DIR_APP)/src/.libs && cp -av lib* /usr/lib
@rm -rf $(DIR_APP)
@$(POSTBUILD)