public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] automake: Update to version 1.17
@ 2024-08-25 19:11 Adolf Belka
  2024-08-25 19:11 ` [PATCH] bind: Update to version 9.20.1 Adolf Belka
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Adolf Belka @ 2024-08-25 19:11 UTC (permalink / raw)
  To: development

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

- Update from version 1.16.5 to 1.17
- Update of rootfile
- Changelog
    1.17
	* New features added
	  - AM_PATH_PYTHON will, after checking "python", prefer any Python 3
	    version (latest versions checked first) over any Python 2
	    version. If a specific version of Python 2 is still needed, the
	    $PYTHON variable should be set beforehand.
	  - AM_PATH_PYTHON will also search for Python versions 3.20 through 3.10.
	    It previously searched for 3.9 through 3.0. (bug#53530)
	  - RANLIB may be overridden on a per-target basis.
	  - AM_TEXI2FLAGS may be defined to pass extra flags to TEXI2DVI & TEXI2PDF.
	  - New option "posix" to emit the special target .POSIX for make.
	    (bug#55025, bug#67891)
	  - Systems with non-POSIX "rm -f" behavior are now supported, and the
	    prior intent to drop support for them has been reversed.
	    The ACCEPT_INFERIOR_RM_PROGRAM setting no longer exists.
	    (bug#10828)
	  - Variables using escaped \# will trigger portability warnings, but be
	    retained when appended.  GNU Make & BSD Makes are known to support it.
	    (bug#7610)
	  - GNU Make's default pattern rules are disabled, for speed and debugging.
	    (.SUFFIXES was already cleared.) (bug#64743)
	  - For Texinfo documents, if a .texi.in file exists, but no .texi, the
	    .texi.in will be read. Texinfo source files need not be present at
	    all, and if present, need not contain @setfilename. Then the file name
	    as given in the Makefile.am will be used.  If @setfilename is present,
	    it should be the basename of the Texinfo file, extended with .info.
	    (bug#54063)
	  - aclocal has a new option --aclocal-path to override $ACLOCAL_PATH.
	    (https://lists.gnu.org/archive/html/automake-patches/2022-01/msg00029.html)
	  - The missing script also supports autoreconf, autogen, and perl.
	    (https://lists.gnu.org/archive/html/automake-patches/2015-08/msg00000.html)
	  - test-suite.log now contains basic system information, and the
	    console message about bug reporting on failure has a bit more detail.
	    (bug#68746, bug#71421)
	  - When using the (default) "parallel" test driver, you can now omit the
	    output of skipped tests from test-suite.log by defining the
	    variable IGNORE_SKIPPED_LOGS to a non-empty value. (bug#71422)
	* Bugs fixed
	  - Generated file timestamp checks handle filesystems with subsecond
	    timestamp granularity dynamically, greatly speeding up the sleep
	    done by AC_OUTPUT when generating config.status (all packages) and
	    Automake's make check.
	    However, this subsecond-mtime support requires an autom4te from
	    Autoconf 2.72 or later (or random test failures and other timing
	    problems may ensue), as well as a Perl, sleep program, make program,
	    and filesystem that all support subsecond resolution; otherwise, we
	    fall back to a two-second granularity, not even testing the (common)
	    1s case since that would induce a 2s delay for all configure scripts
	    in all packages on all systems that don't support subsecond mtimes.
	    When everything is supported, a line "Features: subsecond-mtime" is
	    now printed by automake --version and autom4te --version.
	    To override this check and delay, e.g. to use 1 second:
	      am_cv_filesystem_timestamp_resolution=1
	      export am_cv_filesystem_timestamp_resolution
	    (commit 720a11531,
	      https://lists.gnu.org/archive/html/automake-commit/2022-02/msg00009.html
	    then bug#60808, bug#64756, bug#67670, bug#68808, bug#71652,
	    history reviewed in
	      https://lists.gnu.org/archive/html/automake/2024-06/msg00054.html
	    and more info in surrounding threads.)
	  - The default value of $ARFLAGS is now "cr" instead of "cru", to better
	    support deterministic builds. (bug#20082)
	  - Automake's make dist now uses -9 instead of --best with gzip,
	    because Alpine gzip does not support --best. Also, GZIP_ENV is used
	    only for compression, not decompression, because of the same system.
	    (bug#68151)
	  - Dependency files are now empty, instead of "# dummy", for speed.
	    (https://lists.gnu.org/archive/html/automake/2022-05/msg00006.html)
	  - Compiling Python modules with Python 3.5+ uses multiple optimization
	    levels. (bug#38043)
	  - If the Python installation "scheme" is set to posix_local (Debian),
	    it is reset to either deb_system (if the prefix = /usr), or
	    posix_prefix (otherwise). (bug#54412, bug#64837)
	  - As a result of the Python scheme change, the installation directory
	    for Python files again defaults to "site-packages" under the usual
	    installation prefix, even on systems (generally Debian-based) that
	    would normally use the "dist-packages" subdirectory under
	    /usr/local.
	  - When compiling Emacs Lisp files, emacs is run with --no-site-file to
	    disable user config files that might hang or access the terminal;
	    and -Q is not used, since its support and behavior varies. (bug#58102)
	  - Emacs Lisp compilations respect silent make output.
	  - Automake no longer incorrectly warns that the POSIX make variables
	    $(*D) and the like are non-POSIX. Unfortunately, the make
	    implementations which do not correctly implement all the POSIX
	    variables are not detected, but this seems to have little impact
	    in practice. (bug#9587)
	  - Pass libtool tags OBJC and OBJCXX for the respective languages.
	    (bug#67539)
	  - distcleancheck ignores "silly rename" files (.nfs* .smb* .__afs*)
	    that can show up on network file systems.
	    (https://lists.gnu.org/archive/html/automake/2022-09/msg00002.html)
	  - Pass any options given to AM_PROG_LEX on to AC_PROG_LEX.
	    (bug#65600, bug#65730)
	  - aclocal: recognize ; as path separator on OS/2 and Windows. (bug#71534)
	  - Hash iterations with external effects now consistently sort keys.
	    (bug#25629, bug#46744)
	  - tests: avoid some declaration conflicts for lex et al. on SunOS.
	    (bug#34151 and others)
	  - tests: declare yyparse before use and use (void) parameter lists
	    instead of (), to placate C23. (bug#71425)
	  - Typos in code and other doc fixes. (bug#68003, bug#68004, et al.)
	* Obsolescence:
	  - py-compile no longer supports Python 0.x or 1.x versions.  Python 2.0,
	    released in 2000, is currently the minimum required version.

Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
 config/rootfiles/common/automake | 239 ++++++++++++++++---------------
 lfs/automake                     |   6 +-
 2 files changed, 123 insertions(+), 122 deletions(-)

diff --git a/config/rootfiles/common/automake b/config/rootfiles/common/automake
index 595eaf396..99d44ab7d 100644
--- a/config/rootfiles/common/automake
+++ b/config/rootfiles/common/automake
@@ -1,130 +1,131 @@
 #usr/bin/aclocal
-#usr/bin/aclocal-1.16
+#usr/bin/aclocal-1.17
 #usr/bin/automake
-#usr/bin/automake-1.16
-#usr/share/aclocal
-#usr/share/aclocal-1.16
-#usr/share/aclocal-1.16/amversion.m4
-#usr/share/aclocal-1.16/ar-lib.m4
-#usr/share/aclocal-1.16/as.m4
-#usr/share/aclocal-1.16/auxdir.m4
-#usr/share/aclocal-1.16/cond-if.m4
-#usr/share/aclocal-1.16/cond.m4
-#usr/share/aclocal-1.16/depend.m4
-#usr/share/aclocal-1.16/depout.m4
-#usr/share/aclocal-1.16/dmalloc.m4
-#usr/share/aclocal-1.16/extra-recurs.m4
-#usr/share/aclocal-1.16/gcj.m4
-#usr/share/aclocal-1.16/init.m4
-#usr/share/aclocal-1.16/install-sh.m4
-#usr/share/aclocal-1.16/internal
-#usr/share/aclocal-1.16/internal/ac-config-macro-dirs.m4
-#usr/share/aclocal-1.16/lead-dot.m4
-#usr/share/aclocal-1.16/lex.m4
-#usr/share/aclocal-1.16/lispdir.m4
-#usr/share/aclocal-1.16/maintainer.m4
-#usr/share/aclocal-1.16/make.m4
-#usr/share/aclocal-1.16/missing.m4
-#usr/share/aclocal-1.16/mkdirp.m4
-#usr/share/aclocal-1.16/obsolete.m4
-#usr/share/aclocal-1.16/options.m4
-#usr/share/aclocal-1.16/prog-cc-c-o.m4
-#usr/share/aclocal-1.16/python.m4
-#usr/share/aclocal-1.16/runlog.m4
-#usr/share/aclocal-1.16/sanity.m4
-#usr/share/aclocal-1.16/silent.m4
-#usr/share/aclocal-1.16/strip.m4
-#usr/share/aclocal-1.16/substnot.m4
-#usr/share/aclocal-1.16/tar.m4
-#usr/share/aclocal-1.16/upc.m4
-#usr/share/aclocal-1.16/vala.m4
+#usr/bin/automake-1.17
+#usr/share/aclocal-1.17
+#usr/share/aclocal-1.17/amversion.m4
+#usr/share/aclocal-1.17/ar-lib.m4
+#usr/share/aclocal-1.17/as.m4
+#usr/share/aclocal-1.17/auxdir.m4
+#usr/share/aclocal-1.17/cond-if.m4
+#usr/share/aclocal-1.17/cond.m4
+#usr/share/aclocal-1.17/depend.m4
+#usr/share/aclocal-1.17/depout.m4
+#usr/share/aclocal-1.17/dmalloc.m4
+#usr/share/aclocal-1.17/extra-recurs.m4
+#usr/share/aclocal-1.17/gcj.m4
+#usr/share/aclocal-1.17/init.m4
+#usr/share/aclocal-1.17/install-sh.m4
+#usr/share/aclocal-1.17/internal
+#usr/share/aclocal-1.17/internal/ac-config-macro-dirs.m4
+#usr/share/aclocal-1.17/lead-dot.m4
+#usr/share/aclocal-1.17/lex.m4
+#usr/share/aclocal-1.17/lispdir.m4
+#usr/share/aclocal-1.17/maintainer.m4
+#usr/share/aclocal-1.17/make.m4
+#usr/share/aclocal-1.17/missing.m4
+#usr/share/aclocal-1.17/mkdirp.m4
+#usr/share/aclocal-1.17/obsolete.m4
+#usr/share/aclocal-1.17/options.m4
+#usr/share/aclocal-1.17/prog-cc-c-o.m4
+#usr/share/aclocal-1.17/python.m4
+#usr/share/aclocal-1.17/rmf.m4
+#usr/share/aclocal-1.17/runlog.m4
+#usr/share/aclocal-1.17/sanity.m4
+#usr/share/aclocal-1.17/silent.m4
+#usr/share/aclocal-1.17/strip.m4
+#usr/share/aclocal-1.17/substnot.m4
+#usr/share/aclocal-1.17/tar.m4
+#usr/share/aclocal-1.17/upc.m4
+#usr/share/aclocal-1.17/vala.m4
+#usr/share/aclocal-1.17/xargsn.m4
 #usr/share/aclocal/README
-#usr/share/automake-1.16
-#usr/share/automake-1.16/Automake
-#usr/share/automake-1.16/Automake/ChannelDefs.pm
-#usr/share/automake-1.16/Automake/Channels.pm
-#usr/share/automake-1.16/Automake/Condition.pm
-#usr/share/automake-1.16/Automake/Config.pm
-#usr/share/automake-1.16/Automake/Configure_ac.pm
-#usr/share/automake-1.16/Automake/DisjConditions.pm
-#usr/share/automake-1.16/Automake/FileUtils.pm
-#usr/share/automake-1.16/Automake/General.pm
-#usr/share/automake-1.16/Automake/Getopt.pm
-#usr/share/automake-1.16/Automake/Item.pm
-#usr/share/automake-1.16/Automake/ItemDef.pm
-#usr/share/automake-1.16/Automake/Language.pm
-#usr/share/automake-1.16/Automake/Location.pm
-#usr/share/automake-1.16/Automake/Options.pm
-#usr/share/automake-1.16/Automake/Rule.pm
-#usr/share/automake-1.16/Automake/RuleDef.pm
-#usr/share/automake-1.16/Automake/VarDef.pm
-#usr/share/automake-1.16/Automake/Variable.pm
-#usr/share/automake-1.16/Automake/Version.pm
-#usr/share/automake-1.16/Automake/Wrap.pm
-#usr/share/automake-1.16/Automake/XFile.pm
-#usr/share/automake-1.16/COPYING
-#usr/share/automake-1.16/INSTALL
-#usr/share/automake-1.16/am
-#usr/share/automake-1.16/am/check.am
-#usr/share/automake-1.16/am/check2.am
-#usr/share/automake-1.16/am/clean-hdr.am
-#usr/share/automake-1.16/am/clean.am
-#usr/share/automake-1.16/am/compile.am
-#usr/share/automake-1.16/am/configure.am
-#usr/share/automake-1.16/am/data.am
-#usr/share/automake-1.16/am/dejagnu.am
-#usr/share/automake-1.16/am/depend.am
-#usr/share/automake-1.16/am/depend2.am
-#usr/share/automake-1.16/am/distdir.am
-#usr/share/automake-1.16/am/footer.am
-#usr/share/automake-1.16/am/header-vars.am
-#usr/share/automake-1.16/am/header.am
-#usr/share/automake-1.16/am/inst-vars.am
-#usr/share/automake-1.16/am/install.am
-#usr/share/automake-1.16/am/java.am
-#usr/share/automake-1.16/am/lang-compile.am
-#usr/share/automake-1.16/am/lex.am
-#usr/share/automake-1.16/am/library.am
-#usr/share/automake-1.16/am/libs.am
-#usr/share/automake-1.16/am/libtool.am
-#usr/share/automake-1.16/am/lisp.am
-#usr/share/automake-1.16/am/ltlib.am
-#usr/share/automake-1.16/am/ltlibrary.am
-#usr/share/automake-1.16/am/mans-vars.am
-#usr/share/automake-1.16/am/mans.am
-#usr/share/automake-1.16/am/program.am
-#usr/share/automake-1.16/am/progs.am
-#usr/share/automake-1.16/am/python.am
-#usr/share/automake-1.16/am/remake-hdr.am
-#usr/share/automake-1.16/am/scripts.am
-#usr/share/automake-1.16/am/subdirs.am
-#usr/share/automake-1.16/am/tags.am
-#usr/share/automake-1.16/am/texi-vers.am
-#usr/share/automake-1.16/am/texibuild.am
-#usr/share/automake-1.16/am/texinfos.am
-#usr/share/automake-1.16/am/vala.am
-#usr/share/automake-1.16/am/yacc.am
-#usr/share/automake-1.16/ar-lib
-#usr/share/automake-1.16/compile
-#usr/share/automake-1.16/config.guess
-#usr/share/automake-1.16/config.sub
-#usr/share/automake-1.16/depcomp
-#usr/share/automake-1.16/install-sh
-#usr/share/automake-1.16/mdate-sh
-#usr/share/automake-1.16/missing
-#usr/share/automake-1.16/mkinstalldirs
-#usr/share/automake-1.16/py-compile
-#usr/share/automake-1.16/tap-driver.sh
-#usr/share/automake-1.16/test-driver
-#usr/share/automake-1.16/texinfo.tex
-#usr/share/automake-1.16/ylwrap
+#usr/share/automake-1.17
+#usr/share/automake-1.17/Automake
+#usr/share/automake-1.17/Automake/ChannelDefs.pm
+#usr/share/automake-1.17/Automake/Channels.pm
+#usr/share/automake-1.17/Automake/Condition.pm
+#usr/share/automake-1.17/Automake/Config.pm
+#usr/share/automake-1.17/Automake/Configure_ac.pm
+#usr/share/automake-1.17/Automake/DisjConditions.pm
+#usr/share/automake-1.17/Automake/FileUtils.pm
+#usr/share/automake-1.17/Automake/General.pm
+#usr/share/automake-1.17/Automake/Getopt.pm
+#usr/share/automake-1.17/Automake/Item.pm
+#usr/share/automake-1.17/Automake/ItemDef.pm
+#usr/share/automake-1.17/Automake/Language.pm
+#usr/share/automake-1.17/Automake/Location.pm
+#usr/share/automake-1.17/Automake/Options.pm
+#usr/share/automake-1.17/Automake/Rule.pm
+#usr/share/automake-1.17/Automake/RuleDef.pm
+#usr/share/automake-1.17/Automake/VarDef.pm
+#usr/share/automake-1.17/Automake/Variable.pm
+#usr/share/automake-1.17/Automake/Version.pm
+#usr/share/automake-1.17/Automake/Wrap.pm
+#usr/share/automake-1.17/Automake/XFile.pm
+#usr/share/automake-1.17/COPYING
+#usr/share/automake-1.17/INSTALL
+#usr/share/automake-1.17/am
+#usr/share/automake-1.17/am/check.am
+#usr/share/automake-1.17/am/check2.am
+#usr/share/automake-1.17/am/clean-hdr.am
+#usr/share/automake-1.17/am/clean.am
+#usr/share/automake-1.17/am/compile.am
+#usr/share/automake-1.17/am/configure.am
+#usr/share/automake-1.17/am/data.am
+#usr/share/automake-1.17/am/dejagnu.am
+#usr/share/automake-1.17/am/depend.am
+#usr/share/automake-1.17/am/depend2.am
+#usr/share/automake-1.17/am/distdir.am
+#usr/share/automake-1.17/am/footer.am
+#usr/share/automake-1.17/am/header-vars.am
+#usr/share/automake-1.17/am/header.am
+#usr/share/automake-1.17/am/inst-vars.am
+#usr/share/automake-1.17/am/install.am
+#usr/share/automake-1.17/am/java.am
+#usr/share/automake-1.17/am/lang-compile.am
+#usr/share/automake-1.17/am/lex.am
+#usr/share/automake-1.17/am/library.am
+#usr/share/automake-1.17/am/libs.am
+#usr/share/automake-1.17/am/libtool.am
+#usr/share/automake-1.17/am/lisp.am
+#usr/share/automake-1.17/am/ltlib.am
+#usr/share/automake-1.17/am/ltlibrary.am
+#usr/share/automake-1.17/am/mans-vars.am
+#usr/share/automake-1.17/am/mans.am
+#usr/share/automake-1.17/am/program.am
+#usr/share/automake-1.17/am/progs.am
+#usr/share/automake-1.17/am/python.am
+#usr/share/automake-1.17/am/remake-hdr.am
+#usr/share/automake-1.17/am/scripts.am
+#usr/share/automake-1.17/am/subdirs.am
+#usr/share/automake-1.17/am/tags.am
+#usr/share/automake-1.17/am/texi-vers.am
+#usr/share/automake-1.17/am/texibuild.am
+#usr/share/automake-1.17/am/texinfos.am
+#usr/share/automake-1.17/am/vala.am
+#usr/share/automake-1.17/am/yacc.am
+#usr/share/automake-1.17/ar-lib
+#usr/share/automake-1.17/compile
+#usr/share/automake-1.17/config.guess
+#usr/share/automake-1.17/config.sub
+#usr/share/automake-1.17/depcomp
+#usr/share/automake-1.17/install-sh
+#usr/share/automake-1.17/mdate-sh
+#usr/share/automake-1.17/missing
+#usr/share/automake-1.17/mkinstalldirs
+#usr/share/automake-1.17/py-compile
+#usr/share/automake-1.17/tap-driver.sh
+#usr/share/automake-1.17/test-driver
+#usr/share/automake-1.17/texinfo.tex
+#usr/share/automake-1.17/ylwrap
 #usr/share/doc/automake
 #usr/share/doc/automake/amhello-1.0.tar.gz
 #usr/share/info/automake-history.info
 #usr/share/info/automake.info
 #usr/share/info/automake.info-1
 #usr/share/info/automake.info-2
-#usr/share/man/man1/aclocal-1.16.1
+#usr/share/man/man1/aclocal-1.17.1
 #usr/share/man/man1/aclocal.1
-#usr/share/man/man1/automake-1.16.1
+#usr/share/man/man1/automake-1.17.1
 #usr/share/man/man1/automake.1
diff --git a/lfs/automake b/lfs/automake
index 595ecd917..e595b98b6 100644
--- a/lfs/automake
+++ b/lfs/automake
@@ -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        = 1.16.5
+VER        = 1.17
 
 THISAPP    = automake-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -48,7 +48,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 87408abc57e1d4317a2b518fb3606d0f6d156522e7333016dd84747cd8922f27ef7fcc93220b11f794ce52bf8fd9a788d0166a4d1964d7c283905f269977ac7c
+$(DL_FILE)_BLAKE2 = 53c24c138faf3d2be4e30ababcccd4d157c03e815fc4b7f3e3063b6648cf254dfa63afe6e3285b21309dbf260335c3e67991db3825e7532b158b25ccaead83f5
 
 install : $(TARGET)
 
-- 
2.46.0


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

* [PATCH] bind: Update to version 9.20.1
  2024-08-25 19:11 [PATCH] automake: Update to version 1.17 Adolf Belka
@ 2024-08-25 19:11 ` Adolf Belka
  2024-08-25 19:11 ` [PATCH] gdbm: Update to version 1.24 Adolf Belka
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Adolf Belka @ 2024-08-25 19:11 UTC (permalink / raw)
  To: development

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

- Update from version 9.16.50 to 9.20.1
- Update of rootfile
- The use of liburcu has replaced isc_qsbr in 9.19.4 and therefore the position of
   liburcu in make.sh had to be changed.
- --enable-threads, --with-libtool, --without-python & --disable-linux-caps are no longer
   reconised configure options (it looks like not recognised for a while.
   --without-python is explicitly mentioned as being removed in version 9.15.7
   The others are not mentioned in the changelog notes.
- The lib/bind9 and lib/irs directories in the source tarball have been removed. The
   The comtents of lib/bind9 have been moved to lib/isc and lib/isccfg and the contents
   of lib/irs have been moved to dns.
- The order of the make instructions had to be changed as lib/isccfg required the results
   of lib/dns and the build failed without it. Changing the order solved the build problem.
- A large number of CVE fixes have been applied between the new and old version.
	5	9.20.0
	2	9.19.21
	3	9.19.20
	1	9.19.17
	1	9.19.14
	3	9.19.9
	5	9.19.5
	1	9.19.1
	4	9.19.0
	1	9.17.19
	1	9.17.17
	2	9.17.12
	5	9.17.4
	4	9.17.2
- Changelog is too long to include here - around 5000 lines. For details see the NEWS file
   in the source tarball.

Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
 config/rootfiles/common/bind | 112 +++++++++++------------------------
 lfs/bind                     |  19 ++----
 make.sh                      |   2 +-
 3 files changed, 43 insertions(+), 90 deletions(-)

diff --git a/config/rootfiles/common/bind b/config/rootfiles/common/bind
index 86383fb74..74d3b93e5 100644
--- a/config/rootfiles/common/bind
+++ b/config/rootfiles/common/bind
@@ -3,10 +3,6 @@ usr/bin/dig
 usr/bin/host
 usr/bin/nslookup
 usr/bin/nsupdate
-#usr/include/bind9
-#usr/include/bind9/check.h
-#usr/include/bind9/getaddresses.h
-#usr/include/bind9/version.h
 #usr/include/dns
 #usr/include/dns/acl.h
 #usr/include/dns/adb.h
@@ -22,7 +18,6 @@ usr/bin/nsupdate
 #usr/include/dns/compress.h
 #usr/include/dns/db.h
 #usr/include/dns/dbiterator.h
-#usr/include/dns/dbtable.h
 #usr/include/dns/diff.h
 #usr/include/dns/dispatch.h
 #usr/include/dns/dlz.h
@@ -34,12 +29,10 @@ usr/bin/nsupdate
 #usr/include/dns/ds.h
 #usr/include/dns/dsdigest.h
 #usr/include/dns/dyndb.h
-#usr/include/dns/ecdb.h
 #usr/include/dns/ecs.h
 #usr/include/dns/edns.h
 #usr/include/dns/enumclass.h
 #usr/include/dns/enumtype.h
-#usr/include/dns/events.h
 #usr/include/dns/fixedname.h
 #usr/include/dns/forward.h
 #usr/include/dns/geoip.h
@@ -50,17 +43,16 @@ usr/bin/nsupdate
 #usr/include/dns/keydata.h
 #usr/include/dns/keyflags.h
 #usr/include/dns/keymgr.h
+#usr/include/dns/keystore.h
 #usr/include/dns/keytable.h
 #usr/include/dns/keyvalues.h
-#usr/include/dns/lib.h
 #usr/include/dns/librpz.h
-#usr/include/dns/lmdb.h
 #usr/include/dns/log.h
-#usr/include/dns/lookup.h
 #usr/include/dns/master.h
 #usr/include/dns/masterdump.h
 #usr/include/dns/message.h
 #usr/include/dns/name.h
+#usr/include/dns/nametree.h
 #usr/include/dns/ncache.h
 #usr/include/dns/nsec.h
 #usr/include/dns/nsec3.h
@@ -68,8 +60,8 @@ usr/bin/nsupdate
 #usr/include/dns/opcode.h
 #usr/include/dns/order.h
 #usr/include/dns/peer.h
-#usr/include/dns/portlist.h
 #usr/include/dns/private.h
+#usr/include/dns/qp.h
 #usr/include/dns/rbt.h
 #usr/include/dns/rcode.h
 #usr/include/dns/rdata.h
@@ -80,6 +72,7 @@ usr/bin/nsupdate
 #usr/include/dns/rdataslab.h
 #usr/include/dns/rdatastruct.h
 #usr/include/dns/rdatatype.h
+#usr/include/dns/remote.h
 #usr/include/dns/request.h
 #usr/include/dns/resolver.h
 #usr/include/dns/result.h
@@ -87,24 +80,21 @@ usr/bin/nsupdate
 #usr/include/dns/rpz.h
 #usr/include/dns/rriterator.h
 #usr/include/dns/rrl.h
-#usr/include/dns/sdb.h
 #usr/include/dns/sdlz.h
 #usr/include/dns/secalg.h
 #usr/include/dns/secproto.h
 #usr/include/dns/soa.h
 #usr/include/dns/ssu.h
 #usr/include/dns/stats.h
-#usr/include/dns/tcpmsg.h
 #usr/include/dns/time.h
-#usr/include/dns/timer.h
 #usr/include/dns/tkey.h
-#usr/include/dns/tsec.h
+#usr/include/dns/trace.h
+#usr/include/dns/transport.h
 #usr/include/dns/tsig.h
 #usr/include/dns/ttl.h
 #usr/include/dns/types.h
 #usr/include/dns/update.h
 #usr/include/dns/validator.h
-#usr/include/dns/version.h
 #usr/include/dns/view.h
 #usr/include/dns/xfrin.h
 #usr/include/dns/zone.h
@@ -114,60 +104,50 @@ usr/bin/nsupdate
 #usr/include/dst
 #usr/include/dst/dst.h
 #usr/include/dst/gssapi.h
-#usr/include/dst/result.h
 #usr/include/irs
-#usr/include/irs/context.h
-#usr/include/irs/dnsconf.h
-#usr/include/irs/netdb.h
-#usr/include/irs/platform.h
 #usr/include/irs/resconf.h
-#usr/include/irs/types.h
-#usr/include/irs/version.h
 #usr/include/isc
-#usr/include/isc/aes.h
-#usr/include/isc/align.h
-#usr/include/isc/app.h
+#usr/include/isc/ascii.h
 #usr/include/isc/assertions.h
-#usr/include/isc/astack.h
+#usr/include/isc/async.h
 #usr/include/isc/atomic.h
+#usr/include/isc/attributes.h
 #usr/include/isc/backtrace.h
 #usr/include/isc/barrier.h
 #usr/include/isc/base32.h
 #usr/include/isc/base64.h
-#usr/include/isc/bind9.h
 #usr/include/isc/buffer.h
-#usr/include/isc/bufferlist.h
-#usr/include/isc/cmocka.h
 #usr/include/isc/commandline.h
 #usr/include/isc/condition.h
 #usr/include/isc/counter.h
 #usr/include/isc/crc64.h
-#usr/include/isc/deprecated.h
 #usr/include/isc/dir.h
+#usr/include/isc/dnsstream.h
 #usr/include/isc/endian.h
+#usr/include/isc/entropy.h
 #usr/include/isc/errno.h
 #usr/include/isc/error.h
-#usr/include/isc/event.h
-#usr/include/isc/eventclass.h
 #usr/include/isc/file.h
+#usr/include/isc/fips.h
 #usr/include/isc/formatcheck.h
-#usr/include/isc/fsaccess.h
 #usr/include/isc/fuzz.h
+#usr/include/isc/getaddresses.h
 #usr/include/isc/hash.h
+#usr/include/isc/hashmap.h
 #usr/include/isc/heap.h
 #usr/include/isc/hex.h
+#usr/include/isc/histo.h
 #usr/include/isc/hmac.h
 #usr/include/isc/ht.h
 #usr/include/isc/httpd.h
 #usr/include/isc/interfaceiter.h
 #usr/include/isc/iterated_hash.h
+#usr/include/isc/job.h
 #usr/include/isc/lang.h
 #usr/include/isc/lex.h
-#usr/include/isc/lfsr.h
-#usr/include/isc/lib.h
-#usr/include/isc/likely.h
 #usr/include/isc/list.h
 #usr/include/isc/log.h
+#usr/include/isc/loop.h
 #usr/include/isc/magic.h
 #usr/include/isc/managers.h
 #usr/include/isc/md.h
@@ -177,18 +157,17 @@ usr/bin/nsupdate
 #usr/include/isc/mutexblock.h
 #usr/include/isc/net.h
 #usr/include/isc/netaddr.h
-#usr/include/isc/netdb.h
 #usr/include/isc/netmgr.h
 #usr/include/isc/netscope.h
 #usr/include/isc/nonce.h
-#usr/include/isc/offset.h
 #usr/include/isc/once.h
 #usr/include/isc/os.h
+#usr/include/isc/overflow.h
 #usr/include/isc/parseint.h
-#usr/include/isc/platform.h
-#usr/include/isc/pool.h
+#usr/include/isc/pause.h
 #usr/include/isc/portset.h
-#usr/include/isc/print.h
+#usr/include/isc/proxy2.h
+#usr/include/isc/queue.h
 #usr/include/isc/quota.h
 #usr/include/isc/radix.h
 #usr/include/isc/random.h
@@ -196,62 +175,58 @@ usr/bin/nsupdate
 #usr/include/isc/refcount.h
 #usr/include/isc/regex.h
 #usr/include/isc/region.h
-#usr/include/isc/resource.h
 #usr/include/isc/result.h
-#usr/include/isc/resultclass.h
 #usr/include/isc/rwlock.h
 #usr/include/isc/safe.h
 #usr/include/isc/serial.h
+#usr/include/isc/signal.h
 #usr/include/isc/siphash.h
 #usr/include/isc/sockaddr.h
-#usr/include/isc/socket.h
-#usr/include/isc/stat.h
+#usr/include/isc/spinlock.h
 #usr/include/isc/stats.h
-#usr/include/isc/stdatomic.h
 #usr/include/isc/stdio.h
 #usr/include/isc/stdtime.h
 #usr/include/isc/strerr.h
 #usr/include/isc/string.h
 #usr/include/isc/symtab.h
 #usr/include/isc/syslog.h
-#usr/include/isc/task.h
-#usr/include/isc/taskpool.h
 #usr/include/isc/thread.h
+#usr/include/isc/tid.h
 #usr/include/isc/time.h
 #usr/include/isc/timer.h
+#usr/include/isc/tls.h
 #usr/include/isc/tm.h
 #usr/include/isc/types.h
+#usr/include/isc/urcu.h
 #usr/include/isc/url.h
 #usr/include/isc/utf8.h
 #usr/include/isc/util.h
-#usr/include/isc/version.h
+#usr/include/isc/uv.h
+#usr/include/isc/work.h
+#usr/include/isc/xml.h
 #usr/include/isccc
 #usr/include/isccc/alist.h
 #usr/include/isccc/base64.h
 #usr/include/isccc/cc.h
 #usr/include/isccc/ccmsg.h
-#usr/include/isccc/events.h
-#usr/include/isccc/result.h
 #usr/include/isccc/sexpr.h
 #usr/include/isccc/symtab.h
 #usr/include/isccc/symtype.h
 #usr/include/isccc/types.h
 #usr/include/isccc/util.h
-#usr/include/isccc/version.h
 #usr/include/isccfg
 #usr/include/isccfg/aclconf.h
 #usr/include/isccfg/cfg.h
-#usr/include/isccfg/dnsconf.h
+#usr/include/isccfg/check.h
+#usr/include/isccfg/duration.h
 #usr/include/isccfg/grammar.h
 #usr/include/isccfg/kaspconf.h
 #usr/include/isccfg/log.h
 #usr/include/isccfg/namedconf.h
-#usr/include/isccfg/version.h
 #usr/include/ns
 #usr/include/ns/client.h
 #usr/include/ns/hooks.h
 #usr/include/ns/interfacemgr.h
-#usr/include/ns/lib.h
 #usr/include/ns/listenlist.h
 #usr/include/ns/log.h
 #usr/include/ns/notify.h
@@ -261,34 +236,19 @@ usr/bin/nsupdate
 #usr/include/ns/stats.h
 #usr/include/ns/types.h
 #usr/include/ns/update.h
-#usr/include/ns/version.h
 #usr/include/ns/xfrout.h
-#usr/include/pk11
-#usr/include/pk11/constants.h
-#usr/include/pk11/internal.h
-#usr/include/pk11/pk11.h
-#usr/include/pk11/result.h
-#usr/include/pk11/site.h
-#usr/include/pkcs11
-#usr/include/pkcs11/pkcs11.h
-usr/lib/libbind9-9.16.50.so
-#usr/lib/libbind9.la
-#usr/lib/libbind9.so
-usr/lib/libdns-9.16.50.so
+usr/lib/libdns-9.20.1.so
 #usr/lib/libdns.la
 #usr/lib/libdns.so
-usr/lib/libirs-9.16.50.so
-#usr/lib/libirs.la
-#usr/lib/libirs.so
-usr/lib/libisc-9.16.50.so
+usr/lib/libisc-9.20.1.so
 #usr/lib/libisc.la
 #usr/lib/libisc.so
-usr/lib/libisccc-9.16.50.so
+usr/lib/libisccc-9.20.1.so
 #usr/lib/libisccc.la
 #usr/lib/libisccc.so
-usr/lib/libisccfg-9.16.50.so
+usr/lib/libisccfg-9.20.1.so
 #usr/lib/libisccfg.la
 #usr/lib/libisccfg.so
-usr/lib/libns-9.16.50.so
+usr/lib/libns-9.20.1.so
 #usr/lib/libns.la
 #usr/lib/libns.so
diff --git a/lfs/bind b/lfs/bind
index a79020f03..5833b9005 100644
--- a/lfs/bind
+++ b/lfs/bind
@@ -25,7 +25,7 @@
 
 include Config
 
-VER        = 9.16.50
+VER        = 9.20.1
 
 THISAPP    = bind-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -43,7 +43,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 0464d1e246d0a5c39e20faf733b7f4ee21d192cc0ccce5bba2a22ae4303c82005ccfb319fe2da51872c7258852a747984d7327c70dec08414ab2d194c412199b
+$(DL_FILE)_BLAKE2 = 0607a2753bcda828cff0f01a7929c3192286050813243a0733d4cf29313c9d9532285d049864b67f3ce352b71cbb878bc22785a73fe186bf244ca807934fefdf
 
 install : $(TARGET)
 
@@ -77,31 +77,24 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	cd $(DIR_APP) && STD_CDEFINES="$(CPPFLAGS)" \
 		./configure \
 			--prefix=/usr \
-			--enable-threads \
-			--with-libtool \
-			--without-python \
-			--disable-linux-caps \
-			--disable-static
+			--disable-static \
+			--disable-doh
 
 	# Build required libraries
 	cd $(DIR_APP) && make -C lib/isc $(MAKETUNING)
-	cd $(DIR_APP) && make -C lib/isccc $(MAKETUNING)
 	cd $(DIR_APP) && make -C lib/dns $(MAKETUNING)
 	cd $(DIR_APP) && make -C lib/ns $(MAKETUNING)
+	cd $(DIR_APP) && make -C lib/isccc $(MAKETUNING)
 	cd $(DIR_APP) && make -C lib/isccfg $(MAKETUNING)
-	cd $(DIR_APP) && make -C lib/bind9 $(MAKETUNING)
-	cd $(DIR_APP) && make -C lib/irs $(MAKETUNING)
 	cd $(DIR_APP) && make -C bin/dig $(MAKETUNING)
 	cd $(DIR_APP) && make -C bin/nsupdate $(MAKETUNING)
 
 	# Install utility programs
 	cd $(DIR_APP) && make -C lib/isc install
-	cd $(DIR_APP) && make -C lib/isccc install
 	cd $(DIR_APP) && make -C lib/dns install
 	cd $(DIR_APP) && make -C lib/ns install
+	cd $(DIR_APP) && make -C lib/isccc install
 	cd $(DIR_APP) && make -C lib/isccfg install
-	cd $(DIR_APP) && make -C lib/bind9 install
-	cd $(DIR_APP) && make -C lib/irs install
 	cd $(DIR_APP) && make -C bin/dig install
 	cd $(DIR_APP) && make -C bin/nsupdate install
 
diff --git a/make.sh b/make.sh
index dec7b3a45..a0ea4a99d 100755
--- a/make.sh
+++ b/make.sh
@@ -1547,6 +1547,7 @@ build_system() {
 	lfsmake2 unbound
 	lfsmake2 gnutls
 	lfsmake2 libuv
+	lfsmake2 liburcu
 	lfsmake2 bind
 	lfsmake2 dhcp
 	lfsmake2 dhcpcd
@@ -1698,7 +1699,6 @@ build_system() {
 	lfsmake2 dosfstools
 	lfsmake2 exfatprogs
 	lfsmake2 reiserfsprogs
-	lfsmake2 liburcu
 	lfsmake2 xfsprogs
 	lfsmake2 sysfsutils
 	lfsmake2 fuse
-- 
2.46.0


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

* [PATCH] gdbm: Update to version 1.24
  2024-08-25 19:11 [PATCH] automake: Update to version 1.17 Adolf Belka
  2024-08-25 19:11 ` [PATCH] bind: Update to version 9.20.1 Adolf Belka
@ 2024-08-25 19:11 ` Adolf Belka
  2024-08-25 19:11 ` [PATCH] iana-etc: Update to version 20240813 Adolf Belka
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Adolf Belka @ 2024-08-25 19:11 UTC (permalink / raw)
  To: development

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

- Update from version 1.23 to 1.24
- Update of rootfile not required
- Changelog
    1.24
	* New gdbm_load option: --update
		The --update (-U) option instructs gdbm_load to update an existing
		 database.
	* Fix semantics of gdbm_load -r
		The --replace (-r) is valid only when used together with --update.
	* Use getline in gdbmtool shell.
	* New function: gdbm_load_from_file_ext
		In contrast to gdbm_load and gdbm_load_from_file, which derive
		the value of the flag parameter for gdbm_open from the value
		of their "replace" argument, this function allows the caller to
		specify it explicitly.  The prototype is:
		  int gdbm_load_from_file_ext (GDBM_FILE *pdbf, FILE *fp,
					       int flags, int replace,
					       int meta_mask,
					       unsigned long *line);
	* Bugfixes
		** Fix binary dump format for key and/or data of zero size.
		   (see https://puszcza.gnu.org.ua/bugs/?565)
		** Fix location tracking and recover command in gdbtool.
		   (see https://puszcza.gnu.org.ua/bugs/?566)
		** Fix possible buffer underflow in gdbmload.
		** Ensure any padding bytes in avail_elem structure are filled with 0.
		   (fixes https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1031276)
		** Improve the documentation.

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

diff --git a/lfs/gdbm b/lfs/gdbm
index caa0bdefe..c601718b1 100644
--- a/lfs/gdbm
+++ b/lfs/gdbm
@@ -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        = 1.23
+VER        = 1.24
 
 THISAPP    = gdbm-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = a47746577cf2f3c9b62faea496c4d6a50a8f1b0a5af448cb2215e90057c99b5b630ba3f5357c85dfb7fd98ba4e90969e30a779120c29106ed1e8736721f9bec1
+$(DL_FILE)_BLAKE2 = 79f49adbb455c2e1b91f3450037b71165fa8de82650d6402e0e22ee1f4d278fdb0bd78100659bf416e2409b432e1f8d32ecbae523980413f7148b80ee06c9f4b
 
 install : $(TARGET)
 
-- 
2.46.0


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

* [PATCH] iana-etc: Update to version 20240813
  2024-08-25 19:11 [PATCH] automake: Update to version 1.17 Adolf Belka
  2024-08-25 19:11 ` [PATCH] bind: Update to version 9.20.1 Adolf Belka
  2024-08-25 19:11 ` [PATCH] gdbm: Update to version 1.24 Adolf Belka
@ 2024-08-25 19:11 ` Adolf Belka
  2024-08-25 19:11 ` [PATCH] lua: Update to version 5.4.7 Adolf Belka
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Adolf Belka @ 2024-08-25 19:11 UTC (permalink / raw)
  To: development

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

- Update from version 20240701 to 20240813
- Update of rootfile no0t required
- There is no changelog.

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 8dc38f4f6..3ad018bf3 100644
--- a/lfs/iana-etc
+++ b/lfs/iana-etc
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 20240701
+VER        = 20240813
 #		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 = d427988c918ee3ea80c6de3112d10659dddc63d138d0f48e553971cc6687b971d63d6cf14a8df955b1b5c3735eb65b9c43b9f671daef1a8b25a6f115194e9422
+$(DL_FILE)_BLAKE2 = a62948814ceb250cb9d8218fd7f8f7373ca51349a0af698e7ac15c74c5d462337e9c5eb25066964a8726987cdabfd155b577fadc76ca470d7e709bdc5c90a197
 
 install : $(TARGET)
 
-- 
2.46.0


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

* [PATCH] lua: Update to version 5.4.7
  2024-08-25 19:11 [PATCH] automake: Update to version 1.17 Adolf Belka
                   ` (2 preceding siblings ...)
  2024-08-25 19:11 ` [PATCH] iana-etc: Update to version 20240813 Adolf Belka
@ 2024-08-25 19:11 ` Adolf Belka
  2024-08-25 19:11 ` [PATCH] meson: update to version 1.5.1 Adolf Belka
  2024-08-25 19:11 ` [PATCH] xfsprogs: Update to version 6.9.0 Adolf Belka
  5 siblings, 0 replies; 7+ messages in thread
From: Adolf Belka @ 2024-08-25 19:11 UTC (permalink / raw)
  To: development

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

- Update from version 5.4.6 to 5.4.7
- Update of rootfile
- Rename of patch file to make it clear that it works with 5.4.7
- Changelog is not available. Details of changes have to be founbd via the list of commits
   https://github.com/lua/lua/commits/master

Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
 config/rootfiles/common/lua                            |  2 +-
 lfs/lua                                                | 10 +++++-----
 ...ibrary-1.patch => lua-5.4.7-shared_library-1.patch} |  0
 3 files changed, 6 insertions(+), 6 deletions(-)
 rename src/patches/{lua-5.4.6-shared_library-1.patch => lua-5.4.7-shared_library-1.patch} (100%)

diff --git a/config/rootfiles/common/lua b/config/rootfiles/common/lua
index 6b69167ef..799148912 100644
--- a/config/rootfiles/common/lua
+++ b/config/rootfiles/common/lua
@@ -7,7 +7,7 @@ usr/bin/luac
 #usr/include/lualib.h
 #usr/lib/liblua.so
 usr/lib/liblua.so.5.4
-usr/lib/liblua.so.5.4.6
+usr/lib/liblua.so.5.4.7
 #usr/lib/lua
 #usr/lib/lua/5.4
 #usr/lib/pkgconfig/lua.pc
diff --git a/lfs/lua b/lfs/lua
index 96be2090a..e0cfc43d4 100644
--- a/lfs/lua
+++ b/lfs/lua
@@ -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        = 5.4.6
+VER        = 5.4.7
 
 THISAPP    = lua-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = b5d8dbc4b3ec1708b715be438c1a1f48d4f5f226885992af147c1aa6a8823bed318f77ef7cc92b265dadd26cf6088f0f39784fbfd2f9887c35de8e9def2c0558
+$(DL_FILE)_BLAKE2 = 151baed5c40ed117a26a4fb8d0b02f247eacacd98c3270c308a19e453eb647f6c3d5a6a5811fac7ec95db9866c2f06847d5c2be97c83b1e14e561ac8f7482d30
 
 install : $(TARGET)
 
@@ -70,7 +70,7 @@ $(subst %,%_BLAKE2,$(objects)) :
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@$(PREBUILD)
 	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
-	cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/lua-5.4.6-shared_library-1.patch
+	cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/lua-5.4.7-shared_library-1.patch
 	# install lua pkgconfig file
 	install -v -m 644 ${DIR_SRC}/config/lua/lua.pc \
 			/usr/lib/pkgconfig/lua.pc
@@ -78,7 +78,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	cd $(DIR_APP) && make INSTALL_TOP=/usr                			\
 			      INSTALL_DATA="cp -d"            			\
 			      INSTALL_MAN=/usr/share/man/man1 			\
-			      TO_LIB="liblua.so liblua.so.5.4 liblua.so.5.4.6"  \
+			      TO_LIB="liblua.so liblua.so.5.4 liblua.so.5.4.7"  \
 			 install
 	@rm -rf $(DIR_APP)
 	@$(POSTBUILD)
diff --git a/src/patches/lua-5.4.6-shared_library-1.patch b/src/patches/lua-5.4.7-shared_library-1.patch
similarity index 100%
rename from src/patches/lua-5.4.6-shared_library-1.patch
rename to src/patches/lua-5.4.7-shared_library-1.patch
-- 
2.46.0


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

* [PATCH] meson: update to version 1.5.1
  2024-08-25 19:11 [PATCH] automake: Update to version 1.17 Adolf Belka
                   ` (3 preceding siblings ...)
  2024-08-25 19:11 ` [PATCH] lua: Update to version 5.4.7 Adolf Belka
@ 2024-08-25 19:11 ` Adolf Belka
  2024-08-25 19:11 ` [PATCH] xfsprogs: Update to version 6.9.0 Adolf Belka
  5 siblings, 0 replies; 7+ messages in thread
From: Adolf Belka @ 2024-08-25 19:11 UTC (permalink / raw)
  To: development

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

- Update from version 1.4.0 to 1.5.1
- Update of rootfile
- Changelog of all changes in 1.5.x can be found at
   https://mesonbuild.com/Release-notes-for-1-5-0.html

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

diff --git a/config/rootfiles/common/meson b/config/rootfiles/common/meson
index 6db0e34ed..79f5ca6c2 100644
--- a/config/rootfiles/common/meson
+++ b/config/rootfiles/common/meson
@@ -1,11 +1,11 @@
 #usr/bin/meson
-#usr/lib/python3.10/site-packages/meson-1.4.0-py3.10.egg-info
-#usr/lib/python3.10/site-packages/meson-1.4.0-py3.10.egg-info/PKG-INFO
-#usr/lib/python3.10/site-packages/meson-1.4.0-py3.10.egg-info/SOURCES.txt
-#usr/lib/python3.10/site-packages/meson-1.4.0-py3.10.egg-info/dependency_links.txt
-#usr/lib/python3.10/site-packages/meson-1.4.0-py3.10.egg-info/entry_points.txt
-#usr/lib/python3.10/site-packages/meson-1.4.0-py3.10.egg-info/requires.txt
-#usr/lib/python3.10/site-packages/meson-1.4.0-py3.10.egg-info/top_level.txt
+#usr/lib/python3.10/site-packages/meson-1.5.1-py3.10.egg-info
+#usr/lib/python3.10/site-packages/meson-1.5.1-py3.10.egg-info/PKG-INFO
+#usr/lib/python3.10/site-packages/meson-1.5.1-py3.10.egg-info/SOURCES.txt
+#usr/lib/python3.10/site-packages/meson-1.5.1-py3.10.egg-info/dependency_links.txt
+#usr/lib/python3.10/site-packages/meson-1.5.1-py3.10.egg-info/entry_points.txt
+#usr/lib/python3.10/site-packages/meson-1.5.1-py3.10.egg-info/requires.txt
+#usr/lib/python3.10/site-packages/meson-1.5.1-py3.10.egg-info/top_level.txt
 #usr/lib/python3.10/site-packages/mesonbuild
 #usr/lib/python3.10/site-packages/mesonbuild/__init__.py
 #usr/lib/python3.10/site-packages/mesonbuild/_pathlib.py
@@ -68,6 +68,7 @@
 #usr/lib/python3.10/site-packages/mesonbuild/compilers/java.py
 #usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins
 #usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins/__init__.py
+#usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins/apple.py
 #usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins/arm.py
 #usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins/ccrx.py
 #usr/lib/python3.10/site-packages/mesonbuild/compilers/mixins/clang.py
@@ -151,6 +152,7 @@
 #usr/lib/python3.10/site-packages/mesonbuild/linkers/base.py
 #usr/lib/python3.10/site-packages/mesonbuild/linkers/detect.py
 #usr/lib/python3.10/site-packages/mesonbuild/linkers/linkers.py
+#usr/lib/python3.10/site-packages/mesonbuild/machinefile.py
 #usr/lib/python3.10/site-packages/mesonbuild/mcompile.py
 #usr/lib/python3.10/site-packages/mesonbuild/mconf.py
 #usr/lib/python3.10/site-packages/mesonbuild/mdevenv.py
@@ -158,12 +160,14 @@
 #usr/lib/python3.10/site-packages/mesonbuild/mesondata.py
 #usr/lib/python3.10/site-packages/mesonbuild/mesonlib.py
 #usr/lib/python3.10/site-packages/mesonbuild/mesonmain.py
+#usr/lib/python3.10/site-packages/mesonbuild/mformat.py
 #usr/lib/python3.10/site-packages/mesonbuild/minit.py
 #usr/lib/python3.10/site-packages/mesonbuild/minstall.py
 #usr/lib/python3.10/site-packages/mesonbuild/mintro.py
 #usr/lib/python3.10/site-packages/mesonbuild/mlog.py
 #usr/lib/python3.10/site-packages/mesonbuild/modules
 #usr/lib/python3.10/site-packages/mesonbuild/modules/__init__.py
+#usr/lib/python3.10/site-packages/mesonbuild/modules/_qt.py
 #usr/lib/python3.10/site-packages/mesonbuild/modules/cmake.py
 #usr/lib/python3.10/site-packages/mesonbuild/modules/cuda.py
 #usr/lib/python3.10/site-packages/mesonbuild/modules/dlang.py
@@ -179,7 +183,6 @@
 #usr/lib/python3.10/site-packages/mesonbuild/modules/pkgconfig.py
 #usr/lib/python3.10/site-packages/mesonbuild/modules/python.py
 #usr/lib/python3.10/site-packages/mesonbuild/modules/python3.py
-#usr/lib/python3.10/site-packages/mesonbuild/modules/qt.py
 #usr/lib/python3.10/site-packages/mesonbuild/modules/qt4.py
 #usr/lib/python3.10/site-packages/mesonbuild/modules/qt5.py
 #usr/lib/python3.10/site-packages/mesonbuild/modules/qt6.py
@@ -194,6 +197,7 @@
 #usr/lib/python3.10/site-packages/mesonbuild/mtest.py
 #usr/lib/python3.10/site-packages/mesonbuild/munstable_coredata.py
 #usr/lib/python3.10/site-packages/mesonbuild/optinterpreter.py
+#usr/lib/python3.10/site-packages/mesonbuild/options.py
 #usr/lib/python3.10/site-packages/mesonbuild/programs.py
 #usr/lib/python3.10/site-packages/mesonbuild/rewriter.py
 #usr/lib/python3.10/site-packages/mesonbuild/scripts
diff --git a/lfs/meson b/lfs/meson
index fa5512b81..511d86876 100644
--- a/lfs/meson
+++ b/lfs/meson
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 1.4.0
+VER        = 1.5.1
 
 THISAPP    = meson-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 7f742ef870c182e552c1ff3508d65f251009d610def6a08e01fddb6c6a4ed6d608ead0d52cf8ca7d66b5bd7a4732dccd7ab5d98f141a4a61e275398885f79486
+$(DL_FILE)_BLAKE2 = 3368b209444d0873217bafee2339b395dca9fa43df68adce19029a41ad5c0eca59426ef681d174ef8b6b89d4a6c5b4f189c1ae219deed78334028d44bdb23a95
 
 install : $(TARGET)
 
-- 
2.46.0


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

* [PATCH] xfsprogs: Update to version 6.9.0
  2024-08-25 19:11 [PATCH] automake: Update to version 1.17 Adolf Belka
                   ` (4 preceding siblings ...)
  2024-08-25 19:11 ` [PATCH] meson: update to version 1.5.1 Adolf Belka
@ 2024-08-25 19:11 ` Adolf Belka
  5 siblings, 0 replies; 7+ messages in thread
From: Adolf Belka @ 2024-08-25 19:11 UTC (permalink / raw)
  To: development

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

- Update from version 6.8.0 to 6.9.0
- Update of rootfile not required
- Changelog is not available. List of commits available either at git repo or via
   https://www.spinics.net/lists/linux-xfs/msg87640.html

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

diff --git a/lfs/xfsprogs b/lfs/xfsprogs
index 719237412..5094485d3 100644
--- a/lfs/xfsprogs
+++ b/lfs/xfsprogs
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 6.8.0
+VER        = 6.9.0
 
 THISAPP    = xfsprogs-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 8c296698da1170bb7ff369c2bf5f156e812ddf43ee817369029ad951d6c1e18c20d093db385b9a523f6cb7ba3e01f8924eb3540b71efa4bec8bf3defe2418562
+$(DL_FILE)_BLAKE2 = d952603716cc4022a935c426630b0b7838573476a730c6832f36ef0274a640e64667d3e3a2dd9fd2c5f2c12cdb348fd93abfef5c49e5c5fe2d5a83945dfc7894
 
 install : $(TARGET)
 
-- 
2.46.0


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

end of thread, other threads:[~2024-08-25 19:11 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-08-25 19:11 [PATCH] automake: Update to version 1.17 Adolf Belka
2024-08-25 19:11 ` [PATCH] bind: Update to version 9.20.1 Adolf Belka
2024-08-25 19:11 ` [PATCH] gdbm: Update to version 1.24 Adolf Belka
2024-08-25 19:11 ` [PATCH] iana-etc: Update to version 20240813 Adolf Belka
2024-08-25 19:11 ` [PATCH] lua: Update to version 5.4.7 Adolf Belka
2024-08-25 19:11 ` [PATCH] meson: update to version 1.5.1 Adolf Belka
2024-08-25 19:11 ` [PATCH] xfsprogs: Update to version 6.9.0 Adolf Belka

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