all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH 1/6] gnu: Add emacs-scheme-complete.
@ 2015-12-30 17:32 Federico Beffa
  2015-12-31  9:17 ` Federico Beffa
  0 siblings, 1 reply; 3+ messages in thread
From: Federico Beffa @ 2015-12-30 17:32 UTC (permalink / raw)
  To: Guix-devel

[-- Attachment #1: Type: text/plain, Size: 279 bytes --]

Hi,

I'm not sure about the license of this package. It just sates:

;;; This code is written by Alex Shinn and placed in the Public
;;; Domain.  All warranties are disclaimed.

This is the same declaration (and author) as the file
'match.upstream.scm' in guile.


Regards,
Fede

[-- Attachment #2: 0001-gnu-Add-emacs-scheme-complete.patch --]
[-- Type: text/x-diff, Size: 3549 bytes --]

From fc9b0980ab81ae89a80fe1892e928853723d9809 Mon Sep 17 00:00:00 2001
From: Federico Beffa <beffa@fbengineering.ch>
Date: Thu, 24 Dec 2015 11:53:12 +0100
Subject: [PATCH 1/6] gnu: Add emacs-scheme-complete.

* gnu/packages/emacs.scm (emacs-scheme-complete): New variable.
* gnu/packages/patches/emacs-scheme-complete-scheme-r5rs-info.patch: New patch.
* gnu-system.am (dist_patch_DATA): Add the new patch.
---
 gnu-system.am                                      |  1 +
 gnu/packages/emacs.scm                             | 26 ++++++++++++++++++++++
 .../emacs-scheme-complete-scheme-r5rs-info.patch   | 11 +++++++++
 3 files changed, 38 insertions(+)
 create mode 100644 gnu/packages/patches/emacs-scheme-complete-scheme-r5rs-info.patch

diff --git a/gnu-system.am b/gnu-system.am
index 0039246..83a7e92 100644
--- a/gnu-system.am
+++ b/gnu-system.am
@@ -449,6 +449,7 @@ dist_patch_DATA =						\
   gnu/packages/patches/duplicity-test_selection-tmp.patch	\
   gnu/packages/patches/elfutils-tests-ptrace.patch		\
   gnu/packages/patches/emacs-exec-path.patch			\
+  gnu/packages/patches/emacs-scheme-complete-scheme-r5rs-info.patch	\
   gnu/packages/patches/eudev-rules-directory.patch		\
   gnu/packages/patches/evilwm-lost-focus-bug.patch		\
   gnu/packages/patches/expat-CVE-2015-1283.patch		\
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 7d95f55..28b3ca0 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -1177,3 +1177,29 @@ for quotation marks, dashes, and ellipses.  For example, typing @kbd{\"}
 automatically inserts a Unicode opening or closing quotation mark, depending
 on context.")
     (license license:gpl3+)))
+
+(define-public emacs-scheme-complete
+  (package
+    (name "emacs-scheme-complete")
+    (version "20151223.9b5cf224bf")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/ashinn/scheme-complete.git")
+             (commit "9b5cf224bf2a5994bc6d5b152ff487517f1a9bb5")))
+       (sha256
+        (base32
+         "141wn9l0m33w0g3dqmx8nxbfdny1r5xbr6ak61rsz21bk0qafs7x"))
+       (patches
+        (list (search-patch "emacs-scheme-complete-scheme-r5rs-info.patch")))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/ashinn/scheme-complete")
+    (synopsis
+     "Smart tab completion for Scheme in Emacs")
+    (description
+     "This file provides a single function, `scheme-smart-complete',
+which you can use for intelligent, context-sensitive completion for any Scheme
+implementation in Emacs.  To use it just load this file and bind that function
+to a key in your preferred mode.")
+    (license license:gpl3+))) ;; check license
diff --git a/gnu/packages/patches/emacs-scheme-complete-scheme-r5rs-info.patch b/gnu/packages/patches/emacs-scheme-complete-scheme-r5rs-info.patch
new file mode 100644
index 0000000..3e5d071
--- /dev/null
+++ b/gnu/packages/patches/emacs-scheme-complete-scheme-r5rs-info.patch
@@ -0,0 +1,11 @@
+--- scheme-complete-master/scheme-complete.el.orig	2015-12-25 21:59:09.896909029 +0100
++++ scheme-complete-master/scheme-complete.el	2015-12-25 21:59:17.924993998 +0100
+@@ -591,7 +591,7 @@
+            '((exact->inexact (lambda (z) z))
+              (inexact->exact (lambda (z) z)))
+            (mapcar #'(lambda (x)
+-                       (list x (scheme-env-lookup *scheme-r7rs-info* x)))
++                       (scheme-env-lookup *scheme-r7rs-info* x))
+                    *scheme-r5rs-bindings*))))
+   *scheme-r5rs-info*)
+ 
-- 
2.6.3


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-01-05 21:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-30 17:32 [PATCH 1/6] gnu: Add emacs-scheme-complete Federico Beffa
2015-12-31  9:17 ` Federico Beffa
2016-01-05 21:50   ` Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.