From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:54544) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jIkHa-0002ye-Rv for guix-patches@gnu.org; Sun, 29 Mar 2020 22:36:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jIkHZ-0003Ef-K3 for guix-patches@gnu.org; Sun, 29 Mar 2020 22:36:10 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:48591) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jIkHZ-0003EP-Fr for guix-patches@gnu.org; Sun, 29 Mar 2020 22:36:09 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jIkHZ-0004bv-DY for guix-patches@gnu.org; Sun, 29 Mar 2020 22:36:09 -0400 Subject: [bug#40297] [PATCH] gnu: Add emacs-next-minimal. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:46649) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jILPO-0007aS-Es for guix-patches@gnu.org; Sat, 28 Mar 2020 20:02:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jILPM-0000zo-UH for guix-patches@gnu.org; Sat, 28 Mar 2020 20:02:33 -0400 Received: from mail-pl1-x634.google.com ([2607:f8b0:4864:20::634]:43730) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jILPM-0000yX-NG for guix-patches@gnu.org; Sat, 28 Mar 2020 20:02:32 -0400 Received: by mail-pl1-x634.google.com with SMTP id v23so5094287ply.10 for ; Sat, 28 Mar 2020 17:02:32 -0700 (PDT) Received: from ecenter ([2600:1700:83b0:8bd0::6c3]) by smtp.gmail.com with ESMTPSA id t188sm6084195pfb.102.2020.03.28.17.02.30 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Sat, 28 Mar 2020 17:02:30 -0700 (PDT) From: John Soo Date: Sat, 28 Mar 2020 17:02:29 -0700 Message-ID: <87sghs2fl6.fsf@asu.edu> 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: 40297@debbugs.gnu.org --=-=-= Content-Type: text/plain Hi Guix, In preparation for the next emacs version I thought it would be good to start adding "next" versions of some emacs packages. I added this for proof-general, but there may be other needs for the minimal emacs for version 27. Thanks, John --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: attachment; filename=0001-gnu-Add-emacs-next-minimal.patch Content-Transfer-Encoding: quoted-printable Content-Description: add emacs-next-minimal. >>From 100e821af07716c463131acdb695bce630e2efa4 Mon Sep 17 00:00:00 2001 From: John Soo Date: Thu, 19 Mar 2020 10:38:15 -0700 Subject: [PATCH] gnu: Add emacs-next-minimal. * gnu/packages/emacs.scm (emacs-next-minimal): New variable. --- gnu/packages/emacs.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index ec8de7373b..5d031b9695 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -20,6 +20,7 @@ ;;; Copyright =C2=A9 2019 Valentin Ignatev ;;; Copyright =C2=A9 2019 Leo Prikler ;;; Copyright =C2=A9 2019 Amin Bandali +;;; Copyright =C2=A9 2019 John Soo ;;; ;;; This file is part of GNU Guix. ;;; @@ -354,6 +355,34 @@ languages.") (native-inputs `(("pkg-config" ,pkg-config))))) =20 +(define-public emacs-next-minimal + (package + (inherit emacs-next) + (name "emacs-next-minimal") + (synopsis (package-synopsis emacs-minimal)) + (build-system gnu-build-system) + (inputs + `(("jansson" ,jansson) + ("texinfo" ,texinfo) + ,@(package-inputs emacs-minimal))) + (native-inputs + `(("autoconf" ,autoconf) + ,@(package-native-inputs emacs-minimal))) + (arguments + (substitute-keyword-arguments (package-arguments emacs-next) + ((#:modules _) + `((guix build emacs-utils) + ,@%gnu-build-system-modules)) + ((#:imported-modules _) + `((guix build emacs-utils) + ,@%gnu-build-system-modules)) + ((#:phases phases) + `(modify-phases ,phases + (delete 'install-site-start) + (delete 'restore-emacs-pdmp))) + ((#:configure-flags flags ''()) + `(list "--with-gnutls=3Dno" "--disable-build-details")))))) + (define-public emacs-xwidgets (package (inherit emacs) --=20 2.26.0 --=-=-=--