diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-09-24 09:37:06 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-23 20:37:06 -0500 |
commit | 6970e0da699fd11c10220b94dc0f6d1723eee9df (patch) | |
tree | 9b593ed0e805ee9476eb4721190f4e74053fee10 | |
parent | 83c1f035a2bcaf61e781cead1fb3930230c22fa2 (diff) | |
download | spack-6970e0da699fd11c10220b94dc0f6d1723eee9df.tar.gz spack-6970e0da699fd11c10220b94dc0f6d1723eee9df.tar.bz2 spack-6970e0da699fd11c10220b94dc0f6d1723eee9df.tar.xz spack-6970e0da699fd11c10220b94dc0f6d1723eee9df.zip |
Add new package: patchutils (#18794)
* Add new package: patchutils
* patchutils: refine url
-rw-r--r-- | var/spack/repos/builtin/packages/patchutils/package.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/patchutils/package.py b/var/spack/repos/builtin/packages/patchutils/package.py new file mode 100644 index 0000000000..f89e60b1cc --- /dev/null +++ b/var/spack/repos/builtin/packages/patchutils/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 Patchutils(AutotoolsPackage): + """This is patchutils, a collection of tools that operate on patch + files.""" + + homepage = "http://cyberelk.net/tim/software/patchutils/" + url = "http://cyberelk.net/tim/data/patchutils/stable/patchutils-0.4.2.tar.xz" + + version('0.4.2', sha256='8875b0965fe33de62b890f6cd793be7fafe41a4e552edbf641f1fed5ebbf45ed') + version('0.4.0', sha256='da6df1fa662b635c2969e7d017e6f32f5b39f1b802673a0af635e4936d4bc2f4') + version('0.3.4', sha256='cf55d4db83ead41188f5b6be16f60f6b76a87d5db1c42f5459d596e81dabe876') |