From 0f7bfc80814e90918b9527cab4cbf6afedd22195 Mon Sep 17 00:00:00 2001 From: Joachim Wiberg Date: Sun, 9 Oct 2022 17:59:29 +0200 Subject: [PATCH] package/skalibs: bump to v2.12.0.1 Summary of changes: New: - New djbunix functions: waitn_posix(), waitn_reap_posix() - New unix-transactional.h function: opendir_at. - New skalibs/posixplz.h function: munmap_void(). - random functions now have an early version, to use when randomness is required before the generator can be seeded (i.e. in programs running in the very early boot). - envdir_internal() now has a SKALIBS_ENVDIR_NOCLAMP option allowing reading of unlimited-size variables. - fd_close() now chooses to adapt to Linux's close() behaviour (closing the fd on EINTR) over the HP-UX one (not closing it). Destructors like close() being allowed to fail has always been a mistake in the specification and a programming nightmare, making it impossible to behave correctly on all systems, but apparently standardization efforts are on the way and the Linux behaviour seems to be the chosen one. Removed: - libbiguint removed. - Obsolete skalibs/environ.h and skalibs/getpeereid.h headers removed. - rc4 and md5 functions removed. - iobuffer removed. fd_cat() and fd_catn() changed signatures. - All signal functions entirely reworked; cruft removed. - The unsafe cdb_successor() API has been removed. - random_init() and random_finish() removed, as well as random_char(). Renamed APIs and type: - random_string() renamed to random_buf(). - All *_t types renamed without the _t suffix, to preserve POSIX namespace. - subgetopt() renamed to lgetopt(). - skalibs/cdb_make.h renamed to skalibs/cdbmake.h; cdbmake functions now return 1 on success and 0 on failure. - skalibs/cdb.h redesigned to remove reader state from the cdb structure. License hash updated due to copyright year change. Signed-off-by: Joachim Wiberg Signed-off-by: Thomas Petazzoni --- package/skalibs/skalibs.hash | 4 ++-- package/skalibs/skalibs.mk | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package/skalibs/skalibs.hash b/package/skalibs/skalibs.hash index 48e4028edc..dd202b97fb 100644 --- a/package/skalibs/skalibs.hash +++ b/package/skalibs/skalibs.hash @@ -1,3 +1,3 @@ # Locally generated -sha256 b780b0ae650dda0c3ec5f8975174998af2d24c2a2e2be669b1bab46e73b1464d skalibs-2.10.0.3.tar.gz -sha256 adecb8bedfaae27fcfe65ecb3ef0e2e71aa2a2b49dc21886a200bc677d93e6ec COPYING +sha256 3e228f72f18d88c17f6c4e0a66881d6d3779427b7e7e889f3142b6f26da30285 skalibs-2.12.0.1.tar.gz +sha256 35126cb8f2ff2a6e359f7bfec46c49004ead6304d8248ba67dcdebcc7d377754 COPYING diff --git a/package/skalibs/skalibs.mk b/package/skalibs/skalibs.mk index 77db57de96..0ff449a5ba 100644 --- a/package/skalibs/skalibs.mk +++ b/package/skalibs/skalibs.mk @@ -4,7 +4,7 @@ # ################################################################################ -SKALIBS_VERSION = 2.10.0.3 +SKALIBS_VERSION = 2.12.0.1 SKALIBS_SITE = http://skarnet.org/software/skalibs SKALIBS_LICENSE = ISC SKALIBS_LICENSE_FILES = COPYING