diff mbox series

[bug#36645] Add and update Emacs packages

Message ID CAAc=MEzHB=6syEZgPun6mEaOe0EBoo9oVcXHm9b-mCrazi9j-g@mail.gmail.com
State Accepted
Headers show
Series [bug#36645] Add and update Emacs packages | expand

Commit Message

Brian Leung July 17, 2019, 7:36 p.m. UTC
Hi Ludovic,

Sorry about that. I've rebased onto the latest master and updated; please
see attached.

Thanks,
Brian

On Wed, Jul 17, 2019 at 3:06 PM Ludovic Courtès <ludo@gnu.org> wrote:

> Hello Brian,
>
> Brian Leung <bkleung89@gmail.com> skribis:
>
> > From 7dbafd636ed8a26a0bff567efaf9835641c7ffbf Mon Sep 17 00:00:00 2001
> > From: Brian Leung <bkleung89@gmail.com>
> > Date: Sun, 14 Jul 2019 04:24:46 +0200
> > Subject: [PATCH 2/5] gnu: Add emacs-so-long.
> >
> > * gnu/packages/emacs-xyz.scm (emacs-so-long): New variable.
>
> Applied.  (I’m going to install it right away…)
>
> > From 13cc138c6912c7b0c97b4bac27a627e5d754844b Mon Sep 17 00:00:00 2001
> > From: Brian Leung <bkleung89@gmail.com>
> > Date: Sun, 14 Jul 2019 04:24:32 +0200
> > Subject: [PATCH 1/5] gnu: emacs-prescient: Update to 3.2.
> >
> > * gnu/packages/emacs-xyz.scm (emacs-prescient): Update to 3.2.
>
> Applied.
>
> > From 7d11232c51218a3a115b8bbe76ed535fc6f0b678 Mon Sep 17 00:00:00 2001
> > From: Brian Leung <bkleung89@gmail.com>
> > Date: Sun, 14 Jul 2019 04:25:05 +0200
> > Subject: [PATCH 3/5] gnu: Add emacs-github-review.
> >
> > * gnu/packages/emacs-xyz.scm (emacs-github-review): New variable.
>
> [...]
>
> > +      (synopsis "")
> > +      (description "")
>
> Could you fill out these and resend this patch (and possibly the
> following patches if necessary)?
>
> Thanks,
> Ludo’.
>

Comments

Ludovic Courtès July 18, 2019, 9:10 a.m. UTC | #1
Hi Brian,

Brian Leung <bkleung89@gmail.com> skribis:

> Sorry about that. I've rebased onto the latest master and updated; please
> see attached.

Perfect, applied!

Thanks,
Ludo’.
diff mbox series

Patch

From ab52afcfcc3b638c8d76cd8706b2297a8f08b116 Mon Sep 17 00:00:00 2001
From: Brian Leung <bkleung89@gmail.com>
Date: Wed, 17 Jul 2019 21:35:05 +0200
Subject: [PATCH 5/5] gnu: Add emacs-ccls.

* gnu/packages/emacs-xyz.scm (emacs-ccls): New variable.
---
 gnu/packages/emacs-xyz.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 62523ab261..88a4f37583 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -13791,6 +13791,34 @@  text in neighboring sections.")
 Pandoc, the document-conversion tool.")
     (license license:bsd-3)))
 
+(define-public emacs-ccls
+  (let ((commit "2764ddd57b03646f0327ea680a954b4a67450aef")
+        (version "0.1")
+        (revision "1"))
+    (package
+      (name "emacs-ccls")
+      (version (git-version version revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/MaskRay/emacs-ccls")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "16427jvzhjy8kpvlgl3qzkzppv98124hkgi8q8pv1h7m46k9lhh3"))))
+      (build-system emacs-build-system)
+      (propagated-inputs
+       `(("emacs-dash" ,emacs-dash)
+         ("emacs-projectile" ,emacs-projectile)
+         ("emacs-lsp-mode" ,emacs-lsp-mode)))
+      (home-page "https://github.com/MaskRay/emacs-ccls")
+      (synopsis "Emacs support for the @code{ccls} language server")
+      (description "This package extends @code{lsp-mode} to work with @code{C}
+and @code{C++} files through the @code{ccls} language server.")
+      (license license:bsd-3))))
+
 (define-public emacs-org-brain
   (package
     (name "emacs-org-brain")
-- 
2.22.0