2024-01-02 16:21:30 +08:00
|
|
|
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-10-10 05:14:19 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2022-05-29 00:55:44 +08:00
|
|
|
from spack.package import *
|
2017-10-10 05:14:19 +08:00
|
|
|
|
|
|
|
|
|
|
|
# See also: AspellDictPackage
|
2019-12-21 06:32:18 +08:00
|
|
|
class Aspell(AutotoolsPackage, GNUMirrorPackage):
|
2017-10-10 05:14:19 +08:00
|
|
|
"""GNU Aspell is a Free and Open Source spell checker designed to
|
|
|
|
eventually replace Ispell."""
|
|
|
|
|
|
|
|
homepage = "http://aspell.net/"
|
2019-12-21 06:32:18 +08:00
|
|
|
gnu_mirror_path = "aspell/aspell-0.60.6.1.tar.gz"
|
2017-10-10 05:14:19 +08:00
|
|
|
|
2019-12-21 06:32:18 +08:00
|
|
|
extendable = True # support activating dictionaries
|
2017-10-10 05:14:19 +08:00
|
|
|
|
2023-12-23 03:29:11 +08:00
|
|
|
license("LGPL-2.1-or-later")
|
|
|
|
|
2023-03-08 00:47:21 +08:00
|
|
|
version("0.60.8", sha256="f9b77e515334a751b2e60daab5db23499e26c9209f5e7b7443b05235ad0226f2")
|
2019-10-11 13:44:41 +08:00
|
|
|
version("0.60.6.1", sha256="f52583a83a63633701c5f71db3dc40aab87b7f76b29723aeb27941eff42df6e1")
|
2017-10-10 05:14:19 +08:00
|
|
|
|
2019-12-19 07:10:05 +08:00
|
|
|
patch("fix_cpp.patch")
|
2019-01-01 06:13:03 +08:00
|
|
|
patch("issue-519.patch", when="@:0.60.6.1")
|