From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:45248) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jNzUN-0005sm-AM for guix-patches@gnu.org; Mon, 13 Apr 2020 09:51:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jNzUM-0004js-A4 for guix-patches@gnu.org; Mon, 13 Apr 2020 09:51:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:47867) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jNzUM-0004jl-6M for guix-patches@gnu.org; Mon, 13 Apr 2020 09:51:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jNzUM-0000iP-5I for guix-patches@gnu.org; Mon, 13 Apr 2020 09:51:02 -0400 Subject: [bug#40598] [PATCH] gnu: dnsmasq: Update to 2.81. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:45173) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jNzU4-0005pt-TJ for guix-patches@gnu.org; Mon, 13 Apr 2020 09:50:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jNzU3-0004SF-GM for guix-patches@gnu.org; Mon, 13 Apr 2020 09:50:44 -0400 Received: from mout.gmx.net ([212.227.17.21]:47079) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jNzU3-0004P4-0N for guix-patches@gnu.org; Mon, 13 Apr 2020 09:50:43 -0400 Received: from e119807-lin ([77.136.24.112]) by mail.gmx.com (mrgmx104 [212.227.17.174]) with ESMTPSA (Nemesis) id 1N5VD8-1jDaCA0mHS-016yl9 for ; Mon, 13 Apr 2020 15:50:40 +0200 From: Pierre Langlois Date: Mon, 13 Apr 2020 15:50:36 +0200 Message-ID: <874ktnbikz.fsf@gmx.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 40598@debbugs.gnu.org --=-=-= Content-Type: text/plain Hello Guix, Just noticed a new version of dnsmasq was released, here's a patch :-). --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: attachment; filename=0001-gnu-dnsmasq-Update-to-2.81.patch Content-Transfer-Encoding: quoted-printable >From 85452386076962113cf9a337f3ce452e013ffe90 Mon Sep 17 00:00:00 2001 From: Pierre Langlois Date: Mon, 13 Apr 2020 15:47:03 +0200 Subject: [PATCH] gnu: dnsmasq: Update to 2.81. * gnu/packages/dns.scm (dnsmasq): Update to 2.81. --- gnu/packages/dns.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm index af45ec2a82..77f27fddfb 100644 --- a/gnu/packages/dns.scm +++ b/gnu/packages/dns.scm @@ -13,6 +13,7 @@ ;;; Copyright =C2=A9 2019 Mathieu Othacehe ;;; Copyright =C2=A9 2019 Chris Marusich ;;; Copyright =C2=A9 2019 Rutger Helling +;;; Copyright =C2=A9 2020 Pierre Langlois ;;; ;;; This file is part of GNU Guix. ;;; @@ -75,7 +76,7 @@ (define-public dnsmasq (package (name "dnsmasq") - (version "2.80") + (version "2.81") (source (origin (method url-fetch) (uri (string-append @@ -83,7 +84,7 @@ version ".tar.xz")) (sha256 (base32 - "1fv3g8vikj3sn37x1j6qsywn09w1jipvlv34j3q5qrljbrwa5ayd")))) + "1yzq6anwgr5rlnwydpszb51cyhp2vjq29b24ck19flbwac1sk73l")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config))) --=20 2.26.0 --=-=-= Content-Type: text/plain Thanks! Pierre --=-=-=--