From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: python-updates Date: Thu, 04 Aug 2016 22:56:51 +0200 Message-ID: <87oa58s164.fsf_-_@gnu.org> References: <20160703055839.GB4135@debian-netbook> <20160703201517.GA26140@jasmine> <87furgo9vn.fsf@gnu.org> <20160711155047.GA4630@jasmine> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50231) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bVPhM-0006gp-Tb for guix-devel@gnu.org; Thu, 04 Aug 2016 16:57:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bVPhH-0006qj-Se for guix-devel@gnu.org; Thu, 04 Aug 2016 16:57:00 -0400 In-Reply-To: <20160711155047.GA4630@jasmine> (Leo Famulari's message of "Mon, 11 Jul 2016 11:50:47 -0400") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Leo Famulari Cc: guix-devel@gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello! Leo Famulari skribis: > On Mon, Jul 11, 2016 at 10:29:48AM +0200, Ludovic Court=C3=A8s wrote: >> The =E2=80=98python-updates=E2=80=99 branch would seem right to me. > > The brand new python-updates branch is now ready for more Python-related > commits! The build farm is almost idle now, apart from a long list of mips64el builds. So I think it=E2=80=99s time to merge master in python-updates and= get it built! Thoughts? I think it=E2=80=99s a good idea to upgrade Guile 2.0 at the same time, sin= ce that=E2=80=99s a safe upgrade. The patch below does that, but note that it= does not change =E2=80=98guile-2.0/fixed=E2=80=99, which is the Guile we use in = all the derivations; that one we=E2=80=99ll upgrade in core-updates. Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index f50605a..f39e768 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -130,14 +130,14 @@ without requiring the source code to be rewritten.") (define-public guile-2.0 (package (name "guile") - (version "2.0.11") + (version "2.0.12") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/guile/guile-" version ".tar.xz")) (sha256 (base32 - "1qh3j7308qvsjgwf7h94yqgckpbgz2k3yqdkzsyhqcafvfka9l5f")) + "1sdpjq0jf1h65w29q0zprj4x6kdp5jskkvbnlwphy9lvdxrqg0fy")) (patches (search-patches "guile-arm-fixes.patch")))) (build-system gnu-build-system) (native-inputs `(("pkgconfig" ,pkg-config))) @@ -199,7 +199,17 @@ without requiring the source code to be rewritten.") (define-public guile-2.0/fixed ;; A package of Guile 2.0 that's rarely changed. It is the one used ;; in the `base' module, and thus changing it entails a full rebuild. - guile-2.0) + (package + (inherit guile-2.0) + (version "2.0.11") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnu/guile/guile-" version + ".tar.xz")) + (sha256 + (base32 + "1qh3j7308qvsjgwf7h94yqgckpbgz2k3yqdkzsyhqcafvfka9l5f")) + (patches (search-patches "guile-arm-fixes.patch")))))) (define-public guile-next (package (inherit guile-2.0) --=-=-=--