GNU bug report logs - #29064
[PATCH] gnu: Add emacs-helm-make.

Previous Next

Package: guix-patches;

Reported by: Oleg Pykhalov <go.wigust <at> gmail.com>

Date: Mon, 30 Oct 2017 07:03:01 UTC

Severity: normal

Tags: patch

Done: Oleg Pykhalov <go.wigust <at> gmail.com>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 29064 in the body.
You can then email your comments to 29064 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#29064; Package guix-patches. (Mon, 30 Oct 2017 07:03:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Oleg Pykhalov <go.wigust <at> gmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Mon, 30 Oct 2017 07:03:01 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Oleg Pykhalov <go.wigust <at> gmail.com>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: Add emacs-helm-make.
Date: Mon, 30 Oct 2017 10:01:52 +0300
[0001-gnu-Add-emacs-helm-make.patch (text/x-patch, inline)]
From b024832116dca28c349116c6bceae855f1ac7ea4 Mon Sep 17 00:00:00 2001
From: Oleg Pykhalov <go.wigust <at> gmail.com>
Date: Mon, 30 Oct 2017 09:59:46 +0300
Subject: [PATCH] gnu: Add emacs-helm-make.

* gnu/packages/emacs.scm (emacs-helm-make): New variable.
---
 gnu/packages/emacs.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index bcfcf64db..163b13410 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -3965,6 +3965,33 @@ for search-based navigation of buffers.")
      "This Emacs library provides a Helm interface for Projectile.")
     (license license:gpl3+)))
 
+(define-public emacs-helm-make
+  (let ((commit "786104ac0c3cf4fe5b53f841eb9fe10bda2e4031")
+        (revision "1"))
+    (package
+      (name "emacs-helm-make")
+      (version (string-append "0.1.0-" revision "." (string-take commit 7)))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/abo-abo/helm-make.git")
+               (commit commit)))
+         (file-name (string-append name "-" version "-checkout"))
+         (sha256
+          (base32
+           "0qdfk0p2j8jah7m0ngy2mm7775cn779m3a84yll86wqc74g331qs"))))
+      (build-system emacs-build-system)
+      (propagated-inputs
+       `(("emacs-helm" ,emacs-helm)
+         ("emacs-projectile" ,emacs-projectile)))
+      (home-page "https://github.com/abo-abo/helm-make")
+      (synopsis "Select a Makefile target with helm")
+      (description "@code{helm-make} or @code{helm-make-projectile} will give
+you a @code{helm} selection of directory Makefile's targets.  Selecting a
+target will call @code{compile} on it.")
+      (license license:gpl3+))))
+
 (define-public emacs-cider
   (package
     (name "emacs-cider")
-- 
2.14.3





Information forwarded to guix-patches <at> gnu.org:
bug#29064; Package guix-patches. (Mon, 30 Oct 2017 16:37:01 GMT) Full text and rfc822 format available.

Message #8 received at 29064 <at> debbugs.gnu.org (full text, mbox):

From: ludo <at> gnu.org (Ludovic Courtès)
To: Oleg Pykhalov <go.wigust <at> gmail.com>
Cc: 29064 <at> debbugs.gnu.org, Ricardo Wurmus <rekado <at> elephly.net>
Subject: Re: [bug#29064] [PATCH] gnu: Add emacs-helm-make.
Date: Mon, 30 Oct 2017 17:36:37 +0100
[Message part 1 (text/plain, inline)]
Hi Oleg!

Oleg Pykhalov <go.wigust <at> gmail.com> skribis:

> From b024832116dca28c349116c6bceae855f1ac7ea4 Mon Sep 17 00:00:00 2001
> From: Oleg Pykhalov <go.wigust <at> gmail.com>
> Date: Mon, 30 Oct 2017 09:59:46 +0300
> Subject: [PATCH] gnu: Add emacs-helm-make.
>
> * gnu/packages/emacs.scm (emacs-helm-make): New variable.

LGTM!

Would you like to create an account on Savannah so we can give you
commit access?  Please make sure to add the OpenPGP key you’ll use to
sign commits to your Savannah account; when you’re done, please reply
with a signed message and tell us what your account name is.

Thanks in advance!  :-)

Ludo’.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#29064; Package guix-patches. (Mon, 30 Oct 2017 17:03:02 GMT) Full text and rfc822 format available.

Message #11 received at 29064 <at> debbugs.gnu.org (full text, mbox):

From: Leo Famulari <leo <at> famulari.name>
To: Ludovic Courtès <ludo <at> gnu.org>
Cc: 29064 <at> debbugs.gnu.org, Oleg Pykhalov <go.wigust <at> gmail.com>,
 Ricardo Wurmus <rekado <at> elephly.net>
Subject: Re: [bug#29064] [PATCH] gnu: Add emacs-helm-make.
Date: Mon, 30 Oct 2017 13:02:48 -0400
[Message part 1 (text/plain, inline)]
On Mon, Oct 30, 2017 at 05:36:37PM +0100, Ludovic Courtès wrote:
> Hi Oleg!
> 
> Oleg Pykhalov <go.wigust <at> gmail.com> skribis:
> 
> > From b024832116dca28c349116c6bceae855f1ac7ea4 Mon Sep 17 00:00:00 2001
> > From: Oleg Pykhalov <go.wigust <at> gmail.com>
> > Date: Mon, 30 Oct 2017 09:59:46 +0300
> > Subject: [PATCH] gnu: Add emacs-helm-make.
> >
> > * gnu/packages/emacs.scm (emacs-helm-make): New variable.
> 
> LGTM!
> 
> Would you like to create an account on Savannah so we can give you
> commit access?  Please make sure to add the OpenPGP key you’ll use to
> sign commits to your Savannah account; when you’re done, please reply
> with a signed message and tell us what your account name is.

Welcome! Please also be sure to read the HACKING file in the root of the
Guix repo:

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

It contains the guidelines related to pushing your changes.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#29064; Package guix-patches. (Tue, 31 Oct 2017 05:30:02 GMT) Full text and rfc822 format available.

Message #14 received at 29064 <at> debbugs.gnu.org (full text, mbox):

From: Oleg Pykhalov <go.wigust <at> gmail.com>
To: Ludovic Courtès <ludo <at> gnu.org>
Cc: 29064 <at> debbugs.gnu.org, Ricardo Wurmus <rekado <at> elephly.net>,
 Leo Famulari <leo <at> famulari.name>
Subject: Re: [bug#29064] [PATCH] gnu: Add emacs-helm-make.
Date: Tue, 31 Oct 2017 08:28:44 +0300
[Message part 1 (text/plain, inline)]
Hello,

Leo Famulari <leo <at> famulari.name> writes:

> On Mon, Oct 30, 2017 at 05:36:37PM +0100, Ludovic Courtès wrote:

>> Would you like to create an account on Savannah so we can give you
>> commit access?  Please make sure to add the OpenPGP key you’ll use to
>> sign commits to your Savannah account; when you’re done, please reply
>> with a signed message and tell us what your account name is.

Yes, I would.  Thanks for trust.  I'll do my best.

Account name: wigust

> Welcome!

Thanks.

> Please also be sure to read the HACKING file in the root of the Guix
> repo:
>
> https://git.savannah.gnu.org/cgit/guix.git/tree/HACKING
>
> It contains the guidelines related to pushing your changes.

OK.  Thanks for notice.

Oleg.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#29064; Package guix-patches. (Tue, 31 Oct 2017 07:25:02 GMT) Full text and rfc822 format available.

Message #17 received at 29064 <at> debbugs.gnu.org (full text, mbox):

From: Ricardo Wurmus <rekado <at> elephly.net>
To: Oleg Pykhalov <go.wigust <at> gmail.com>
Cc: 29064 <at> debbugs.gnu.org, Ludovic Courtès <ludo <at> gnu.org>,
 Leo Famulari <leo <at> famulari.name>
Subject: Re: [bug#29064] [PATCH] gnu: Add emacs-helm-make.
Date: Tue, 31 Oct 2017 08:24:10 +0100
Hi Oleg,

> Account name: wigust

I’ve added your account to the group.  Welcome!

-- 
Ricardo

GPG: BCA6 89B6 3655 3801 C3C6  2150 197A 5888 235F ACAC
https://elephly.net





Information forwarded to guix-patches <at> gnu.org:
bug#29064; Package guix-patches. (Tue, 31 Oct 2017 11:21:02 GMT) Full text and rfc822 format available.

Message #20 received at 29064 <at> debbugs.gnu.org (full text, mbox):

From: Oleg Pykhalov <go.wigust <at> gmail.com>
To: Ricardo Wurmus <rekado <at> elephly.net>
Cc: 29064 <at> debbugs.gnu.org, 29064-done <at> debbugs.gnu.org,
 Ludovic Courtès <ludo <at> gnu.org>,
 Leo Famulari <leo <at> famulari.name>
Subject: Re: [bug#29064] [PATCH] gnu: Add emacs-helm-make.
Date: Tue, 31 Oct 2017 14:19:48 +0300
[Message part 1 (text/plain, inline)]
Hello Ricardo,

Ricardo Wurmus <rekado <at> elephly.net> writes:

>> Account name: wigust
>
> I’ve added your account to the group.  Welcome!

Thanks!

Pushed as 2e4bb8c8173e9be80cb33f8ce53eb65a7f9ecafd

Oleg.
[signature.asc (application/pgp-signature, inline)]

Reply sent to Oleg Pykhalov <go.wigust <at> gmail.com>:
You have taken responsibility. (Tue, 31 Oct 2017 11:21:02 GMT) Full text and rfc822 format available.

Notification sent to Oleg Pykhalov <go.wigust <at> gmail.com>:
bug acknowledged by developer. (Tue, 31 Oct 2017 11:21:02 GMT) Full text and rfc822 format available.

Information forwarded to guix-patches <at> gnu.org:
bug#29064; Package guix-patches. (Wed, 01 Nov 2017 14:45:02 GMT) Full text and rfc822 format available.

Message #28 received at 29064 <at> debbugs.gnu.org (full text, mbox):

From: ludo <at> gnu.org (Ludovic Courtès)
To: Oleg Pykhalov <go.wigust <at> gmail.com>
Cc: 29064 <at> debbugs.gnu.org, Ricardo Wurmus <rekado <at> elephly.net>,
 Leo Famulari <leo <at> famulari.name>
Subject: Re: [bug#29064] [PATCH] gnu: Add emacs-helm-make.
Date: Wed, 01 Nov 2017 15:43:58 +0100
Hi Oleg,

Oleg Pykhalov <go.wigust <at> gmail.com> skribis:

> Leo Famulari <leo <at> famulari.name> writes:
>
>> On Mon, Oct 30, 2017 at 05:36:37PM +0100, Ludovic Courtès wrote:
>
>>> Would you like to create an account on Savannah so we can give you
>>> commit access?  Please make sure to add the OpenPGP key you’ll use to
>>> sign commits to your Savannah account; when you’re done, please reply
>>> with a signed message and tell us what your account name is.
>
> Yes, I would.  Thanks for trust.  I'll do my best.
>
> Account name: wigust

Awesome, thank you and welcome!

Ludo’.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Thu, 30 Nov 2017 12:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 7 years and 205 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.