all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#29960] [PATCH] gnu: Add emacs-evil-quickscope.
@ 2018-01-03  6:18 Arun Isaac
  2018-01-03 18:57 ` Catonano
  0 siblings, 1 reply; 6+ messages in thread
From: Arun Isaac @ 2018-01-03  6:18 UTC (permalink / raw)
  To: 29960

* gnu/packages/emacs.scm (emacs-evil-quickscope): New variable.
---
 gnu/packages/emacs.scm | 37 ++++++++++++++++++++++++++++++++++++-
 1 file changed, 36 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 538c79a50..ebee6f61b 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -16,7 +16,7 @@
 ;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
 ;;; Copyright © 2016, 2017 Nicolas Goaziou <mail@nicolasgoaziou.fr>
 ;;; Copyright © 2016, 2017 Alex Vong <alexvong1995@gmail.com>
-;;; Copyright © 2016, 2017 Arun Isaac <arunisaac@systemreboot.net>
+;;; Copyright © 2016, 2017, 2018 Arun Isaac <arunisaac@systemreboot.net>
 ;;; Copyright © 2017 Christopher Baines <mail@cbaines.net>
 ;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
 ;;; Copyright © 2017 Clément Lassieur <clement@lassieur.org>
@@ -6599,3 +6599,38 @@ evil mode using @kbd{%}.  It is a port of @code{matchit} for Vim.")
 makes Evil play nice with Smartparens.  Evil is an Emacs minor mode that
 emulates Vim features and provides Vim-like key bindings.")
     (license license:gpl3+)))
+
+(define-public emacs-evil-quickscope
+  (package
+    (name "emacs-evil-quickscope")
+    (version "0.1.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/blorbx/evil-quickscope/archive/v"
+                           version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1r26a412mmar7vbf89zcifswiwpdg30mjzj32xdyqss57aqi83ma"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-evil" ,emacs-evil)))
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-before 'install 'check
+           (lambda* (#:key inputs #:allow-other-keys)
+             (invoke "emacs" "--batch" "-L"
+                     (string-append (assoc-ref inputs "emacs-evil")
+                                    "/share/emacs/site-lisp/guix.d/evil-"
+                                    ,(package-version emacs-evil))
+                     "-l" "evil-quickscope-tests.el"
+                     "-f" "ert-run-tests-batch-and-exit"))))))
+    (home-page "https://github.com/blorbx/evil-quickscope")
+    (synopsis "Target highlighting for emacs evil-mode f,F,t and T commands")
+    (description "@code{emacs-evil-quickscope} highlights targets for Evil
+mode’s f,F,t,T keys, allowing for quick navigation within a line.  It is a
+port of quick-scope for Vim.  Evil is an Emacs minor mode that emulates Vim
+features and provides Vim-like key bindings.")
+    (license license:gpl3+)))
-- 
2.15.1

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

* [bug#29960] [PATCH] gnu: Add emacs-evil-quickscope.
  2018-01-03  6:18 [bug#29960] [PATCH] gnu: Add emacs-evil-quickscope Arun Isaac
@ 2018-01-03 18:57 ` Catonano
  2018-01-03 19:31   ` Leo Famulari
                     ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Catonano @ 2018-01-03 18:57 UTC (permalink / raw)
  To: Arun Isaac; +Cc: 29960

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

2018-01-03 7:18 GMT+01:00 Arun Isaac <arunisaac@systemreboot.net>:

> * gnu/packages/emacs.scm (emacs-evil-quickscope): New variable.
> ---
>  gnu/packages/emacs.scm | 37 ++++++++++++++++++++++++++++++++++++-
>  1 file changed, 36 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
> index 538c79a50..ebee6f61b 100644
> --- a/gnu/packages/emacs.scm
> +++ b/gnu/packages/emacs.scm
> @@ -16,7 +16,7 @@
>  ;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
>  ;;; Copyright © 2016, 2017 Nicolas Goaziou <mail@nicolasgoaziou.fr>
>  ;;; Copyright © 2016, 2017 Alex Vong <alexvong1995@gmail.com>
> -;;; Copyright © 2016, 2017 Arun Isaac <arunisaac@systemreboot.net>
> +;;; Copyright © 2016, 2017, 2018 Arun Isaac <arunisaac@systemreboot.net>
>  ;;; Copyright © 2017 Christopher Baines <mail@cbaines.net>
>  ;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
>  ;;; Copyright © 2017 Clément Lassieur <clement@lassieur.org>
> @@ -6599,3 +6599,38 @@ evil mode using @kbd{%}.  It is a port of
> @code{matchit} for Vim.")
>  makes Evil play nice with Smartparens.  Evil is an Emacs minor mode that
>  emulates Vim features and provides Vim-like key bindings.")
>      (license license:gpl3+)))
> +
> +(define-public emacs-evil-quickscope
>

LGTM

Admittedly, I didn't build and lint this one

As for running it, I couldn't because, as I said, I'm too old to learn new
key combinations

But at a first glance it seems ok, I trust Arun that this runs fine

The license is actually GPL3+, as you can see here
https://github.com/blorbx/evil-quickscope/blob/master/LICENSE

The description mentions Evil and explains what it is

So as ar as I'm concerned, this is ok

Arun, you can commit on your own, you wouldn't need to post these little
things here ;-)

Ciao

[-- Attachment #2: Type: text/html, Size: 2855 bytes --]

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

* [bug#29960] [PATCH] gnu: Add emacs-evil-quickscope.
  2018-01-03 18:57 ` Catonano
@ 2018-01-03 19:31   ` Leo Famulari
  2018-01-04  7:21   ` Arun Isaac
       [not found]   ` <d9fdc09b.AEEASwz1jWYAAAAAAAAAAAOu6r8AAAACwQwAAAAAAAW9WABaTdYY@mailjet.com>
  2 siblings, 0 replies; 6+ messages in thread
From: Leo Famulari @ 2018-01-03 19:31 UTC (permalink / raw)
  To: Catonano; +Cc: 29960

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

On Wed, Jan 03, 2018 at 07:57:16PM +0100, Catonano wrote:
> 2018-01-03 7:18 GMT+01:00 Arun Isaac <arunisaac@systemreboot.net>:
> > * gnu/packages/emacs.scm (emacs-evil-quickscope): New variable.
> 
> LGTM

> Arun, you can commit on your own, you wouldn't need to post these little
> things here ;-)

Agreed :)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* [bug#29960] [PATCH] gnu: Add emacs-evil-quickscope.
  2018-01-03 18:57 ` Catonano
  2018-01-03 19:31   ` Leo Famulari
@ 2018-01-04  7:21   ` Arun Isaac
       [not found]   ` <d9fdc09b.AEEASwz1jWYAAAAAAAAAAAOu6r8AAAACwQwAAAAAAAW9WABaTdYY@mailjet.com>
  2 siblings, 0 replies; 6+ messages in thread
From: Arun Isaac @ 2018-01-04  7:21 UTC (permalink / raw)
  To: Catonano; +Cc: 29960


> The license is actually GPL3+, as you can see here
> https://github.com/blorbx/evil-quickscope/blob/master/LICENSE

Just confused... Isn't that what I've already put in the patch?

> Arun, you can commit on your own, you wouldn't need to post these little
> things here ;-)

Yes, these are simple packages and I could commit directly. But, I post
here just to get a quick sanity check on the summary, description,
license, etc. I'll probably mention that next time so the reviewer's job
will be easier. :-)

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

* [bug#29960] [PATCH] gnu: Add emacs-evil-quickscope.
       [not found]   ` <d9fdc09b.AEEASwz1jWYAAAAAAAAAAAOu6r8AAAACwQwAAAAAAAW9WABaTdYY@mailjet.com>
@ 2018-01-04  8:11     ` Catonano
  2018-01-04  8:48       ` bug#29960: " Arun Isaac
  0 siblings, 1 reply; 6+ messages in thread
From: Catonano @ 2018-01-04  8:11 UTC (permalink / raw)
  To: Arun Isaac; +Cc: 29960

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

2018-01-04 8:21 GMT+01:00 Arun Isaac <arunisaac@systemreboot.net>:

>
> > The license is actually GPL3+, as you can see here
> > https://github.com/blorbx/evil-quickscope/blob/master/LICENSE
>
> Just confused... Isn't that what I've already put in the patch?
>

Yes, it is !

I was just showing that I checked the license ;-)

> Arun, you can commit on your own, you wouldn't need to post these little
> > things here ;-)
>
> Yes, these are simple packages and I could commit directly. But, I post
> here just to get a quick sanity check on the summary, description,
> license, etc. I'll probably mention that next time so the reviewer's job
> will be easier. :-)
>

Ah ok. Well, you got waht you wanted then :-)

LGTM !

Ciao

[-- Attachment #2: Type: text/html, Size: 1643 bytes --]

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

* bug#29960: [PATCH] gnu: Add emacs-evil-quickscope.
  2018-01-04  8:11     ` Catonano
@ 2018-01-04  8:48       ` Arun Isaac
  0 siblings, 0 replies; 6+ messages in thread
From: Arun Isaac @ 2018-01-04  8:48 UTC (permalink / raw)
  To: Catonano; +Cc: 29960-done

Catonano <catonano@gmail.com> writes:

> I was just showing that I checked the license ;-)

Ok, ok. I understand now. :-)

>> Arun, you can commit on your own, you wouldn't need to post these little
>> > things here ;-)
>>
>> Yes, these are simple packages and I could commit directly. But, I post
>> here just to get a quick sanity check on the summary, description,
>> license, etc. I'll probably mention that next time so the reviewer's job
>> will be easier. :-)
>
> Ah ok. Well, you got waht you wanted then :-)

Yes, I got what I wanted.

> LGTM !

Pushed, thanks!

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

end of thread, other threads:[~2018-01-04  8:50 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-03  6:18 [bug#29960] [PATCH] gnu: Add emacs-evil-quickscope Arun Isaac
2018-01-03 18:57 ` Catonano
2018-01-03 19:31   ` Leo Famulari
2018-01-04  7:21   ` Arun Isaac
     [not found]   ` <d9fdc09b.AEEASwz1jWYAAAAAAAAAAAOu6r8AAAACwQwAAAAAAAW9WABaTdYY@mailjet.com>
2018-01-04  8:11     ` Catonano
2018-01-04  8:48       ` bug#29960: " Arun Isaac

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.