
We'd like to use a consistent checksum scheme everywhere so that we can: a) incorporate archive checksums into our specs and have a consistent hashing algorithm across all specs. b) index mirrors with a consistent type of checksum, and not one that is dependent on how spack packages are written. - [x] convert existing md5, sha224, sha512, sha1 checksums to sha256
24 lines
677 B
Python
24 lines
677 B
Python
# Copyright 2013-2019 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 Notmuch(AutotoolsPackage):
|
|
"""Notmuch is a mail indexer.
|
|
|
|
Essentially, is a very thin front end on top of xapian.
|
|
"""
|
|
|
|
homepage = "https://notmuchmail.org/"
|
|
url = "https://notmuchmail.org/releases/notmuch-0.23.7.tar.gz"
|
|
|
|
version('0.23.7', sha256='f11bb10d71945f6c3f16d23117afc70810aa485878e66bb4bf43cc3f08038913')
|
|
|
|
depends_on('zlib')
|
|
depends_on('talloc')
|
|
depends_on('gmime@2.6:')
|
|
depends_on('xapian-core')
|