unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#54827] [PATCH 0/1] gnu: Add emacs-cpreproc.
@ 2022-04-09 20:39 Fredrik Salomonsson
  2022-04-09 20:42 ` [bug#54827] [PATCH 1/1] " Fredrik Salomonsson
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Fredrik Salomonsson @ 2022-04-09 20:39 UTC (permalink / raw)
  To: 54827; +Cc: Fredrik Salomonsson

It's a simple helper tool for mostly C++ development, that I developed a few
years ago but finally got around to move out of my config. More info here
[0]. Thought I should share in case someone else might find it useful.

[0] https://git.sr.ht/~plattfot/cpreproc

Fredrik Salomonsson (1):
  gnu: Add emacs-cpreproc.

 gnu/packages/emacs-xyz.scm | 26 +++++++++++++++++++++++++-
 1 file changed, 25 insertions(+), 1 deletion(-)


base-commit: 975966ba09e24d813cf94a794c4bd6375777372a
-- 
2.34.0





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

* [bug#54827] [PATCH 1/1] gnu: Add emacs-cpreproc.
  2022-04-09 20:39 [bug#54827] [PATCH 0/1] gnu: Add emacs-cpreproc Fredrik Salomonsson
@ 2022-04-09 20:42 ` Fredrik Salomonsson
  2022-04-26 18:34 ` bug#54827: Closing issue Fredrik Salomonsson
       [not found] ` <handler.54827.D54827.165099809119467.notifdone@debbugs.gnu.org>
  2 siblings, 0 replies; 4+ messages in thread
From: Fredrik Salomonsson @ 2022-04-09 20:42 UTC (permalink / raw)
  To: 54827; +Cc: Fredrik Salomonsson

* gnu/packages/emacs-xyz.scm (emacs-cpreproc): New variable.
---
 gnu/packages/emacs-xyz.scm | 26 +++++++++++++++++++++++++-
 1 file changed, 25 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 005f34e569..761dc64144 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -74,7 +74,7 @@
 ;;; Copyright © 2020, 2021, 2022 Vinicius Monego <monego@posteo.net>
 ;;; Copyright © 2020 Ryan Desfosses <rdes@protonmail.com>
 ;;; Copyright © 2020 Marcin Karpezo <sirmacik@wioo.waw.pl>
-;;; Copyright © 2020 Fredrik Salomonsson <plattfot@gmail.com>
+;;; Copyright © 2020, 2022 Fredrik Salomonsson <plattfot@posteo.net>
 ;;; Copyright © 2020 Eric Bavier <bavier@posteo.net>
 ;;; Copyright © 2020, 2021 Morgan Smith <Morgan.J.Smith@outlook.com>
 ;;; Copyright © 2020 Peng Mei Yu <i@pengmeiyu.com>
@@ -22095,6 +22095,30 @@ (define-public emacs-ccls
 and @code{C++} files through the @code{ccls} language server.")
       (license license:expat))))
 
+(define-public emacs-cpreproc
+  (package
+   (name "emacs-cpreproc")
+   (version "1.0.0")
+   (source
+    (origin
+     (method git-fetch)
+     (uri (git-reference
+           (url "https://git.sr.ht/~plattfot/cpreproc")
+           (commit version)))
+     (sha256
+      (base32
+       "0n4lhj9bbnkbzvifrj9q6z3j7z6jqzkaa36y239cfxdcc7i86c1c"))
+     (file-name (git-file-name name version))))
+   (build-system emacs-build-system)
+   (home-page "https://sr.ht/~plattfot/cpreproc")
+   (synopsis "Wrap @code{C}/@code{C++} code in preprocessor macros.")
+   (description
+    "Aim for this project is to make it easier to generate preprocessor
+macros from Emacs for @code{C}/@code{C++} code that needs to be build
+against multiple incompatible versions of third party libraries or
+@code{C++} standards.")
+   (license license:gpl3+)))
+
 (define-public emacs-org-brain
   (package
     (name "emacs-org-brain")
-- 
2.34.0





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

* bug#54827: Closing issue
  2022-04-09 20:39 [bug#54827] [PATCH 0/1] gnu: Add emacs-cpreproc Fredrik Salomonsson
  2022-04-09 20:42 ` [bug#54827] [PATCH 1/1] " Fredrik Salomonsson
@ 2022-04-26 18:34 ` Fredrik Salomonsson
       [not found] ` <handler.54827.D54827.165099809119467.notifdone@debbugs.gnu.org>
  2 siblings, 0 replies; 4+ messages in thread
From: Fredrik Salomonsson @ 2022-04-26 18:34 UTC (permalink / raw)
  To: 54827-done


I see this got merged in commit:
cd5c31d192453c071d5384ea1eabbf02c9708758

Closing this issue.

And thanks!

-- 
s/Fred[re]+i[ck]+/Fredrik/g




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

* [bug#54827] [PATCH 0/1] gnu: Add emacs-cpreproc.
       [not found] ` <handler.54827.D54827.165099809119467.notifdone@debbugs.gnu.org>
@ 2022-04-26 20:36   ` Ludovic Courtès
  0 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2022-04-26 20:36 UTC (permalink / raw)
  To: Fredrik Salomonsson, 54827

help-debbugs@gnu.org (GNU bug Tracking System) skribis:

> I see this got merged in commit:
> cd5c31d192453c071d5384ea1eabbf02c9708758

Oops, I forgot to close the issue; apologies!

Ludo’.




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

end of thread, other threads:[~2022-04-26 20:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-09 20:39 [bug#54827] [PATCH 0/1] gnu: Add emacs-cpreproc Fredrik Salomonsson
2022-04-09 20:42 ` [bug#54827] [PATCH 1/1] " Fredrik Salomonsson
2022-04-26 18:34 ` bug#54827: Closing issue Fredrik Salomonsson
     [not found] ` <handler.54827.D54827.165099809119467.notifdone@debbugs.gnu.org>
2022-04-26 20:36   ` [bug#54827] [PATCH 0/1] gnu: Add emacs-cpreproc 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).