1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-12 18:59:50 +03:00

main/cifs-utils: upgrade to 7.4

This commit is contained in:
Francesco Colista 2025-06-26 08:55:19 +00:00
parent d6b2ec1fa1
commit 50a07edb99
2 changed files with 2 additions and 49 deletions

View file

@ -1,7 +1,7 @@
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=cifs-utils
pkgver=7.3
pkgver=7.4
pkgrel=0
pkgdesc="CIFS filesystem user-space tools"
url="https://wiki.samba.org/index.php/LinuxCIFS_utils"
@ -15,7 +15,6 @@ source="https://ftp.samba.org/pub/linux-cifs/cifs-utils/cifs-utils-$pkgver.tar.b
musl-fix-u_char.patch
musl-fix-timeval.patch
xattr_size_max.patch
fix-implicit-basename.patch
cifs.upcall.request-key.conf
"
options="suid"
@ -31,7 +30,6 @@ options="suid"
prepare() {
default_prepare
update_config_sub
autoreconf -i
}
@ -59,11 +57,10 @@ package() {
}
sha512sums="
7e341f5f5f53c3d533350cbd58983fddc428921ef8f8da6dea7b58884786b778fcc24ec23d0ebafc944ca54b9978213425fa6270e5c28934efb3383c0b66745a cifs-utils-7.3.tar.bz2
36fb64ed531e983752be243be488392ba52c3797ac638147a75998b8965448009e95d7ccda187c7d50d753b0ddb87a464a83044064b099d49fffe03a0b6ba739 cifs-utils-7.4.tar.bz2
99a2fab05bc2f14a600f89526ae0ed2c183cfa179fe386cb327075f710aee3aed5ae823f7c2f51913d1217c2371990d6d4609fdb8d80288bd3a6139df3c8aebe musl-fix-includes.patch
bd8cdc3149f8947199983573dfd89f9b716f6a9e1ef956050f9d4aff2b10b17d1e232cc23544f8708af39ecca4c2523d7117e11dc9182c6960b8da97030e0d7b musl-fix-u_char.patch
55cc94ee09b75fce3933e27acc6fbe907884e78e66dedd078e35230fb9a1224943715e83240beb7a30f3de05ab35c5dab3ef00372ff6369f51c45b895a54ce21 musl-fix-timeval.patch
2a9366ec1ddb0389c535d2fa889f63287cb8374535a47232de102c7e50b6874f67a3d5ef3318df23733300fd8459c7ec4b11f3211508aca7800b756119308e98 xattr_size_max.patch
8f93c8c7ae35bec6e67f26d0aa3a0edc4c427ef91b1e279a01abbd2eadaadbae21d46d2a7b53c6c7392c3cfa8f58ba43ed337026409fcd3a93192abff7267375 fix-implicit-basename.patch
4b5f32e6b80858858713ffa918bf592e39deeebe03e2d05cff965e13fde8ca8c20a7b5283bce89c0a0cb0d9447044f71807698274ed9d5fd8c71f450fdc29512 cifs.upcall.request-key.conf
"

View file

@ -1,44 +0,0 @@
diff -upr cifs-utils-7.0.orig/cifscreds.c cifs-utils-7.0/cifscreds.c
--- cifs-utils-7.0.orig/cifscreds.c 2024-05-12 11:56:19.023002421 +0200
+++ cifs-utils-7.0/cifscreds.c 2024-05-12 11:57:09.486444286 +0200
@@ -29,6 +29,7 @@
#include <keyutils.h>
#include <getopt.h>
#include <errno.h>
+#include <libgen.h>
#include "cifskey.h"
#include "mount.h"
#include "resolve_host.h"
diff -upr cifs-utils-7.0.orig/getcifsacl.c cifs-utils-7.0/getcifsacl.c
--- cifs-utils-7.0.orig/getcifsacl.c 2024-05-12 11:56:19.019669081 +0200
+++ cifs-utils-7.0/getcifsacl.c 2024-05-12 11:56:58.229753405 +0200
@@ -38,6 +38,7 @@
#include "cifsacl.h"
#include "idmap_plugin.h"
#include <ftw.h>
+#include <libgen.h>
static void *plugin_handle;
static bool plugin_loaded;
diff -upr cifs-utils-7.0.orig/mount.cifs.c cifs-utils-7.0/mount.cifs.c
--- cifs-utils-7.0.orig/mount.cifs.c 2024-05-12 11:56:19.039669124 +0200
+++ cifs-utils-7.0/mount.cifs.c 2024-05-12 11:56:42.343052575 +0200
@@ -38,6 +38,7 @@
#include <errno.h>
#include <netdb.h>
#include <string.h>
+#include <libgen.h>
#include <mntent.h>
#include <fcntl.h>
#include <limits.h>
diff -upr cifs-utils-7.0.orig/setcifsacl.c cifs-utils-7.0/setcifsacl.c
--- cifs-utils-7.0.orig/setcifsacl.c 2024-05-12 11:56:19.026335762 +0200
+++ cifs-utils-7.0/setcifsacl.c 2024-05-12 11:57:20.573134789 +0200
@@ -49,6 +49,7 @@
#include <limits.h>
#include <ctype.h>
#include <sys/xattr.h>
+#include <libgen.h>
#include "cifsacl.h"
#include "idmap_plugin.h"