diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-05-25 19:16:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-25 13:16:55 +0200 |
commit | 04f60afc0838681d8a70aff918ebfa69254e33ce (patch) | |
tree | f4efb4e0d051cefd6f42f2842942b6eab235a2d0 | |
parent | 821c729ec00b603271d1118d878899fc546a7186 (diff) | |
download | spack-04f60afc0838681d8a70aff918ebfa69254e33ce.tar.gz spack-04f60afc0838681d8a70aff918ebfa69254e33ce.tar.bz2 spack-04f60afc0838681d8a70aff918ebfa69254e33ce.tar.xz spack-04f60afc0838681d8a70aff918ebfa69254e33ce.zip |
ffsb: added new package at v5.2.1 (#16791)
-rw-r--r-- | var/spack/repos/builtin/packages/ffsb/package.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/ffsb/package.py b/var/spack/repos/builtin/packages/ffsb/package.py new file mode 100644 index 0000000000..5745ccb821 --- /dev/null +++ b/var/spack/repos/builtin/packages/ffsb/package.py @@ -0,0 +1,18 @@ +# Copyright 2013-2020 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 Ffsb(AutotoolsPackage): + """The Flexible Filesystem Benchmark (FFSB) is a cross-platform + filesystem performance measurement tool.""" + + homepage = "https://sourceforge.net/projects/ffsb/" + url = "https://sourceforge.net/projects/ffsb/files/ffsb/5.2.1/ffsb-5.2.1.tar.gz" + + version('5.2.1', sha256='36ccda8ff04f837e20bb8b2cc9edb8c6fc923fdcdbb8060d9448dc49234b968d') + version('5.1.1', sha256='e25aef255d8bfe54f29ac88c7af8237fa5a8c2e1716fdef1946cf0ecd9166d1f') + version('5.1', sha256='4d7da7eba46c824ebdc23b3d32532b006aeb5b6697a3ada314c75785ab25cb97') |