From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christopher Allan Webber Subject: Re: [PATCH] gnu: Add geiser-next. Date: Fri, 29 Apr 2016 18:35:43 -0500 Message-ID: <87y47wxa28.fsf@dustycloud.org> References: <87ziscxa48.fsf@dustycloud.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55554) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1awHx7-0004G0-Oo for guix-devel@gnu.org; Fri, 29 Apr 2016 19:36:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1awHwv-0005SB-IY for guix-devel@gnu.org; Fri, 29 Apr 2016 19:36:00 -0400 Received: from dustycloud.org ([50.116.34.160]:60848) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1awHwv-0005MZ-DV for guix-devel@gnu.org; Fri, 29 Apr 2016 19:35:53 -0400 Received: from oolong (localhost [127.0.0.1]) by dustycloud.org (Postfix) with ESMTPS id 664AE266FB for ; Fri, 29 Apr 2016 19:35:44 -0400 (EDT) In-reply-to: <87ziscxa48.fsf@dustycloud.org> 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: guix-devel@gnu.org --=-=-= Content-Type: text/plain Christopher Allan Webber writes: > If you want to hack trying out guile-next, you can't use the geiser > package. Fortunately, the git version of geiser supports guile-next / > 2.2 / (2.1?) so, here's geiser-next! > > Not sure if other people care enough to have a geiser-next package, but > since we're Guile based here, I figured other people might want to be > hacking trying things out with the latest and greatest. > > - Chris Annnnd guess who forgot the patch! --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-Add-geiser-next.patch Content-Transfer-Encoding: quoted-printable >From bbc1f68204318d79ece3fa46ed71d7c21d6ec8a2 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Fri, 29 Apr 2016 17:53:50 -0500 Subject: [PATCH] gnu: Add geiser-next. Also, I previously committed to this repository in 2015; add self to copy= right headers for that year too. * gnu/packages/emacs.scm (geiser-next): New variable. --- gnu/packages/emacs.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 11010b2..7f904c0 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -7,6 +7,7 @@ ;;; Copyright =C2=A9 2015, 2016 Ricardo Wurmus ;;; Copyright =C2=A9 2016 Nils Gillmann ;;; Copyright =C2=A9 2016 Chris Marusich +;;; Copyright =C2=A9 2015, 2016 Christopher Allan Webber ;;; ;;; This file is part of GNU Guix. ;;; @@ -260,6 +261,33 @@ implementation, Emacs and, ultimately, the schemer, = giving them access to live metadata.") (license license:bsd-3))) =20 +(define-public geiser-next + ;; Geiser's upcoming version supports guile-next, and 0.8.1 does not. + ;; When the next Geiser release comes out, we can remove this. + (package (inherit geiser) + (name "geiser-next") + (version "20160428.4c8b3de") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jaor/geiser.git") + (commit "4c8b3dee30ce7258602bef356337def95fcccd7e"))= ) + (sha256 + (base32 + "1nr183438z52v62amq38ngd83nwgkxzgssya19f7v6f47im0b95j"))= )) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("texinfo" ,texinfo) + ,@(package-native-inputs geiser))) + (arguments + (substitute-keyword-arguments (package-arguments geiser) + ((#:phases phases) + `(modify-phases ,phases + (add-after 'unpack 'autogen + (lambda _ + (zero? (system* "sh" "autogen.sh")))))))))) + (define-public paredit (package (name "paredit") --=20 2.7.4 --=-=-=--