summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2020-03-26 14:50:28 +0800
committerGitHub <noreply@github.com>2020-03-26 07:50:28 +0100
commit9f5873324e385ada86ee6bbf2edad82d5aba0f32 (patch)
treed854df944206a9a30329642ff376ad48f488a6c4
parent851fb173c868ac380f7960f74a7baebe63245fdf (diff)
downloadspack-9f5873324e385ada86ee6bbf2edad82d5aba0f32.tar.gz
spack-9f5873324e385ada86ee6bbf2edad82d5aba0f32.tar.bz2
spack-9f5873324e385ada86ee6bbf2edad82d5aba0f32.tar.xz
spack-9f5873324e385ada86ee6bbf2edad82d5aba0f32.zip
kmod: added package at v27 (#15633)
-rw-r--r--var/spack/repos/builtin/packages/kmod/package.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/kmod/package.py b/var/spack/repos/builtin/packages/kmod/package.py
new file mode 100644
index 0000000000..0ee203e7a2
--- /dev/null
+++ b/var/spack/repos/builtin/packages/kmod/package.py
@@ -0,0 +1,30 @@
+# 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 Kmod(AutotoolsPackage):
+ """kmod is a set of tools to handle common tasks with Linux kernel modules
+ like insert, remove, list, check properties, resolve dependencies and
+ aliases."""
+
+ homepage = "https://github.com/lucasdemarchi/kmod"
+ url = "https://github.com/lucasdemarchi/kmod/archive/v27.tar.gz"
+
+ version('27', sha256='969c4573b01f4c9e1d3e3c9d179bd16ec999bbb99dd55b7623f42551328478c3')
+ version('26', sha256='f28bc40ead548dce4a8e956fccfc36fd80f2b40884d270b812f1bfbd886e858c')
+ version('25', sha256='16a8bbd3ee321d0847847256ea2fd124f6250257c055c8cf97e78f18bf27559c')
+ version('24', sha256='f7a5ee07d4901c87711880536604de7e31c182d85a72de7b8d7dd04d4ee0aa59')
+ version('23', sha256='8f139543d82e8ccc2227dec4c016d6656e9789365a6dce73f90b620a53e62ee6')
+
+ 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')