public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH 1/2] openvpn: Update to version 2.6.15
@ 2025-10-04 14:12 Adolf Belka
  2025-10-04 14:12 ` [PATCH 2/2] core199: Ship openvpn Adolf Belka
  0 siblings, 1 reply; 2+ messages in thread
From: Adolf Belka @ 2025-10-04 14:12 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Update from version 2.6.14 to 2.6.15
- Update of rootfile not required
- Changelog
    2.6.15
      dco: add standard mi prefix handling to multi_process_incoming_dco()
      Check message id/acked ids too when doing sessionid cookie checks
      GHA: Pin version of CMake for MinGW build
      GHA: Dependency and Actions update April 2025 (2.6)
      GHA: Update dependencies July 2025 (2.6)
      Fix compiler warning in reliable.c with --disable-debug
      dco linux: avoid redefining ovpn enums (2.6)
      Update text of GPL to latest version from FSF
      unit_tests/plugins/auth-pam: fix stdint.h related build error on fedora 42
      Remove use of 'dh dh2048.pem' from sample configs, remove 'dh2048.pem' file
      replace assert() calls with ASSERT()
      remove newline characters at the end of msg() calls
      fix building of openvpnsrvmsg.dll from eventmsg.mc in mingw builds
      Fix t_net.sh / networking_testdriver after 'broadcast' change
      preparing release 2.6.15
      Fix tmp-dir documentation
      dco: support float notifications on FreeBSD
      dco-win: Ensure correct OVERLAPPED scope
      win: replace wmic invocation with powershell
      openvpnserv: Fix writing messages to the event log
      Validate DNS domain name before powershell invocation
      Makefile: fix 'make dist'
      GHA: collect more artifacts for mingw builds
      dco: backport OS-independent part of peer float support
      Bugfix: Set broadcast address on interface.
      Fix MBEDTLS_DEPRECATED_REMOVED build errors

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/openvpn | 19 +++++++++----------
 1 file changed, 9 insertions(+), 10 deletions(-)

diff --git a/lfs/openvpn b/lfs/openvpn
index e66b50c2e..152e25f63 100644
--- a/lfs/openvpn
+++ b/lfs/openvpn
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2024  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2025  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        = 2.6.14
+VER        = 2.6.15
 
 THISAPP    = openvpn-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 15376d0a1600abfbf8541614282c622bbc09bf4402730a20eb6606bf1debdda0836e069fd45068bda1d71deb72df052c68425771693592d3c72d680a16c87d6d
+$(DL_FILE)_BLAKE2 = d77f8d67bffeb7cdd6fe9b3892add3b62001d7e01d5f9b0703f57a5a5a19c58a9dfb5e86b6ba1acad743c39af1d965b2180d6a5fabd32d40cddf4b13f3d91b46
 
 install : $(TARGET)
 
@@ -71,13 +71,12 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@$(PREBUILD)
 	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
 	cd $(DIR_APP) && ./configure \
-		--prefix=/usr \
-		--sysconfdir=/var/ipfire/ovpn \
-		--enable-iproute2 \
-		--enable-plugins \
-		--enable-plugin-auth-pam \
-		--enable-plugin-down-root
-
+				--prefix=/usr \
+				--sysconfdir=/var/ipfire/ovpn \
+				--enable-iproute2 \
+				--enable-plugins \
+				--enable-plugin-auth-pam \
+				--enable-plugin-down-root
 	cd $(DIR_APP) && make $(MAKETUNING)
 	cd $(DIR_APP) && make install
 	cd $(DIR_APP) && cp -Rvf $(DIR_SRC)/config/ovpn /var/ipfire
-- 
2.51.0



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

* [PATCH 2/2] core199: Ship openvpn
  2025-10-04 14:12 [PATCH 1/2] openvpn: Update to version 2.6.15 Adolf Belka
@ 2025-10-04 14:12 ` Adolf Belka
  0 siblings, 0 replies; 2+ messages in thread
From: Adolf Belka @ 2025-10-04 14:12 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/core/199/filelists/openvpn | 1 +
 1 file changed, 1 insertion(+)
 create mode 120000 config/rootfiles/core/199/filelists/openvpn

diff --git a/config/rootfiles/core/199/filelists/openvpn b/config/rootfiles/core/199/filelists/openvpn
new file mode 120000
index 000000000..493f3f7a4
--- /dev/null
+++ b/config/rootfiles/core/199/filelists/openvpn
@@ -0,0 +1 @@
+../../../common/openvpn
\ No newline at end of file
-- 
2.51.0



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

end of thread, other threads:[~2025-10-04 14:12 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-10-04 14:12 [PATCH 1/2] openvpn: Update to version 2.6.15 Adolf Belka
2025-10-04 14:12 ` [PATCH 2/2] core199: Ship openvpn Adolf Belka

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