summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authordarmac <darmac@163.com>2019-11-25 21:38:25 +0800
committerMassimiliano Culpo <massimiliano.culpo@gmail.com>2019-11-25 14:38:25 +0100
commitbb6a203fe159a5532b0ff902383cae32fdb7df98 (patch)
treebb85a69b0a8991973dfc550a8ed5a21d798384c5 /var
parentfa37387373f3c5ee9e0e6d9698c8048c7ab4b2fa (diff)
downloadspack-bb6a203fe159a5532b0ff902383cae32fdb7df98.tar.gz
spack-bb6a203fe159a5532b0ff902383cae32fdb7df98.tar.bz2
spack-bb6a203fe159a5532b0ff902383cae32fdb7df98.tar.xz
spack-bb6a203fe159a5532b0ff902383cae32fdb7df98.zip
ltp: added new package (#13878)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/ltp/package.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/ltp/package.py b/var/spack/repos/builtin/packages/ltp/package.py
new file mode 100644
index 0000000000..ac97b616f5
--- /dev/null
+++ b/var/spack/repos/builtin/packages/ltp/package.py
@@ -0,0 +1,25 @@
+# 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 Ltp(AutotoolsPackage):
+ """Ltp is a joint project started by SGI, developed and maintained by IBM,
+ Cisco, Fujitsu, SUSE, Red Hat and others, that has a goal to deliver
+ test suites to the open source community that validate the reliability,
+ robustness,and stability of Linux. The LTP testsuite contains a collection
+ of tools for testing the Linux kernel and related features."""
+
+ homepage = "https://github.com/linux-test-project/ltp"
+ url = "https://github.com/linux-test-project/ltp/archive/20190517.tar.gz"
+
+ version('20190930', sha256='eca11dbe11a61f3035561a2aa272d578ca9380563440f9ba876c0c4755a42533')
+ version('20190517', sha256='538175fff2d6c9d69748b2d4afcf5ac43f7300456f839fa7b5b101c7ad447af7')
+
+ depends_on('autoconf', type='build')
+ depends_on('automake', type='build')
+ depends_on('libtool', type='build')
+ depends_on('m4', type='build')