* [Buildroot] [PATCH] package/cifs-utils: bump to version 6.10
@ 2020-04-28 14:15 Ryan Barnett
2020-04-28 17:17 ` Yann E. MORIN
0 siblings, 1 reply; 3+ messages in thread
From: Ryan Barnett @ 2020-04-28 14:15 UTC (permalink / raw)
To: buildroot
In the version bump to 6.10 the following changes were:
* Fix hash file to two spaces format
* Add patch to respect DESTDIR and optionally install man pages for
mount.smb3 by utilizing CONFIG_MAN.
* Pass -std=c99 and -std=gnu11 to fix compile issues found with the
sourcery-arm toolchain with C99 style code errors in smbinfo.c and
defintion of 'struct sa' uisng gnu11 for C11 GNU extensions.
Signed-off-by: Ryan Barnett <ryanbarnett3@gmail.com>
---
...-installing-mount.smb3-and-optionall.patch | 41 +++++++++++++++++++
package/cifs-utils/cifs-utils.hash | 4 +-
package/cifs-utils/cifs-utils.mk | 7 +++-
3 files changed, 48 insertions(+), 4 deletions(-)
create mode 100644 package/cifs-utils/0001-Use-DESTDIR-when-installing-mount.smb3-and-optionall.patch
diff --git a/package/cifs-utils/0001-Use-DESTDIR-when-installing-mount.smb3-and-optionall.patch b/package/cifs-utils/0001-Use-DESTDIR-when-installing-mount.smb3-and-optionall.patch
new file mode 100644
index 0000000000..e36ec5b5da
--- /dev/null
+++ b/package/cifs-utils/0001-Use-DESTDIR-when-installing-mount.smb3-and-optionall.patch
@@ -0,0 +1,41 @@
+From dbb4452787cb966cc74b2015689961875fd5d668 Mon Sep 17 00:00:00 2001
+From: Ryan Barnett <ryanbarnett3@gmail.com>
+Date: Mon, 27 Apr 2020 22:03:25 -0500
+Subject: [PATCH] Use DESTDIR when installing mount.smb3 and optionally install
+ man page
+
+Properly create mount.smb3 symlink by using DESTDIR. Also use
+CONFIG_MAN to optionally install manpage for mount.smb3.
+
+Signed-off-by: Ryan Barnett <ryanbarnett3@gmail.com>
+---
+Upstream: https://marc.info/?l=linux-cifs&m=158804444725745&w=2
+---
+ Makefile.am | 10 ++++++----
+ 1 file changed, 6 insertions(+), 4 deletions(-)
+
+diff --git a/Makefile.am b/Makefile.am
+index fe9cd34..e0587f1 100644
+--- a/Makefile.am
++++ b/Makefile.am
+@@ -119,11 +119,13 @@ endif
+ SUBDIRS = contrib
+
+ install-exec-hook:
+- (cd $(ROOTSBINDIR) && ln -sf mount.cifs mount.smb3)
++ (cd $(DESTDIR)$(ROOTSBINDIR) && ln -sf mount.cifs mount.smb3)
+
++if CONFIG_MAN
+ install-data-hook:
+- (cd $(man8dir) && ln -sf mount.cifs.8 mount.smb3.8)
++ (cd $(DESTDIR)$(man8dir) && ln -sf mount.cifs.8 mount.smb3.8)
++endif
+
+ uninstall-hook:
+- (cd $(ROOTSBINDIR) && rm -f $(ROOTSBINDIR)/mount.smb3)
+- (cd $(man8dir) && rm -f $(man8dir)/mount.smb3.8)
++ rm -f $(DESTDIR)$(ROOTSBINDIR)/mount.smb3
++ rm -f $(DESTDIR)$(man8dir)/mount.smb3.8
+--
+2.17.1
+
diff --git a/package/cifs-utils/cifs-utils.hash b/package/cifs-utils/cifs-utils.hash
index bbfbc1d8f4..5eaa84f370 100644
--- a/package/cifs-utils/cifs-utils.hash
+++ b/package/cifs-utils/cifs-utils.hash
@@ -1,5 +1,5 @@
# Locally calculated after checking pgp signature
-sha256 18d8f1bf92c13c4d611502dbd6759e3a766ddc8467ec8a2eda3f589e40b9ac9c cifs-utils-6.9.tar.bz2
+sha256 92fc29c8e9039637f3344267500f1fa381e2cccd7d10142f0c1676fa575904a7 cifs-utils-6.10.tar.bz2
# Hash for license file:
-sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 COPYING
+sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 COPYING
diff --git a/package/cifs-utils/cifs-utils.mk b/package/cifs-utils/cifs-utils.mk
index 511e9ccc01..d9d590342e 100644
--- a/package/cifs-utils/cifs-utils.mk
+++ b/package/cifs-utils/cifs-utils.mk
@@ -4,12 +4,12 @@
#
################################################################################
-CIFS_UTILS_VERSION = 6.9
+CIFS_UTILS_VERSION = 6.10
CIFS_UTILS_SOURCE = cifs-utils-$(CIFS_UTILS_VERSION).tar.bz2
CIFS_UTILS_SITE = http://ftp.samba.org/pub/linux-cifs/cifs-utils
CIFS_UTILS_LICENSE = GPL-3.0+
CIFS_UTILS_LICENSE_FILES = COPYING
-# Missing install-sh in release tarball
+# Missing install-sh in release tarball and patching Makefile.am
CIFS_UTILS_AUTORECONF = YES
CIFS_UTILS_DEPENDENCIES = host-pkgconf
@@ -17,6 +17,9 @@ CIFS_UTILS_DEPENDENCIES = host-pkgconf
# the global BR2_RELRO_FULL option.
CIFS_UTILS_CONF_OPTS = --disable-pie --disable-man
+# uses C99 code in smbinfo.c but forgets to pass -std=c99 and c11 with mtab.c
+CIFS_UTILS_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) -std=c99 -std=gnu11"
+
ifeq ($(BR2_PACKAGE_KEYUTILS),y)
CIFS_UTILS_DEPENDENCIES += keyutils
endif
--
2.17.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH] package/cifs-utils: bump to version 6.10
2020-04-28 14:15 [Buildroot] [PATCH] package/cifs-utils: bump to version 6.10 Ryan Barnett
@ 2020-04-28 17:17 ` Yann E. MORIN
2020-04-28 19:22 ` Ryan Barnett
0 siblings, 1 reply; 3+ messages in thread
From: Yann E. MORIN @ 2020-04-28 17:17 UTC (permalink / raw)
To: buildroot
Ryan, All,
On 2020-04-28 09:15 -0500, Ryan Barnett spake thusly:
> In the version bump to 6.10 the following changes were:
>
> * Fix hash file to two spaces format
> * Add patch to respect DESTDIR and optionally install man pages for
> mount.smb3 by utilizing CONFIG_MAN.
> * Pass -std=c99 and -std=gnu11 to fix compile issues found with the
> sourcery-arm toolchain with C99 style code errors in smbinfo.c and
> defintion of 'struct sa' uisng gnu11 for C11 GNU extensions.
>
> Signed-off-by: Ryan Barnett <ryanbarnett3@gmail.com>
> ---
[--SNIP--]
> diff --git a/package/cifs-utils/cifs-utils.mk b/package/cifs-utils/cifs-utils.mk
> index 511e9ccc01..d9d590342e 100644
> --- a/package/cifs-utils/cifs-utils.mk
> +++ b/package/cifs-utils/cifs-utils.mk
> @@ -4,12 +4,12 @@
> #
> ################################################################################
>
> -CIFS_UTILS_VERSION = 6.9
> +CIFS_UTILS_VERSION = 6.10
> CIFS_UTILS_SOURCE = cifs-utils-$(CIFS_UTILS_VERSION).tar.bz2
> CIFS_UTILS_SITE = http://ftp.samba.org/pub/linux-cifs/cifs-utils
> CIFS_UTILS_LICENSE = GPL-3.0+
> CIFS_UTILS_LICENSE_FILES = COPYING
> -# Missing install-sh in release tarball
> +# Missing install-sh in release tarball and patching Makefile.am
> CIFS_UTILS_AUTORECONF = YES
> CIFS_UTILS_DEPENDENCIES = host-pkgconf
>
> @@ -17,6 +17,9 @@ CIFS_UTILS_DEPENDENCIES = host-pkgconf
> # the global BR2_RELRO_FULL option.
> CIFS_UTILS_CONF_OPTS = --disable-pie --disable-man
>
> +# uses C99 code in smbinfo.c but forgets to pass -std=c99 and c11 with mtab.c
> +CIFS_UTILS_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) -std=c99 -std=gnu11"
Doesn't the last -std value win over the previous ones? In that case,
gnu11 would win.
Care to check that, please?
Regards,
Yann E. MORIN.
> ifeq ($(BR2_PACKAGE_KEYUTILS),y)
> CIFS_UTILS_DEPENDENCIES += keyutils
> endif
> --
> 2.17.1
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH] package/cifs-utils: bump to version 6.10
2020-04-28 17:17 ` Yann E. MORIN
@ 2020-04-28 19:22 ` Ryan Barnett
0 siblings, 0 replies; 3+ messages in thread
From: Ryan Barnett @ 2020-04-28 19:22 UTC (permalink / raw)
To: buildroot
Yann,
On Tue, Apr 28, 2020 at 12:17 PM Yann E. MORIN <yann.morin.1998@free.fr> wrote:
>
> Ryan, All,
>
> On 2020-04-28 09:15 -0500, Ryan Barnett spake thusly:
[...]
> > +# uses C99 code in smbinfo.c but forgets to pass -std=c99 and c11 with mtab.c
> > +CIFS_UTILS_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) -std=c99 -std=gnu11"
>
> Doesn't the last -std value win over the previous ones? In that case,
> gnu11 would win.
>
> Care to check that, please?
Yes - that works. Kind of got excited with fixing issues as they came
up and just kept appending :)
v2 incoming
Thanks,
-Ryan
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-04-28 19:22 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-28 14:15 [Buildroot] [PATCH] package/cifs-utils: bump to version 6.10 Ryan Barnett
2020-04-28 17:17 ` Yann E. MORIN
2020-04-28 19:22 ` Ryan Barnett
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.