* [bug#46010] [PATCH] gnu: dnsmasq: Update to 2.83 [security fixes].
@ 2021-01-20 23:44 Pierre Langlois
2021-01-21 0:11 ` Leo Famulari
0 siblings, 1 reply; 3+ messages in thread
From: Pierre Langlois @ 2021-01-20 23:44 UTC (permalink / raw)
To: 46010
[-- Attachment #1.1: Type: text/plain, Size: 425 bytes --]
Hi Guix!
There was a security advisory on dnsmasq recently [0], so here's a patch
to address those by updating to the latest release.
I thought I'd post the patch on here first just in case it's already in
someone's pipeline, in which case I can drop it. If not I can push this
shortly, I assume it's not controversial :-).
Thanks!
Pierre
[0]: http://lists.thekelleys.org.uk/pipermail/dnsmasq-discuss/2021q1/014599.html
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 519 bytes --]
[-- Attachment #2: 0001-gnu-dnsmasq-Update-to-2.83-security-fixes.patch --]
[-- Type: text/x-patch, Size: 1909 bytes --]
From 319503d962de459aa6a357c3efd183d04f3bff6b Mon Sep 17 00:00:00 2001
From: Pierre Langlois <pierre.langlois@gmx.com>
Date: Wed, 20 Jan 2021 23:35:49 +0000
Subject: [PATCH] gnu: dnsmasq: Update to 2.83 [security fixes].
Includes fixes for CVE-2020-25681, CVE-2020-25682, CVE-2020-25683,
CVE-2020-25684, CVE-2020-25685, CVE-2020-25686, CVE-2020-25687.
* gnu/packages/dns.scm (dnsmasq): Update to 2.83.
---
gnu/packages/dns.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm
index 5bb725ae92..a1ed730f62 100644
--- a/gnu/packages/dns.scm
+++ b/gnu/packages/dns.scm
@@ -13,7 +13,7 @@
;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
;;; Copyright © 2019 Chris Marusich <cmmarusich@gmail.com>
;;; Copyright © 2019 Rutger Helling <rhelling@mykolab.com>
-;;; Copyright © 2020 Pierre Langlois <pierre.langlois@gmx.com>
+;;; Copyright © 2020, 2021 Pierre Langlois <pierre.langlois@gmx.com>
;;; Copyright © 2020 Arun Isaac <arunisaac@systemreboot.net>
;;; Copyright © 2020 Leo Famulari <leo@famulari.name>
;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
@@ -277,7 +277,7 @@ prompt the user with the option to go with insecure DNS only.")
(define-public dnsmasq
(package
(name "dnsmasq")
- (version "2.82")
+ (version "2.83")
(source (origin
(method url-fetch)
(uri (string-append
@@ -285,7 +285,7 @@ prompt the user with the option to go with insecure DNS only.")
version ".tar.xz"))
(sha256
(base32
- "0cn1xd1s6xs78jmrmwjnh9m6w3q38pk6dyqy2phvasqiyd33cll4"))))
+ "1sjamz1v588qf35m8z6wcqkjk5w12bqhj7d7p48dj8jyn3lgghgz"))))
(build-system gnu-build-system)
(native-inputs
`(("pkg-config" ,pkg-config)))
--
2.30.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [bug#46010] [PATCH] gnu: dnsmasq: Update to 2.83 [security fixes].
2021-01-20 23:44 [bug#46010] [PATCH] gnu: dnsmasq: Update to 2.83 [security fixes] Pierre Langlois
@ 2021-01-21 0:11 ` Leo Famulari
2021-01-21 9:17 ` bug#46010: " Pierre Langlois
0 siblings, 1 reply; 3+ messages in thread
From: Leo Famulari @ 2021-01-21 0:11 UTC (permalink / raw)
To: Pierre Langlois; +Cc: 46010
[-- Attachment #1: Type: text/plain, Size: 440 bytes --]
On Wed, Jan 20, 2021 at 11:44:21PM +0000, Pierre Langlois wrote:
> Hi Guix!
>
> There was a security advisory on dnsmasq recently [0], so here's a patch
> to address those by updating to the latest release.
>
> I thought I'd post the patch on here first just in case it's already in
> someone's pipeline, in which case I can drop it. If not I can push this
> shortly, I assume it's not controversial :-).
Thanks, please push!
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* bug#46010: [PATCH] gnu: dnsmasq: Update to 2.83 [security fixes].
2021-01-21 0:11 ` Leo Famulari
@ 2021-01-21 9:17 ` Pierre Langlois
0 siblings, 0 replies; 3+ messages in thread
From: Pierre Langlois @ 2021-01-21 9:17 UTC (permalink / raw)
To: Leo Famulari; +Cc: 46010-done
[-- Attachment #1: Type: text/plain, Size: 563 bytes --]
Leo Famulari writes:
> On Wed, Jan 20, 2021 at 11:44:21PM +0000, Pierre Langlois wrote:
>> Hi Guix!
>>
>> There was a security advisory on dnsmasq recently [0], so here's a patch
>> to address those by updating to the latest release.
>>
>> I thought I'd post the patch on here first just in case it's already in
>> someone's pipeline, in which case I can drop it. If not I can push this
>> shortly, I assume it's not controversial :-).
>
> Thanks, please push!
Done, pushed with a1819473c3a9692e0b1a2fd9fbb9cb642a387521.
Thanks!
Pierre
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 519 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-01-21 9:18 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-20 23:44 [bug#46010] [PATCH] gnu: dnsmasq: Update to 2.83 [security fixes] Pierre Langlois
2021-01-21 0:11 ` Leo Famulari
2021-01-21 9:17 ` bug#46010: " Pierre Langlois
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).