summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/abi-dumper/package.py
diff options
context:
space:
mode:
authorMassimiliano Culpo <massimiliano.culpo@gmail.com>2022-04-11 11:39:50 +0200
committerGitHub <noreply@github.com>2022-04-11 11:39:50 +0200
commitd0ad644ea6a0a3874fa7ed3785a4580b68b40b31 (patch)
tree5ef9c20ae73491cfc1ffd869fa7484094148ac43 /var/spack/repos/builtin/packages/abi-dumper/package.py
parentc2f470f4a6630116800ac78d8fd8d812b742cfec (diff)
downloadspack-d0ad644ea6a0a3874fa7ed3785a4580b68b40b31.tar.gz
spack-d0ad644ea6a0a3874fa7ed3785a4580b68b40b31.tar.bz2
spack-d0ad644ea6a0a3874fa7ed3785a4580b68b40b31.tar.xz
spack-d0ad644ea6a0a3874fa7ed3785a4580b68b40b31.zip
Remove custom phases in packages (1/n) (#29968)
* abi-dumper: remove custom phases * apktool: remove custom phases, add v2.6.1 * aragorn: remove custom phases * ascent: remove custom phases * astral: remove custom phases, add v5.7.1 * bigdft: remove redundant phase definitions * bazel: remove custom phases phase definitions * blasr: remove custom phases phase definitions * bmake: remove custom phases phase definitions, add v20220330 * botan: remove custom phases phase definitions * breakdancer: remove custom phases phase definitions * dnstracer: remove custom phases phase definitions * conduit: remove custom phases phase definitions * eclipse-gcj-parser: remove custom phases phase definitions * eem: remove custom phases phase definitions * fasttree: remove custom phases phase definitions * fleur: remove custom phases phase definitions * fpm: remove custom phases phase definitions * genie: remove custom phases phase definitions * gluegen: remove custom phases phase definitions * gnat: remove custom phases phase definitions * hpgmg: remove custom phases phase definitions * karma: remove custom phases phase definitions * libc: remove custom phases phase definitions
Diffstat (limited to 'var/spack/repos/builtin/packages/abi-dumper/package.py')
-rw-r--r--var/spack/repos/builtin/packages/abi-dumper/package.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/abi-dumper/package.py b/var/spack/repos/builtin/packages/abi-dumper/package.py
index 764ea51f57..17a82bc84f 100644
--- a/var/spack/repos/builtin/packages/abi-dumper/package.py
+++ b/var/spack/repos/builtin/packages/abi-dumper/package.py
@@ -6,12 +6,12 @@
from spack import *
-class AbiDumper(MakefilePackage):
+class AbiDumper(Package):
"""ABI Dumper is a tool to dump ABI of an ELF object containing
DWARF debug info."""
homepage = "https://github.com/lvc/abi-dumper"
- url = "https://github.com/lvc/abi-dumper/archive/1.2.tar.gz"
+ url = "https://github.com/lvc/abi-dumper/archive/1.2.tar.gz"
version('1.2', sha256='8a9858c91b4e9222c89b676d59422053ad560fa005a39443053568049bd4d27e')
version('1.1', sha256='ef63201368e0d76a29d2f7aed98c488f6fb71898126762d65baed1e762988083')
@@ -24,7 +24,5 @@ class AbiDumper(MakefilePackage):
depends_on('universal-ctags')
depends_on('vtable-dumper@1.1:')
- phases = ['install']
-
def install(self, spec, prefix):
make('prefix={0}'.format(prefix), 'install')