* [PATCH] cifs-utils: Update to version 7.4
@ 2025-07-10 7:44 Adolf Belka
2025-07-10 7:44 ` [PATCH] libtalloc: Update to version 2.4.3 Adolf Belka
0 siblings, 1 reply; 2+ messages in thread
From: Adolf Belka @ 2025-07-10 7:44 UTC (permalink / raw)
To: development; +Cc: Adolf Belka
- Update fropm version 7.3 to 7.4
- Update of rootfile
- According to Linux From Scratch cifs-utils-7.4 requires the autoreconf to work with
gcc-15. Certainly without it the build failed.
- Changelog
7.4
mount.cifs: retry mount on -EINPROGRESS
cifs.upcall: correctly treat UPTARGET_UNSPECIFIED as UPTARGET_APP
cifs.upcall: fix memory leaks in check_service_ticket_exits()
getcifsacl, setcifsacl: use <libgen.h> for basename
cifscreds: use <libgen.h> for basename
Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
config/rootfiles/packages/cifs-utils | 14 +++++++-------
lfs/cifs-utils | 12 ++++++++----
2 files changed, 15 insertions(+), 11 deletions(-)
diff --git a/config/rootfiles/packages/cifs-utils b/config/rootfiles/packages/cifs-utils
index fe8109a62..9fbafa410 100644
--- a/config/rootfiles/packages/cifs-utils
+++ b/config/rootfiles/packages/cifs-utils
@@ -1,9 +1,9 @@
sbin/mount.cifs
sbin/mount.smb3
-#usr/local/bin/smb2-quota
-#usr/local/bin/smbinfo
-#usr/local/include/cifsidmap.h
-#usr/local/share/man/man1/smb2-quota.1
-#usr/local/share/man/man1/smbinfo.1
-#usr/local/share/man/man8/mount.cifs.8
-#usr/local/share/man/man8/mount.smb3.8
+#usr/bin/smb2-quota
+#usr/bin/smbinfo
+#usr/include/cifsidmap.h
+#usr/share/man/man1/smb2-quota.1
+#usr/share/man/man1/smbinfo.1
+#usr/share/man/man8/mount.cifs.8
+#usr/share/man/man8/mount.smb3.8
diff --git a/lfs/cifs-utils b/lfs/cifs-utils
index 068abee04..22330de9e 100644
--- a/lfs/cifs-utils
+++ b/lfs/cifs-utils
@@ -26,7 +26,7 @@ include Config
SUMMARY = Utilities for doing and managing mounts of the Linux CIFS filesystem
-VER = 7.3
+VER = 7.4
THISAPP = cifs-utils-$(VER)
DL_FILE = $(THISAPP).tar.bz2
@@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = cifs-utils
-PAK_VER = 7
+PAK_VER = 8
DEPS = libtalloc
@@ -51,7 +51,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 59cf39ed2bf14d1fff54b6ad3b2fa410dd20b7e49ff9e87a95521d7e72cd4c5fe506f7026db2f42c53f4f79ed8f2492e3aa98b6349b000c7e2457cfea695c94d
+$(DL_FILE)_BLAKE2 = 57e03bb050b2345229dd4e0de22ac7baae7dcf080fba54c1dc339d8ecc6e60254e30feaa160568f8465698769ee513447c77de3bf8b0cd9c234ec4590e8e4270
install : $(TARGET)
@@ -85,7 +85,11 @@ $(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
+ cd $(DIR_APP) && autoreconf -vfi
+ cd $(DIR_APP) && ./configure \
+ --prefix=/usr \
+ --disable-pam \
+ --disable-systemd
cd $(DIR_APP) && make $(MAKETUNING) $(EXTRA_MAKE)
cd $(DIR_APP) && make install
@rm -rf $(DIR_APP)
--
2.50.0
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH] libtalloc: Update to version 2.4.3
2025-07-10 7:44 [PATCH] cifs-utils: Update to version 7.4 Adolf Belka
@ 2025-07-10 7:44 ` Adolf Belka
0 siblings, 0 replies; 2+ messages in thread
From: Adolf Belka @ 2025-07-10 7:44 UTC (permalink / raw)
To: development; +Cc: Adolf Belka
- Update from version 2.4.2 to 2.4.3
- Update of rootfile
- The last changelog is recorded in the sourcde tarball is from 2007. The only place I
have found anything is by filtering the samba gitlab mirror to show the commits
related to talloc.
https://gitlab.com/samba-team/samba/-/commits/talloc-2.4.3?ref_type=tags
Signed-off-by: Adolf Belka <adolf.belka@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 448ad0fc0..7cd52ba49 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.4.2
+usr/lib/libtalloc.so.2.4.3
#usr/lib/pkgconfig/talloc.pc
diff --git a/lfs/libtalloc b/lfs/libtalloc
index 27c509a27..85d9492c4 100644
--- a/lfs/libtalloc
+++ b/lfs/libtalloc
@@ -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 #
@@ -26,7 +26,7 @@ include Config
SUMMARY = Samba talloc Library
-VER = 2.4.2
+VER = 2.4.3
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 = 4
+PAK_VER = 5
DEPS =
@@ -48,7 +48,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 1f836d6b11e096e399ad7b99ad4abd3c140e75ee307695659c35b89eca600de247e5432bce523a299334f20ca2dad4c726b783a94c546b67fe25b2b7199b2915
+$(DL_FILE)_BLAKE2 = 5299ea4f19afd6b623f0c98514bdf4ae80121af3f4b38963cf2d39a8a9fdac3bd4a3119a606bc04f2a48a991bb98e7a66643e26e4f68427c64d3675b838ccc2d
install : $(TARGET)
--
2.50.0
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-07-10 7:44 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-07-10 7:44 [PATCH] cifs-utils: Update to version 7.4 Adolf Belka
2025-07-10 7:44 ` [PATCH] libtalloc: Update to version 2.4.3 Adolf Belka
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox