From e70c20f13feb2f7304c4f8542ad1708ece47a8fe Mon Sep 17 00:00:00 2001 From: darmac Date: Thu, 24 Sep 2020 09:43:55 +0800 Subject: [PATCH] Add new package: libverto (#18785) --- .../builtin/packages/libverto/package.py | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 var/spack/repos/builtin/packages/libverto/package.py 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')