unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#29064] [PATCH] gnu: Add emacs-helm-make.
@ 2017-10-30  7:01 Oleg Pykhalov
  2017-10-30 16:36 ` Ludovic Courtès
  0 siblings, 1 reply; 7+ messages in thread
From: Oleg Pykhalov @ 2017-10-30  7:01 UTC (permalink / raw)
  To: 29064

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: [PATCH] gnu: Add emacs-helm-make. --]
[-- Type: text/x-patch, Size: 1853 bytes --]

From b024832116dca28c349116c6bceae855f1ac7ea4 Mon Sep 17 00:00:00 2001
From: Oleg Pykhalov <go.wigust@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

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

* [bug#29064] [PATCH] gnu: Add emacs-helm-make.
  2017-10-30  7:01 [bug#29064] [PATCH] gnu: Add emacs-helm-make Oleg Pykhalov
@ 2017-10-30 16:36 ` Ludovic Courtès
  2017-10-30 17:02   ` Leo Famulari
  0 siblings, 1 reply; 7+ messages in thread
From: Ludovic Courtès @ 2017-10-30 16:36 UTC (permalink / raw)
  To: Oleg Pykhalov; +Cc: 29064, Ricardo Wurmus

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

Hi Oleg!

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

> From b024832116dca28c349116c6bceae855f1ac7ea4 Mon Sep 17 00:00:00 2001
> From: Oleg Pykhalov <go.wigust@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’.

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

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

* [bug#29064] [PATCH] gnu: Add emacs-helm-make.
  2017-10-30 16:36 ` Ludovic Courtès
@ 2017-10-30 17:02   ` Leo Famulari
  2017-10-31  5:28     ` Oleg Pykhalov
  0 siblings, 1 reply; 7+ messages in thread
From: Leo Famulari @ 2017-10-30 17:02 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 29064, Ricardo Wurmus

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

On Mon, Oct 30, 2017 at 05:36:37PM +0100, Ludovic Courtès wrote:
> Hi Oleg!
> 
> Oleg Pykhalov <go.wigust@gmail.com> skribis:
> 
> > From b024832116dca28c349116c6bceae855f1ac7ea4 Mon Sep 17 00:00:00 2001
> > From: Oleg Pykhalov <go.wigust@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.

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

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

* [bug#29064] [PATCH] gnu: Add emacs-helm-make.
  2017-10-30 17:02   ` Leo Famulari
@ 2017-10-31  5:28     ` Oleg Pykhalov
  2017-10-31  7:24       ` Ricardo Wurmus
  2017-11-01 14:43       ` Ludovic Courtès
  0 siblings, 2 replies; 7+ messages in thread
From: Oleg Pykhalov @ 2017-10-31  5:28 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 29064, Ricardo Wurmus

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

Hello,

Leo Famulari <leo@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.

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

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

* [bug#29064] [PATCH] gnu: Add emacs-helm-make.
  2017-10-31  5:28     ` Oleg Pykhalov
@ 2017-10-31  7:24       ` Ricardo Wurmus
  2017-10-31 11:19         ` Oleg Pykhalov
  2017-11-01 14:43       ` Ludovic Courtès
  1 sibling, 1 reply; 7+ messages in thread
From: Ricardo Wurmus @ 2017-10-31  7:24 UTC (permalink / raw)
  To: Oleg Pykhalov; +Cc: 29064


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

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

* [bug#29064] [PATCH] gnu: Add emacs-helm-make.
  2017-10-31  7:24       ` Ricardo Wurmus
@ 2017-10-31 11:19         ` Oleg Pykhalov
  0 siblings, 0 replies; 7+ messages in thread
From: Oleg Pykhalov @ 2017-10-31 11:19 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: 29064, 29064-done

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

Hello Ricardo,

Ricardo Wurmus <rekado@elephly.net> writes:

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

Thanks!

Pushed as 2e4bb8c8173e9be80cb33f8ce53eb65a7f9ecafd

Oleg.

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

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

* [bug#29064] [PATCH] gnu: Add emacs-helm-make.
  2017-10-31  5:28     ` Oleg Pykhalov
  2017-10-31  7:24       ` Ricardo Wurmus
@ 2017-11-01 14:43       ` Ludovic Courtès
  1 sibling, 0 replies; 7+ messages in thread
From: Ludovic Courtès @ 2017-11-01 14:43 UTC (permalink / raw)
  To: Oleg Pykhalov; +Cc: 29064, Ricardo Wurmus

Hi Oleg,

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

> Leo Famulari <leo@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’.

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

end of thread, other threads:[~2017-11-01 14:45 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-30  7:01 [bug#29064] [PATCH] gnu: Add emacs-helm-make Oleg Pykhalov
2017-10-30 16:36 ` Ludovic Courtès
2017-10-30 17:02   ` Leo Famulari
2017-10-31  5:28     ` Oleg Pykhalov
2017-10-31  7:24       ` Ricardo Wurmus
2017-10-31 11:19         ` Oleg Pykhalov
2017-11-01 14:43       ` Ludovic Courtès

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).