- Update from version 5.4.4 to 5.4.6 - Update of rootfile - Updated version number in shared library patch - Changelog 5.4.6 read overflow in 'l_strcmp'. Reported by Xmilia Hermit on 09 Jun 2023. existed since 5.0 (at least). fixed in github. Call hook may be called twice when count hook yields. Reported by G.k Ray on 20 Jul 2023. existed since 5.4.0 (at least). fixed in github. Wrong line number for function calls. Reported by Thadeu de Paula on 20 Aug 2023. existed since 5.2. fixed in github. 5.4.5 Changing the signature of 'lua_resetthread' broke ABI. Reported by Andrew Gierth on 29 Apr 2023. fixed in 5.4.6. fixed in github
Signed-off-by: Adolf Belka adolf.belka@ipfire.org --- config/rootfiles/common/lua | 2 +- lfs/lua | 10 +++++----- ...ibrary-1.patch => lua-5.4.6-shared_library-1.patch} | 0 3 files changed, 6 insertions(+), 6 deletions(-) rename src/patches/{lua-5.4.3-shared_library-1.patch => lua-5.4.6-shared_library-1.patch} (100%)
diff --git a/config/rootfiles/common/lua b/config/rootfiles/common/lua index ac844ac03..6b69167ef 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.4 +usr/lib/liblua.so.5.4.6 #usr/lib/lua #usr/lib/lua/5.4 #usr/lib/pkgconfig/lua.pc diff --git a/lfs/lua b/lfs/lua index b61936c49..96be2090a 100644 --- a/lfs/lua +++ b/lfs/lua @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2019 IPFire Team info@ipfire.org # +# Copyright (C) 2007-2023 IPFire Team info@ipfire.org # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -24,7 +24,7 @@
include Config
-VER = 5.4.4 +VER = 5.4.6
THISAPP = lua-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 8747ef5c83bd4c54b73eeaad6991ab5fccc54ee000973afd9cf3367b8945f03c54e843ec88c48043003cd9d3b42281c593cb485b7165add2744cfea06d8b7668 +$(DL_FILE)_BLAKE2 = b5d8dbc4b3ec1708b715be438c1a1f48d4f5f226885992af147c1aa6a8823bed318f77ef7cc92b265dadd26cf6088f0f39784fbfd2f9887c35de8e9def2c0558
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.3-shared_library-1.patch + cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/lua-5.4.6-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.4" \ + TO_LIB="liblua.so liblua.so.5.4 liblua.so.5.4.6" \ install @rm -rf $(DIR_APP) @$(POSTBUILD) diff --git a/src/patches/lua-5.4.3-shared_library-1.patch b/src/patches/lua-5.4.6-shared_library-1.patch similarity index 100% rename from src/patches/lua-5.4.3-shared_library-1.patch rename to src/patches/lua-5.4.6-shared_library-1.patch
- Update from version 2.11.2 to 2.12.0 - Update of rootfile - Changelog 2.12.0 Fixes: * Fix some manual page portability issues with groff 1.23.0. * Fix test failures when a working `iconv` is not available. * Ensure that timestamps read from the database can go past the year 2038, even on systems where this is not the default. * Fix `manpath` not parsing `PATH` entries with trailing slash correctly for guessing `MANPATH` entries. * More accurately document the behaviour of passing file names as arguments to `man` without the `-l`/`--local-file` option. * Avoid duplicate cleanup of old cat pages by both `man-db.service` and `systemd-tmpfiles-clean.service`. Improvements: * Update system call lists in `seccomp` sandbox from `systemd`. * Upgrade to Gnulib `stable-202307`. * Work around the Firebuild accelerator in `seccomp` sandbox: if this is in use then we need to allow some socket-related system calls. * `man -K` now deduplicates search results that point to the same page. * Warn if `mandb` drops to `--user-db` mode due to running as the wrong user. * Change section title recommendations in `man(1)` to mention `STANDARDS` rather than `CONFORMING TO`, in line with `man-pages(7)`. * Add a `STANDARDS` section to `man(1)` itself. * Document that `man -K` may suffer from false negatives as well as false positives. * Take advantage of newer `groff` facilities to implement `man --no-hyphenation` and `man --no-justification`, if available. * `man -f` and `man -k` now pass any `-r`/`--regex` or `-w`/`--wildcard` options on to `whatis` and `apropos` respectively. * Always pass a line length to `nroff`, even if we believe that it matches the default. * Allow disabling `groff` warnings via `man --warnings`, by prefixing a warning name with `!`.
Signed-off-by: Adolf Belka adolf.belka@ipfire.org --- config/rootfiles/common/man | 5 +++-- lfs/man | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/config/rootfiles/common/man b/config/rootfiles/common/man index 83354be30..4051cac8d 100644 --- a/config/rootfiles/common/man +++ b/config/rootfiles/common/man @@ -8,10 +8,10 @@ #usr/bin/manpath #usr/bin/whatis #usr/lib/man-db -#usr/lib/man-db/libman-2.11.2.so +usr/lib/man-db/libman-2.12.0.so #usr/lib/man-db/libman.la #usr/lib/man-db/libman.so -#usr/lib/man-db/libmandb-2.11.2.so +usr/lib/man-db/libmandb-2.12.0.so #usr/lib/man-db/libmandb.la #usr/lib/man-db/libmandb.so #usr/libexec/man-db @@ -54,6 +54,7 @@ #usr/share/locale/ja/LC_MESSAGES/man-db-gnulib.mo #usr/share/locale/ja/LC_MESSAGES/man-db.mo #usr/share/locale/ka/LC_MESSAGES/man-db-gnulib.mo +#usr/share/locale/ka/LC_MESSAGES/man-db.mo #usr/share/locale/ko/LC_MESSAGES/man-db-gnulib.mo #usr/share/locale/ko/LC_MESSAGES/man-db.mo #usr/share/locale/ms/LC_MESSAGES/man-db-gnulib.mo diff --git a/lfs/man b/lfs/man index 00150da4e..9a5ea7675 100644 --- a/lfs/man +++ b/lfs/man @@ -24,7 +24,7 @@
include Config
-VER = 2.11.2 +VER = 2.12.0
THISAPP = man-db-$(VER) DL_FILE = $(THISAPP).tar.xz @@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 80ac565cdb69736c0f922b9cbfddcae753d176329781deaf9434d87d7718f9b6ce0b6d4642a03f22a04c7f042dda7f8986b5bce0038f0748461ca55d66964ccc +$(DL_FILE)_BLAKE2 = a6258c1fc9cd81be5d288298660f5b9bda22d726ef98dd5c0a1998809a32391f7244be6897ee8e03483e705a426d6a59d442de3dc2e84f45500daa825ac639db
install : $(TARGET)
Hello Adolf,
I have a question regarding this patch, please see below.
- Update from version 2.11.2 to 2.12.0
- Update of rootfile
- Changelog 2.12.0 Fixes:
Improvements:
- Fix some manual page portability issues with groff 1.23.0.
- Fix test failures when a working `iconv` is not available.
- Ensure that timestamps read from the database can go past the year 2038, even on systems where this is not the default.
- Fix `manpath` not parsing `PATH` entries with trailing slash correctly for guessing `MANPATH` entries.
- More accurately document the behaviour of passing file names as arguments to `man` without the `-l`/`--local-file` option.
- Avoid duplicate cleanup of old cat pages by both `man-db.service` and `systemd-tmpfiles-clean.service`.
- Update system call lists in `seccomp` sandbox from `systemd`.
- Upgrade to Gnulib `stable-202307`.
- Work around the Firebuild accelerator in `seccomp` sandbox: if this is in use then we need to allow some socket-related system calls.
- `man -K` now deduplicates search results that point to the same page.
- Warn if `mandb` drops to `--user-db` mode due to running as the wrong user.
- Change section title recommendations in `man(1)` to mention `STANDARDS` rather than `CONFORMING TO`, in line with `man-pages(7)`.
- Add a `STANDARDS` section to `man(1)` itself.
- Document that `man -K` may suffer from false negatives as well as false positives.
- Take advantage of newer `groff` facilities to implement `man --no-hyphenation` and `man --no-justification`, if available.
- `man -f` and `man -k` now pass any `-r`/`--regex` or `-w`/`--wildcard` options on to `whatis` and `apropos` respectively.
- Always pass a line length to `nroff`, even if we believe that it matches the default.
- Allow disabling `groff` warnings via `man --warnings`, by prefixing a warning name with `!`.
Signed-off-by: Adolf Belka adolf.belka@ipfire.org
config/rootfiles/common/man | 5 +++-- lfs/man | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/config/rootfiles/common/man b/config/rootfiles/common/man index 83354be30..4051cac8d 100644 --- a/config/rootfiles/common/man +++ b/config/rootfiles/common/man @@ -8,10 +8,10 @@ #usr/bin/manpath #usr/bin/whatis #usr/lib/man-db -#usr/lib/man-db/libman-2.11.2.so +usr/lib/man-db/libman-2.12.0.so #usr/lib/man-db/libman.la #usr/lib/man-db/libman.so -#usr/lib/man-db/libmandb-2.11.2.so +usr/lib/man-db/libmandb-2.12.0.so
So far, man was a build-time dependency only, which is why all entries in its rootfile were commented out:
$ grep -v -E '^#' config/rootfiles/common/man | wc -l 0
Is it intentional that usr/lib/man-db/libman-2.12.0.so and usr/lib/man-db/libmandb-2.12.0.so are commented in (i.e., we should/need to ship these)? If not, happy to fix that (no need for submitting a version 2 of this patch), just like to have it clarified. :-)
Thanks, and best regards, Peter Müller
#usr/lib/man-db/libmandb.la #usr/lib/man-db/libmandb.so #usr/libexec/man-db @@ -54,6 +54,7 @@ #usr/share/locale/ja/LC_MESSAGES/man-db-gnulib.mo #usr/share/locale/ja/LC_MESSAGES/man-db.mo #usr/share/locale/ka/LC_MESSAGES/man-db-gnulib.mo +#usr/share/locale/ka/LC_MESSAGES/man-db.mo #usr/share/locale/ko/LC_MESSAGES/man-db-gnulib.mo #usr/share/locale/ko/LC_MESSAGES/man-db.mo #usr/share/locale/ms/LC_MESSAGES/man-db-gnulib.mo diff --git a/lfs/man b/lfs/man index 00150da4e..9a5ea7675 100644 --- a/lfs/man +++ b/lfs/man @@ -24,7 +24,7 @@
include Config
-VER = 2.11.2 +VER = 2.12.0
THISAPP = man-db-$(VER) DL_FILE = $(THISAPP).tar.xz @@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 80ac565cdb69736c0f922b9cbfddcae753d176329781deaf9434d87d7718f9b6ce0b6d4642a03f22a04c7f042dda7f8986b5bce0038f0748461ca55d66964ccc +$(DL_FILE)_BLAKE2 = a6258c1fc9cd81be5d288298660f5b9bda22d726ef98dd5c0a1998809a32391f7244be6897ee8e03483e705a426d6a59d442de3dc2e84f45500daa825ac639db
install : $(TARGET)
Hi Peter,
On 24/11/2023 14:16, Peter Müller wrote:
Hello Adolf,
I have a question regarding this patch, please see below.
- Update from version 2.11.2 to 2.12.0
- Update of rootfile
- Changelog 2.12.0 Fixes:
Improvements:
- Fix some manual page portability issues with groff 1.23.0.
- Fix test failures when a working `iconv` is not available.
- Ensure that timestamps read from the database can go past the year 2038, even on systems where this is not the default.
- Fix `manpath` not parsing `PATH` entries with trailing slash correctly for guessing `MANPATH` entries.
- More accurately document the behaviour of passing file names as arguments to `man` without the `-l`/`--local-file` option.
- Avoid duplicate cleanup of old cat pages by both `man-db.service` and `systemd-tmpfiles-clean.service`.
- Update system call lists in `seccomp` sandbox from `systemd`.
- Upgrade to Gnulib `stable-202307`.
- Work around the Firebuild accelerator in `seccomp` sandbox: if this is in use then we need to allow some socket-related system calls.
- `man -K` now deduplicates search results that point to the same page.
- Warn if `mandb` drops to `--user-db` mode due to running as the wrong user.
- Change section title recommendations in `man(1)` to mention `STANDARDS` rather than `CONFORMING TO`, in line with `man-pages(7)`.
- Add a `STANDARDS` section to `man(1)` itself.
- Document that `man -K` may suffer from false negatives as well as false positives.
- Take advantage of newer `groff` facilities to implement `man --no-hyphenation` and `man --no-justification`, if available.
- `man -f` and `man -k` now pass any `-r`/`--regex` or `-w`/`--wildcard` options on to `whatis` and `apropos` respectively.
- Always pass a line length to `nroff`, even if we believe that it matches the default.
- Allow disabling `groff` warnings via `man --warnings`, by prefixing a warning name with `!`.
Signed-off-by: Adolf Belka adolf.belka@ipfire.org
config/rootfiles/common/man | 5 +++-- lfs/man | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/config/rootfiles/common/man b/config/rootfiles/common/man index 83354be30..4051cac8d 100644 --- a/config/rootfiles/common/man +++ b/config/rootfiles/common/man @@ -8,10 +8,10 @@ #usr/bin/manpath #usr/bin/whatis #usr/lib/man-db -#usr/lib/man-db/libman-2.11.2.so +usr/lib/man-db/libman-2.12.0.so #usr/lib/man-db/libman.la #usr/lib/man-db/libman.so -#usr/lib/man-db/libmandb-2.11.2.so +usr/lib/man-db/libmandb-2.12.0.so
So far, man was a build-time dependency only, which is why all entries in its rootfile were commented out:
$ grep -v -E '^#' config/rootfiles/common/man | wc -l 0
Is it intentional that usr/lib/man-db/libman-2.12.0.so and usr/lib/man-db/libmandb-2.12.0.so are commented in (i.e., we should/need to ship these)? If not, happy to fix that (no need for submitting a version 2 of this patch), just like to have it clarified. :-)
No it was not intentional. I know that those man related packages are build time only. I probably saw a library and my brain went to autopilot and said "oh yes, libraries are required".
Thanks for catching and for fixing for me.
Regards, Adolf.
Thanks, and best regards, Peter Müller
#usr/lib/man-db/libmandb.la #usr/lib/man-db/libmandb.so #usr/libexec/man-db @@ -54,6 +54,7 @@ #usr/share/locale/ja/LC_MESSAGES/man-db-gnulib.mo #usr/share/locale/ja/LC_MESSAGES/man-db.mo #usr/share/locale/ka/LC_MESSAGES/man-db-gnulib.mo +#usr/share/locale/ka/LC_MESSAGES/man-db.mo #usr/share/locale/ko/LC_MESSAGES/man-db-gnulib.mo #usr/share/locale/ko/LC_MESSAGES/man-db.mo #usr/share/locale/ms/LC_MESSAGES/man-db-gnulib.mo diff --git a/lfs/man b/lfs/man index 00150da4e..9a5ea7675 100644 --- a/lfs/man +++ b/lfs/man @@ -24,7 +24,7 @@
include Config
-VER = 2.11.2 +VER = 2.12.0
THISAPP = man-db-$(VER) DL_FILE = $(THISAPP).tar.xz @@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 80ac565cdb69736c0f922b9cbfddcae753d176329781deaf9434d87d7718f9b6ce0b6d4642a03f22a04c7f042dda7f8986b5bce0038f0748461ca55d66964ccc +$(DL_FILE)_BLAKE2 = a6258c1fc9cd81be5d288298660f5b9bda22d726ef98dd5c0a1998809a32391f7244be6897ee8e03483e705a426d6a59d442de3dc2e84f45500daa825ac639db
install : $(TARGET)
- Update from version 181 to 196 - Update of rootfile not required - Fix python call patch removed as correct python call now in the source tarball - Changelog file is no longer used. Review of changes has to be done via the git repo. https://git.kernel.org/pub/scm/utils/cpu/mce/mcelog.git/log/
Signed-off-by: Adolf Belka adolf.belka@ipfire.org --- lfs/mcelog | 12 ++++-------- src/patches/mcelog-181-fix-Python-call.patch | 8 -------- 2 files changed, 4 insertions(+), 16 deletions(-) delete mode 100644 src/patches/mcelog-181-fix-Python-call.patch
diff --git a/lfs/mcelog b/lfs/mcelog index 0f4694f2b..619cf025a 100644 --- a/lfs/mcelog +++ b/lfs/mcelog @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2022 IPFire Team info@ipfire.org # +# Copyright (C) 2007-2023 IPFire Team info@ipfire.org # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -26,7 +26,7 @@ include Config
SUMMARY = Log Machine Check Events
-VER = 181 +VER = 196
THISAPP = mcelog-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = mcelog -PAK_VER = 3 +PAK_VER = 4 SUP_ARCH = x86_64
DEPS = @@ -49,7 +49,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 4e182c84ae15abf3673e0210940830c66377b275e05c0bf88ff2199ef1b87bf1e9bcff12ebd9c07e5af00d763369c96aae37c274174563fb3ae0db7bbd7306de +$(DL_FILE)_BLAKE2 = 50871cd7a3c4dd6f4c4d613c7db4528d972ca37ba17b0a5aa4876d8fc92d4478c2247ea65748310ad6d4b950d1abc9bd0ea40193e72b36d38334547382477849
install : $(TARGET)
@@ -82,10 +82,6 @@ $(subst %,%_BLAKE2,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) - - # Fix Python interpreter call in genconfig.py script - cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/mcelog-181-fix-Python-call.patch - cd $(DIR_APP) && make $(MAKETUNING) cd $(DIR_APP) && make install
diff --git a/src/patches/mcelog-181-fix-Python-call.patch b/src/patches/mcelog-181-fix-Python-call.patch deleted file mode 100644 index b0781f828..000000000 --- a/src/patches/mcelog-181-fix-Python-call.patch +++ /dev/null @@ -1,8 +0,0 @@ ---- mcelog-181.orig/genconfig.py 2022-04-23 14:54:26.721031777 +0000 -+++ mcelog-181/genconfig.py 2022-04-23 14:54:35.577658935 +0000 -@@ -1,4 +1,4 @@ --#!/usr/bin/python -+#!/usr/bin/python3 - # generate man config documentation from mcelog.conf example - # genconfig.py mcelog.conf intro.html - from __future__ import print_function
- Update from version 1.10 to 1.11 - Update of rootfile not required - Previous versions of this package used to be on bitbucket but that link no longer exists. The new git repo https://github.com/geekman/mdns-repeater was started by someone else as a fork but the original developer then moved to it. However all the history was not moved to the new repo so that repo starts now with version 1.11. It is being worked on as the last commit was Aug 2023 however version 1.11 was released in 2016. There are 11 commits between version 1.11 and present time. - Changelog 1.11 Blacklist feature added (16 blacklisted subnets allowed). Socket limit increased to 16 sockets, moved to #define. The first is most interesting. Say you have two networks bound together with site-to-site tunnels, repeating mDNS over the tunnel... And there are Chromecasts, or Apple TV's at both ends. Even if you had firewall rules to block traffic, the devices would still show up (albeit be defective) on the opposite network. The new blacklist flag allows you to filter such devices out by specifying their subnet (or individual addresses, although having such "private" devices on their own subnet might be a good idea).
Signed-off-by: Adolf Belka adolf.belka@ipfire.org --- lfs/mdns-repeater | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/lfs/mdns-repeater b/lfs/mdns-repeater index bcd393f9c..615008f56 100644 --- a/lfs/mdns-repeater +++ b/lfs/mdns-repeater @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2018 IPFire Team info@ipfire.org # +# Copyright (C) 2007-2023 IPFire Team info@ipfire.org # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -26,7 +26,7 @@ include Config
SUMMARY = A mDNS repeater
-VER = 1.10 +VER = 1.11
THISAPP = mdns-repeater-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = mdns-repeater -PAK_VER = 2 +PAK_VER = 3
DEPS =
@@ -50,7 +50,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 7fb9278808deff0f62ce1e0ada3e1c367fafa0e27b12714b6df4fe25f2d2eefb6401390fdd74bf5ee98e361b969c7422a01053cf3181993a99ad05ae1605d795 +$(DL_FILE)_BLAKE2 = 88e6b68635be152c2fcd7eb0e5be038d694bae590edde283dec83b896c2380d83cc84d5e4cfb02b6ae957d75dd7525975e31c418d05f5732b5f41382fb130c31
install : $(TARGET)
- Update from version 1.2.0 to 1.2.3 - Update of rootfile - Changelog The meson changelog is defined only at the 1.2 level. So what changes are related in going from 1.2.0 to 1.2.3 can not be determined. The changes have to be reviewed from the 1.2 branch of commits https://github.com/mesonbuild/meson/commits/1.2
Signed-off-by: Adolf Belka adolf.belka@ipfire.org --- config/rootfiles/common/meson | 14 +++++++------- lfs/meson | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/config/rootfiles/common/meson b/config/rootfiles/common/meson index 59541f9bc..c8e29f313 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.2.0-py3.10.egg-info -#usr/lib/python3.10/site-packages/meson-1.2.0-py3.10.egg-info/PKG-INFO -#usr/lib/python3.10/site-packages/meson-1.2.0-py3.10.egg-info/SOURCES.txt -#usr/lib/python3.10/site-packages/meson-1.2.0-py3.10.egg-info/dependency_links.txt -#usr/lib/python3.10/site-packages/meson-1.2.0-py3.10.egg-info/entry_points.txt -#usr/lib/python3.10/site-packages/meson-1.2.0-py3.10.egg-info/requires.txt -#usr/lib/python3.10/site-packages/meson-1.2.0-py3.10.egg-info/top_level.txt +#usr/lib/python3.10/site-packages/meson-1.2.3-py3.10.egg-info +#usr/lib/python3.10/site-packages/meson-1.2.3-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/meson-1.2.3-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/meson-1.2.3-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/meson-1.2.3-py3.10.egg-info/entry_points.txt +#usr/lib/python3.10/site-packages/meson-1.2.3-py3.10.egg-info/requires.txt +#usr/lib/python3.10/site-packages/meson-1.2.3-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 diff --git a/lfs/meson b/lfs/meson index 6a8b10143..42222c522 100644 --- a/lfs/meson +++ b/lfs/meson @@ -24,7 +24,7 @@
include Config
-VER = 1.2.0 +VER = 1.2.3
THISAPP = meson-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = a8239c41ab5d20c26c057293dc85e5577eb9e6eef7a39acc67a0b5b1e82b1afae341936431d96571ff83e96b7648a80a16cfd8eb581ff29b2ca88615657d5ca3 +$(DL_FILE)_BLAKE2 = 7d76c54bddba249ab97ebd5dd0afc448177ff9fa70812a8ca0cc9fe308c9b145b3fbc3ee068acae0fdc73edff42134b7a0b618cd80a05347a424aca7bc8bbef8
install : $(TARGET)
- Update from version 1.3.2 to 1.3.3 - Update of rootfile not required - Changelog 1.3.3 - Released 1-Jun-2023 - Fixed HTTP chunk length parsing. - Improved Dutch and Swedish translations. - Fixed directory symlink deletion handling.
Signed-off-by: Adolf Belka adolf.belka@ipfire.org --- lfs/minidlna | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lfs/minidlna b/lfs/minidlna index d0422c08a..55941bea8 100644 --- a/lfs/minidlna +++ b/lfs/minidlna @@ -26,7 +26,7 @@ include Config
SUMMARY = DLNA compatible server
-VER = 1.3.2 +VER = 1.3.3
THISAPP = minidlna-$(VER) DL_FILE = minidlna-$(VER).tar.gz @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = minidlna -PAK_VER = 13 +PAK_VER = 14
DEPS = ffmpeg flac libexif libid3tag libogg
@@ -50,7 +50,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = e35266be94e4585f399c80a6909318ce973d443506f6becdacdb00802ed0ce060ebf8401ff1b5dfef0b451f609d98f805c80b9a0c87e23d14084338047418620 +$(DL_FILE)_BLAKE2 = 489b7ecb54a20f6111a65388ad2c52d477164046131af490cbcef7cd3ff2b841644f549bcad708ea6d4548f4111d5b2b63bafc0f079edf160467b85c682cbc5b
install : $(TARGET)
- Update from version 2.8 to 2.9 - Update of rootfile - Changelog This file (NEWS) lists the most important changes to the previous released version. For a full list of changes please refer to the ChangeLog file. New for version 2.9: - Change Hardware Flow Control Default to No. - Timestamping mode is now saved and restored. - Split "Screen and Keyboard" menu into two menus. - Update to gettext-0.21. - Change return values of --help and --version to success. - Support higher baud rates on MacOS - Save character send delay to config file - Save newline send delay to config file - Update translations: Romanian, German, French, Norwegian/Bookmal, Polish, Serbian, Swedish - New translation: Georgian, Korean
Signed-off-by: Adolf Belka adolf.belka@ipfire.org --- config/rootfiles/packages/minicom | 2 ++ lfs/minicom | 8 ++++---- 2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/config/rootfiles/packages/minicom b/config/rootfiles/packages/minicom index 38d7e524a..d100edae3 100644 --- a/config/rootfiles/packages/minicom +++ b/config/rootfiles/packages/minicom @@ -11,6 +11,8 @@ usr/bin/xminicom #usr/share/locale/hu/LC_MESSAGES/minicom.mo #usr/share/locale/id/LC_MESSAGES/minicom.mo #usr/share/locale/ja/LC_MESSAGES/minicom.mo +#usr/share/locale/ka/LC_MESSAGES/minicom.mo +#usr/share/locale/ko/LC_MESSAGES/minicom.mo #usr/share/locale/nb/LC_MESSAGES/minicom.mo #usr/share/locale/pl/LC_MESSAGES/minicom.mo #usr/share/locale/pt_BR/LC_MESSAGES/minicom.mo diff --git a/lfs/minicom b/lfs/minicom index 1799e103f..c2d379b13 100644 --- a/lfs/minicom +++ b/lfs/minicom @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2018 IPFire Team info@ipfire.org # +# Copyright (C) 2007-2023 IPFire Team info@ipfire.org # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -26,7 +26,7 @@ include Config
SUMMARY = A Terminal Program
-VER = 2.8 +VER = 2.9
THISAPP = minicom-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = minicom -PAK_VER = 2 +PAK_VER = 3
DEPS =
@@ -50,7 +50,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 007a2975a996e2dd2390b1cf20e1a70c4bb1b57d224211d30e8d83a9d02a45c147df34bf409961a20ad3746cb6b5551c1e0702a05bb0a0a3f7f042d251b553be +$(DL_FILE)_BLAKE2 = 4c17f235d770ff9b4719c0ce9d3dfdb01603986d08cec245b1bfba5addbea597032bb06fc73c585886e035915dec990f37e9690b58d0a80a3e6faf8675485f96
install : $(TARGET)
- Update from version 0.24.13 to 0.24.14 - Update of rootfile not required - Changelog 0.23.14 (2023/10/08) * decoder - flac: fix scanning files with non-ASCII names on Windows - mad: fix calculation of LAME peak values * mixer - wasapi: fix problem setting volume * more libfmt 10 fixes * fix auto-detected systemd unit directory * Android - require Android 7 or newer
Signed-off-by: Adolf Belka adolf.belka@ipfire.org --- lfs/mpd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lfs/mpd b/lfs/mpd index cd9702f9a..a9807b3cd 100644 --- a/lfs/mpd +++ b/lfs/mpd @@ -26,7 +26,7 @@ include Config
SUMMARY = Music Player Daemon
-VER = 0.23.13 +VER = 0.23.14
THISAPP = mpd-$(VER) DL_FILE = $(THISAPP).tar.xz @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/${THISAPP} TARGET = $(DIR_INFO)/$(THISAPP) PROG = mpd -PAK_VER = 32 +PAK_VER = 33 # SUP_ARCH = aarch64 x86_64
DEPS = alsa avahi faad2 ffmpeg flac lame libmad libshout libogg libid3tag libvorbis opus soxr fmt @@ -49,7 +49,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 02907f08cc504d0fbf703179b333b301c7ad8fc8535d85305faa7962dd7faa164f4492286902cb48eaf3db2a1445b541b1261c18a89ca8a73e80016af9581e26 +$(DL_FILE)_BLAKE2 = c048f128111d1d65775c317182b91d113339a5b09d3005c320cc3b14a79b7c1da0d1ba3d53f6bf348a3a404ceea33c1ad2427225f4a1f3d1cde4a921e71d6e1c
install : $(TARGET)