mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] sudo: version bump 1.8.28 -> 1.9.3
@ 2020-10-06 13:06 jon
  2020-10-09  6:38 ` [ptxdist] [APPLIED] " Michael Olbrich
  0 siblings, 1 reply; 2+ messages in thread
From: jon @ 2020-10-06 13:06 UTC (permalink / raw)
  To: ptxdist; +Cc: Jon Ringle

From: Jon Ringle <jringle@gridpoint.com>

sudo fails to crosscompile with OSELAS.Toolchain-2020.08.0 with glibc-2.32

--------------------
target: sudo.compile
--------------------

make: Entering directory '/src/build/platform-ec1k/build-target/sudo-1.8.28'

[...]

./mksigname > signame.c
/bin/sh: ./mksigname: cannot execute binary file: Exec format error
make[1]: *** [Makefile:194: signame.c] Error 126
make[1]: *** Waiting for unfinished jobs....

There is a matching gentoo bug report on this here: https://bugs.gentoo.org/739016
with a fix applied upstream and incorporated into sudo-1.9.3

Signed-off-by: Jon Ringle <jringle@gridpoint.com>
---
 rules/sudo.make | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/rules/sudo.make b/rules/sudo.make
index eb65060a7..efd420674 100644
--- a/rules/sudo.make
+++ b/rules/sudo.make
@@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_SUDO) += sudo
 #
 # Paths and names
 #
-SUDO_VERSION	:= 1.8.28
-SUDO_MD5	:= 5afa5acd0c55b40916e4ad864607edfe
+SUDO_VERSION	:= 1.9.3
+SUDO_MD5	:= ecf74b49275f15a3e46f1903c6cb2211
 SUDO		:= sudo-$(SUDO_VERSION)
 SUDO_SUFFIX	:= tar.gz
 SUDO_URL	:= \
@@ -25,7 +25,7 @@ SUDO_URL	:= \
 SUDO_SOURCE	:= $(SRCDIR)/$(SUDO).$(SUDO_SUFFIX)
 SUDO_DIR	:= $(BUILDDIR)/$(SUDO)
 SUDO_LICENSE	:= ISC AND BSD-3-Clause AND BSD-2-Clause-NetBSD AND Zlib
-SUDO_LICENSE_FILES := file://doc/LICENSE;md5=6c76b73603ac7763ab0516ebfbe67b42
+SUDO_LICENSE_FILES := file://doc/LICENSE;md5=828cd502ad216ff869bf83adf3301e02
 
 # ----------------------------------------------------------------------------
 # Prepare
-- 
2.17.1


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* Re: [ptxdist] [APPLIED] sudo: version bump 1.8.28 -> 1.9.3
  2020-10-06 13:06 [ptxdist] [PATCH] sudo: version bump 1.8.28 -> 1.9.3 jon
@ 2020-10-09  6:38 ` Michael Olbrich
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2020-10-09  6:38 UTC (permalink / raw)
  To: ptxdist

Thanks, applied as 53d21c94eee4b29212b6ec18da8f62d76621b05f.

Michael

[sent from post-receive hook]

On Fri, 09 Oct 2020 08:38:38 +0200, Jon Ringle <jon@ringle.org> wrote:
> sudo fails to crosscompile with OSELAS.Toolchain-2020.08.0 with glibc-2.32
> 
> --------------------
> target: sudo.compile
> --------------------
> 
> make: Entering directory '/src/build/platform-ec1k/build-target/sudo-1.8.28'
> 
> [...]
> 
> ./mksigname > signame.c
> /bin/sh: ./mksigname: cannot execute binary file: Exec format error
> make[1]: *** [Makefile:194: signame.c] Error 126
> make[1]: *** Waiting for unfinished jobs....
> 
> There is a matching gentoo bug report on this here: https://bugs.gentoo.org/739016
> with a fix applied upstream and incorporated into sudo-1.9.3
> 
> Signed-off-by: Jon Ringle <jringle@gridpoint.com>
> Message-Id: <20201006130610.1276-1-jon@ringle.org>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/sudo.make b/rules/sudo.make
> index eb65060a7831..efd420674bbd 100644
> --- a/rules/sudo.make
> +++ b/rules/sudo.make
> @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_SUDO) += sudo
>  #
>  # Paths and names
>  #
> -SUDO_VERSION	:= 1.8.28
> -SUDO_MD5	:= 5afa5acd0c55b40916e4ad864607edfe
> +SUDO_VERSION	:= 1.9.3
> +SUDO_MD5	:= ecf74b49275f15a3e46f1903c6cb2211
>  SUDO		:= sudo-$(SUDO_VERSION)
>  SUDO_SUFFIX	:= tar.gz
>  SUDO_URL	:= \
> @@ -25,7 +25,7 @@ SUDO_URL	:= \
>  SUDO_SOURCE	:= $(SRCDIR)/$(SUDO).$(SUDO_SUFFIX)
>  SUDO_DIR	:= $(BUILDDIR)/$(SUDO)
>  SUDO_LICENSE	:= ISC AND BSD-3-Clause AND BSD-2-Clause-NetBSD AND Zlib
> -SUDO_LICENSE_FILES := file://doc/LICENSE;md5=6c76b73603ac7763ab0516ebfbe67b42
> +SUDO_LICENSE_FILES := file://doc/LICENSE;md5=828cd502ad216ff869bf83adf3301e02
>  
>  # ----------------------------------------------------------------------------
>  # Prepare

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

end of thread, other threads:[~2020-10-09  6:38 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-06 13:06 [ptxdist] [PATCH] sudo: version bump 1.8.28 -> 1.9.3 jon
2020-10-09  6:38 ` [ptxdist] [APPLIED] " Michael Olbrich

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