ply: added new package (#20764)
This commit is contained in:
parent
9049829c8e
commit
c199f37e94
1 changed files with 26 additions and 0 deletions
26
var/spack/repos/builtin/packages/ply/package.py
Normal file
26
var/spack/repos/builtin/packages/ply/package.py
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
# Copyright 2013-2021 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 Ply(AutotoolsPackage):
|
||||||
|
"""A light-weight dynamic tracer for Linux that leverages the
|
||||||
|
kernel's BPF VM in concert with kprobes and tracepoints to attach
|
||||||
|
probes to arbitrary points in the kernel."""
|
||||||
|
|
||||||
|
homepage = "https://github.com/iovisor/ply"
|
||||||
|
git = "https://github.com/iovisor/ply.git"
|
||||||
|
|
||||||
|
version('2.1.1', commit='899afb0c35ba2191dd7aa21f13bc7fde2655c475')
|
||||||
|
|
||||||
|
depends_on('autoconf', type='build')
|
||||||
|
depends_on('automake', type='build')
|
||||||
|
depends_on('libtool', type='build')
|
||||||
|
depends_on('m4', type='build')
|
||||||
|
|
||||||
|
def autoreconf(self, spec, prefix):
|
||||||
|
bash = which("bash")
|
||||||
|
bash('./autogen.sh')
|
Loading…
Reference in a new issue