mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] sudo: version bump 1.9.14p3 -> 1.9.15p5
@ 2024-02-25 15:12 Andreas Helmcke
  2024-03-08  8:25 ` Michael Olbrich
  0 siblings, 1 reply; 7+ messages in thread
From: Andreas Helmcke @ 2024-02-25 15:12 UTC (permalink / raw)
  To: ptxdist; +Cc: Andreas Helmcke

various bugfixes, including fixes for CVE-2023-42465 and CVE-2023-42456

Full info: https://www.sudo.ws/releases/stable/#1.9.15p5

Signed-off-by: Andreas Helmcke <ahelmcke@ela-soft.com>
---
 rules/sudo.make | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/rules/sudo.make b/rules/sudo.make
index 93b92ad69..2e2f7845b 100644
--- a/rules/sudo.make
+++ b/rules/sudo.make
@@ -15,13 +15,13 @@ PACKAGES-$(PTXCONF_SUDO) += sudo
 #
 # Paths and names
 #
-SUDO_VERSION	:= 1.9.14p3
-SUDO_MD5	:= 4cc21cf7c9a89290b230954aed0d1e11
+SUDO_VERSION	:= 1.9.15p5
+SUDO_MD5	:= 4166279cb188ecb6641c7a2ba5f68270
 SUDO		:= sudo-$(SUDO_VERSION)
 SUDO_SUFFIX	:= tar.gz
 SUDO_URL	:= \
-	https://www.sudo.ws/sudo/dist/$(SUDO).$(SUDO_SUFFIX) \
-	https://www.sudo.ws/sudo/dist/OLD/$(SUDO).$(SUDO_SUFFIX)
+	http://www.sudo.ws/sudo/dist/$(SUDO).$(SUDO_SUFFIX) \
+	http://www.sudo.ws/sudo/dist/OLD/$(SUDO).$(SUDO_SUFFIX)
 SUDO_SOURCE	:= $(SRCDIR)/$(SUDO).$(SUDO_SUFFIX)
 SUDO_DIR	:= $(BUILDDIR)/$(SUDO)
 SUDO_LICENSE	:= ISC AND BSD-3-Clause AND BSD-2-Clause-NetBSD AND Zlib
@@ -36,8 +36,7 @@ SUDO_CONF_ENV	:= \
 	sudo_cv_func_fnmatch=yes \
 	sudo_cv_func_unsetenv_void=no \
 	ac_cv_have_working_snprintf=yes \
-	ac_cv_have_working_vsnprintf=yes \
-	ac_cv_lib_md_SHA224Update=no
+	ac_cv_have_working_vsnprintf=yes
 
 #
 # autoconf
-- 
2.40.1




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

* Re: [ptxdist] [PATCH] sudo: version bump 1.9.14p3 -> 1.9.15p5
  2024-02-25 15:12 [ptxdist] [PATCH] sudo: version bump 1.9.14p3 -> 1.9.15p5 Andreas Helmcke
@ 2024-03-08  8:25 ` Michael Olbrich
  2024-03-08 10:57   ` Andreas Helmcke
  2024-03-08 11:09   ` [ptxdist] [PATCH v2] " Andreas Helmcke
  0 siblings, 2 replies; 7+ messages in thread
From: Michael Olbrich @ 2024-03-08  8:25 UTC (permalink / raw)
  To: Andreas Helmcke; +Cc: ptxdist

On Sun, Feb 25, 2024 at 04:12:03PM +0100, Andreas Helmcke wrote:
> various bugfixes, including fixes for CVE-2023-42465 and CVE-2023-42456
> 
> Full info: https://www.sudo.ws/releases/stable/#1.9.15p5
> 
> Signed-off-by: Andreas Helmcke <ahelmcke@ela-soft.com>
> ---
>  rules/sudo.make | 11 +++++------
>  1 file changed, 5 insertions(+), 6 deletions(-)
> 
> diff --git a/rules/sudo.make b/rules/sudo.make
> index 93b92ad69..2e2f7845b 100644
> --- a/rules/sudo.make
> +++ b/rules/sudo.make
> @@ -15,13 +15,13 @@ PACKAGES-$(PTXCONF_SUDO) += sudo
>  #
>  # Paths and names
>  #
> -SUDO_VERSION	:= 1.9.14p3
> -SUDO_MD5	:= 4cc21cf7c9a89290b230954aed0d1e11
> +SUDO_VERSION	:= 1.9.15p5
> +SUDO_MD5	:= 4166279cb188ecb6641c7a2ba5f68270
>  SUDO		:= sudo-$(SUDO_VERSION)
>  SUDO_SUFFIX	:= tar.gz
>  SUDO_URL	:= \
> -	https://www.sudo.ws/sudo/dist/$(SUDO).$(SUDO_SUFFIX) \
> -	https://www.sudo.ws/sudo/dist/OLD/$(SUDO).$(SUDO_SUFFIX)
> +	http://www.sudo.ws/sudo/dist/$(SUDO).$(SUDO_SUFFIX) \
> +	http://www.sudo.ws/sudo/dist/OLD/$(SUDO).$(SUDO_SUFFIX)
>  SUDO_SOURCE	:= $(SRCDIR)/$(SUDO).$(SUDO_SUFFIX)
>  SUDO_DIR	:= $(BUILDDIR)/$(SUDO)
>  SUDO_LICENSE	:= ISC AND BSD-3-Clause AND BSD-2-Clause-NetBSD AND Zlib
> @@ -36,8 +36,7 @@ SUDO_CONF_ENV	:= \
>  	sudo_cv_func_fnmatch=yes \
>  	sudo_cv_func_unsetenv_void=no \
>  	ac_cv_have_working_snprintf=yes \
> -	ac_cv_have_working_vsnprintf=yes \
> -	ac_cv_lib_md_SHA224Update=no

Why did you remove this? It prevents sudo from linking to libmd.

Michael

> +	ac_cv_have_working_vsnprintf=yes
>  
>  #
>  # autoconf
> -- 
> 2.40.1
> 
> 
> 

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |



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

* Re: [ptxdist] [PATCH] sudo: version bump 1.9.14p3 -> 1.9.15p5
  2024-03-08  8:25 ` Michael Olbrich
@ 2024-03-08 10:57   ` Andreas Helmcke
  2024-03-08 11:09   ` [ptxdist] [PATCH v2] " Andreas Helmcke
  1 sibling, 0 replies; 7+ messages in thread
From: Andreas Helmcke @ 2024-03-08 10:57 UTC (permalink / raw)
  To: ptxdist

Am 08.03.24 um 09:25 schrieb Michael Olbrich:
> On Sun, Feb 25, 2024 at 04:12:03PM +0100, Andreas Helmcke wrote:
>> various bugfixes, including fixes for CVE-2023-42465 and CVE-2023-42456
>>
>> Full info: https://www.sudo.ws/releases/stable/#1.9.15p5
>>
>> Signed-off-by: Andreas Helmcke <ahelmcke@ela-soft.com>
>> ---
>>   rules/sudo.make | 11 +++++------
>>   1 file changed, 5 insertions(+), 6 deletions(-)
>>
>> diff --git a/rules/sudo.make b/rules/sudo.make
>> index 93b92ad69..2e2f7845b 100644
>> --- a/rules/sudo.make
>> +++ b/rules/sudo.make
>> @@ -15,13 +15,13 @@ PACKAGES-$(PTXCONF_SUDO) += sudo
>>   #
>>   # Paths and names
>>   #
>> -SUDO_VERSION	:= 1.9.14p3
>> -SUDO_MD5	:= 4cc21cf7c9a89290b230954aed0d1e11
>> +SUDO_VERSION	:= 1.9.15p5
>> +SUDO_MD5	:= 4166279cb188ecb6641c7a2ba5f68270
>>   SUDO		:= sudo-$(SUDO_VERSION)
>>   SUDO_SUFFIX	:= tar.gz
>>   SUDO_URL	:= \
>> -	https://www.sudo.ws/sudo/dist/$(SUDO).$(SUDO_SUFFIX) \
>> -	https://www.sudo.ws/sudo/dist/OLD/$(SUDO).$(SUDO_SUFFIX)
>> +	http://www.sudo.ws/sudo/dist/$(SUDO).$(SUDO_SUFFIX) \
>> +	http://www.sudo.ws/sudo/dist/OLD/$(SUDO).$(SUDO_SUFFIX)
>>   SUDO_SOURCE	:= $(SRCDIR)/$(SUDO).$(SUDO_SUFFIX)
>>   SUDO_DIR	:= $(BUILDDIR)/$(SUDO)
>>   SUDO_LICENSE	:= ISC AND BSD-3-Clause AND BSD-2-Clause-NetBSD AND Zlib
>> @@ -36,8 +36,7 @@ SUDO_CONF_ENV	:= \
>>   	sudo_cv_func_fnmatch=yes \
>>   	sudo_cv_func_unsetenv_void=no \
>>   	ac_cv_have_working_snprintf=yes \
>> -	ac_cv_have_working_vsnprintf=yes \
>> -	ac_cv_lib_md_SHA224Update=no
> 
> Why did you remove this? It prevents sudo from linking to libmd.
> 

This was on accident, i used an outdated version of sudo.make to 
prepared the patch.

> 
>> +	ac_cv_have_working_vsnprintf=yes
>>   
>>   #
>>   # autoconf
>> -- 
>> 2.40.1
>>
>>
>>
> 

-- 
Mit freundlichen Grüßen / Best regards

i. A. Andreas Helmcke
Hard- und Softwareentwickler / Hard- and Software Developer

ela-soft GmbH
Entwicklung|GEMOS access / Development|GEMOS access

Breitenbachstraße 10
13509 Berlin
Germany
Phone  +49 30 891003-0
Fax    +49 30 891003-22
ahelmcke@ela-soft.com
http://www.ela-soft.com

ela-soft GmbH / Company of limited liability
Sitz der Gesellschaft: Berlin / Place of residence: Berlin
Handelsregistereintrag / Commercial Register entry:
Amtsgericht Bln Charlottenburg, HRB 114128 B
Geschäftsführer / Board of directors: Tim Rosenberger




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

* [ptxdist] [PATCH v2] sudo: version bump 1.9.14p3 -> 1.9.15p5
  2024-03-08  8:25 ` Michael Olbrich
  2024-03-08 10:57   ` Andreas Helmcke
@ 2024-03-08 11:09   ` Andreas Helmcke
  2024-03-15  6:14     ` Michael Olbrich
  1 sibling, 1 reply; 7+ messages in thread
From: Andreas Helmcke @ 2024-03-08 11:09 UTC (permalink / raw)
  To: ptxdist

various bugfixes, including fixes for CVE-2023-42465 and CVE-2023-42456

Full info: https://www.sudo.ws/releases/stable/#1.9.15p5

Signed-off-by: Andreas Helmcke <ahelmcke@ela-soft.com>
---
v2: reverted accidentlly changed url and option

  rules/sudo.make | 4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rules/sudo.make b/rules/sudo.make
index 93b92ad69..83c3e7f8e 100644
--- a/rules/sudo.make
+++ b/rules/sudo.make
@@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_SUDO) += sudo
  #
  # Paths and names
  #
-SUDO_VERSION   := 1.9.14p3
-SUDO_MD5       := 4cc21cf7c9a89290b230954aed0d1e11
+SUDO_VERSION   := 1.9.15p5
+SUDO_MD5       := 4166279cb188ecb6641c7a2ba5f68270
  SUDO           := sudo-$(SUDO_VERSION)
  SUDO_SUFFIX    := tar.gz
  SUDO_URL       := \
-- 
2.40.1




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

* Re: [ptxdist] [PATCH v2] sudo: version bump 1.9.14p3 -> 1.9.15p5
  2024-03-08 11:09   ` [ptxdist] [PATCH v2] " Andreas Helmcke
@ 2024-03-15  6:14     ` Michael Olbrich
  2024-03-15 11:46       ` [ptxdist] [PATCH v3] " Andreas Helmcke
  0 siblings, 1 reply; 7+ messages in thread
From: Michael Olbrich @ 2024-03-15  6:14 UTC (permalink / raw)
  To: Andreas Helmcke; +Cc: ptxdist

On Fri, Mar 08, 2024 at 12:09:43PM +0100, Andreas Helmcke wrote:
> various bugfixes, including fixes for CVE-2023-42465 and CVE-2023-42456
> 
> Full info: https://www.sudo.ws/releases/stable/#1.9.15p5
> 
> Signed-off-by: Andreas Helmcke <ahelmcke@ela-soft.com>
> ---
> v2: reverted accidentlly changed url and option
> 
>  rules/sudo.make | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/rules/sudo.make b/rules/sudo.make
> index 93b92ad69..83c3e7f8e 100644
> --- a/rules/sudo.make
> +++ b/rules/sudo.make
> @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_SUDO) += sudo
>  #
>  # Paths and names
>  #
> -SUDO_VERSION   := 1.9.14p3
> -SUDO_MD5       := 4cc21cf7c9a89290b230954aed0d1e11
> +SUDO_VERSION   := 1.9.15p5
> +SUDO_MD5       := 4166279cb188ecb6641c7a2ba5f68270

The patch does not apply. Something turned all tabs into spaces when you
sent this mail.

Michael

>  SUDO           := sudo-$(SUDO_VERSION)
>  SUDO_SUFFIX    := tar.gz
>  SUDO_URL       := \
> -- 
> 2.40.1
> 
> 
> 

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |



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

* [ptxdist] [PATCH v3] sudo: version bump 1.9.14p3 -> 1.9.15p5
  2024-03-15  6:14     ` Michael Olbrich
@ 2024-03-15 11:46       ` Andreas Helmcke
  2024-03-23  8:59         ` [ptxdist] [APPLIED] " Michael Olbrich
  0 siblings, 1 reply; 7+ messages in thread
From: Andreas Helmcke @ 2024-03-15 11:46 UTC (permalink / raw)
  To: ptxdist; +Cc: Andreas Helmcke

various bugfixes, including fixes for CVE-2023-42465 and CVE-2023-42456

Full info: https://www.sudo.ws/releases/stable/#1.9.15p5

Signed-off-by: Andreas Helmcke <ahelmcke@ela-soft.com>
---
 v3: resend with git send-mail because thunderbird broke the format
 v2: reverted accidentlly changed url and option 

 rules/sudo.make | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rules/sudo.make b/rules/sudo.make
index 93b92ad69..83c3e7f8e 100644
--- a/rules/sudo.make
+++ b/rules/sudo.make
@@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_SUDO) += sudo
 #
 # Paths and names
 #
-SUDO_VERSION	:= 1.9.14p3
-SUDO_MD5	:= 4cc21cf7c9a89290b230954aed0d1e11
+SUDO_VERSION	:= 1.9.15p5
+SUDO_MD5	:= 4166279cb188ecb6641c7a2ba5f68270
 SUDO		:= sudo-$(SUDO_VERSION)
 SUDO_SUFFIX	:= tar.gz
 SUDO_URL	:= \
-- 
2.40.1




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

* Re: [ptxdist] [APPLIED] sudo: version bump 1.9.14p3 -> 1.9.15p5
  2024-03-15 11:46       ` [ptxdist] [PATCH v3] " Andreas Helmcke
@ 2024-03-23  8:59         ` Michael Olbrich
  0 siblings, 0 replies; 7+ messages in thread
From: Michael Olbrich @ 2024-03-23  8:59 UTC (permalink / raw)
  To: ptxdist; +Cc: Andreas Helmcke

Thanks, applied as 3848434d4b788e61c318bf103c7491d3c44f878e.

Michael

[sent from post-receive hook]

On Sat, 23 Mar 2024 09:59:32 +0100, Andreas Helmcke <ahelmcke@ela-soft.com> wrote:
> various bugfixes, including fixes for CVE-2023-42465 and CVE-2023-42456
> 
> Full info: https://www.sudo.ws/releases/stable/#1.9.15p5
> 
> Signed-off-by: Andreas Helmcke <ahelmcke@ela-soft.com>
> Message-Id: <20240315114653.15820-1-ahelmcke@ela-soft.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/sudo.make b/rules/sudo.make
> index 93b92ad69c16..83c3e7f8e89b 100644
> --- a/rules/sudo.make
> +++ b/rules/sudo.make
> @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_SUDO) += sudo
>  #
>  # Paths and names
>  #
> -SUDO_VERSION	:= 1.9.14p3
> -SUDO_MD5	:= 4cc21cf7c9a89290b230954aed0d1e11
> +SUDO_VERSION	:= 1.9.15p5
> +SUDO_MD5	:= 4166279cb188ecb6641c7a2ba5f68270
>  SUDO		:= sudo-$(SUDO_VERSION)
>  SUDO_SUFFIX	:= tar.gz
>  SUDO_URL	:= \



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

end of thread, other threads:[~2024-03-23  9:00 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-25 15:12 [ptxdist] [PATCH] sudo: version bump 1.9.14p3 -> 1.9.15p5 Andreas Helmcke
2024-03-08  8:25 ` Michael Olbrich
2024-03-08 10:57   ` Andreas Helmcke
2024-03-08 11:09   ` [ptxdist] [PATCH v2] " Andreas Helmcke
2024-03-15  6:14     ` Michael Olbrich
2024-03-15 11:46       ` [ptxdist] [PATCH v3] " Andreas Helmcke
2024-03-23  8:59         ` [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