public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] findutils: Update to version 4.10.0
@ 2024-07-10 20:33 Adolf Belka
  2024-07-10 20:33 ` [PATCH] iana-etc: Update to version 20240701 Adolf Belka
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Adolf Belka @ 2024-07-10 20:33 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 5259 bytes --]

- Update from version 4.9.0 to 4.10.0
- Update of rootfile not required
- Changelog
    4.10.0
	** Bug Fixes
		  Find now defaults to optimization level 1 rather than 2 and the
		    cost-based optimizer will only run at level 2 and above.  This
		    should prevent changes of operation order which result in
		    user-visible differences in behaviour. [#58427]
		  If the -P option to xargs is not used, xargs will not change the way
		    in which the SIGUSR1 and SIGUSR2 signals are handled.  This means
		    that they will cause the program to terminate if the signals were
		    not ignored in the process which started xargs.  This also means that
		    xargs does not use parallel execution at all.
		    If you start xargs with '-P 1', then xargs will not be killed by these
		    signals, and they instead change the degree of parallelism.
		    This change improves xargs' POSIX compliance.
		  'xargs -P' now waits for all its child processes to complete before
		    exiting, even if one of them exits with status 255. [#64451]
		  If the -P option of xargs is in use, reads on standard input which are
		    interrupted by a signal are re-started. [#64442]
		  'find -name /' no longer outputs a warning, because that is a valid pattern
		    to match the root directory "/".  Previously, a diagnostic falsely claimed
		    that this pattern would not match anything. [#62227]
		  'find -gid' (without the mandatory argument) now outputs a correct error
		    diagnostic.  Previously it output: "find: invalid argument `-gid' to `-gid'".
		    The error diagnostic for non-numeric arguments has been improved as well.
		    Likewise for -inum, -links and -uid.
		  'find -user' and 'find -group' now allow to specify larger UIDs/GIDs.
		    Previously, that was limited to INT_MAX, although the types uid_t and gid_t
		    are larger on many systems, including x86_64 GNU/Linux. [#64900]
		  'find -xtype l' no longer fails on symbolic links that point to
		    themselves.  These are treated similarly to broken links. [#51926]
	** Improvements
		  The find predicates -used, -amin, -cmin, -mmin, -atime, -ctime, and -mtime
		   now properly diagnose a not-a-number argument.  Previously, find dumped
		   core via an assertion.  [#64717]
	** Changes to the build process
		  findutils now builds again on systems with musl-libc.
		   This requires gettext-0.19.8.
		  findutils programs no longer fail for timestamps past the year 2038
		   on obsolete configurations with 32-bit signed time_t, because the
		   build procedure now rejects these configurations.
		   On systems without any year2038 support configure with --disable-year2038.
	** Documentation Changes
		  When generating the Texinfo manual, `makeinfo` is invoked with the --no-split
		   option for all output formats now; this avoids files like find.info-[12].
		  The xargs documentation now describes the double dash "--" option delimiter.
		  The xargs examples in the Texinfo manual now use the -L and --replace options
		   instead of the deprecated -l and -i options.  [#64480]
		  The TexInfo manual now uses upper-case 'B' as birthtime for the -newerXY
		   comparison consistently.  [#65378]
	** Translations
		Updated the following translations: Belarusian, Brazilian Portuguese,
		Bulgarian, Catalan, Chinese (simplified), Chinese (traditional),
		Croatian, Czech, Danish, Dutch, Esperanto, Estonian, Finnish, French,
		Galician, Georgian, German, Greek, Hungarian, Indonesian, Irish,
		Italian, Japanese, Korean, Lithuanian, Luganda, Malay, Norwegian
		Bokmaal, Polish, Portuguese, Romanian, Russian, Serbian, Slovak,
		Slovenian, Spanish, Swedish, Turkish, Ukrainian, Vietnamese.

Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
 lfs/findutils | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lfs/findutils b/lfs/findutils
index 17a8e983f..7fb2383cc 100644
--- a/lfs/findutils
+++ b/lfs/findutils
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2018  IPFire Team  <info(a)ipfire.org>                     #
+# Copyright (C) 2007-2024  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,7 +24,7 @@
 
 include Config
 
-VER        = 4.9.0
+VER        = 4.10.0
 
 THISAPP    = findutils-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -50,7 +50,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 3ada8903fc552ad2e580a7b631a4b9d941935b3f4231029564c6f2b7b10ba6f2244e2de57f6d79268c5e0481a193f64edbbae637e7a51ae6f495e3eefabf52c9
+$(DL_FILE)_BLAKE2 = 2eebdcb425c04170d17afb80e7270ba095bd691660d961dcfa731141633d3bb597d0b47d69ed17e891ef884a36d4c232885097e45b41d3d3ac79dbeae6ee2282
 
 install : $(TARGET)
 
-- 
2.45.2


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH] iana-etc: Update to version 20240701
  2024-07-10 20:33 [PATCH] findutils: Update to version 4.10.0 Adolf Belka
@ 2024-07-10 20:33 ` Adolf Belka
  2024-07-10 20:33 ` [PATCH] less: Update to version 661 Adolf Belka
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Adolf Belka @ 2024-07-10 20:33 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1025 bytes --]

- Update from version 20240502 to 20240701
- Update of rootfile not required
- Changelog is not created. These files are created automatically to collect all iana
   changes.

Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
 lfs/iana-etc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lfs/iana-etc b/lfs/iana-etc
index 7cc315fb1..8dc38f4f6 100644
--- a/lfs/iana-etc
+++ b/lfs/iana-etc
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 20240502
+VER        = 20240701
 #		https://github.com/Mic92/iana-etc
 
 THISAPP    = iana-etc-$(VER)
@@ -41,7 +41,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 4b7644828bc5246d5437e0eee1d105326db647bdff3a9e7666664636538328bb808712f346237cc631e822d5a91baca6fd70d3361fd09bb190783403e3ff62a1
+$(DL_FILE)_BLAKE2 = d427988c918ee3ea80c6de3112d10659dddc63d138d0f48e553971cc6687b971d63d6cf14a8df955b1b5c3735eb65b9c43b9f671daef1a8b25a6f115194e9422
 
 install : $(TARGET)
 
-- 
2.45.2


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH] less: Update to version 661
  2024-07-10 20:33 [PATCH] findutils: Update to version 4.10.0 Adolf Belka
  2024-07-10 20:33 ` [PATCH] iana-etc: Update to version 20240701 Adolf Belka
@ 2024-07-10 20:33 ` Adolf Belka
  2024-07-10 20:33 ` [PATCH] man-pages: Update to version 6.9.1 Adolf Belka
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Adolf Belka @ 2024-07-10 20:33 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 5872 bytes --]

- Update from version 633 to 661
- Update of rootfile not required
- Changelog
    661
	* Add ^O^N, ^O^P, ^O^L and ^O^O commands and mouse clicks (with --mouse)
	  to find and open OSC8 hyperlinks (github #251).
	* Add --match-shift option.
	* Add --lesskey-content option (github #447).
	* Add LESSKEY_CONTENT environment variable (github #447).
	* Add --no-search-header-lines and --no-search-header-columns options
	  (github #397).
	* Add ctrl-L search modifier (github #367).
	* A ctrl-P at the start of a shell command suppresses the "done"
	  message (github #462).
	* Add attribute characters ('*', '~', '_', '&') to --color
	  parameter (github #471).
	* Allow expansion of environment variables in lesskey files.
	* Add LESSSECURE_ALLOW environment variable (github #449).
	* Add LESS_UNSUPPORT environment variable.
	* Add line number parameter to --header option (github #436).
	* Mouse right-click jumps to position marked by left-click (github #390).
	* Ensure that the target line is not obscured by a header line
	  set by --header (github #444).
	* Change default character set to "utf-8", except remains "dos" on MS-DOS.
	* Add message when search with ^W wraps (github #459).
	* UCRT builds on Windows 10 and later now support Unicode file names
	  (github #438).
	* Improve behavior of interrupt while reading non-terminated pipe
	  (github #414).
	* Improve parsing of -j, -x and -# options (github #393).
	* Support files larger than 4GB on Windows (github #417).
	* Support entry of Unicode chars larger than U+FFFF on Windows (github #391).
	* Improve colors of bold, underline and standout text on Windows.
	* Allow --rscroll to accept non-ASCII characters (github #483).
	* Allow the parameter to certain options to be terminated with a
	  space (--color, --quotes, --rscroll, --search-options
	  and --intr) (github #495).
	* Fix bug where # substitution failed after viewing help (github #420).
	* Fix crash if files are deleted while less is viewing them (github #404).
	* Workaround unreliable ReadConsoleInputW behavior on Windows
	  with non-ASCII input.
	* Fix -J display when searching for non-ASCII characters (github #422).
	* Don't filter header lines via the & command (github #423).
	* Fix bug when horizontally shifting long lines (github #425).
	* Add -x and -D options to lesstest, to make it easier to diagnose
	  a failed lesstest run.
	* Fix bug searching long lines with --incsearch and -S (github #428).
	* Fix bug that made ESC-} fail if top line on screen was empty (github #429).
	* Fix bug with --mouse on Windows when used with pipes (github #440).
	* Fix bug in --+OPTION command line syntax.
	* Fix display bug when using -w with an empty line with a CR/LF
	  line ending (github #474).
	* When substituting '#' or '%' with a filename, quote the filename
	  if it contains a space (github #480).
	* Fix wrong sleep time when system has usleep but not nanosleep (github #489).
	* Fix bug when file name contains a newline.
	* Fix bug when file name contains nonprintable characters (github #503).
	* Fix DJGPP build (github #497).
	* Update Unicode tables.
    643
	* Fix problem when a program piping into less reads from the tty,
	  like sudo asking for password (github #368).
	* Fix search modifier ^E after ^W.
	* Fix bug using negated (^N) search (github #374).
	* Fix bug setting colors with -D on Windows build (github #386).
	* Fix reading special chars like PageDown on Windows (github #378).
	* Fix mouse wheel scrolling on Windows (github #379).
	* Fix erroneous EOF when terminal window size changes (github #372).
	* Fix compile error with some definitions of ECHONL (github #395).
	* Fix crash on Windows when writing logfile (github #405).
	* Fix regression in exit code when stdin is /dev/null and
	  output is a file (github #373).
	* Add lesstest test suite to production release (github #344).
	* Change lesstest output to conform with
	  automake Simple Test Format (github #399).

Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
 lfs/less | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/lfs/less b/lfs/less
index 3c3dff158..8f94a2eeb 100644
--- a/lfs/less
+++ b/lfs/less
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2023  IPFire Team  <info(a)ipfire.org>                     #
+# Copyright (C) 2007-2024  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,7 +24,7 @@
 
 include Config
 
-VER        = 633
+VER        = 661
 
 THISAPP    = less-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = e9df180794af365f86734c6b8fde766c1bba42b111717ee5e1cf11001fc7ec3d78910db9bb7c51a76816086f599808b1b60f514011ec40e37650d6bc4f8b3d5c
+$(DL_FILE)_BLAKE2 = c1fa9a7a646fcc1203945e00c35fe41bddef0c564e30f120a37e417ecd5c60d234e0253a2e18123508dd5c0313bce346dc7752e96cdc1b067bd07a2a39818b42
 
 install : $(TARGET)
 
@@ -71,8 +71,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@$(PREBUILD)
 	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
 	cd $(DIR_APP) && ./configure \
-		--prefix=/usr \
-		--sysconfdir=/etc
+				--prefix=/usr \
+				--sysconfdir=/etc
 
 	cd $(DIR_APP) && make $(MAKETUNING)
 	cd $(DIR_APP) && make install
-- 
2.45.2


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH] man-pages: Update to version 6.9.1
  2024-07-10 20:33 [PATCH] findutils: Update to version 4.10.0 Adolf Belka
  2024-07-10 20:33 ` [PATCH] iana-etc: Update to version 20240701 Adolf Belka
  2024-07-10 20:33 ` [PATCH] less: Update to version 661 Adolf Belka
@ 2024-07-10 20:33 ` Adolf Belka
  2024-07-10 20:33 ` [PATCH] pcre2: Update to version 10.44 Adolf Belka
  2024-07-10 20:33 ` [PATCH] util-linux: Update to version 2.40.2 Adolf Belka
  4 siblings, 0 replies; 6+ messages in thread
From: Adolf Belka @ 2024-07-10 20:33 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 14396 bytes --]

- Update from 6.8 to 6.9.1
- Update of rootfile
- Changelog details can be see in the file named Changes in the source tarball.

Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
 config/rootfiles/common/man-pages | 229 ++++++++++++++++++++++++++++--
 lfs/man-pages                     |   4 +-
 2 files changed, 223 insertions(+), 10 deletions(-)

diff --git a/config/rootfiles/common/man-pages b/config/rootfiles/common/man-pages
index bbac8685a..771fc1a83 100644
--- a/config/rootfiles/common/man-pages
+++ b/config/rootfiles/common/man-pages
@@ -178,18 +178,16 @@
 #usr/local/share/man/man2/io_submit.2
 #usr/local/share/man/man2/ioctl.2
 #usr/local/share/man/man2/ioctl_console.2
+#usr/local/share/man/man2/ioctl_eventpoll.2
 #usr/local/share/man/man2/ioctl_fat.2
-#usr/local/share/man/man2/ioctl_ficlone.2
-#usr/local/share/man/man2/ioctl_ficlonerange.2
-#usr/local/share/man/man2/ioctl_fideduperange.2
-#usr/local/share/man/man2/ioctl_fslabel.2
-#usr/local/share/man/man2/ioctl_getfsmap.2
-#usr/local/share/man/man2/ioctl_iflags.2
-#usr/local/share/man/man2/ioctl_ns.2
-#usr/local/share/man/man2/ioctl_pagemap_scan.2
+#usr/local/share/man/man2/ioctl_fs.2
+#usr/local/share/man/man2/ioctl_fsmap.2
+#usr/local/share/man/man2/ioctl_kd.2
+#usr/local/share/man/man2/ioctl_nsfs.2
 #usr/local/share/man/man2/ioctl_pipe.2
 #usr/local/share/man/man2/ioctl_tty.2
 #usr/local/share/man/man2/ioctl_userfaultfd.2
+#usr/local/share/man/man2/ioctl_vt.2
 #usr/local/share/man/man2/ioperm.2
 #usr/local/share/man/man2/iopl.2
 #usr/local/share/man/man2/ioprio_get.2
@@ -512,6 +510,219 @@
 #usr/local/share/man/man2/waitpid.2
 #usr/local/share/man/man2/write.2
 #usr/local/share/man/man2/writev.2
+#usr/local/share/man/man2const
+#usr/local/share/man/man2const/EPIOCGPARAMS.2const
+#usr/local/share/man/man2const/EPIOCSPARAMS.2const
+#usr/local/share/man/man2const/FAT_IOCTL_GET_ATTRIBUTES.2const
+#usr/local/share/man/man2const/FAT_IOCTL_GET_VOLUME_ID.2const
+#usr/local/share/man/man2const/FAT_IOCTL_SET_ATTRIBUTES.2const
+#usr/local/share/man/man2const/FICLONE.2const
+#usr/local/share/man/man2const/FICLONERANGE.2const
+#usr/local/share/man/man2const/FIDEDUPERANGE.2const
+#usr/local/share/man/man2const/FIONREAD.2const
+#usr/local/share/man/man2const/FS_IOC_GETFLAGS.2const
+#usr/local/share/man/man2const/FS_IOC_GETFSLABEL.2const
+#usr/local/share/man/man2const/FS_IOC_GETFSMAP.2const
+#usr/local/share/man/man2const/FS_IOC_SETFLAGS.2const
+#usr/local/share/man/man2const/FS_IOC_SETFSLABEL.2const
+#usr/local/share/man/man2const/GIO_CMAP.2const
+#usr/local/share/man/man2const/GIO_FONT.2const
+#usr/local/share/man/man2const/GIO_FONTX.2const
+#usr/local/share/man/man2const/GIO_SCRNMAP.2const
+#usr/local/share/man/man2const/GIO_UNIMAP.2const
+#usr/local/share/man/man2const/GIO_UNISCRNMAP.2const
+#usr/local/share/man/man2const/KDADDIO.2const
+#usr/local/share/man/man2const/KDDELIO.2const
+#usr/local/share/man/man2const/KDDISABIO.2const
+#usr/local/share/man/man2const/KDENABIO.2const
+#usr/local/share/man/man2const/KDGETKEYCODE.2const
+#usr/local/share/man/man2const/KDGETLED.2const
+#usr/local/share/man/man2const/KDGETMODE.2const
+#usr/local/share/man/man2const/KDGKBDIACR.2const
+#usr/local/share/man/man2const/KDGKBENT.2const
+#usr/local/share/man/man2const/KDGKBLED.2const
+#usr/local/share/man/man2const/KDGKBMETA.2const
+#usr/local/share/man/man2const/KDGKBMODE.2const
+#usr/local/share/man/man2const/KDGKBSENT.2const
+#usr/local/share/man/man2const/KDGKBTYPE.2const
+#usr/local/share/man/man2const/KDMKTONE.2const
+#usr/local/share/man/man2const/KDSETKEYCODE.2const
+#usr/local/share/man/man2const/KDSETLED.2const
+#usr/local/share/man/man2const/KDSETMODE.2const
+#usr/local/share/man/man2const/KDSIGACCEPT.2const
+#usr/local/share/man/man2const/KDSKBENT.2const
+#usr/local/share/man/man2const/KDSKBLED.2const
+#usr/local/share/man/man2const/KDSKBMETA.2const
+#usr/local/share/man/man2const/KDSKBMODE.2const
+#usr/local/share/man/man2const/KDSKBSENT.2const
+#usr/local/share/man/man2const/KIOCSOUND.2const
+#usr/local/share/man/man2const/NS_GET_NSTYPE.2const
+#usr/local/share/man/man2const/NS_GET_OWNER_UID.2const
+#usr/local/share/man/man2const/NS_GET_PARENT.2const
+#usr/local/share/man/man2const/NS_GET_USERNS.2const
+#usr/local/share/man/man2const/PAGEMAP_SCAN.2const
+#usr/local/share/man/man2const/PIO_CMAP.2const
+#usr/local/share/man/man2const/PIO_FONT.2const
+#usr/local/share/man/man2const/PIO_FONTRESET.2const
+#usr/local/share/man/man2const/PIO_FONTX.2const
+#usr/local/share/man/man2const/PIO_SCRNMAP.2const
+#usr/local/share/man/man2const/PIO_UNIMAP.2const
+#usr/local/share/man/man2const/PIO_UNIMAPCLR.2const
+#usr/local/share/man/man2const/PIO_UNISCRNMAP.2const
+#usr/local/share/man/man2const/PR_CAPBSET_DROP.2const
+#usr/local/share/man/man2const/PR_CAPBSET_READ.2const
+#usr/local/share/man/man2const/PR_CAP_AMBIENT.2const
+#usr/local/share/man/man2const/PR_CAP_AMBIENT_CLEAR_ALL.2const
+#usr/local/share/man/man2const/PR_CAP_AMBIENT_IS_SET.2const
+#usr/local/share/man/man2const/PR_CAP_AMBIENT_LOWER.2const
+#usr/local/share/man/man2const/PR_CAP_AMBIENT_RAISE.2const
+#usr/local/share/man/man2const/PR_GET_AUXV.2const
+#usr/local/share/man/man2const/PR_GET_CHILD_SUBREAPER.2const
+#usr/local/share/man/man2const/PR_GET_DUMPABLE.2const
+#usr/local/share/man/man2const/PR_GET_ENDIAN.2const
+#usr/local/share/man/man2const/PR_GET_FPEMU.2const
+#usr/local/share/man/man2const/PR_GET_FPEXC.2const
+#usr/local/share/man/man2const/PR_GET_FP_MODE.2const
+#usr/local/share/man/man2const/PR_GET_IO_FLUSHER.2const
+#usr/local/share/man/man2const/PR_GET_KEEPCAPS.2const
+#usr/local/share/man/man2const/PR_GET_MDWE.2const
+#usr/local/share/man/man2const/PR_GET_NAME.2const
+#usr/local/share/man/man2const/PR_GET_NO_NEW_PRIVS.2const
+#usr/local/share/man/man2const/PR_GET_PDEATHSIG.2const
+#usr/local/share/man/man2const/PR_GET_SECCOMP.2const
+#usr/local/share/man/man2const/PR_GET_SECUREBITS.2const
+#usr/local/share/man/man2const/PR_GET_SPECULATION_CTRL.2const
+#usr/local/share/man/man2const/PR_GET_TAGGED_ADDR_CTRL.2const
+#usr/local/share/man/man2const/PR_GET_THP_DISABLE.2const
+#usr/local/share/man/man2const/PR_GET_TID_ADDRESS.2const
+#usr/local/share/man/man2const/PR_GET_TIMERSLACK.2const
+#usr/local/share/man/man2const/PR_GET_TIMING.2const
+#usr/local/share/man/man2const/PR_GET_TSC.2const
+#usr/local/share/man/man2const/PR_GET_UNALIGN.2const
+#usr/local/share/man/man2const/PR_MCE_KILL.2const
+#usr/local/share/man/man2const/PR_MCE_KILL_CLEAR.2const
+#usr/local/share/man/man2const/PR_MCE_KILL_GET.2const
+#usr/local/share/man/man2const/PR_MCE_KILL_SET.2const
+#usr/local/share/man/man2const/PR_MPX_DISABLE_MANAGEMENT.2const
+#usr/local/share/man/man2const/PR_MPX_ENABLE_MANAGEMENT.2const
+#usr/local/share/man/man2const/PR_PAC_RESET_KEYS.2const
+#usr/local/share/man/man2const/PR_SET_CHILD_SUBREAPER.2const
+#usr/local/share/man/man2const/PR_SET_DUMPABLE.2const
+#usr/local/share/man/man2const/PR_SET_ENDIAN.2const
+#usr/local/share/man/man2const/PR_SET_FPEMU.2const
+#usr/local/share/man/man2const/PR_SET_FPEXC.2const
+#usr/local/share/man/man2const/PR_SET_FP_MODE.2const
+#usr/local/share/man/man2const/PR_SET_IO_FLUSHER.2const
+#usr/local/share/man/man2const/PR_SET_KEEPCAPS.2const
+#usr/local/share/man/man2const/PR_SET_MDWE.2const
+#usr/local/share/man/man2const/PR_SET_MM.2const
+#usr/local/share/man/man2const/PR_SET_MM_ARG_END.2const
+#usr/local/share/man/man2const/PR_SET_MM_ARG_START.2const
+#usr/local/share/man/man2const/PR_SET_MM_AUXV.2const
+#usr/local/share/man/man2const/PR_SET_MM_BRK.2const
+#usr/local/share/man/man2const/PR_SET_MM_END_CODE.2const
+#usr/local/share/man/man2const/PR_SET_MM_END_DATA.2const
+#usr/local/share/man/man2const/PR_SET_MM_ENV_END.2const
+#usr/local/share/man/man2const/PR_SET_MM_ENV_START.2const
+#usr/local/share/man/man2const/PR_SET_MM_EXE_FILE.2const
+#usr/local/share/man/man2const/PR_SET_MM_MAP.2const
+#usr/local/share/man/man2const/PR_SET_MM_MAP_SIZE.2const
+#usr/local/share/man/man2const/PR_SET_MM_START_BRK.2const
+#usr/local/share/man/man2const/PR_SET_MM_START_CODE.2const
+#usr/local/share/man/man2const/PR_SET_MM_START_DATA.2const
+#usr/local/share/man/man2const/PR_SET_MM_START_STACK.2const
+#usr/local/share/man/man2const/PR_SET_NAME.2const
+#usr/local/share/man/man2const/PR_SET_NO_NEW_PRIVS.2const
+#usr/local/share/man/man2const/PR_SET_PDEATHSIG.2const
+#usr/local/share/man/man2const/PR_SET_PTRACER.2const
+#usr/local/share/man/man2const/PR_SET_SECCOMP.2const
+#usr/local/share/man/man2const/PR_SET_SECUREBITS.2const
+#usr/local/share/man/man2const/PR_SET_SPECULATION_CTRL.2const
+#usr/local/share/man/man2const/PR_SET_SYSCALL_USER_DISPATCH.2const
+#usr/local/share/man/man2const/PR_SET_TAGGED_ADDR_CTRL.2const
+#usr/local/share/man/man2const/PR_SET_THP_DISABLE.2const
+#usr/local/share/man/man2const/PR_SET_TIMERSLACK.2const
+#usr/local/share/man/man2const/PR_SET_TIMING.2const
+#usr/local/share/man/man2const/PR_SET_TSC.2const
+#usr/local/share/man/man2const/PR_SET_UNALIGN.2const
+#usr/local/share/man/man2const/PR_SET_VMA.2const
+#usr/local/share/man/man2const/PR_SVE_GET_VL.2const
+#usr/local/share/man/man2const/PR_SVE_SET_VL.2const
+#usr/local/share/man/man2const/PR_TASK_PERF_EVENTS_DISABLE.2const
+#usr/local/share/man/man2const/PR_TASK_PERF_EVENTS_ENABLE.2const
+#usr/local/share/man/man2const/TCFLSH.2const
+#usr/local/share/man/man2const/TCGETA.2const
+#usr/local/share/man/man2const/TCGETS.2const
+#usr/local/share/man/man2const/TCGETS2.2const
+#usr/local/share/man/man2const/TCSBRK.2const
+#usr/local/share/man/man2const/TCSBRKP.2const
+#usr/local/share/man/man2const/TCSETA.2const
+#usr/local/share/man/man2const/TCSETAF.2const
+#usr/local/share/man/man2const/TCSETAW.2const
+#usr/local/share/man/man2const/TCSETS.2const
+#usr/local/share/man/man2const/TCSETS2.2const
+#usr/local/share/man/man2const/TCSETSF.2const
+#usr/local/share/man/man2const/TCSETSF2.2const
+#usr/local/share/man/man2const/TCSETSW.2const
+#usr/local/share/man/man2const/TCSETSW2.2const
+#usr/local/share/man/man2const/TCXONC.2const
+#usr/local/share/man/man2const/TIOCCBRK.2const
+#usr/local/share/man/man2const/TIOCCONS.2const
+#usr/local/share/man/man2const/TIOCEXCL.2const
+#usr/local/share/man/man2const/TIOCGETD.2const
+#usr/local/share/man/man2const/TIOCGEXCL.2const
+#usr/local/share/man/man2const/TIOCGICOUNT.2const
+#usr/local/share/man/man2const/TIOCGLCKTRMIOS.2const
+#usr/local/share/man/man2const/TIOCGPGRP.2const
+#usr/local/share/man/man2const/TIOCGPKT.2const
+#usr/local/share/man/man2const/TIOCGPTLCK.2const
+#usr/local/share/man/man2const/TIOCGPTPEER.2const
+#usr/local/share/man/man2const/TIOCGSID.2const
+#usr/local/share/man/man2const/TIOCGSOFTCAR.2const
+#usr/local/share/man/man2const/TIOCGWINSZ.2const
+#usr/local/share/man/man2const/TIOCINQ.2const
+#usr/local/share/man/man2const/TIOCLINUX.2const
+#usr/local/share/man/man2const/TIOCMBIC.2const
+#usr/local/share/man/man2const/TIOCMBIS.2const
+#usr/local/share/man/man2const/TIOCMGET.2const
+#usr/local/share/man/man2const/TIOCMIWAIT.2const
+#usr/local/share/man/man2const/TIOCMSET.2const
+#usr/local/share/man/man2const/TIOCNOTTY.2const
+#usr/local/share/man/man2const/TIOCNXCL.2const
+#usr/local/share/man/man2const/TIOCOUTQ.2const
+#usr/local/share/man/man2const/TIOCPKT.2const
+#usr/local/share/man/man2const/TIOCSBRK.2const
+#usr/local/share/man/man2const/TIOCSCTTY.2const
+#usr/local/share/man/man2const/TIOCSERGETLSR.2const
+#usr/local/share/man/man2const/TIOCSETD.2const
+#usr/local/share/man/man2const/TIOCSLCKTRMIOS.2const
+#usr/local/share/man/man2const/TIOCSPGRP.2const
+#usr/local/share/man/man2const/TIOCSPTLCK.2const
+#usr/local/share/man/man2const/TIOCSSOFTCAR.2const
+#usr/local/share/man/man2const/TIOCSTI.2const
+#usr/local/share/man/man2const/TIOCSWINSZ.2const
+#usr/local/share/man/man2const/TIOCTTYGSTRUCT.2const
+#usr/local/share/man/man2const/UFFDIO_API.2const
+#usr/local/share/man/man2const/UFFDIO_CONTINUE.2const
+#usr/local/share/man/man2const/UFFDIO_COPY.2const
+#usr/local/share/man/man2const/UFFDIO_POISON.2const
+#usr/local/share/man/man2const/UFFDIO_REGISTER.2const
+#usr/local/share/man/man2const/UFFDIO_UNREGISTER.2const
+#usr/local/share/man/man2const/UFFDIO_WAKE.2const
+#usr/local/share/man/man2const/UFFDIO_WRITEPROTECT.2const
+#usr/local/share/man/man2const/UFFDIO_ZEROPAGE.2const
+#usr/local/share/man/man2const/VFAT_IOCTL_READDIR_BOTH.2const
+#usr/local/share/man/man2const/VFAT_IOCTL_READDIR_SHORT.2const
+#usr/local/share/man/man2const/VT_ACTIVATE.2const
+#usr/local/share/man/man2const/VT_DISALLOCATE.2const
+#usr/local/share/man/man2const/VT_GETMODE.2const
+#usr/local/share/man/man2const/VT_GETSTATE.2const
+#usr/local/share/man/man2const/VT_OPENQRY.2const
+#usr/local/share/man/man2const/VT_RELDISP.2const
+#usr/local/share/man/man2const/VT_RESIZE.2const
+#usr/local/share/man/man2const/VT_RESIZEX.2const
+#usr/local/share/man/man2const/VT_SETMODE.2const
+#usr/local/share/man/man2const/VT_WAITACTIVE.2const
 #usr/local/share/man/man2type
 #usr/local/share/man/man2type/open_how.2type
 #usr/local/share/man/man3/CIRCLEQ_EMPTY.3
@@ -2291,6 +2502,8 @@
 #usr/local/share/man/man3type/regex_t.3type
 #usr/local/share/man/man3type/regmatch_t.3type
 #usr/local/share/man/man3type/regoff_t.3type
+#usr/local/share/man/man3type/rlim_t.3type
+#usr/local/share/man/man3type/rlimit.3type
 #usr/local/share/man/man3type/sa_family_t.3type
 #usr/local/share/man/man3type/sigevent.3type
 #usr/local/share/man/man3type/siginfo_t.3type
diff --git a/lfs/man-pages b/lfs/man-pages
index 4bdaa9313..4a662bb91 100644
--- a/lfs/man-pages
+++ b/lfs/man-pages
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 6.8
+VER        = 6.9.1
 
 THISAPP    = man-pages-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 0a859ad9c81224c72efc9d2b164c48aad1ede6107a7cea15f65e51c1f79f0307ab713d29b73cba63e05f57b0a4476b7e6ab5ea6ac229076b387846e5b9ba4cc4
+$(DL_FILE)_BLAKE2 = 04c502e10f16cb75e5879b8c1db0795d0f53b58c8d4715b0401cbea99b879951aef3418bb8c4cbae1a74c1d40206c6e523a1de33e3eafba6793c15fea51d0aa3
 
 install : $(TARGET)
 
-- 
2.45.2


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH] pcre2: Update to version 10.44
  2024-07-10 20:33 [PATCH] findutils: Update to version 4.10.0 Adolf Belka
                   ` (2 preceding siblings ...)
  2024-07-10 20:33 ` [PATCH] man-pages: Update to version 6.9.1 Adolf Belka
@ 2024-07-10 20:33 ` Adolf Belka
  2024-07-10 20:33 ` [PATCH] util-linux: Update to version 2.40.2 Adolf Belka
  4 siblings, 0 replies; 6+ messages in thread
From: Adolf Belka @ 2024-07-10 20:33 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 16691 bytes --]

- Update from version 10.43 to 10.44
- Update of rootfile
- Changelog
    10.44
	This is mostly a bug-fix and tidying release. There is one new function, to set
	 a maximum size for a compiled pattern. The maximum name length for groups is
	 increased to 128. Some auxiliary files for building under VMS are added.

Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
 config/rootfiles/common/pcre2 | 230 +++++++++++++++++-----------------
 lfs/pcre2                     |   4 +-
 2 files changed, 118 insertions(+), 116 deletions(-)

diff --git a/config/rootfiles/common/pcre2 b/config/rootfiles/common/pcre2
index e8c0dde39..eb2d339a1 100644
--- a/config/rootfiles/common/pcre2
+++ b/config/rootfiles/common/pcre2
@@ -6,15 +6,15 @@
 #usr/lib/libpcre2-16.la
 #usr/lib/libpcre2-16.so
 usr/lib/libpcre2-16.so.0
-usr/lib/libpcre2-16.so.0.12.0
+usr/lib/libpcre2-16.so.0.13.0
 #usr/lib/libpcre2-32.la
 #usr/lib/libpcre2-32.so
 usr/lib/libpcre2-32.so.0
-usr/lib/libpcre2-32.so.0.12.0
+usr/lib/libpcre2-32.so.0.13.0
 #usr/lib/libpcre2-8.la
 #usr/lib/libpcre2-8.so
 usr/lib/libpcre2-8.so.0
-usr/lib/libpcre2-8.so.0.12.0
+usr/lib/libpcre2-8.so.0.13.0
 #usr/lib/libpcre2-posix.la
 #usr/lib/libpcre2-posix.so
 usr/lib/libpcre2-posix.so.3
@@ -23,117 +23,118 @@ usr/lib/libpcre2-posix.so.3.0.5
 #usr/lib/pkgconfig/libpcre2-32.pc
 #usr/lib/pkgconfig/libpcre2-8.pc
 #usr/lib/pkgconfig/libpcre2-posix.pc
-#usr/share/doc/pcre-pcre2-10.43
-#usr/share/doc/pcre-pcre2-10.43/AUTHORS
-#usr/share/doc/pcre-pcre2-10.43/COPYING
-#usr/share/doc/pcre-pcre2-10.43/ChangeLog
-#usr/share/doc/pcre-pcre2-10.43/LICENCE
-#usr/share/doc/pcre-pcre2-10.43/NEWS
-#usr/share/doc/pcre-pcre2-10.43/README
-#usr/share/doc/pcre-pcre2-10.43/html
-#usr/share/doc/pcre-pcre2-10.43/html/NON-AUTOTOOLS-BUILD.txt
-#usr/share/doc/pcre-pcre2-10.43/html/README.txt
-#usr/share/doc/pcre-pcre2-10.43/html/index.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2-config.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_callout_enumerate.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_code_copy.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_code_copy_with_tables.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_code_free.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_compile.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_compile_context_copy.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_compile_context_create.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_compile_context_free.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_config.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_convert_context_copy.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_convert_context_create.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_convert_context_free.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_converted_pattern_free.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_dfa_match.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_general_context_copy.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_general_context_create.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_general_context_free.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_get_error_message.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_get_mark.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_get_match_data_heapframes_size.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_get_match_data_size.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_get_ovector_count.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_get_ovector_pointer.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_get_startchar.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_jit_compile.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_jit_free_unused_memory.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_jit_match.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_jit_stack_assign.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_jit_stack_create.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_jit_stack_free.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_maketables.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_maketables_free.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_match.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_match_context_copy.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_match_context_create.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_match_context_free.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_match_data_create.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_match_data_create_from_pattern.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_match_data_free.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_pattern_convert.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_pattern_info.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_serialize_decode.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_serialize_encode.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_serialize_free.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_serialize_get_number_of_codes.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_bsr.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_callout.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_character_tables.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_compile_extra_options.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_compile_recursion_guard.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_depth_limit.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_glob_escape.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_glob_separator.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_heap_limit.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_match_limit.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_max_pattern_length.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_max_varlookbehind.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_newline.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_offset_limit.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_parens_nest_limit.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_recursion_limit.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_recursion_memory_management.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_set_substitute_callout.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_substitute.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_substring_copy_byname.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_substring_copy_bynumber.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_substring_free.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_substring_get_byname.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_substring_get_bynumber.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_substring_length_byname.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_substring_length_bynumber.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_substring_list_free.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_substring_list_get.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_substring_nametable_scan.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2_substring_number_from_name.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2api.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2build.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2callout.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2compat.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2convert.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2demo.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2grep.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2jit.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2limits.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2matching.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2partial.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2pattern.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2perform.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2posix.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2sample.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2serialize.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2syntax.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2test.html
-#usr/share/doc/pcre-pcre2-10.43/html/pcre2unicode.html
-#usr/share/doc/pcre-pcre2-10.43/pcre2-config.txt
-#usr/share/doc/pcre-pcre2-10.43/pcre2.txt
-#usr/share/doc/pcre-pcre2-10.43/pcre2grep.txt
-#usr/share/doc/pcre-pcre2-10.43/pcre2test.txt
+#usr/share/doc/pcre-pcre2-10.44
+#usr/share/doc/pcre-pcre2-10.44/AUTHORS
+#usr/share/doc/pcre-pcre2-10.44/COPYING
+#usr/share/doc/pcre-pcre2-10.44/ChangeLog
+#usr/share/doc/pcre-pcre2-10.44/LICENCE
+#usr/share/doc/pcre-pcre2-10.44/NEWS
+#usr/share/doc/pcre-pcre2-10.44/README
+#usr/share/doc/pcre-pcre2-10.44/html
+#usr/share/doc/pcre-pcre2-10.44/html/NON-AUTOTOOLS-BUILD.txt
+#usr/share/doc/pcre-pcre2-10.44/html/README.txt
+#usr/share/doc/pcre-pcre2-10.44/html/index.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2-config.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_callout_enumerate.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_code_copy.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_code_copy_with_tables.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_code_free.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_compile.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_compile_context_copy.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_compile_context_create.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_compile_context_free.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_config.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_convert_context_copy.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_convert_context_create.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_convert_context_free.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_converted_pattern_free.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_dfa_match.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_general_context_copy.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_general_context_create.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_general_context_free.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_get_error_message.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_get_mark.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_get_match_data_heapframes_size.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_get_match_data_size.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_get_ovector_count.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_get_ovector_pointer.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_get_startchar.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_jit_compile.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_jit_free_unused_memory.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_jit_match.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_jit_stack_assign.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_jit_stack_create.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_jit_stack_free.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_maketables.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_maketables_free.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_match.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_match_context_copy.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_match_context_create.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_match_context_free.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_match_data_create.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_match_data_create_from_pattern.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_match_data_free.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_pattern_convert.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_pattern_info.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_serialize_decode.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_serialize_encode.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_serialize_free.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_serialize_get_number_of_codes.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_bsr.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_callout.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_character_tables.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_compile_extra_options.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_compile_recursion_guard.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_depth_limit.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_glob_escape.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_glob_separator.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_heap_limit.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_match_limit.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_max_pattern_compiled_length.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_max_pattern_length.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_max_varlookbehind.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_newline.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_offset_limit.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_parens_nest_limit.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_recursion_limit.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_recursion_memory_management.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_set_substitute_callout.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_substitute.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_substring_copy_byname.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_substring_copy_bynumber.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_substring_free.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_substring_get_byname.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_substring_get_bynumber.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_substring_length_byname.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_substring_length_bynumber.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_substring_list_free.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_substring_list_get.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_substring_nametable_scan.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2_substring_number_from_name.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2api.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2build.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2callout.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2compat.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2convert.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2demo.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2grep.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2jit.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2limits.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2matching.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2partial.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2pattern.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2perform.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2posix.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2sample.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2serialize.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2syntax.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2test.html
+#usr/share/doc/pcre-pcre2-10.44/html/pcre2unicode.html
+#usr/share/doc/pcre-pcre2-10.44/pcre2-config.txt
+#usr/share/doc/pcre-pcre2-10.44/pcre2.txt
+#usr/share/doc/pcre-pcre2-10.44/pcre2grep.txt
+#usr/share/doc/pcre-pcre2-10.44/pcre2test.txt
 #usr/share/man/man1/pcre2-config.1
 #usr/share/man/man1/pcre2grep.1
 #usr/share/man/man1/pcre2test.1
@@ -193,6 +194,7 @@ usr/lib/libpcre2-posix.so.3.0.5
 #usr/share/man/man3/pcre2_set_glob_separator.3
 #usr/share/man/man3/pcre2_set_heap_limit.3
 #usr/share/man/man3/pcre2_set_match_limit.3
+#usr/share/man/man3/pcre2_set_max_pattern_compiled_length.3
 #usr/share/man/man3/pcre2_set_max_pattern_length.3
 #usr/share/man/man3/pcre2_set_max_varlookbehind.3
 #usr/share/man/man3/pcre2_set_newline.3
diff --git a/lfs/pcre2 b/lfs/pcre2
index 2e511bb39..f2141946b 100644
--- a/lfs/pcre2
+++ b/lfs/pcre2
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 10.43
+VER        = 10.44
 
 THISAPP    = pcre2-$(VER)
 DL_FILE    = $(THISAPP).tar.bz2
@@ -54,7 +54,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = f87f9f36dd6a806cdba1f077f51b53da2583f1898f83e41d594622b28ac8efbc1b2d122b752a9d6cd461fe0e3c7c85ee93358443df518a336da4ee9d72cca808
+$(DL_FILE)_BLAKE2 = fb06228f8bdc5906ef4f19d7d677f1009070855149d9ad3f807cfcd164f5cb6165f96e074fedc3942226d4b29edf4b29fab6cde2f2ba58bf6da282730941412b
 
 install : $(TARGET)
 
-- 
2.45.2


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH] util-linux: Update to version 2.40.2
  2024-07-10 20:33 [PATCH] findutils: Update to version 4.10.0 Adolf Belka
                   ` (3 preceding siblings ...)
  2024-07-10 20:33 ` [PATCH] pcre2: Update to version 10.44 Adolf Belka
@ 2024-07-10 20:33 ` Adolf Belka
  4 siblings, 0 replies; 6+ messages in thread
From: Adolf Belka @ 2024-07-10 20:33 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 3597 bytes --]

- Update from version 2.40.1 to 2.40.2
- Update of rootfiles not required.
- Changelog
    2.40.2
	autotools:
	   - Properly order install dependencies of pam_lastlog2  [Thomas Weißschuh]
	   - make pam install path configurable  [Thomas Weißschuh]
	bash-completion:
	   - add logger --sd-* completions  [Ville Skyttä]
	build-sys:
	   - _PATH_VENDORDIR workaround  [Karel Zak]
	cfdisk:
	   - fix possible integer overflow [coverity scan]  [Karel Zak]
	docs:
	   - update AUTHORS file  [Karel Zak]
	include/pidfd-utils:
	   - provide ENOSYS stubs if pidfd functions are missing  [Thomas Weißschuh]
	   - remove hardcoded syscall fallback  [Karel Zak]
	lib/buffer:
	   - introduce ul_buffer_get_string()  [Thomas Weißschuh]
	lib/fileutils:
	   - add ul_basename()  [Karel Zak]
	lib/path:
	   - Fix ul_path_read_buffer() [Daan De Meyer]
	lib/sysfs:
	   - abort device hierarchy walk at root of sysfs  [Thomas Weißschuh]
	   - zero-terminate result of sysfs_blkdev_get_devchain()  [Thomas Weißschuh]
	libmount:
	   - fix syscall save function  [Karel Zak]
	   - fix tree FD usage in subdir hook  [Karel Zak]
	   - improving robustness in reading kernel messages  [Karel Zak]
	   - add pidfs to pseudo fs list  [Mike Yuan]
	libsmartcols:
	   - fix reduction stages use  [Karel Zak]
	   - ensure filter-scanner/paser.c file is newer than the .h file  [Chen Qi]
	libuuid:
	   - clear uuidd cache on fork()  [Thomas Weißschuh]
	   - drop check for HAVE_TLS  [Thomas Weißschuh]
	   - drop duplicate assignment liuuid_la_LDFLAGS  [Karel Zak]
	   - split uuidd cache into dedicated struct  [Thomas Weißschuh]
	   - Conditionally add uuid_time64 to sym. version map [Nicholas Vinson]
	lscpu:
	   - New Arm Cortex part numbers  [Jeremy Linton]
	lsfd:
	   - Refactor the pidfd logic into lsfd-pidfd.c  [Xi Ruoyao]
	   - Support pidfs  [Xi Ruoyao]
	   - test  Adapt test cases for pidfs  [Xi Ruoyao]
	meson:
	   - Correctly require the Python.h header for the python dependency  [Jordan Williams]
	   - Fix build-python option  [Jordan Williams]
	   - Only require Python module when building pylibmount  [Jordan Williams]
	misc-utils:
	   - uuidd  Use ul_sig_err instead of errx  [Cristian Rodríguez]
	mkswap.8.adoc:
	   - update note regarding swapfile creation  [Mike Yuan]
	po:
	   - merge changes  [Karel Zak]
	   - update es.po (from translationproject.org)  [Antonio Ceballos Roa]
	   - update ja.po (from translationproject.org)  [Hideki Yoshida]
	po-man:
	   - merge changes  [Karel Zak]
	rename:
	   - use ul_basename()  [Karel Zak]
	sys-utils/setpgid:
	   - make -f work  [Emanuele Torre]
	wdctl:
	   - always query device node when sysfs is unavailable  [Thomas Weißschuh]

Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
 lfs/util-linux | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lfs/util-linux b/lfs/util-linux
index 4691e806b..c820907f9 100644
--- a/lfs/util-linux
+++ b/lfs/util-linux
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 2.40.1
+VER        = 2.40.2
 
 THISAPP    = util-linux-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -42,7 +42,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = a51fcf9b63c033e470da4f4f0094f0f923fdeb5a649a5c59d2d44888e5e741dfd95e589247355296e050d9ec8dc4334c5898453af055abcb30082af6b835a3e3
+$(DL_FILE)_BLAKE2 = 8306d651f27db6665e91a937c9f1970938fec5b069636fea3c2688afddebd1a3424f0b0802a034eab049cf7692dd435cf93e82aa5f4a40cc8064d60b4ca59535
 
 install : $(TARGET)
 
-- 
2.45.2


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2024-07-10 20:33 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-07-10 20:33 [PATCH] findutils: Update to version 4.10.0 Adolf Belka
2024-07-10 20:33 ` [PATCH] iana-etc: Update to version 20240701 Adolf Belka
2024-07-10 20:33 ` [PATCH] less: Update to version 661 Adolf Belka
2024-07-10 20:33 ` [PATCH] man-pages: Update to version 6.9.1 Adolf Belka
2024-07-10 20:33 ` [PATCH] pcre2: Update to version 10.44 Adolf Belka
2024-07-10 20:33 ` [PATCH] util-linux: Update to version 2.40.2 Adolf Belka

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox