summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorDaryl W. Grunau <DarylGrunau@gmail.com>2019-05-28 14:21:24 -0600
committerAdam J. Stewart <ajstewart426@gmail.com>2019-05-28 15:21:24 -0500
commit6698d1dddb45479e263742bf1924202e778de8f9 (patch)
tree7692c628d3c751e97bfae3e44d28151d0562b84f /var
parent01ece824e1ddda561acb5f611dc55a1f906e99a3 (diff)
downloadspack-6698d1dddb45479e263742bf1924202e778de8f9.tar.gz
spack-6698d1dddb45479e263742bf1924202e778de8f9.tar.bz2
spack-6698d1dddb45479e263742bf1924202e778de8f9.tar.xz
spack-6698d1dddb45479e263742bf1924202e778de8f9.zip
Add support for new unittest-cpp package (#11575)
* bump eospac version * Revert "bump eospac version" This reverts commit 835b1f822d8c083f6ab9eb17222c00409e8eb3da. * Add support for new package: unittest-cpp
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/unittest-cpp/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/unittest-cpp/package.py b/var/spack/repos/builtin/packages/unittest-cpp/package.py
new file mode 100644
index 0000000000..a931ec389e
--- /dev/null
+++ b/var/spack/repos/builtin/packages/unittest-cpp/package.py
@@ -0,0 +1,21 @@
+# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+from spack import *
+
+
+class UnittestCpp(CMakePackage):
+ """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."""
+
+ homepage = "https://github.com/unittest-cpp/unittest-cpp/wiki"
+ url = "https://github.com/unittest-cpp/unittest-cpp/archive/v1.6.0.tar.gz"
+
+ version('2.0.0', 'edaccca3e61d977881bdf1e0cf372243')
+ version('1.6.0', '50f2500f76efd5b9312f19186b66b329')