* [PATCH] bird: Update to version 2.14
@ 2024-01-18 11:40 Adolf Belka
2024-01-18 11:40 ` [PATCH] dmidecode: Update to version 3.5 Adolf Belka
` (12 more replies)
0 siblings, 13 replies; 14+ messages in thread
From: Adolf Belka @ 2024-01-18 11:40 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 3896 bytes --]
- Update from version 2.0.12 to 2.14
- Update of rootfile not required
- Changelog
2.14 (2023-10-06)
o MPLS subsystem
o L3VPN: BGP/MPLS VPNs (RFC 4364)
o BGP: Access to unknown route attributes
o RAdv: Custom options
o Babel: RTT metric extension
o BMP: Refactored route monitoring
o BMP: Multiple instances of BMP protocol
o BMP: Both pre-policy and post-policy monitoring
o Experimental route aggregation
o Filter: Method framework
o Filter: Functions have return type statements
o Filter: New bytestring data type
o Kernel: Option to learn kernel routes
o Many bugfixes and improvements
Notes:
User-defined filter functions that return values now should have return type
statements. We still accept functions without such statement, if they could be
properly typed.
For loops allowed to use both existing iterator variables or ones defined in
the for statement. We no longer support the first case, all iterator variables
must be defined in the for statement (e.g. 'for int i in bgp_path ...').
Due to oversight, VRF interfaces were not included in respective VRFs, this is
fixed now.
2.13.1 (2023-06-23)
o BGP: Fix role check when no capability option is present
o Filter: Fixed segfault when a case option had an empty block
This is a bugfix version.
2.13 (2023-04-21)
o Babel: IPv4 via IPv6 extension (RFC 9229)
o Babel: Improve authentication on lossy networks
o BGP: New 'allow bgp_med' option
o BSD: Support for IPv4 routes with IPv6 nexthop on FreeBSD
o Experimental BMP protocol implementation
o Important bugfixes
Notes:
We changed versioning scheme from <epoch>.<major>.<minor> to more common
<major>.<minor>.<patch> . From now on, you may expect that BIRD 2.13.x will be
strictly only fixing bugs found in 2.13, whereas BIRD 2.14 will also contain
new features.
This BIRD version contains an alpha release of BMP protocol implementation.
It is not ready for production usage and therefore it is not compiled by
default and have to be enabled during installation.
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
lfs/bird | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/lfs/bird b/lfs/bird
index 0c8c97055..e9dc6c5f8 100644
--- a/lfs/bird
+++ b/lfs/bird
@@ -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 #
@@ -26,7 +26,7 @@ include Config
SUMMARY = The BIRD Internet Routing Daemon
-VER = 2.0.12
+VER = 2.14
THISAPP = bird-$(VER)
DL_FILE = $(THISAPP).tar.gz
@@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = bird
-PAK_VER = 12
+PAK_VER = 13
DEPS =
@@ -48,7 +48,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = ca00574bb8e508255afb90e0d65f4e1763880699cff9877731d072efc48944b9f9ac77b35bb7ffd7b780e8e8b1c2eacdc38ee273353817c53723e7972fb5f0d6
+$(DL_FILE)_BLAKE2 = fe16b89c7f0ff35c5126366920960e0c55f57fe343380b2c32230122cf24f9abc3eb4d6ed9f37d2176f9e9340a83dffd1e68fed276b59b86cf1bdf5b8bd3c169
install : $(TARGET)
--
2.43.0
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH] dmidecode: Update to version 3.5
2024-01-18 11:40 [PATCH] bird: Update to version 2.14 Adolf Belka
@ 2024-01-18 11:40 ` Adolf Belka
2024-01-18 11:40 ` [PATCH] fmt: Update to version 10.2.1 Adolf Belka
` (11 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: Adolf Belka @ 2024-01-18 11:40 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 6981 bytes --]
- Update from version 3.3 to 3.5
- Update of rootfile not required
- Two patches no longer required as fixes are now in source tarball
- Changelog
3.5 (Tue Mar 14 2023)
- Decode HPE OEM records 216, 224, 230, 238 and 242.
- Fortify entry point length checks.
- Add a --no-quirks option.
- Drop the CPUID exception list.
- Do not let --dump-bin overwrite an existing file.
- Ensure /dev/mem is a character device file.
- Bug fixes:
Fix segmentation fault in HPE OEM record 240
- Minor improvements:
Typo fixes
Write the whole dump file at once
Fix a build warning when USE_MMAP isn't set
3.4 (Mon Jun 27 2022)
- Support for SMBIOS 3.4.0. This includes new memory device types, new
processor upgrades, new slot types and characteristics, decoding of memory
module extended speed, new system slot types, new processor characteristics
and new format of Processor ID.
- Support for SMBIOS 3.5.0. This includes new processor upgrades, BIOS
characteristics, new slot characteristics, new on-board device types, new
pointing device interface types, and a new record type (type 45 -
Firmware Inventory Information).
- Decode HPE OEM records 194, 199, 203, 236, 237, 238 and 240.
- Bug fixes:
Fix OEM vendor name matching
Fix ASCII filtering of strings
Fix crash with option -u
- Minor improvements:
Skip details of uninstalled memory modules
Don't display the raw CPU ID in quiet mode
Improve the formatting of the manual pages
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
lfs/dmidecode | 8 ++---
...midecode-3.3-fix_crash_with_u_option.patch | 34 -------------------
..._the_condition_error_in_ascii_filter.patch | 30 ----------------
3 files changed, 3 insertions(+), 69 deletions(-)
delete mode 100644 src/patches/dmidecode/dmidecode-3.3-fix_crash_with_u_option.patch
delete mode 100644 src/patches/dmidecode/dmidecode-3.3-fix_the_condition_error_in_ascii_filter.patch
diff --git a/lfs/dmidecode b/lfs/dmidecode
index f18f6d25d..1408447d2 100644
--- a/lfs/dmidecode
+++ b/lfs/dmidecode
@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2021 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 = 3.3
+VER = 3.5
THISAPP = dmidecode-$(VER)
DL_FILE = $(THISAPP).tar.xz
@@ -41,7 +41,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 7a4557a203702da5d5d6722c72870342e18458b3777d095656e9d5c3a5f80cc712d16b775fa16e4ae9326965a789d393092d45651a449444e268438c1d16773e
+$(DL_FILE)_BLAKE2 = 07cc4c069dc1cba36160de158c4d0390df9b77b4192f5847df0756f9e097a7fbc751cd7b5b073df7661267ab78ea0d9be2831d70ddda8d1981c628f3cfee8802
install : $(TARGET)
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
@@ -71,8 +71,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/dmidecode/0005-nothing-should-go-into-usr-local.patch
- cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/dmidecode/dmidecode-3.3-fix_the_condition_error_in_ascii_filter.patch
- cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/dmidecode/dmidecode-3.3-fix_crash_with_u_option.patch
cd $(DIR_APP) && make $(MAKETUNING) $(EXTRA_MAKE)
cd $(DIR_APP) && make install
@rm -rf $(DIR_APP)
diff --git a/src/patches/dmidecode/dmidecode-3.3-fix_crash_with_u_option.patch b/src/patches/dmidecode/dmidecode-3.3-fix_crash_with_u_option.patch
deleted file mode 100644
index 497768add..000000000
--- a/src/patches/dmidecode/dmidecode-3.3-fix_crash_with_u_option.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From 11e134e54d15e67a64c39a623f492a28df922517 Mon Sep 17 00:00:00 2001
-From: Jean Delvare <jdelvare(a)suse.de>
-Date: Tue, 19 Jan 2021 16:26:01 +0100
-Subject: dmidecode: Fix crash with -u option
-
-A segmentation fault was reported with option -u. Turns out to be a
-stupid thinko where the buffer offset was reset at the wrong loop
-depth.
-
-Reported-by: Jerry Hoemann <jerry.hoemann(a)hpe.com>
-Fixes: da06888d08b9 ("dmidecode: Use the print helpers in dump mode too")
-Signed-off-by: Jean Delvare <jdelvare(a)suse.de>
----
- dmidecode.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/dmidecode.c b/dmidecode.c
-index 572cb1a..69ea0e8 100644
---- a/dmidecode.c
-+++ b/dmidecode.c
-@@ -248,9 +248,9 @@ static void dmi_dump(const struct dmi_header *h)
- {
- int j, l = strlen(s) + 1;
-
-- off = 0;
- for (row = 0; row < ((l - 1) >> 4) + 1; row++)
- {
-+ off = 0;
- for (j = 0; j < 16 && j < l - (row << 4); j++)
- off += sprintf(raw_data + off,
- j ? " %02X" : "%02X",
---
-cgit v1.2.1
-
diff --git a/src/patches/dmidecode/dmidecode-3.3-fix_the_condition_error_in_ascii_filter.patch b/src/patches/dmidecode/dmidecode-3.3-fix_the_condition_error_in_ascii_filter.patch
deleted file mode 100644
index e5f99b477..000000000
--- a/src/patches/dmidecode/dmidecode-3.3-fix_the_condition_error_in_ascii_filter.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 1117390ccd9cea139638db6f460bb6de70e28f94 Mon Sep 17 00:00:00 2001
-From: Tianjia Zhang <tianjia.zhang(a)linux.alibaba.com>
-Date: Tue, 5 Jan 2021 10:36:29 +0100
-Subject: dmidecode: Fix the condition error in ascii_filter
-
-The normal printable ASCII range is 32 to 127 (not included),
-so fix the error in this if condition.
-
-Signed-off-by: Tianjia Zhang <tianjia.zhang(a)linux.alibaba.com>
-Signed-off-by: Jean Delvare <jdelvare(a)suse.de>
----
- dmidecode.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/dmidecode.c b/dmidecode.c
-index 27d5494..864a193 100644
---- a/dmidecode.c
-+++ b/dmidecode.c
-@@ -116,7 +116,7 @@ static void ascii_filter(char *bp, size_t len)
- size_t i;
-
- for (i = 0; i < len; i++)
-- if (bp[i] < 32 || bp[i] == 127)
-+ if (bp[i] < 32 || bp[i] >= 127)
- bp[i] = '.';
- }
-
---
-cgit v1.2.1
-
--
2.43.0
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH] fmt: Update to version 10.2.1
2024-01-18 11:40 [PATCH] bird: Update to version 2.14 Adolf Belka
2024-01-18 11:40 ` [PATCH] dmidecode: Update to version 3.5 Adolf Belka
@ 2024-01-18 11:40 ` Adolf Belka
2024-01-18 11:40 ` [PATCH] haproxy: Update to version 2.9.2 Adolf Belka
` (10 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: Adolf Belka @ 2024-01-18 11:40 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2341 bytes --]
- Update from version 10.0.0 to 10.2.1
- Update of rootfile
- Changelog is a bit too large to include here. Details can be found in ChangeLog.md file
in source tarball.
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/packages/fmt | 2 +-
lfs/fmt | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/config/rootfiles/packages/fmt b/config/rootfiles/packages/fmt
index a1dffc8d6..2078063cf 100644
--- a/config/rootfiles/packages/fmt
+++ b/config/rootfiles/packages/fmt
@@ -19,5 +19,5 @@
#usr/lib/cmake/fmt/fmt-targets.cmake
#usr/lib/libfmt.so
usr/lib/libfmt.so.10
-usr/lib/libfmt.so.10.0.0
+usr/lib/libfmt.so.10.2.1
#usr/lib/pkgconfig/fmt.pc
diff --git a/lfs/fmt b/lfs/fmt
index 07f90ee34..d66fd17b3 100644
--- a/lfs/fmt
+++ b/lfs/fmt
@@ -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 #
@@ -26,7 +26,7 @@ include Config
SUMMARY = Open-source formatting library for C++
-VER = 10.0.0
+VER = 10.2.1
THISAPP = fmt-$(VER)
DL_FILE = $(THISAPP).tar.gz
@@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = fmt
-PAK_VER = 3
+PAK_VER = 4
DEPS =
@@ -46,7 +46,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 4e778fd352ed084b9790b59b4875fc6ed04b7a58a40b3673854dd00763f492cc838970e8faef77b5f9db5e912a2fc77943aedb4ca4afb64a3736129cc4611809
+$(DL_FILE)_BLAKE2 = 7bef719aa99464b5cb608c81ca78e23f3aed81cadfa9ed65246c4983a98f0cadb27983d42929ab4e0b5e264673e38d7658a4f7d5171e624b2431b3c6327071d9
install : $(TARGET)
--
2.43.0
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH] haproxy: Update to version 2.9.2
2024-01-18 11:40 [PATCH] bird: Update to version 2.14 Adolf Belka
2024-01-18 11:40 ` [PATCH] dmidecode: Update to version 3.5 Adolf Belka
2024-01-18 11:40 ` [PATCH] fmt: Update to version 10.2.1 Adolf Belka
@ 2024-01-18 11:40 ` Adolf Belka
2024-01-18 11:40 ` [PATCH] ipset: Update to version 7.19 Adolf Belka
` (9 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: Adolf Belka @ 2024-01-18 11:40 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2113 bytes --]
- Update from version 2.8.5 to 2.9.2
- Update of rootfile not required
- Changelog is too large to include here. Details can be found in the CHANGELOG file in the
source tarball.
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
lfs/haproxy | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/lfs/haproxy b/lfs/haproxy
index c98c8f630..bae1a7b16 100644
--- a/lfs/haproxy
+++ b/lfs/haproxy
@@ -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 #
@@ -26,9 +26,9 @@ include Config
SUMMARY = The Reliable, High Performance TCP/HTTP Load Balancer
-VER = 2.8.5
+VER = 2.9.2
-# From: https://www.haproxy.org/download/2.8/src/haproxy-2.8.1.tar.gz
+# From: https://www.haproxy.org/download/2.9/src/haproxy-2.9.2.tar.gz
THISAPP = haproxy-$(VER)
DL_FILE = $(THISAPP).tar.gz
@@ -36,7 +36,7 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = haproxy
-PAK_VER = 28
+PAK_VER = 29
DEPS =
@@ -54,7 +54,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 2c5c66b83a5b514d6518b6b5d62cfa17881498bc4adca664a2cb307630adea815d80ee1a9a823e7ae4043328a3940ce34a62dd218b165cedf9111c1190bc541a
+$(DL_FILE)_BLAKE2 = 257a594fdb18e50c99e4256aa364d2ea55b56e39bfda0435c921927939a09231be5ae2bd7f39e23286febb343fa0dca5fc33f9b279461c5083050898390b21db
install : $(TARGET)
--
2.43.0
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH] ipset: Update to version 7.19
2024-01-18 11:40 [PATCH] bird: Update to version 2.14 Adolf Belka
` (2 preceding siblings ...)
2024-01-18 11:40 ` [PATCH] haproxy: Update to version 2.9.2 Adolf Belka
@ 2024-01-18 11:40 ` Adolf Belka
2024-01-18 11:40 ` [PATCH] libtalloc: Update to version 2.4.1 Adolf Belka
` (8 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: Adolf Belka @ 2024-01-18 11:40 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2514 bytes --]
- Update from version 7.17 to 7.19
- Update of nrootfile not required
- Changelog
7.19
- build: Fix the double-prefix in pkgconfig (Sam James)
7.18
- Add json output to list command (Thomas Oberhammer)
- tests: hash:ip,port.t: Replace VRRP by GRE protocol (Phil Sutter)
- tests: hash:ip,port.t: 'vrrp' is printed as 'carp' (Phil Sutter)
- tests: cidr.sh: Add ipcalc fallback (Phil Sutter)
- tests: xlate: Make test input valid (Phil Sutter)
- tests: xlate: Test built binary by default (Phil Sutter)
- xlate: Drop dead code (Phil Sutter)
- xlate: Fix for fd leak in error path (Phil Sutter)
- configure.ac: fix bashisms (Sam James)
- lib/Makefile.am: fix pkgconfig dir (Sam James)
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
lfs/ipset | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/lfs/ipset b/lfs/ipset
index f26f0d5de..bc34b44ea 100644
--- a/lfs/ipset
+++ b/lfs/ipset
@@ -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 = 7.17
+VER = 7.19
THISAPP = ipset-$(VER)
DL_FILE = $(THISAPP).tar.bz2
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 43b74ab7caf5a963787184aa75b6c071388c8d28997681444b72118aba68b843e961b50418c3fa70b451b4cb090ec62940b770abac2156910442115edbf90d41
+$(DL_FILE)_BLAKE2 = 04290b94be471aedd732601e1dc147a066933606152beb76ba1a21283aa2e3f8b891fd9575db73f2af67b446fb77a0ca6b2432ae606440ac9e9bf80e41d1f640
install : $(TARGET)
@@ -70,7 +70,6 @@ $(subst %,%_BLAKE2,$(objects)) :
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
- cd $(DIR_APP) && ./autogen.sh
cd $(DIR_APP) && ./configure \
--prefix=/usr \
--with-kmod=no \
--
2.43.0
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH] libtalloc: Update to version 2.4.1
2024-01-18 11:40 [PATCH] bird: Update to version 2.14 Adolf Belka
` (3 preceding siblings ...)
2024-01-18 11:40 ` [PATCH] ipset: Update to version 7.19 Adolf Belka
@ 2024-01-18 11:40 ` Adolf Belka
2024-01-18 11:40 ` [PATCH] libvirt: Update to version 10.0.0 Adolf Belka
` (7 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: Adolf Belka @ 2024-01-18 11:40 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2452 bytes --]
- Update from version 2.3.4 to 2.4.1
- Update of rootfile
- Changelog
2.4.1 (2023-07-20)
No change information available anywhere that I could find
2.4.0 (2023-01-18)
No change information available anywhere that I could find
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/packages/libtalloc | 2 +-
lfs/libtalloc | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/config/rootfiles/packages/libtalloc b/config/rootfiles/packages/libtalloc
index dd7fa75c2..6e131085f 100644
--- a/config/rootfiles/packages/libtalloc
+++ b/config/rootfiles/packages/libtalloc
@@ -1,5 +1,5 @@
#usr/include/talloc.h
#usr/lib/libtalloc.so
usr/lib/libtalloc.so.2
-usr/lib/libtalloc.so.2.3.4
+usr/lib/libtalloc.so.2.4.1
#usr/lib/pkgconfig/talloc.pc
diff --git a/lfs/libtalloc b/lfs/libtalloc
index 0aa165b23..9bb3f05c0 100644
--- a/lfs/libtalloc
+++ b/lfs/libtalloc
@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2022 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 #
@@ -26,7 +26,7 @@ include Config
SUMMARY = Samba talloc Library
-VER = 2.3.4
+VER = 2.4.1
THISAPP = talloc-$(VER)
DL_FILE = $(THISAPP).tar.gz
@@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = libtalloc
-PAK_VER = 2
+PAK_VER = 3
DEPS =
@@ -48,7 +48,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 1fac0a45a4ba16c7741e6d810e1a1e56352c04f266b99de62770177c1218a8c8253be2d5d1793aae67ce61e6a1159cbcd4888a49702822e6817b86eb7a1fea31
+$(DL_FILE)_BLAKE2 = a7913b25930c77da53c17c2e0d71386402b1059f93c751084037c5068a035bd543c2d7e24a2d8dc989bb4eea13fa1a3c7a362e4d6c14af0b2030fbfb2f513801
install : $(TARGET)
--
2.43.0
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH] libvirt: Update to version 10.0.0
2024-01-18 11:40 [PATCH] bird: Update to version 2.14 Adolf Belka
` (4 preceding siblings ...)
2024-01-18 11:40 ` [PATCH] libtalloc: Update to version 2.4.1 Adolf Belka
@ 2024-01-18 11:40 ` Adolf Belka
2024-01-18 11:40 ` [PATCH] lshw: Update to version B.02.20 Adolf Belka
` (6 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: Adolf Belka @ 2024-01-18 11:40 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 5060 bytes --]
- Update from version 8.10.0 to 10.0.0
- Update of rootfile
- Changelog is too large to include here. Details can be found in the NEWS.rst file in the
source tarball
CVE-2023-3750 was fixed in version 9.6.0
Fix race condition in storage driver leading to a crash
In **libvirt-8.3** a bug was introduced which in rare cases could cause
``libvirtd`` or ``virtstoraged`` to crash if multiple clients attempted to
look up a storage volume by key, path or target path, while other clients
attempted to access something from the same storage pool.
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/packages/libvirt | 12 ++++++++----
lfs/libvirt | 8 ++++----
2 files changed, 12 insertions(+), 8 deletions(-)
diff --git a/config/rootfiles/packages/libvirt b/config/rootfiles/packages/libvirt
index 8b3819aa5..f1031b079 100644
--- a/config/rootfiles/packages/libvirt
+++ b/config/rootfiles/packages/libvirt
@@ -85,16 +85,16 @@ usr/bin/virt-xml-validate
#usr/lib/libvirt
#usr/lib/libvirt-admin.so
usr/lib/libvirt-admin.so.0
-usr/lib/libvirt-admin.so.0.8010.0
+usr/lib/libvirt-admin.so.0.10000.0
#usr/lib/libvirt-lxc.so
usr/lib/libvirt-lxc.so.0
-usr/lib/libvirt-lxc.so.0.8010.0
+usr/lib/libvirt-lxc.so.0.10000.0
#usr/lib/libvirt-qemu.so
usr/lib/libvirt-qemu.so.0
-usr/lib/libvirt-qemu.so.0.8010.0
+usr/lib/libvirt-qemu.so.0.10000.0
#usr/lib/libvirt.so
usr/lib/libvirt.so.0
-usr/lib/libvirt.so.0.8010.0
+usr/lib/libvirt.so.0.10000.0
#usr/lib/libvirt/connection-driver
usr/lib/libvirt/connection-driver/libvirt_driver_ch.so
usr/lib/libvirt/connection-driver/libvirt_driver_interface.so
@@ -186,6 +186,7 @@ usr/sbin/virtstoraged
#usr/share/doc/libvirt/examples/sh
#usr/share/doc/libvirt/examples/sh/virt-lxc-convert
#usr/share/doc/libvirt/examples/systemtap
+#usr/share/doc/libvirt/examples/systemtap/amd-sev-es-vmsa.stp
#usr/share/doc/libvirt/examples/systemtap/events.stp
#usr/share/doc/libvirt/examples/systemtap/lock-debug.stp
#usr/share/doc/libvirt/examples/systemtap/qemu-monitor.stp
@@ -247,6 +248,7 @@ usr/share/libvirt/cpu_map/x86_Cascadelake-Server.xml
usr/share/libvirt/cpu_map/x86_Conroe.xml
usr/share/libvirt/cpu_map/x86_Cooperlake.xml
usr/share/libvirt/cpu_map/x86_Dhyana.xml
+usr/share/libvirt/cpu_map/x86_EPYC-Genoa.xml
usr/share/libvirt/cpu_map/x86_EPYC-IBPB.xml
usr/share/libvirt/cpu_map/x86_EPYC-Milan.xml
usr/share/libvirt/cpu_map/x86_EPYC-Rome.xml
@@ -271,6 +273,7 @@ usr/share/libvirt/cpu_map/x86_Opteron_G5.xml
usr/share/libvirt/cpu_map/x86_Penryn.xml
usr/share/libvirt/cpu_map/x86_SandyBridge-IBRS.xml
usr/share/libvirt/cpu_map/x86_SandyBridge.xml
+usr/share/libvirt/cpu_map/x86_SapphireRapids.xml
usr/share/libvirt/cpu_map/x86_Skylake-Client-IBRS.xml
usr/share/libvirt/cpu_map/x86_Skylake-Client-noTSX-IBRS.xml
usr/share/libvirt/cpu_map/x86_Skylake-Client.xml
@@ -359,6 +362,7 @@ usr/share/libvirt/schemas/storagevol.rng
#usr/share/locale/pl/LC_MESSAGES/libvirt.mo
#usr/share/locale/pt/LC_MESSAGES/libvirt.mo
#usr/share/locale/pt_BR/LC_MESSAGES/libvirt.mo
+#usr/share/locale/ro/LC_MESSAGES/libvirt.mo
#usr/share/locale/ru/LC_MESSAGES/libvirt.mo
#usr/share/locale/si/LC_MESSAGES/libvirt.mo
#usr/share/locale/sr/LC_MESSAGES/libvirt.mo
diff --git a/lfs/libvirt b/lfs/libvirt
index 6ac11a5a6..3035844f0 100644
--- a/lfs/libvirt
+++ b/lfs/libvirt
@@ -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 #
@@ -26,7 +26,7 @@ include Config
SUMMARY = Server side daemon and supporting files for libvirt
-VER = 8.10.0
+VER = 10.0.0
THISAPP = libvirt-$(VER)
DL_FILE = $(THISAPP).tar.xz
@@ -35,7 +35,7 @@ DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
# SUP_ARCH = x86_64 aarch64
PROG = libvirt
-PAK_VER = 33
+PAK_VER = 34
DEPS = ebtables libpciaccess libyajl ncat qemu
@@ -49,7 +49,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 6c99428dd74ae1e535d0918bb48da0a851b03e9dfc38f96fca060a33b6be6c23c8b4a789695e8cf930536c156c8a893e18753a58c8a827f464b83a61b47c4846
+$(DL_FILE)_BLAKE2 = bfbea7805a949999481293a31e52a5511bcf86db2c96486cbc3b9cb776719ec973b1208cfcb4a8ae2c9220d1d68053980eaf68893f7919c3ef354efbd1abf642
install : $(TARGET)
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
--
2.43.0
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH] lshw: Update to version B.02.20
2024-01-18 11:40 [PATCH] bird: Update to version 2.14 Adolf Belka
` (5 preceding siblings ...)
2024-01-18 11:40 ` [PATCH] libvirt: Update to version 10.0.0 Adolf Belka
@ 2024-01-18 11:40 ` Adolf Belka
2024-01-18 11:40 ` [PATCH] memtest: Update to version 7.00 Adolf Belka
` (5 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: Adolf Belka @ 2024-01-18 11:40 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2400 bytes --]
- Update from version B.02.19.2 to B.02.20
- Update of rootfile
- Changelog
B.02.20
bug fixes
code cleanup
For more details see the git repo
https://ezix.org/src/pkg/lshw/compare/B.02.19...B.02.20
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/packages/lshw | 2 ++
lfs/lshw | 8 ++++----
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/config/rootfiles/packages/lshw b/config/rootfiles/packages/lshw
index 3987b2f25..49582ac41 100644
--- a/config/rootfiles/packages/lshw
+++ b/config/rootfiles/packages/lshw
@@ -1,4 +1,6 @@
usr/sbin/lshw
+#usr/share/locale/ca/LC_MESSAGES/lshw.mo
+#usr/share/locale/es/LC_MESSAGES/lshw.mo
#usr/share/locale/fr/LC_MESSAGES/lshw.mo
#usr/share/lshw
#usr/share/lshw/manuf.txt
diff --git a/lfs/lshw b/lfs/lshw
index 9b2b78fd9..f8a3147f8 100644
--- a/lfs/lshw
+++ b/lfs/lshw
@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2020 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 #
@@ -27,7 +27,7 @@ include Config
SUMMARY = HardWare LiSter
-VER = B.02.19.2
+VER = B.02.20
THISAPP = lshw-$(VER)
DL_FILE = $(THISAPP).tar.gz
@@ -35,7 +35,7 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = lshw
-PAK_VER = 1
+PAK_VER = 2
DEPS =
@@ -49,7 +49,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 8317def382bcb189c164bddf2dd766c614c6a0a49449ceee81f516125ef14ba24f5933b1f08f13b5ae52a96304baa1cc7ac5171231911ecaa466522a7c0c4c6f
+$(DL_FILE)_BLAKE2 = 8abdd7cee6c42b8956229a0b62ac9f96359750f26cbfeb2ed74402eae3e7cd818133bf0b747351522c6387974ce2a98cf5ab29379e56c50abc980e497bcc19d7
install : $(TARGET)
--
2.43.0
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH] memtest: Update to version 7.00
2024-01-18 11:40 [PATCH] bird: Update to version 2.14 Adolf Belka
` (6 preceding siblings ...)
2024-01-18 11:40 ` [PATCH] lshw: Update to version B.02.20 Adolf Belka
@ 2024-01-18 11:40 ` Adolf Belka
2024-01-18 11:40 ` [PATCH] pixman: Update to version 43.0 Adolf Belka
` (4 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: Adolf Belka @ 2024-01-18 11:40 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1780 bytes --]
- Update from version 6.20 to 7.00
- Update of rootfile not required
- Changelog
7.00
IMC polling for live DRAM settings
Preliminary support for ECC polling
Add support for MMIO UART
Add debugging options
Bug fixes & optimizations
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
lfs/memtest | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lfs/memtest b/lfs/memtest
index d5baca8ca..6617a92b2 100644
--- a/lfs/memtest
+++ b/lfs/memtest
@@ -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 = 6.20
+VER = 7.00
THISAPP = memtest86plus-$(VER)
DL_FILE = $(THISAPP).tar.gz
@@ -41,7 +41,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 6e3bea4b18049446f27da2cb1313300c578ef7fdb774b6a20df603271b66a6c0066be64a91b0a6d4ffcc63f1e139132942290a8111f6a991cccc0a5586cac966
+$(DL_FILE)_BLAKE2 = 608f4e31ddaee01d828cb1574086196c26f5e96c5049806ac3ab174ddf669db8cdcb8f336bec5a1ce74439d96fca505fea81311a06581bb43a8034156a4f8165
install : $(TARGET)
--
2.43.0
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH] pixman: Update to version 43.0
2024-01-18 11:40 [PATCH] bird: Update to version 2.14 Adolf Belka
` (7 preceding siblings ...)
2024-01-18 11:40 ` [PATCH] memtest: Update to version 7.00 Adolf Belka
@ 2024-01-18 11:40 ` Adolf Belka
2024-01-18 11:40 ` [PATCH] poppler: Update to version 24.01.0 Adolf Belka
` (3 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: Adolf Belka @ 2024-01-18 11:40 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2275 bytes --]
- Update from versionj 42.2 to 43.0
- Update of rootfile
- Changelog
The NEWS and ChangeLog files in the source tarball are empty.
For details of changes see the commits log
https://cgit.freedesktop.org/pixman/log/
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/pixman | 3 +--
lfs/pixman | 6 +++---
2 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/config/rootfiles/common/pixman b/config/rootfiles/common/pixman
index e58e467cb..c48845cde 100644
--- a/config/rootfiles/common/pixman
+++ b/config/rootfiles/common/pixman
@@ -1,8 +1,7 @@
#usr/include/pixman-1
#usr/include/pixman-1/pixman-version.h
#usr/include/pixman-1/pixman.h
-#usr/lib/libpixman-1.la
#usr/lib/libpixman-1.so
usr/lib/libpixman-1.so.0
-usr/lib/libpixman-1.so.0.42.2
+usr/lib/libpixman-1.so.0.43.0
#usr/lib/pkgconfig/pixman-1.pc
diff --git a/lfs/pixman b/lfs/pixman
index 4161fef73..a1f362feb 100644
--- a/lfs/pixman
+++ b/lfs/pixman
@@ -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 = 0.42.2
+VER = 0.43.0
THISAPP = pixman-$(VER)
DL_FILE = $(THISAPP).tar.xz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 6286a9d064a5a24017fccbb0a6e9f6ef932077c2e33ec043826d4a7a6c707c9111d3de4b806cbcdb47fc2794f1f930d24d078de1ff2912061967db0890540957
+$(DL_FILE)_BLAKE2 = 1a807d4d5598a5fe6077d6bbc7786cba41a698a1f03801cc5367ade8707500ee215a0faf65afe85f9e040b0380f1074c2fdfd31c0805dc41a4e5e34e36416764
install : $(TARGET)
--
2.43.0
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH] poppler: Update to version 24.01.0
2024-01-18 11:40 [PATCH] bird: Update to version 2.14 Adolf Belka
` (8 preceding siblings ...)
2024-01-18 11:40 ` [PATCH] pixman: Update to version 43.0 Adolf Belka
@ 2024-01-18 11:40 ` Adolf Belka
2024-01-18 11:40 ` [PATCH] stunnel: Update to version 5.71 Adolf Belka
` (2 subsequent siblings)
12 siblings, 0 replies; 14+ messages in thread
From: Adolf Belka @ 2024-01-18 11:40 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 4482 bytes --]
- Update from version 23.08.0 to 24.01.0
- Update of rootfile
- Changelog
24.01.0:
core:
* Don't crash on certain documents on the NSS signature backend
* Fix infinite loop in some annotation code if there's not space for
even one character
* Fix build on Android with generic font configuration
* Small internal code cleanup
23.12.0:
core:
* Rewrite FoFiType1::parse to be more flexible. Issue #1422
* Small internal code refactoring
23.11.0:
core:
* CairoOutputDev: Use internal downscaling algorithm if image exceeds
Cairo's maximum dimensions.
* Internal code improvements
* Fix crash on malformed files
utils:
* pdftocairo: Add option to document logical structure if output is pdf
* pdftocairo: EPS output should not contain %%PageOrientation
23.10.0:
core:
* cairo: update type 3 fonts for cairo 1.18 api
* Fix crash on malformed files
build system:
* Make a few more dependencies soft-mandatory
* Add more supported gnupg releases
* Check if linker supports version scripts
23.09.0:
core:
* Add Android-specific font matching functionality
* Fix digital signatures for NeedAppearance=true
* Forms: Don't look up same glyph multiple times
* Provide the key location for certificates you can sign with
* Add ToUnicode support for similarequal
* Fix crash on malformed files
qt5:
* Provide the key location for certificates you can sign with
* Allow to force a rasterized overprint preview during PS conversion
qt6:
* Provide the key location for certificates you can sign with
* Allow to force a rasterized overprint preview during PS conversion
pdfsig:
* Provide the key location for certificates you can sign with
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/common/poppler | 4 ++--
lfs/poppler | 9 ++++++---
2 files changed, 8 insertions(+), 5 deletions(-)
diff --git a/config/rootfiles/common/poppler b/config/rootfiles/common/poppler
index 1cbdb3f7a..68deecd65 100644
--- a/config/rootfiles/common/poppler
+++ b/config/rootfiles/common/poppler
@@ -173,8 +173,8 @@ usr/lib/libpoppler-cpp.so.0.11.0
usr/lib/libpoppler-glib.so.8
usr/lib/libpoppler-glib.so.8.26.0
#usr/lib/libpoppler.so
-usr/lib/libpoppler.so.130
-usr/lib/libpoppler.so.130.0.0
+usr/lib/libpoppler.so.133
+usr/lib/libpoppler.so.133.0.0
#usr/lib/pkgconfig/poppler-cpp.pc
#usr/lib/pkgconfig/poppler-glib.pc
#usr/lib/pkgconfig/poppler.pc
diff --git a/lfs/poppler b/lfs/poppler
index e3c094b5b..03838d09a 100644
--- a/lfs/poppler
+++ b/lfs/poppler
@@ -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 = 23.08.0
+VER = 24.01.0
THISAPP = poppler-$(VER)
DL_FILE = $(THISAPP).tar.xz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = a35e44cc590e34991b27e53caf650dedf4d4aa4f9f82ed5d8a57b0ca6bb863c96fe0e9b9c9021b9722db48896d236c9e057bcbf45e9609eb237bf00481e91428
+$(DL_FILE)_BLAKE2 = 16c87a4338c73fcccfac3ac477807a7f96c8e95e68efff484d9d544da10815972f20d40f71091c6092913d82b205ca0d1bd25acbaba79277e1a1bf19ba397e6d
install : $(TARGET)
@@ -77,6 +77,9 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
-DTESTDATADIR=$PWD/testfiles \
-DENABLE_UNSTABLE_API_ABI_HEADERS=ON \
-DENABLE_QT5=OFF \
+ -DENABLE_NSS3=OFF \
+ -DENABLE_GPGME=OFF \
+ -DENABLE_QT6=OFF \
..
cd $(DIR_APP)/build && make $(MAKETUNING)
--
2.43.0
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH] stunnel: Update to version 5.71
2024-01-18 11:40 [PATCH] bird: Update to version 2.14 Adolf Belka
` (9 preceding siblings ...)
2024-01-18 11:40 ` [PATCH] poppler: Update to version 24.01.0 Adolf Belka
@ 2024-01-18 11:40 ` Adolf Belka
2024-01-18 11:40 ` [PATCH] transmission: Update to version 4.0.5 Adolf Belka
2024-01-18 11:40 ` [PATCH] wavemon: Update to version 0.9.5 Adolf Belka
12 siblings, 0 replies; 14+ messages in thread
From: Adolf Belka @ 2024-01-18 11:40 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 3018 bytes --]
- Update from vesrion 5.69 to 5.71
- Update of rootfile not required
- Changelog
5.71, 2023.09.19, urgency: MEDIUM
Security bugfixes
- OpenSSL DLLs updated to version 3.1.3.
Bugfixes
- Fixed the console output of tstunnel.exe.
Features sponsored by SAE IT-systems
- OCSP stapling is requested and verified in the client mode.
- Using "verifyChain" automatically enables OCSP
stapling in the client mode.
- OCSP stapling is always available in the server mode.
- An inconclusive OCSP verification breaks TLS negotiation.
This can be disabled with "OCSPrequire = no".
- Added the "TIMEOUTocsp" option to control the maximum
time allowed for connecting an OCSP responder.
Features
- Added support for Red Hat OpenSSL 3.x patches.
5.70, 2023.07.12, urgency: HIGH
Security bugfixes
- OpenSSL DLLs updated to version 3.0.9.
- OpenSSL FIPS Provider updated to version 3.0.8.
Bugfixes
- Fixed TLS socket EOF handling with OpenSSL 3.x.
This bug caused major interoperability issues between
stunnel built with OpenSSL 3.x and Microsoft's
Schannel Security Support Provider (SSP).
- Fixed reading certificate chains from PKCS#12 files.
Features
- Added configurable delay for the "retry" option.
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
lfs/stunnel | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/lfs/stunnel b/lfs/stunnel
index 24527bb25..61d1fe4a1 100644
--- a/lfs/stunnel
+++ b/lfs/stunnel
@@ -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.69
+VER = 5.71
SUMMARY = Universal TLS Tunnel
THISAPP = stunnel-$(VER)
@@ -33,7 +33,7 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = stunnel
-PAK_VER = 11
+PAK_VER = 12
DEPS =
@@ -47,7 +47,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = fd213d1c7bc9efb42ee501bccd720c6535d123fe9d78354ff14a1701edcc30f1b563ff46fa34fd3f53bb976a7e700f0cd63589a8488738314604e593a95ad7bd
+$(DL_FILE)_BLAKE2 = d323363c7bfdd6c0b7931b84a6069cf9a8337e967c31e14d15976d7932f0c0d6f40f7a1cbf5abbdff0e9edc52176cdcead4f848653088193b2debf4e77443b42
install : $(TARGET)
--
2.43.0
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH] transmission: Update to version 4.0.5
2024-01-18 11:40 [PATCH] bird: Update to version 2.14 Adolf Belka
` (10 preceding siblings ...)
2024-01-18 11:40 ` [PATCH] stunnel: Update to version 5.71 Adolf Belka
@ 2024-01-18 11:40 ` Adolf Belka
2024-01-18 11:40 ` [PATCH] wavemon: Update to version 0.9.5 Adolf Belka
12 siblings, 0 replies; 14+ messages in thread
From: Adolf Belka @ 2024-01-18 11:40 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 3774 bytes --]
- Update from version 4.0.4 to 4.0.5
- Update of rootfile
- Changelog
4.0.5
Highlights
Fixed 4.0.0 bug where the IP address field in UDP announces were not encoded
in network byte order. [BEP-15]. (#6132)
Fixed a bug that incorrectly escaped JSON strings in some locales.
(#6005, #6133)
Fixed 4.0.4 decreased download speeds for people who set a low upload
bandwidth limit. (#6134)
All Platforms
Fixed bug that prevented editing trackers on magnet links. (#5957)
Fixed HTTP tracker announces and scrapes sometimes failing after adding a
torrent file by HTTPS URL. (#5969)
In RPC responses, change the default sort order of torrents to match
Transmission 3.00. (#5604)
Fixed tr_sys_path_copy() behavior on some Synology Devices. (#5974)
macOS Client
Support Sonoma when building from sources. (#6016, #6051)
Fixed early truncation of long group names in groups list. (#6104)
Qt Client
Fix: only append .added suffix to watchdir files. (#5705)
GTK Client
Fixed crash when opening torrent file from "Recently used" section in
GTK 4. (#6131, #6142)
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/packages/transmission | 3 ++-
lfs/transmission | 8 ++++----
2 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/config/rootfiles/packages/transmission b/config/rootfiles/packages/transmission
index 8efd4a95b..827205a11 100644
--- a/config/rootfiles/packages/transmission
+++ b/config/rootfiles/packages/transmission
@@ -13,6 +13,7 @@ usr/share/transmission
#usr/share/transmission/public_html/images/favicon.png
#usr/share/transmission/public_html/images/webclip-icon.png
#usr/share/transmission/public_html/index.html
+#usr/share/transmission/public_html/transmission-app.css
#usr/share/transmission/public_html/transmission-app.js
-#usr/share/transmission/public_html/transmission-app.js.LICENSE.txt
+#usr/share/transmission/public_html/transmission-app.js.LEGAL.txt
var/ipfire/backup/addons/includes/transmission
diff --git a/lfs/transmission b/lfs/transmission
index ab1e2f03b..3b77a85e0 100644
--- a/lfs/transmission
+++ b/lfs/transmission
@@ -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 #
@@ -26,7 +26,7 @@ include Config
SUMMARY = A BitTorrent client with multiple UIs
-VER = 4.0.4
+VER = 4.0.5
THISAPP = transmission-$(VER)
DL_FILE = $(THISAPP).tar.xz
@@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = transmission
-PAK_VER = 20
+PAK_VER = 21
DEPS =
@@ -48,7 +48,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 0cdf6075dffba941cbb47924879e8849938620068f3389fe6d5a03b100d11d66a0d33692738001092b8ac3ea181d9cfb554ba1bb2553dc7f06fd83b04f7e0ca9
+$(DL_FILE)_BLAKE2 = 60caa3bc615137b225d3ac3f25daa352c6960fcc848c91e5ea45488ae109d93b53e314e4683bd7c4ef3f9b2f364d796b6c5bb014ca647d3f44fb5c9df9f8c997
install : $(TARGET)
--
2.43.0
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH] wavemon: Update to version 0.9.5
2024-01-18 11:40 [PATCH] bird: Update to version 2.14 Adolf Belka
` (11 preceding siblings ...)
2024-01-18 11:40 ` [PATCH] transmission: Update to version 4.0.5 Adolf Belka
@ 2024-01-18 11:40 ` Adolf Belka
12 siblings, 0 replies; 14+ messages in thread
From: Adolf Belka @ 2024-01-18 11:40 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 4748 bytes --]
- Update from version 0.9.4 to 0.9.5
- Update of rootfile not required
- force-netlink-include-path patch updated due to chganges in file in source tarball
- Changelog
0.9.5
Info Screen:
improve format of percentages (use fixed format rather than auto-format).
Configuration:
fix ncurses support for white backgrounds (#119),
configuration file now either in $XDG_CONFIG_HOME/wavemon/wavemonrc or in
$HOME/.config/wavemon/wavemonrc (#106).
Miscellaneous
avoid including include linux/if.h (#109),
check and set support for C99 standard (#108),
updated README (#107),
configuration file can now be located in XDG_CONFIG_HOME (#105),
added portable implementation of asprintf(3),
updated copied nl80211 header file,
make -Wpedantic the default when building.
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
lfs/wavemon | 10 +++++-----
.../wavemon-0.9.4-force-netlink-include-path.patch | 11 -----------
.../wavemon-0.9.5-force-netlink-include-path.patch | 11 +++++++++++
3 files changed, 16 insertions(+), 16 deletions(-)
delete mode 100644 src/patches/wavemon-0.9.4-force-netlink-include-path.patch
create mode 100644 src/patches/wavemon-0.9.5-force-netlink-include-path.patch
diff --git a/lfs/wavemon b/lfs/wavemon
index 265449c4f..1de2f9fab 100644
--- a/lfs/wavemon
+++ b/lfs/wavemon
@@ -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 #
@@ -27,7 +27,7 @@ include Config
SUMMARY = An ncurses monitoring application for wireless network devices
-VER = 0.9.4
+VER = 0.9.5
THISAPP = wavemon-$(VER)
DL_FILE = $(THISAPP).tar.gz
@@ -35,7 +35,7 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = wavemon
-PAK_VER = 2
+PAK_VER = 3
DEPS =
@@ -49,7 +49,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = e07feb16dba86b1a91dc9b7d7df51da1b4498d8ea1a6ca36f6ae1e30e0e0bb09971330a470cde3425e7ae785bbd2819460ac2f1ddc2bc8da3aae29de3356bdbb
+$(DL_FILE)_BLAKE2 = 492ac0f16da1400b4e9e06af43b1ec8b96303bd33a62f355820975db61efc3b0603e1e3f97be05a69597b9546aeb95e3a2655cb0c45c90aa9f2bd765a06b8884
install : $(TARGET)
@@ -82,7 +82,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/wavemon-0.9.4-force-netlink-include-path.patch
+ cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/wavemon-0.9.5-force-netlink-include-path.patch
$(UPDATE_AUTOMAKE)
cd $(DIR_APP) && ./configure \
--prefix=/usr
diff --git a/src/patches/wavemon-0.9.4-force-netlink-include-path.patch b/src/patches/wavemon-0.9.4-force-netlink-include-path.patch
deleted file mode 100644
index 5004e567f..000000000
--- a/src/patches/wavemon-0.9.4-force-netlink-include-path.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- wavemon-0.9.4/Makefile.in.orig 2021-09-18 02:25:37.000000000 +0200
-+++ wavemon-0.9.4/Makefile.in 2023-05-19 23:45:50.170559365 +0200
-@@ -9,7 +9,7 @@
- install-suid-root: exec_perms = 4755
-
- CC ?= @CC@
--CFLAGS ?= @CFLAGS@ @LIBNL3_CLI_CFLAGS@
-+CFLAGS = @CFLAGS@ @LIBNL3_CLI_CFLAGS@
- CPPFLAGS ?= @CPPFLAGS@
- LDFLAGS ?= @LDFLAGS@
- DEFS ?= @DEFS@
diff --git a/src/patches/wavemon-0.9.5-force-netlink-include-path.patch b/src/patches/wavemon-0.9.5-force-netlink-include-path.patch
new file mode 100644
index 000000000..efafda4f7
--- /dev/null
+++ b/src/patches/wavemon-0.9.5-force-netlink-include-path.patch
@@ -0,0 +1,11 @@
+--- wavemon-0.9.5/Makefile.in.orig 2023-10-31 00:50:28.000000000 +0100
++++ wavemon-0.9.5/Makefile.in 2024-01-16 12:15:40.601709570 +0100
+@@ -15,7 +15,7 @@
+ else
+ CC ?= $(CC_DEFAULT)
+ endif
+-CFLAGS ?= @CFLAGS@ @LIBNL3_CLI_CFLAGS@
++CFLAGS = @CFLAGS@ @LIBNL3_CLI_CFLAGS@
+ CPPFLAGS ?= @CPPFLAGS@
+ LDFLAGS ?= @LDFLAGS@
+ DEFS ?= @DEFS@
--
2.43.0
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2024-01-18 11:40 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-18 11:40 [PATCH] bird: Update to version 2.14 Adolf Belka
2024-01-18 11:40 ` [PATCH] dmidecode: Update to version 3.5 Adolf Belka
2024-01-18 11:40 ` [PATCH] fmt: Update to version 10.2.1 Adolf Belka
2024-01-18 11:40 ` [PATCH] haproxy: Update to version 2.9.2 Adolf Belka
2024-01-18 11:40 ` [PATCH] ipset: Update to version 7.19 Adolf Belka
2024-01-18 11:40 ` [PATCH] libtalloc: Update to version 2.4.1 Adolf Belka
2024-01-18 11:40 ` [PATCH] libvirt: Update to version 10.0.0 Adolf Belka
2024-01-18 11:40 ` [PATCH] lshw: Update to version B.02.20 Adolf Belka
2024-01-18 11:40 ` [PATCH] memtest: Update to version 7.00 Adolf Belka
2024-01-18 11:40 ` [PATCH] pixman: Update to version 43.0 Adolf Belka
2024-01-18 11:40 ` [PATCH] poppler: Update to version 24.01.0 Adolf Belka
2024-01-18 11:40 ` [PATCH] stunnel: Update to version 5.71 Adolf Belka
2024-01-18 11:40 ` [PATCH] transmission: Update to version 4.0.5 Adolf Belka
2024-01-18 11:40 ` [PATCH] wavemon: Update to version 0.9.5 Adolf Belka
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox