unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] gnu: Add emacs-auto-complete
@ 2016-08-29  0:32 ng0
  2016-08-29  9:14 ` Alex Kost
  0 siblings, 1 reply; 4+ messages in thread
From: ng0 @ 2016-08-29  0:32 UTC (permalink / raw)
  To: guix-devel

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: 0004-gnu-Add-emacs-auto-complete.patch --]
[-- Type: text/x-patch, Size: 2023 bytes --]

From a415af4e28055c98737aec967921a04390180c57 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@we.make.ritual.n0.is>
Date: Mon, 29 Aug 2016 00:16:52 +0000
Subject: [PATCH 4/4] gnu: Add emacs-auto-complete.

* gnu/packages/emacs.scm (emacs-auto-complete): 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 311f484..c6d2333 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -3051,3 +3051,32 @@ Flx has support for ido (interactively do things) through flx-ido.")
        "Cyberpunk color theme for the emacs 24+ built-in color theme support
 known loosely as deftheme.  Many mode-specific customizations are included.")
       (license license:gpl3+))))
+
+(define-public emacs-auto-complete
+  (let ((upstream-name "auto-complete"))
+    (package
+      (name "emacs-auto-complete")
+      (version "1.5.1")
+      (source
+       (origin
+         (method url-fetch)
+         (uri (string-append "https://github.com/" upstream-name "/"
+                             upstream-name "/archive/v" version ".tar.gz"))
+         (sha256
+          (base32
+           "1jvq4lj00hwml75lpmlciazy8f3bbg13gffsfnl835p4qd8l7yqv"))
+         (file-name (string-append name "-" version ".tar.gz"))))
+      (build-system emacs-build-system)
+      (propagated-inputs
+       `(("emacs-popup" ,emacs-popup)))
+      (native-inputs
+       `(("emacs" ,emacs-minimal)))
+      (home-page "https://github.com/auto-complete/auto-complete")
+      (synopsis "Intelligent auto-completion extension for Emacs")
+      (description
+       "Auto-Complete is an intelligent auto-completion extension for Emacs.
+It extends the standard Emacs completion interface and provides an environment
+that allows users to concentrate more on their own work. Its features are:
+a visual interface, reduce overhead of completion by using statistic method,
+extensibility.")
+      (license license:gpl3+))))
-- 
2.9.3


[-- Attachment #2: Type: text/plain, Size: 70 bytes --]


-- 
ng0
For non-prism friendly talk find me on http://www.psyced.org

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

* Re: [PATCH] gnu: Add emacs-auto-complete
  2016-08-29  0:32 [PATCH] gnu: Add emacs-auto-complete ng0
@ 2016-08-29  9:14 ` Alex Kost
  2016-08-29 12:32   ` ng0
  0 siblings, 1 reply; 4+ messages in thread
From: Alex Kost @ 2016-08-29  9:14 UTC (permalink / raw)
  To: ng0; +Cc: guix-devel

ng0 (2016-08-29 03:32 +0300) wrote:

> From a415af4e28055c98737aec967921a04390180c57 Mon Sep 17 00:00:00 2001
> From: ng0 <ng0@we.make.ritual.n0.is>
> Date: Mon, 29 Aug 2016 00:16:52 +0000
> Subject: [PATCH 4/4] gnu: Add emacs-auto-complete.
>
> * gnu/packages/emacs.scm (emacs-auto-complete): 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 311f484..c6d2333 100644
> --- a/gnu/packages/emacs.scm
> +++ b/gnu/packages/emacs.scm
> @@ -3051,3 +3051,32 @@ Flx has support for ido (interactively do things) through flx-ido.")
>         "Cyberpunk color theme for the emacs 24+ built-in color theme support
>  known loosely as deftheme.  Many mode-specific customizations are included.")
>        (license license:gpl3+))))
> +
> +(define-public emacs-auto-complete
> +  (let ((upstream-name "auto-complete"))
> +    (package
> +      (name "emacs-auto-complete")
> +      (version "1.5.1")
> +      (source
> +       (origin
> +         (method url-fetch)
> +         (uri (string-append "https://github.com/" upstream-name "/"
> +                             upstream-name "/archive/v" version ".tar.gz"))
> +         (sha256
> +          (base32
> +           "1jvq4lj00hwml75lpmlciazy8f3bbg13gffsfnl835p4qd8l7yqv"))
> +         (file-name (string-append name "-" version ".tar.gz"))))
> +      (build-system emacs-build-system)
> +      (propagated-inputs
> +       `(("emacs-popup" ,emacs-popup)))
> +      (native-inputs
> +       `(("emacs" ,emacs-minimal)))

This is not needed: emacs-minimal will be used by emacs-build-system
anyway.

> +      (home-page "https://github.com/auto-complete/auto-complete")
> +      (synopsis "Intelligent auto-completion extension for Emacs")
> +      (description
> +       "Auto-Complete is an intelligent auto-completion extension for Emacs.
> +It extends the standard Emacs completion interface and provides an environment
> +that allows users to concentrate more on their own work. Its features are:

Just to follow a convention: 2 spaces here ----------------^

> +a visual interface, reduce overhead of completion by using statistic method,
> +extensibility.")
> +      (license license:gpl3+))))
> -- 
>
> 2.9.3

-- 
Alex

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

* Re: [PATCH] gnu: Add emacs-auto-complete
  2016-08-29  9:14 ` Alex Kost
@ 2016-08-29 12:32   ` ng0
  2016-08-31  7:12     ` Alex Kost
  0 siblings, 1 reply; 4+ messages in thread
From: ng0 @ 2016-08-29 12:32 UTC (permalink / raw)
  To: Alex Kost; +Cc: guix-devel

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: 0004-gnu-Add-emacs-auto-complete.patch --]
[-- Type: text/x-patch, Size: 1869 bytes --]

From 14ad2ea653e3b4a2a0feed98728db4f7b1eea104 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@we.make.ritual.n0.is>
Date: Mon, 29 Aug 2016 00:16:52 +0000
Subject: [PATCH 4/4] gnu: Add emacs-auto-complete.

* gnu/packages/emacs.scm (emacs-auto-complete): New variable.
---
 gnu/packages/emacs.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 3088c0a..ad51634 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -3047,3 +3047,29 @@ Flx has support for ido (interactively do things) through flx-ido.")
      "Cyberpunk color theme for the emacs 24+ built-in color theme support
 known loosely as deftheme.  Many mode-specific customizations are included.")
     (license license:gpl3+)))
+
+(define-public emacs-auto-complete
+  (package
+    (name "emacs-auto-complete")
+    (version "1.5.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/auto-complete/"
+                           "auto-complete/archive/v" version ".tar.gz"))
+       (sha256
+        (base32
+         "1jvq4lj00hwml75lpmlciazy8f3bbg13gffsfnl835p4qd8l7yqv"))
+       (file-name (string-append name "-" version ".tar.gz"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-popup" ,emacs-popup)))
+    (home-page "https://github.com/auto-complete/auto-complete")
+    (synopsis "Intelligent auto-completion extension for Emacs")
+    (description
+     "Auto-Complete is an intelligent auto-completion extension for Emacs.
+It extends the standard Emacs completion interface and provides an environment
+that allows users to concentrate more on their own work.  Its features are:
+a visual interface, reduce overhead of completion by using statistic method,
+extensibility.")
+    (license license:gpl3+)))
-- 
2.9.3


[-- Attachment #2: Type: text/plain, Size: 70 bytes --]


-- 
ng0
For non-prism friendly talk find me on http://www.psyced.org

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

* Re: [PATCH] gnu: Add emacs-auto-complete
  2016-08-29 12:32   ` ng0
@ 2016-08-31  7:12     ` Alex Kost
  0 siblings, 0 replies; 4+ messages in thread
From: Alex Kost @ 2016-08-31  7:12 UTC (permalink / raw)
  To: ng0; +Cc: guix-devel

ng0 (2016-08-29 15:32 +0300) wrote:

> From 14ad2ea653e3b4a2a0feed98728db4f7b1eea104 Mon Sep 17 00:00:00 2001
> From: ng0 <ng0@we.make.ritual.n0.is>
> Date: Mon, 29 Aug 2016 00:16:52 +0000
> Subject: [PATCH 4/4] gnu: Add emacs-auto-complete.

Applied as 840224a, thanks!

-- 
Alex

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

end of thread, other threads:[~2016-08-31  7:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-29  0:32 [PATCH] gnu: Add emacs-auto-complete ng0
2016-08-29  9:14 ` Alex Kost
2016-08-29 12:32   ` ng0
2016-08-31  7:12     ` Alex Kost

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).