summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2020-09-24 09:43:55 +0800
committerGitHub <noreply@github.com>2020-09-23 20:43:55 -0500
commite70c20f13feb2f7304c4f8542ad1708ece47a8fe (patch)
treeb1dda8070b4a75a054c7d2d71593d98587d1be9d /var
parent28c6f1ddc23ee170522b1225bbf60f9b1d244189 (diff)
downloadspack-e70c20f13feb2f7304c4f8542ad1708ece47a8fe.tar.gz
spack-e70c20f13feb2f7304c4f8542ad1708ece47a8fe.tar.bz2
spack-e70c20f13feb2f7304c4f8542ad1708ece47a8fe.tar.xz
spack-e70c20f13feb2f7304c4f8542ad1708ece47a8fe.zip
Add new package: libverto (#18785)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/libverto/package.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libverto/package.py b/var/spack/repos/builtin/packages/libverto/package.py
new file mode 100644
index 0000000000..7efdb156c9
--- /dev/null
+++ b/var/spack/repos/builtin/packages/libverto/package.py
@@ -0,0 +1,24 @@
+# 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 Libverto(AutotoolsPackage):
+ """libverto provides a loop-neutral async api which allows the library
+ to expose asynchronous interfaces and offload the choice of the main
+ loop to the application."""
+
+ homepage = "https://github.com/latchset/libverto/"
+ url = "https://github.com/latchset/libverto/archive/0.3.1.tar.gz"
+
+ version('0.3.1', sha256='02c7e679577ae7608ed35fe740bec2ef8c58142344cef247f2797ef788d41adc')
+ version('0.3.0', sha256='fad201d9d0ac1abf1283d2d78bb3a615f72cfd2a2141673589d93c0cb762b3f1')
+ version('0.2.7', sha256='0ef688a8a8690c24714834cc155b067b1c5d3f3194acceb333751deebd50de01')
+
+ depends_on('autoconf', type='build')
+ depends_on('automake', type='build')
+ depends_on('libtool', type='build')
+ depends_on('m4', type='build')