From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Darrington Subject: [PATCH] gnu: Add cppunit Date: Mon, 20 Oct 2014 21:39:58 +0200 Message-ID: <1413833998-4593-1-git-send-email-jmd@gnu.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54695) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XgIoV-0007vb-0R for guix-devel@gnu.org; Mon, 20 Oct 2014 15:40:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XgIoO-0005J7-RS for guix-devel@gnu.org; Mon, 20 Oct 2014 15:40:18 -0400 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org Cc: John Darrington * gnu/packages/check.scm (cppunit): New variable. --- gnu/packages/check.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index ebb04e2..3d33fae 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -46,3 +46,26 @@ catch both assertion failures and code errors that cause segmentation faults or other signals. The output from unit tests can be used within source code editors and IDEs.") (license lgpl2.1+))) + + +(define-public cppunit + (package + (name "cppunit") + (version "1.12.1") + (source (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/cppunit/" name "/" + name "-" + version ".tar.gz")) + (sha256 + (base32 + "0jm49v5rmc5qw34vqs56gy8xja1dhci73bmh23cig4kcir6a0a5c")))) + (build-system gnu-build-system) + (home-page "http://sourceforge.net/projects/cppunit/") + (synopsis "Unit testing framework for C++") + (description "CppUnit is the C++ port of the famous JUnit framework for +unit testing. Test output is in XML for automatic testing and GUI based for +supervised tests.") + (license lgpl2.1))) ; no copyright notices. LGPL2.1 is in the tarball + + -- 1.7.10.4