emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#31082: closed ([PATCH] gnu: Add bear.)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#31082: closed ([PATCH] gnu: Add bear.)
Date: Sun, 08 Apr 2018 21:06:02 +0000

Your message dated Sun, 08 Apr 2018 23:05:36 +0200
with message-id <address@hidden>
and subject line Re: [bug#31082] [PATCH] gnu: Add bear.
has caused the debbugs.gnu.org bug report #31082,
regarding [PATCH] gnu: Add bear.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
31082: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=31082
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add bear. Date: Fri, 6 Apr 2018 19:25:19 +0000
* gnu/packages/build-tools.scm (bear): New public variable.
---
 gnu/packages/build-tools.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/build-tools.scm b/gnu/packages/build-tools.scm
index b1534e09a..f0efdc011 100644
--- a/gnu/packages/build-tools.scm
+++ b/gnu/packages/build-tools.scm
@@ -2,6 +2,7 @@
 ;;; Copyright © 2017 Ricardo Wurmus <address@hidden>
 ;;; Copyright © 2017 Corentin Bocquillon <address@hidden>
 ;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <address@hidden>
+;;; Copyright © 2018 Fis Trivial <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -23,6 +24,7 @@
   #:use-module (guix utils)
   #:use-module (guix packages)
   #:use-module (guix download)
+  #:use-module (guix build-system cmake)
   #:use-module (gnu packages)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages python)
@@ -68,6 +70,28 @@ from scons.  While scons focuses on being 100% correct when 
building, bam
 makes a few sacrifices to acquire fast full and incremental build times.")
     (license license:bsd-3)))
 
+(define-public bear
+  (package
+    (name "bear")
+    (version "2.3.11")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/rizsotto/Bear/archive/";
+                    version ".tar.gz"))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1m0w0wqnz983l7fpp5p9pdsqr7n3ybrzp8ywjcvn0rihsrzj65j6"))))
+    (build-system cmake-build-system)
+    (home-page "https://github.com/rizsotto/Bear";)
+    (synopsis "Tool for generating compilation database")
+    (description "The JSON compilation database is used in the clang project to
+provide information on how a single compilation unit is processed.  With this,
+it is easy to re-run the compilation with alternate programs.  Bear is used to
+generate such compilation database.")
+    (license license:gpl3+)))
+
 (define-public meson
   (package
     (name "meson")
-- 
2.14.3


--- End Message ---
--- Begin Message --- Subject: Re: [bug#31082] [PATCH] gnu: Add bear. Date: Sun, 08 Apr 2018 23:05:36 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux)
Fis Trivial <address@hidden> skribis:

> * gnu/packages/build-tools.scm (bear): New public variable.

Applied with the minor changes below, thanks!

Ludo’.

diff --git a/gnu/packages/build-tools.scm b/gnu/packages/build-tools.scm
index f0efdc011..98d12a12f 100644
--- a/gnu/packages/build-tools.scm
+++ b/gnu/packages/build-tools.scm
@@ -85,11 +85,11 @@ makes a few sacrifices to acquire fast full and incremental 
build times.")
                 "1m0w0wqnz983l7fpp5p9pdsqr7n3ybrzp8ywjcvn0rihsrzj65j6"))))
     (build-system cmake-build-system)
     (home-page "https://github.com/rizsotto/Bear";)
-    (synopsis "Tool for generating compilation database")
-    (description "The JSON compilation database is used in the clang project to
-provide information on how a single compilation unit is processed.  With this,
+    (synopsis "Tool for generating a compilation database")
+    (description "A JSON compilation database is used in the Clang project to
+provide information on how a given compilation unit is processed.  With this,
 it is easy to re-run the compilation with alternate programs.  Bear is used to
-generate such compilation database.")
+generate such a compilation database.")
     (license license:gpl3+)))
 
 (define-public meson

--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]