From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christopher Allan Webber Subject: [PATCH] gnu: guile: Add guile-next Date: Wed, 16 Sep 2015 15:52:28 -0500 Message-ID: <87eghyaxda.fsf@dustycloud.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43649) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZcJtL-0003un-7U for guix-devel@gnu.org; Wed, 16 Sep 2015 17:05:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZcJtG-0004aD-Q7 for guix-devel@gnu.org; Wed, 16 Sep 2015 17:05:22 -0400 Received: from dustycloud.org ([2600:3c02::f03c:91ff:feae:cb51]:55020) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZcJtG-0004Zu-Jd for guix-devel@gnu.org; Wed, 16 Sep 2015 17:05:18 -0400 Received: from earlgrey (localhost [127.0.0.1]) by dustycloud.org (Postfix) with ESMTPS id 5E28D26701 for ; Wed, 16 Sep 2015 17:05:17 -0400 (EDT) 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel --=-=-= Content-Type: text/plain Hello all! I've written a patch here to add "guile-next", which is the bleeding edge version of Guile... basically Guile master! Additionally, since guile-for-guile-emacs is based off of this, the definitions were very similar... I've taken the liberty of converting guile-for-guile-emacs to inherit from guile-next, thusly! Let me know if everything looks GOOD-ENOUGH? - Chris --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-guile-Add-guile-next.patch >From ab833212f496767435998f8779fd15dec93f67ae Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Wed, 16 Sep 2015 15:49:06 -0500 Subject: [PATCH] gnu: guile: Add guile-next * gnu/packages/guile.scm (guile-next): New variable. * gnu/packages/guile.scm (guile-for-guile-emacs): Adjust to inherit from guile-next rather than guile-2.0 --- gnu/packages/guile.scm | 27 +++++++++++++++++++++------ 1 file changed, 21 insertions(+), 6 deletions(-) diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index 7b4f4c6..cccd9ef 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -185,18 +185,19 @@ without requiring the source code to be rewritten.") ;; in the `base' module, and thus changing it entails a full rebuild. guile-2.0) -(define-public guile-for-guile-emacs +(define-public guile-next (package (inherit guile-2.0) - (name "guile-for-guile-emacs") - (version "20150510.d8d9a8d") + (name "guile-next") + (version "20150815.00884bb") (source (origin (method git-fetch) (uri (git-reference - (url "git://git.hcoop.net/git/bpt/guile.git") - (commit "d8d9a8da05ec876acba81a559798eb5eeceb5a17"))) + (url "git://git.sv.gnu.org/guile.git") + (commit "00884bb79fff41fdf5f22f24a74e366a94a14c9b"))) (sha256 (base32 - "00sprsshy16y8pxjy126hr2adqcvvzzz96hjyjwgg8swva1qh6b0")))) + "0qk8m9aq3i7pzw6npim58xmsvjqfz5kl1pkyb6b43awn2vydydi5")))) + (arguments (substitute-keyword-arguments `(;; Tests aren't passing for now. ;; Obviously we should re-enable this! @@ -212,6 +213,7 @@ without requiring the source code to be rewritten.") (substitute* "build-aux/git-version-gen" (("#!/bin/sh") (string-append "#!" (which "sh")))) #t)))))) + (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake) @@ -221,6 +223,19 @@ without requiring the source code to be rewritten.") ("gettext" ,gnu-gettext) ,@(package-native-inputs guile-2.0))))) +(define-public guile-for-guile-emacs + (package (inherit guile-next) + (name "guile-for-guile-emacs") + (version "20150510.d8d9a8d") + (source (origin + (method git-fetch) + (uri (git-reference + (url "git://git.hcoop.net/git/bpt/guile.git") + (commit "d8d9a8da05ec876acba81a559798eb5eeceb5a17"))) + (sha256 + (base32 + "00sprsshy16y8pxjy126hr2adqcvvzzz96hjyjwgg8swva1qh6b0")))))) + ;;; ;;; Extensions. -- 2.1.4 --=-=-=--