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

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

[debbugs-tracker] bug#31078: closed ([PATCH] gnu: Add unittest-cpp.)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#31078: closed ([PATCH] gnu: Add unittest-cpp.)
Date: Sun, 08 Apr 2018 21:01:01 +0000

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

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


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

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 99c6c494e..0042c99bb 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -2003,3 +2003,28 @@ retried.")
 
 (define-public python2-pyhamcrest
   (package-with-python2 python-pyhamcrest))
+
+(define-public unittest-cpp
+  (package
+   (name "unittest-cpp")
+   (version "2.0.0")
+   (source (origin
+           (method url-fetch)
+           (uri (string-append
+                 "https://github.com/unittest-cpp/unittest-cpp/archive/v";
+                 version ".tar.gz"))
+            (file-name (string-append name "-" version ".tar.gz"))
+           (sha256
+            (base32 "1fgmna2la7z4pwwy2gd10gpgi2q1fk89npjfvkmzvhkxhyc231bl"))))
+   (arguments
+    `(#:tests? #f))                    ; It's run after build automatically.
+   (build-system cmake-build-system)
+   (home-page "https://github.com/unittest-cpp/unittest-cpp";)
+   (synopsis "Lightweight unit testing framework for C++")
+   (description "UnitTest++ is a lightweight unit testing framework for C++.
+It was designed to do test-driven development on a wide variety of platforms.
+Simplicity, portability, speed, and small footprint are all very important
+aspects of UnitTest++.  UnitTest++ is mostly standard C++ and makes minimal use
+of advanced library and language features, which means it should be easily
+portable to just about any platform.")
+   (license license:expat)))
-- 
2.14.3




--- End Message ---
--- Begin Message --- Subject: Re: [bug#31078] [PATCH] gnu: Add unittest-cpp. Date: Sun, 08 Apr 2018 23:00:17 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux)
Hello,

Fis Trivial <address@hidden> skribis:

> * gnu/packages/check.scm (unittest-cpp): New public variable.

Applied, thanks!

Ludo’.


--- End Message ---

reply via email to

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