libogg: Update to version 1.3.6

Message ID 20250912200814.3489573-3-adolf.belka@ipfire.org
State New
Headers
Series libogg: Update to version 1.3.6 |

Commit Message

Adolf Belka 12 Sep 2025, 8:08 p.m. UTC
- Update from version 1.3.5 to 1.3.6
- Update of rootfile
- Changelog
    1.3.6
	 * Update minimum cmake version to 3.6
	   This fixes incompatibility with cmake >= 4.0
	 * Fix UBsan issues
	 * Improve allocation failure handling
	 * Fix various compiler warnings
	 * Fix various autotool warnings
	 * Improve continuous integration testing scripts

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/packages/libogg |  2 +-
 lfs/libogg                       | 11 ++++++-----
 2 files changed, 7 insertions(+), 6 deletions(-)
  

Patch

diff --git a/config/rootfiles/packages/libogg b/config/rootfiles/packages/libogg
index 2977fc6b0..10685b38d 100644
--- a/config/rootfiles/packages/libogg
+++ b/config/rootfiles/packages/libogg
@@ -6,7 +6,7 @@ 
 #usr/lib/libogg.la
 #usr/lib/libogg.so
 usr/lib/libogg.so.0
-usr/lib/libogg.so.0.8.5
+usr/lib/libogg.so.0.8.6
 #usr/lib/pkgconfig/ogg.pc
 #usr/share/aclocal/ogg.m4
 #usr/share/doc/libogg
diff --git a/lfs/libogg b/lfs/libogg
index e678b9b37..90eef212d 100644
--- a/lfs/libogg
+++ b/lfs/libogg
@@ -1,7 +1,7 @@ 
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2020  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        #
@@ -26,7 +26,7 @@  include Config
 
 SUMMARY    = Ogg Bitstream Library
 
-VER        = 1.3.5
+VER        = 1.3.6
 
 THISAPP    = libogg-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -34,7 +34,7 @@  DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = libogg
-PAK_VER    = 5
+PAK_VER    = 6
 
 DEPS       =
 
@@ -48,7 +48,7 @@  objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 464cf767902bd8bd463d3faaae01fecbe33d4cc87dabf38388ac961bfbe24e6d113f4ee88542e6bed6fd7eaaf0709c7f5cb7a306ee910527f79810054ccdbae7
+$(DL_FILE)_BLAKE2 = 18b5563775b0569db1c41358a8c2de9a64b14754ca0da8a154e692e6cb26fbd5dc73ac7fa61697304bca2847db5b5f256be8361840b3e0df270a0701f1468814
 
 install : $(TARGET)
 
@@ -82,7 +82,8 @@  $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@$(PREBUILD)
 	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
 	$(UPDATE_AUTOMAKE)
-	cd $(DIR_APP) && ./configure --prefix=/usr
+	cd $(DIR_APP) && ./configure \
+				--prefix=/usr
 	cd $(DIR_APP) && make $(MAKETUNING) $(EXTRA_MAKE)
 	cd $(DIR_APP) && make install
 	@rm -rf $(DIR_APP)