From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 03 01:19:44 2018 Received: (at submit) by debbugs.gnu.org; 3 Jan 2018 06:19:44 +0000 Received: from localhost ([127.0.0.1]:33753 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eWcOn-0002w8-P1 for submit@debbugs.gnu.org; Wed, 03 Jan 2018 01:19:44 -0500 Received: from eggs.gnu.org ([208.118.235.92]:45301) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eWcOm-0002vv-SL for submit@debbugs.gnu.org; Wed, 03 Jan 2018 01:19:37 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eWcOg-0006SR-Ki for submit@debbugs.gnu.org; Wed, 03 Jan 2018 01:19:31 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:50649) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eWcOg-0006S4-IZ for submit@debbugs.gnu.org; Wed, 03 Jan 2018 01:19:30 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36254) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eWcOf-0002Bt-5b for guix-patches@gnu.org; Wed, 03 Jan 2018 01:19:30 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eWcOc-0006Qk-1l for guix-patches@gnu.org; Wed, 03 Jan 2018 01:19:29 -0500 Received: from [2001:19f0:5:274f:4827:c39:448f:6777] (port=60514 helo=vultr.systemreboot.net) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eWcOb-0006Ok-DM for guix-patches@gnu.org; Wed, 03 Jan 2018 01:19:25 -0500 Received: from [117.192.99.164] (helo=localhost.localdomain) by systemreboot.net with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim 4.90) (envelope-from ) id 1eWcOT-0002oD-Fa; Wed, 03 Jan 2018 11:49:17 +0530 From: Arun Isaac To: guix-patches@gnu.org Subject: [PATCH] gnu: Add emacs-evil-quickscope. Date: Wed, 3 Jan 2018 11:48:57 +0530 Message-Id: <20180103061857.31496-1-arunisaac@systemreboot.net> X-Mailer: git-send-email 2.15.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.1 (----) X-Debbugs-Envelope-To: submit Cc: Arun Isaac X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.9 (/) * 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 ;;; Copyright © 2016, 2017 Nicolas Goaziou ;;; Copyright © 2016, 2017 Alex Vong -;;; Copyright © 2016, 2017 Arun Isaac +;;; Copyright © 2016, 2017, 2018 Arun Isaac ;;; Copyright © 2017 Christopher Baines ;;; Copyright © 2017 Mathieu Othacehe ;;; Copyright © 2017 Clément Lassieur @@ -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 From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 03 13:57:29 2018 Received: (at 29960) by debbugs.gnu.org; 3 Jan 2018 18:57:30 +0000 Received: from localhost ([127.0.0.1]:34633 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eWoE8-0000Bs-Un for submit@debbugs.gnu.org; Wed, 03 Jan 2018 13:57:29 -0500 Received: from mail-yb0-f195.google.com ([209.85.213.195]:42118) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eWoE6-0000Bc-M2 for 29960@debbugs.gnu.org; Wed, 03 Jan 2018 13:57:23 -0500 Received: by mail-yb0-f195.google.com with SMTP id q3so958833ybg.9 for <29960@debbugs.gnu.org>; Wed, 03 Jan 2018 10:57:22 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=V7udT48Zx9q/kWD+RNdd5uPG2gEqQ2Kic0u1z7TNvAA=; b=fhItpR8HtYKlBtRyNmDqLntAHTMzYAICBmEKeOmB9tex1C3dHgeecJ7JhuecelLPb0 ESk/zAy02Kfv+sR8Q15KA9CSTVjZpF0jFbvtP9KOWZDMQfl3X9r9EBXkRlLh5ak2C6C8 ij4d/tF15BcGbNiTa7rZUKM9SucgHK3N2/XW6/nEdodotE7EjMkIlXdYoH7g0aXGCOj9 plYvLPCYdK/1I4UcniClePDf5tyqKrQwHo+6/wbf8BSHGeJdeRGayCK8Nc+nYcC/UdKW IUPdY4vll/Q7LFDULc7nk9TpslaNdhlohkV5zDkL/IqxLXHjvgoY6p1nh8MW6iD+BJSx SeIw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=V7udT48Zx9q/kWD+RNdd5uPG2gEqQ2Kic0u1z7TNvAA=; b=kYiixjyo5A4R/UX68J4kG57P+wcMhBs7mynF0FKDhdV6GO8EOddYAfkrQ2ZWSrhDbi 9bJ8OKaZNl50fU0aqyN1hMACBVybzHRe2/WKSNSiZshSlNMRTI0fcbSMx/pI+TCTgU9k aKtvig6XWuisDjFWZp9oVX29B/LYj0Bzqzi8w3kmSRXa2t9wpq3x5i555RHMZO0FWOVE HtKEWNhrlZrxATSzPQIRluCE5kuX6Zt83/EPL0WUk82taSTQjjhyz6ZjDLMcQeTLfjga EfVtHNdm/2WHfMqr+TA8eWGwCh6SgmA5fDoUz/e5F5ecZ7HNGxHWrrO6XPrCEERRuZGL aAOA== X-Gm-Message-State: AKGB3mLwjOHMm6mjQ7ODCTv7dr6ceZNMC0rR00Kjbuxiqvyw0kxjWh9R /bkV76uLofu/nUrJIURNIeIw7CjWPp2KOEyqvA== X-Google-Smtp-Source: ACJfBosmyw2sEypmEWcGuKnMOJQG/5rm2y6FB0lRSBrfRt4F+CBtn/mSj8wgabelP6u76fH90r3uDhRFWBBon1k2rXw= X-Received: by 10.37.144.4 with SMTP id s4mr2215323ybl.165.1515005836881; Wed, 03 Jan 2018 10:57:16 -0800 (PST) MIME-Version: 1.0 Received: by 10.13.232.131 with HTTP; Wed, 3 Jan 2018 10:57:16 -0800 (PST) In-Reply-To: <20180103061857.31496-1-arunisaac@systemreboot.net> References: <20180103061857.31496-1-arunisaac@systemreboot.net> From: Catonano Date: Wed, 3 Jan 2018 19:57:16 +0100 Message-ID: Subject: Re: [bug#29960] [PATCH] gnu: Add emacs-evil-quickscope. To: Arun Isaac Content-Type: multipart/alternative; boundary="089e082c84a4bd75a30561e3c82f" X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 29960 Cc: 29960@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.0 (/) --089e082c84a4bd75a30561e3c82f Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable 2018-01-03 7:18 GMT+01:00 Arun Isaac : > * 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 =C2=A9 2016 Alex Griffin > ;;; Copyright =C2=A9 2016, 2017 Nicolas Goaziou > ;;; Copyright =C2=A9 2016, 2017 Alex Vong > -;;; Copyright =C2=A9 2016, 2017 Arun Isaac > +;;; Copyright =C2=A9 2016, 2017, 2018 Arun Isaac > ;;; Copyright =C2=A9 2017 Christopher Baines > ;;; Copyright =C2=A9 2017 Mathieu Othacehe > ;;; Copyright =C2=A9 2017 Cl=C3=A9ment Lassieur > @@ -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 --089e082c84a4bd75a30561e3c82f Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable


2018-01-03 7:18 GMT+01:00 Arun Isaac <arunisaac@systemreboot.= net>:
* gnu/packages/emacs.= scm (emacs-evil-quickscope): New variable.
---
=C2=A0gnu/packages/emacs.scm | 37 ++++++++++++++++++++++++++++++++++++= -
=C2=A01 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 @@
=C2=A0;;; Copyright =C2=A9 2016 Alex Griffin <a@ajgrf.com>
=C2=A0;;; Copyright =C2=A9 2016, 2017 Nicolas Goaziou <mail@nicolasgoaziou.fr>
=C2=A0;;; Copyright =C2=A9 2016, 2017 Alex Vong <alexvong1995@gmail.com>
-;;; Copyright =C2=A9 2016, 2017 Arun Isaac <arunisaac@systemreboot.net>
+;;; Copyright =C2=A9 2016, 2017, 2018 Arun Isaac <arunisaac@systemreboot.net>
=C2=A0;;; Copyright =C2=A9 2017 Christopher Baines <mail@cbaines.net>
=C2=A0;;; Copyright =C2=A9 2017 Mathieu Othacehe <m.othacehe@gmail.com>
=C2=A0;;; Copyright =C2=A9 2017 Cl=C3=A9ment Lassieur <clement@lassieur.org>
@@ -6599,3 +6599,38 @@ evil mode using @kbd{%}.=C2=A0 It is a port of @code= {matchit} for Vim.")
=C2=A0makes Evil play nice with Smartparens.=C2=A0 Evil is an Emacs minor m= ode that
=C2=A0emulates Vim features and provides Vim-like key bindings.")
=C2=A0 =C2=A0 =C2=A0(license license:gpl3+)))
+
+(define-public emacs-evil-quickscope

L= GTM

Admittedly, I didn't build and lint this one
<= br>
As for running it, I couldn't because, as I said, I'm= too old to learn new key combinations

But at a first gla= nce it seems ok, I trust Arun that this runs fine

The lic= ense is actually GPL3+, as you can see here https://github.com/blorbx/evil-q= uickscope/blob/master/LICENSE

The description mention= s Evil and explains what it is

So as ar as I'm concer= ned, this is ok
=C2=A0
Arun, you can commit on = your own, you wouldn't need to post these little things here ;-)
Ciao
--089e082c84a4bd75a30561e3c82f-- From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 03 14:31:46 2018 Received: (at 29960) by debbugs.gnu.org; 3 Jan 2018 19:31:46 +0000 Received: from localhost ([127.0.0.1]:34656 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eWolO-00015E-4O for submit@debbugs.gnu.org; Wed, 03 Jan 2018 14:31:46 -0500 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:47687) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eWolL-000155-V5 for 29960@debbugs.gnu.org; Wed, 03 Jan 2018 14:31:44 -0500 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id 6CCD220B97; Wed, 3 Jan 2018 14:31:43 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute4.internal (MEProxy); Wed, 03 Jan 2018 14:31:43 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=cc:content-type:date:from:in-reply-to:message-id:mime-version :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc; s= mesmtp; bh=BG6CvucSWy/m2wU8+YTjTCyYjdUpkZBty2UVht5uzOs=; b=zWhLk FWVYZ9H9Mi37q0onczDhjECBvBv3O43sDxqPHt6Gmk8HxZAi7dByh0HRBeFIl3Hf KJAC07sVNOeHr+3g7mVmj0Slfl7y0ZImtLLV+zi8Qbgz/S81IldZ5txixLcPPMDb 16L7Kj1efd3xzuutJNM5PHnrOj5a41/NJ/o/sM= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=fm1; bh=BG6CvucSWy/m2wU8+YTjTCyYjdUpk ZBty2UVht5uzOs=; b=k5s9BWGurzkvq6ni0VW1PDBnT+IzIPrIURNg4df6GrI8I 8YWs9vUY4odBlLegUjaQAQWkvtTN/yCLG90xMiJpvOSVrUwlgbND8f5X2jWYbFWW Oxb5iUb3k47rxwvrmR3Qz9GNVKTfDd4jSSBbDTHaBK0yPW2GKFkgLLQ6OODyrp8Z 2icKWnJMW2jGdSF54+I1RWQaQksXUX9KgmptN/MsR28YknVwtDgdYJqC0pydKNqF uUU6/bpPUssH743wW5xhsEBOszaPlP7UlSZx7UMVabuOXBD8+Y9ARUPwThNfYGcT X5wDyZ9iwvDJGFlG1vkkf9OSYh9KqaXHKtEblkvnw== X-ME-Sender: Received: from localhost (c-73-165-108-70.hsd1.pa.comcast.net [73.165.108.70]) by mail.messagingengine.com (Postfix) with ESMTPA id E4B1C7E0ED; Wed, 3 Jan 2018 14:31:42 -0500 (EST) Date: Wed, 3 Jan 2018 14:31:41 -0500 From: Leo Famulari To: Catonano Subject: Re: [bug#29960] [PATCH] gnu: Add emacs-evil-quickscope. Message-ID: <20180103193141.GA4289@jasmine.lan> References: <20180103061857.31496-1-arunisaac@systemreboot.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="C7zPtVaVf+AK4Oqc" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.9.2 (2017-12-15) X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 29960 Cc: 29960@debbugs.gnu.org, Arun Isaac X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) --C7zPtVaVf+AK4Oqc Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jan 03, 2018 at 07:57:16PM +0100, Catonano wrote: > 2018-01-03 7:18 GMT+01:00 Arun Isaac : > > * gnu/packages/emacs.scm (emacs-evil-quickscope): New variable. >=20 > LGTM > Arun, you can commit on your own, you wouldn't need to post these little > things here ;-) Agreed :) --C7zPtVaVf+AK4Oqc Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEsFFZSPHn08G5gDigJkb6MLrKfwgFAlpNL50ACgkQJkb6MLrK fwhEWxAAk6yQnFjWddaBhGXsK7R/Vaxu6ICTaoWTOZSmV7P2kgyUe7335KPH7dra SGo6KfU/3ecz7qR1JIFETifhPA4hyOnUF4+ehKaZoVYptxMNozwP6MrVfossC+// co+JrMegAVMgKIIlHF3Zp86kvB1UQ7hEj1S5qPo+q5MXQpI7DsvG0neXL5sGpPP5 Nlhi+7TpOhRFTIp87H9gkjMDs7sG2DXZ76ImxLYisAaLqekQtynPEcGOzCeL9Lqj MJ1WKAXi6DqwaW58tPBP7+j25r6DA9wh6igl+H0vJtwfWYU+F3Fv29XX/3+RPOFg JG1tEZ2pW63XtyITRykL866/hgZ6dPghKlY6OLMoU1tcn3ZQdGV77dBY3yNmv91R NEDnKKm6AzouEvOzsrtW8xQMT8eygdsw0nMBfgF1UJzhkpvTJjBD+lBWkLEMgjpQ hhZkJGxl8TzD1aQZ+23KiPNERCxK8kGCH22vubDD+bGiaLPdKJYzm3Wy2WULVSum spKY5cFhzTiJ0X+SvS0/qRErdJxUH0jgaK6daCEMTsV47tcgz3UDO8rGH4TYUyZM 2Vpk7Hcy8JBIINyD6KmpHe9l+g07NqyTUYnjaD9JEmz4SpXflymHx7/l53Dm9BOk vhJy0CaeiWgvwVJHyON4mnXwUJ1DYxAOo5GD1FlxtPJCDhF0CIA= =bmuE -----END PGP SIGNATURE----- --C7zPtVaVf+AK4Oqc-- From debbugs-submit-bounces@debbugs.gnu.org Thu Jan 04 02:22:00 2018 Received: (at 29960) by debbugs.gnu.org; 4 Jan 2018 07:22:00 +0000 Received: from localhost ([127.0.0.1]:35002 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eWzqg-0004Iz-DS for submit@debbugs.gnu.org; Thu, 04 Jan 2018 02:22:00 -0500 Received: from vultr.systemreboot.net ([45.77.148.100]:49430) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eWzqe-0004Im-6t for 29960@debbugs.gnu.org; Thu, 04 Jan 2018 02:21:57 -0500 Received: from [14.139.128.15] (helo=steel) by systemreboot.net with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.90) (envelope-from ) id 1eWzqQ-0000qB-Qc; Thu, 04 Jan 2018 12:51:43 +0530 From: Arun Isaac To: Catonano Subject: Re: [bug#29960] [PATCH] gnu: Add emacs-evil-quickscope. In-Reply-To: References: <20180103061857.31496-1-arunisaac@systemreboot.net> Date: Thu, 04 Jan 2018 12:51:35 +0530 Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 29960 Cc: 29960@debbugs.gnu.org, Leo Famulari X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) > 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. :-) From debbugs-submit-bounces@debbugs.gnu.org Thu Jan 04 03:11:24 2018 Received: (at 29960) by debbugs.gnu.org; 4 Jan 2018 08:11:24 +0000 Received: from localhost ([127.0.0.1]:35011 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eX0cW-0005Pj-2j for submit@debbugs.gnu.org; Thu, 04 Jan 2018 03:11:24 -0500 Received: from mail-yw0-f169.google.com ([209.85.161.169]:43963) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eX0cQ-0005PU-U9 for 29960@debbugs.gnu.org; Thu, 04 Jan 2018 03:11:19 -0500 Received: by mail-yw0-f169.google.com with SMTP id n25so308858ywh.10 for <29960@debbugs.gnu.org>; Thu, 04 Jan 2018 00:11:18 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=SJa8YKHSCJXv6hkMbmAfx3q0r7QuHK8+uKnGpMkB8t0=; b=og2WGr3U+fLP5CkVStT4pvwnCkvoLxMO9iv7F2gkUUDHNYSAOeVzdxeGBBMxnmvVMl 8SWsEsmD5rpptBrDJEMKhqqwHO2r6d7FiwtRfHt7/Qz8Y9COcuyhWY24bIcAVPwTiIKw 4gyNQxGM5YVyQNqgHn2VxiJfYsKIzTDsdetJmQ0CUEQelZxB+LA84HZX0QtUW/G0+M7S BkiLiSysKHfR56KKtqikTHRjtMXtCOQY56ih9+EDnQog6/X4VredA1rbKtrDYaxphTrO tqSSnMagScb/cybbdv/WM6FJLL9pbAklsVwR20hrOAyepJakPzHm440+7TMTLEC/XfO4 /ydQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=SJa8YKHSCJXv6hkMbmAfx3q0r7QuHK8+uKnGpMkB8t0=; b=f7f7zgU53qJotjVtrdnH6FPqBqF46XmNcGI338T1WtB5VEV2bUPtIYWBKfkvhur73V LoNWTiP6l274dhYO/WxBpNOEtWcORfz5Zvi5ogJp/lCgonoZGmypoeG+20Kueg+I0tmn Tp4rSQLspGbV0WrGY46GKH74CTbIEZS1Qxw3C+fKNpoaSgFQtjiq013RJarnQygImZpK WnNrwEfF+ABmJRBV9Z3pIiV8b3zU9x8lyW7r9OYe2GiBLbM4d9i7vdEFQQuLUa38n4Tc 5SEbdTppDF/JmXHV9wVAnMNqCOH5Rl5C/AXaJmTQ2sTVSa6iExXq8vjyaJUbTxsMPqoq kqsg== X-Gm-Message-State: AKGB3mKAPjz4rZGU6Ti8nAAofo5sDL0QBNBtHnYhwkGoM1z7sUpjbNpR hLrvP2Fm0uRHUJaXeSPfqI4pR9Cq6xpbjyCrng== X-Google-Smtp-Source: ACJfBotsDbG341GBM7LJVtvcKdoixrEmYp+qCpC6M81hpErRqhMzhyKxQsxKUHHuAMBp8Ce5VR8rYg+stsJYpida+ig= X-Received: by 10.129.159.214 with SMTP id w205mr3492798ywg.142.1515053473198; Thu, 04 Jan 2018 00:11:13 -0800 (PST) MIME-Version: 1.0 Received: by 10.13.232.131 with HTTP; Thu, 4 Jan 2018 00:11:12 -0800 (PST) In-Reply-To: References: <20180103061857.31496-1-arunisaac@systemreboot.net> From: Catonano Date: Thu, 4 Jan 2018 09:11:12 +0100 Message-ID: Subject: Re: [bug#29960] [PATCH] gnu: Add emacs-evil-quickscope. To: Arun Isaac Content-Type: multipart/alternative; boundary="94eb2c0b732815f9b90561eee064" X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 29960 Cc: 29960@debbugs.gnu.org, Leo Famulari X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) --94eb2c0b732815f9b90561eee064 Content-Type: text/plain; charset="UTF-8" 2018-01-04 8:21 GMT+01:00 Arun Isaac : > > > 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 --94eb2c0b732815f9b90561eee064 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable


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/evi= l-quickscope/blob/master/LICENSE

Just confused... Isn't that what I've already put in the pat= ch?

Yes, it is !

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

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

Yes, these are simple packages and I could commit directly. But, I p= ost
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
--94eb2c0b732815f9b90561eee064-- From debbugs-submit-bounces@debbugs.gnu.org Thu Jan 04 03:49:08 2018 Received: (at 29960-done) by debbugs.gnu.org; 4 Jan 2018 08:49:08 +0000 Received: from localhost ([127.0.0.1]:35044 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eX1D2-0006Ru-DP for submit@debbugs.gnu.org; Thu, 04 Jan 2018 03:49:08 -0500 Received: from vultr.systemreboot.net ([45.77.148.100]:49576) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eX1Cy-0006RL-HC for 29960-done@debbugs.gnu.org; Thu, 04 Jan 2018 03:49:05 -0500 Received: from [117.192.98.226] (helo=steel) by systemreboot.net with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.90) (envelope-from ) id 1eX1Cn-0001Bq-JJ; Thu, 04 Jan 2018 14:18:53 +0530 From: Arun Isaac To: Catonano Subject: Re: [bug#29960] [PATCH] gnu: Add emacs-evil-quickscope. In-Reply-To: References: <20180103061857.31496-1-arunisaac@systemreboot.net> Date: Thu, 04 Jan 2018 14:18:51 +0530 Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 29960-done Cc: 29960-done@debbugs.gnu.org, Leo Famulari X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) Catonano 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! From unknown Tue Jun 24 05:12:22 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 01 Feb 2018 12:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator