From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40619) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ctByN-0006wJ-24 for guix-patches@gnu.org; Wed, 29 Mar 2017 07:41:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ctByI-0008P6-9A for guix-patches@gnu.org; Wed, 29 Mar 2017 07:41:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:52002) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ctByI-0008P2-52 for guix-patches@gnu.org; Wed, 29 Mar 2017 07:41:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ctByH-0006Ev-RV for guix-patches@gnu.org; Wed, 29 Mar 2017 07:41:01 -0400 Subject: bug#26268: [PATCH] gnu: Add emacs-idle-highlight. Resent-Message-ID: MIME-Version: 1.0 In-Reply-To: <20170328201231.24928-1-va511e@yahoo.com> References: <20170326233912.23146-1-va511e@yahoo.com> <20170328201231.24928-1-va511e@yahoo.com> From: Catonano Date: Wed, 29 Mar 2017 13:40:04 +0200 Message-ID: Content-Type: multipart/alternative; boundary=001a11422abc9d55e6054bdd097a 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: Vasile Dumitrascu Cc: 26268@debbugs.gnu.org --001a11422abc9d55e6054bdd097a Content-Type: text/plain; charset=UTF-8 Hi Vasile, 2017-03-28 22:12 GMT+02:00 Vasile Dumitrascu : > * gnu/packages/emacs.scm (emacs-idle-highlight): New variable. > --- > gnu/packages/emacs.scm | 23 +++++++++++++++++++++++ > 1 file changed, 23 insertions(+) > > diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm > index 1becc28dd..358748cbf 100644 > --- a/gnu/packages/emacs.scm > +++ b/gnu/packages/emacs.scm > @@ -3962,3 +3962,26 @@ abbreviation and automatically expand it into > function templates.") > (description "@code{emacs-memoize} is an Emacs library for > memoizing functions.") > (license license:unlicense))) > + > +(define-public emacs-idle-highlight > + (package > + (name "emacs-idle-highlight") > + (version "1.1.3") > + (source > + (origin > + (method url-fetch) > + (uri (string-append > + "https://github.com/nonsequitur/idle-highlight-mode/archive/ > " > + version ".tar.gz")) > + (file-name (string-append name "-" version ".tar.gz")) > + (sha256 > + (base32 > + "0kdv10hrgqpskjh0zvpnzwlkn5bccnqxas62gkws6njln57bf8nl")))) > + (build-system emacs-build-system) > + (home-page "https://www.emacswiki.org/emacs/IdleHighlight") > + (synopsis "Highlights all occurences of the word the point is on") > + (description > + "This Emacs package provides @code{idle-highlight-mode} that sets > + an idle timer to highlight all occurences in the buffer of the word under > + the point.") > + (license license:gpl3+)) > After the correction with the github url, I installed this package and it works. It beautifully highlights words occurrences So, as far as I'm concerned, this can be merged. As a side note, you sent some one more patch after this one and that depends on this one so it can't be applied After that you sent a couple more in the same way This requires the reviewers to reconstruct the chain in order to apply the patches. For the future, it would be preferable if you would send a first message to guix-patches to open a ticket and then reply to that first message with your patches attached. Alternatively, you can use this command line (suggested by Marius Bakke): git format-patch -n origin/master --stdout > series.patch in this way, ALL the patches in your branch will be contained in a single file (series.patch) You can send that single file to guix-patches Thank you and welcome ! --001a11422abc9d55e6054bdd097a Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
Hi Vasile,

2017-03-28 22:12 GMT+02:00 Vasile Dumitrascu <va511e@yahoo.co= m>:
* gnu/= packages/emacs.scm (emacs-idle-highlight): New variable.
---
=C2=A0gnu/packages/emacs.scm | 23 +++++++++++++++++++++++
=C2=A01 file changed, 23 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 1becc28dd..358748cbf 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -3962,3 +3962,26 @@ abbreviation and automatically expand it into functi= on templates.")
=C2=A0 =C2=A0 (description "@code{emacs-memoize} is a= n Emacs library for
=C2=A0memoizing functions.")
=C2=A0 =C2=A0 (license license:unlicense)))
+
+(define-public emacs-idle-highlight
+=C2=A0 (package
+=C2=A0 =C2=A0 (name "emacs-idle-highlight")
+=C2=A0 =C2=A0 (version "1.1.3")
+=C2=A0 =C2=A0 (source
+=C2=A0 =C2=A0 =C2=A0(origin
+=C2=A0 =C2=A0 =C2=A0 =C2=A0(method url-fetch)
+=C2=A0 =C2=A0 =C2=A0 =C2=A0(uri (string-append
+=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0"https://github.com/nonsequitur/idle-highlight-mode/archive/"
+=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0version ".tar.gz"= ;))
+=C2=A0 =C2=A0 =C2=A0 =C2=A0(file-name (string-append name "-" ve= rsion ".tar.gz"))
+=C2=A0 =C2=A0 =C2=A0 =C2=A0(sha256
+=C2=A0 =C2=A0 =C2=A0 =C2=A0 (base32
+=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0"0kdv10hrgqpskjh0zvpnzwlkn5bcc= nqxas62gkws6njln57bf8nl"))))
+=C2=A0 =C2=A0 (build-system emacs-build-system)
+=C2=A0 =C2=A0 (home-page "https://www.emacswiki.o= rg/emacs/IdleHighlight")
+=C2=A0 =C2=A0 (synopsis "Highlights all occurences o= f the word the point is on")
+=C2=A0 =C2=A0 (description
+=C2=A0 =C2=A0 =C2=A0"This Emacs package provides @code{idle-hi= ghlight-mode} that sets
+ an idle timer to highlight all occurences in the buffer of the word under=
+ the point.")
+=C2=A0 =C2=A0 (license license:gpl= 3+))

After the correction with = the github url, I installed this package and it works. It beautifully highl= ights words occurrences

So, as far as I'm concerned, = this can be merged.

As a side note, you sent some one mor= e patch after this one and that depends on this one so it can't be appl= ied

After that you sent a couple more in the same way
=

This requires the reviewers to reconstruct the ch= ain in order to apply the patches.

For the future, it wou= ld be preferable if you would send a first message to guix-patches to open = a ticket and then reply to that first message with your patches attached.
Alternatively, you can use this command line (suggested by= Marius Bakke):

git format-patch -n origin/master --stdou= t > series.patch

in this way, ALL the patches in your = branch will be contained in a single file (series.patch)

=
You can send that single file to guix-patches

= Thank you and welcome !
--001a11422abc9d55e6054bdd097a--