From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45068) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ctCGl-0002HV-EG for guix-patches@gnu.org; Wed, 29 Mar 2017 08:00:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ctCGh-0006nP-EQ for guix-patches@gnu.org; Wed, 29 Mar 2017 08:00:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:52020) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ctCGh-0006mu-BK for guix-patches@gnu.org; Wed, 29 Mar 2017 08:00:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ctCGg-0006hE-Vd for guix-patches@gnu.org; Wed, 29 Mar 2017 08:00:03 -0400 Subject: bug#26268: [PATCH] gnu: Add emacs-idle-highlight. Resent-Message-ID: References: <20170326233912.23146-1-va511e@yahoo.com> <20170328201231.24928-1-va511e@yahoo.com> From: Vasile Dumitrascu Message-ID: Date: Wed, 29 Mar 2017 11:59:00 +0000 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit 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: Catonano Cc: 26268@debbugs.gnu.org Hi I will keep in mind your recommendation in the future. Thanks, Vasile Catonano: > 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 ! >