depends: unbound: update to 1.22.0

This commit is contained in:
tobtoht 2024-12-24 09:58:50 +01:00
parent 941ecefab2
commit e6aca48d00
No known key found for this signature in database
GPG Key ID: E45B10DD027D2472

View File

@ -1,12 +1,11 @@
package=unbound package=unbound
$(package)_version=1.19.1 $(package)_version=1.22.0
$(package)_download_path=https://www.nlnetlabs.nl/downloads/$(package)/ $(package)_download_path=https://www.nlnetlabs.nl/downloads/$(package)/
$(package)_file_name=$(package)-$($(package)_version).tar.gz $(package)_file_name=$(package)-$($(package)_version).tar.gz
$(package)_sha256_hash=bc1d576f3dd846a0739adc41ffaa702404c6767d2b6082deb9f2f97cbb24a3a9 $(package)_sha256_hash=c5dd1bdef5d5685b2cedb749158dd152c52d44f65529a34ac15cd88d4b1b3d43
$(package)_dependencies=openssl expat $(package)_dependencies=openssl expat
$(package)_patches=disable-glibc-reallocarray.patch $(package)_patches=disable-glibc-reallocarray.patch
define $(package)_set_vars define $(package)_set_vars
$(package)_config_opts=--disable-shared --enable-static --without-pyunbound --prefix=$(host_prefix) $(package)_config_opts=--disable-shared --enable-static --without-pyunbound --prefix=$(host_prefix)
$(package)_config_opts+=--with-libexpat=$(host_prefix) --with-ssl=$(host_prefix) --with-libevent=no $(package)_config_opts+=--with-libexpat=$(host_prefix) --with-ssl=$(host_prefix) --with-libevent=no
@ -18,13 +17,16 @@ define $(package)_set_vars
$(package)_cflags_mingw32+="-D_WIN32_WINNT=0x600" $(package)_cflags_mingw32+="-D_WIN32_WINNT=0x600"
endef endef
# Remove blobs
define $(package)_preprocess_cmds define $(package)_preprocess_cmds
patch -p1 < $($(package)_patch_dir)/disable-glibc-reallocarray.patch &&\ patch -p1 < $($(package)_patch_dir)/disable-glibc-reallocarray.patch &&\
rm configure~ doc/*.odp doc/*.pdf contrib/*.tar.gz contrib/*.tar.bz2 &&\
rm -rf testdata dnscrypt/testdata &&\
autoconf autoconf
endef endef
define $(package)_config_cmds define $(package)_config_cmds
$($(package)_autoconf) ac_cv_func_getentropy=no AR_FLAGS=$($(package)_arflags) $($(package)_autoconf) ac_cv_func_getentropy=no
endef endef
define $(package)_build_cmds define $(package)_build_cmds
@ -34,3 +36,7 @@ endef
define $(package)_stage_cmds define $(package)_stage_cmds
$(MAKE) DESTDIR=$($(package)_staging_dir) install $(MAKE) DESTDIR=$($(package)_staging_dir) install
endef endef
define $(package)_postprocess_cmds
rm -rf share
endef