From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59828) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dFxil-00078P-Em for guix-patches@gnu.org; Wed, 31 May 2017 03:07:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dFxig-0004gx-Dn for guix-patches@gnu.org; Wed, 31 May 2017 03:07:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:43433) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dFxig-0004gm-AG for guix-patches@gnu.org; Wed, 31 May 2017 03:07:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dFxig-0001XQ-44 for guix-patches@gnu.org; Wed, 31 May 2017 03:07:02 -0400 Subject: bug#27160: [PATCH] gnu: scons: Update to 2.5.1. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59538) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dFxha-0006Pf-Rn for guix-patches@gnu.org; Wed, 31 May 2017 03:05:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dFxhV-0004TC-QB for guix-patches@gnu.org; Wed, 31 May 2017 03:05:54 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:33404) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dFxhV-0004T8-MY for guix-patches@gnu.org; Wed, 31 May 2017 03:05:49 -0400 Received: from ip112-245-209-87.adsl2.static.versatel.nl ([87.209.245.112]:60710 helo=antelope) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1dFxhV-0003fx-4F for guix-patches@gnu.org; Wed, 31 May 2017 03:05:49 -0400 From: Roel Janssen Date: Wed, 31 May 2017 09:05:34 +0200 Message-ID: <87shjlo69t.fsf@gnu.org> 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: 27160@debbugs.gnu.org --=-=-= Content-Type: text/plain Dear Guix, Here's a patch to update SCons. I checked to make sure that the packages that use SCons still build: - linuxdcpp - serf - aria-maestosa - pingus - metabat And that seems to be fine. Thanks! Kind regards, Roel Janssen --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-scons-Update-to-2.5.1.patch >From 54c0bec81ada0e0b035b88a41e1d33ae60ab1099 Mon Sep 17 00:00:00 2001 From: Roel Janssen Date: Wed, 31 May 2017 08:57:41 +0200 Subject: [PATCH] gnu: scons: Update to 2.5.1. * gnu/packages/python.scm: Update to 2.5.1. --- gnu/packages/python.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 3e2141e7f..7617490bd 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -1574,14 +1574,14 @@ existing ones.") (define-public scons (package (name "scons") - (version "2.3.4") + (version "2.5.1") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/scons/scons/" version "/scons-" version ".tar.gz")) (sha256 (base32 - "0hdlci43wjz8maryj83mz04ir6rwcdrrzpd7cpzvdlzycqhdfmsb")))) + "1wji1z9jdkhnmm99apx6fhld9cs52rr56aigniyrcsmlwy52298b")))) (build-system python-build-system) (arguments ;; With Python 3.x, fails to build with a syntax error. -- 2.13.0 --=-=-=--