summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorSaqib Khan <saqibkhan@utexas.edu>2022-11-15 13:39:02 -0600
committerGitHub <noreply@github.com>2022-11-15 11:39:02 -0800
commitd5193f73d8b700e9c36dca82b92cde78d77454dc (patch)
treec814f2c728248d238be35571f2c4d4f15359fbaa /var
parent1aab5bb9f2b86462c7880476d3b1b5729f224c21 (diff)
downloadspack-d5193f73d8b700e9c36dca82b92cde78d77454dc.tar.gz
spack-d5193f73d8b700e9c36dca82b92cde78d77454dc.tar.bz2
spack-d5193f73d8b700e9c36dca82b92cde78d77454dc.tar.xz
spack-d5193f73d8b700e9c36dca82b92cde78d77454dc.zip
New Package: Prime95/Mprime (#33895)
* New Package: Prime95/Mprime * Fix trailing whitespaces in prime95 * Fix checksum for prime95 Signed-off-by: saqibkh <saqibkhan@utexas.edu>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/prime95/package.py35
1 files changed, 35 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/prime95/package.py b/var/spack/repos/builtin/packages/prime95/package.py
new file mode 100644
index 0000000000..10e6de036d
--- /dev/null
+++ b/var/spack/repos/builtin/packages/prime95/package.py
@@ -0,0 +1,35 @@
+# Copyright 2013-2022 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.package import *
+
+
+class Prime95(Package):
+ """
+ Prime95, also distributed as the command-line utility mprime for FreeBSD
+ and Linux, is a freeware application.
+
+ Prime95 is a CPU stress testing program. It tests your computer for
+ stability issues by stressing your CPU to its maximum limit.
+ Prime95 runs indefinitely and only terminates a stress test when it
+ encounters an error and informs the user that the system may be unstable.
+ """
+
+ homepage = "https://www.mersenne.org/"
+ url = "https://www.mersenne.org/ftp_root/gimps/p95v308b17.linux64.tar.gz"
+ maintainers = ["saqibkh"]
+
+ version("95v308b17", sha256="5180c3843d2b5a7c7de4aa5393c13171b0e0709e377c01ca44154608f498bec7")
+ version("95v308b16", sha256="9fa9b30dd175be287d3a3f4b85139d02d4e64aa2dad88324abd4fdfcbbfe10d4")
+ version("95v309b3", sha256="afa5d1a72e98c94d58e0ac002d3e70ffb3887d975d9b83157d1ea41755efd32b")
+ version("95v309b2", sha256="49f1d79c04c24260ab10ec080588c54d4c716f2c1088ad66a781a1784c4c3d59")
+ version("95v309b1", sha256="0dbfa6e4dd04f8f2251669904c8c4029d42e2121c06c83b39bb13f0a40439bcb")
+
+ depends_on("autoconf")
+ depends_on("automake")
+ depends_on("libtool")
+
+ def install(self, spec, prefix):
+ install_tree(".", prefix)