summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/libeatmydata/package.py
blob: 2b3f03cba58bcbfb95d3c57f7d0238b86c044e9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 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 Libeatmydata(AutotoolsPackage):
    """libeatmydata is a small LD_PRELOAD library designed to (transparently)
    disable fsync (and friends, like open(O_SYNC)). This has two side-effects:
    making software that writes data safely to disk a lot quicker and making
    this software no longer crash safe."""

    homepage = "https://www.flamingspork.com/projects/libeatmydata/"
    url      = "https://www.flamingspork.com/projects/libeatmydata/libeatmydata-105.tar.gz"

    version('105', sha256='bdd2d068b6b27cf47cd22aa4c5da43b3d4a05944cfe0ad1b0d843d360ed3a8dd')

    depends_on('strace', type='test')

    def check(self):
        # Tests must run in serial
        make('check', parallel=False)