diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-03-19 02:12:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-18 13:12:02 -0500 |
commit | b52b082627bf3a2a3bf8ca15e9229889204197d6 (patch) | |
tree | e645459ea79caa6c54c3ebb739e7347950b7ff94 /var | |
parent | 73321dd3ea81f18ec5430f45916fa8007e83daf7 (diff) | |
download | spack-b52b082627bf3a2a3bf8ca15e9229889204197d6.tar.gz spack-b52b082627bf3a2a3bf8ca15e9229889204197d6.tar.bz2 spack-b52b082627bf3a2a3bf8ca15e9229889204197d6.tar.xz spack-b52b082627bf3a2a3bf8ca15e9229889204197d6.zip |
add new package: userspace-rcu (#15515)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/userspace-rcu/examples.patch | 13 | ||||
-rw-r--r-- | var/spack/repos/builtin/packages/userspace-rcu/package.py | 31 |
2 files changed, 44 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/userspace-rcu/examples.patch b/var/spack/repos/builtin/packages/userspace-rcu/examples.patch new file mode 100644 index 0000000000..ef65ab4b79 --- /dev/null +++ b/var/spack/repos/builtin/packages/userspace-rcu/examples.patch @@ -0,0 +1,13 @@ +diff --git a/doc/examples/Makefile.am b/doc/examples/Makefile.am +index edf00eb..cd491df 100644 +--- a/doc/examples/Makefile.am ++++ b/doc/examples/Makefile.am +@@ -141,7 +141,7 @@ all-local: + else \ + rel_build_subdir="../"; \ + fi; \ +- $(MAKE) -f dist-files/Makefile CC="$(CC)" CPPFLAGS="$(CPPFLAGS)" AM_CPPFLAGS="$(AM_CPPFLAGS) -I"$${rel_src_subdir}/$(top_srcdir)/include/" -I"$${rel_src_subdir}/$(top_srcdir)/src/" -I"$${rel_build_subdir}$(top_builddir)/include/" -I"$${rel_build_subdir}$(top_builddir)/include/src/"" CFLAGS="$(CFLAGS)" AM_CFLAGS="$(AM_CFLAGS)" LDFLAGS="$(LDFLAGS)" AM_LDFLAGS="$(AM_LDFLAGS) -L../../../src/.libs/ -Wl,-rpath "$(PWD)/../../src/.libs/"" AM_V_P="$(AM_V_P)" AM_V_at="$(AM_V_at)" $(AM_MAKEFLAGS) all; ++ $(MAKE) -f dist-files/Makefile CC="$(CC)" CPPFLAGS="$(CPPFLAGS)" AM_CPPFLAGS="$(AM_CPPFLAGS) -I"$${rel_src_subdir}/$(top_srcdir)/include/" -I"$${rel_src_subdir}/$(top_srcdir)/src/" -I"$${rel_build_subdir}$(top_builddir)/include/" -I"$${rel_build_subdir}$(top_builddir)/include/src/"" CFLAGS="$(CFLAGS)" AM_CFLAGS="$(AM_CFLAGS)" LDFLAGS="$(LDFLAGS)" AM_LDFLAGS="$(AM_LDFLAGS) -L../../../src/.libs/ -Wl,-rpath="$(PWD)/../../src/.libs/"" AM_V_P="$(AM_V_P)" AM_V_at="$(AM_V_at)" $(AM_MAKEFLAGS) all; + + clean-local: + $(AM_V_at)$(MAKE) -f dist-files/Makefile $(AM_MAKEFLAGS) clean; \ diff --git a/var/spack/repos/builtin/packages/userspace-rcu/package.py b/var/spack/repos/builtin/packages/userspace-rcu/package.py new file mode 100644 index 0000000000..be03459d34 --- /dev/null +++ b/var/spack/repos/builtin/packages/userspace-rcu/package.py @@ -0,0 +1,31 @@ +# 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 UserspaceRcu(AutotoolsPackage): + """liburcu is a LGPLv2.1 userspace RCU (read-copy-update) library. This + data synchronization library provides read-side access which scales + linearly with the number of cores.""" + + homepage = "http://liburcu.org/" + url = "https://github.com/urcu/userspace-rcu/archive/v0.11.1.tar.gz" + + version('0.11.1', sha256='a0ed8995edfbeac5f5eb2f152a8f3654040ecfc99a746bfe3da3bccf435b7d5d') + version('0.11.0', sha256='7834e4692565b491b9d2d258095d6c05089c9bae8a1bef280c338d15ba02e9ac') + version('0.10.2', sha256='e117c416fced894e24720cc1b38247074a13020f19d6704b38e554cbcb993d06') + version('0.9.6', sha256='4d9e4ca40c079e0b0e9f912a9092589b97fbaf80eb6537e9ae70d48c09472efa') + + depends_on('m4', type='build') + depends_on('autoconf', type='build') + depends_on('automake', type='build') + depends_on('libtool', type='build') + + patch('examples.patch', sha256='49aa8fa99d3a1315c639d2a90014079c34a7d0a6dde110b6cbb7b02f87324742') + + def autoreconf(self, spec, prefix): + bash = which('bash') + bash('./bootstrap') |