
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
19 lines
783 B
Python
19 lines
783 B
Python
# 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 Libdaemon(AutotoolsPackage):
|
|
"""libdaemon is a lightweight C library which eases the writing of
|
|
UNIX daemons."""
|
|
|
|
homepage = "http://0pointer.de/lennart/projects/libdaemon/"
|
|
url = "http://0pointer.de/lennart/projects/libdaemon/libdaemon-0.14.tar.gz"
|
|
|
|
version('0.14', sha256='fd23eb5f6f986dcc7e708307355ba3289abe03cc381fc47a80bca4a50aa6b834')
|
|
version('0.13', sha256='bd949d459d2da54f1cdfbd1f4592e32541e8a195aca56fa7a8329ed79836d709')
|
|
version('0.12', sha256='39e7c9f8644d1af310d076c1a5cc648040033e4724e7edfd85eb983ad88336d0')
|