2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 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.
|
2015-12-09 16:06:10 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2015-12-09 16:06:10 +08:00
|
|
|
|
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
2017-01-08 10:07:00 +08:00
|
|
|
class Texinfo(AutotoolsPackage):
|
2016-08-10 16:50:00 +08:00
|
|
|
"""Texinfo is the official documentation format of the GNU project.
|
|
|
|
|
|
|
|
It was invented by Richard Stallman and Bob Chassell many years ago,
|
|
|
|
loosely based on Brian Reid's Scribe and other formatting languages
|
2017-01-08 10:07:00 +08:00
|
|
|
of the time. It is used by many non-GNU projects as well."""
|
2016-08-10 16:50:00 +08:00
|
|
|
|
2015-12-09 16:06:10 +08:00
|
|
|
homepage = "https://www.gnu.org/software/texinfo/"
|
2018-08-16 14:27:21 +08:00
|
|
|
url = "https://ftpmirror.gnu.org/texinfo/texinfo-6.0.tar.gz"
|
2015-12-09 16:06:10 +08:00
|
|
|
|
2018-01-12 00:06:53 +08:00
|
|
|
version('6.5', '94e8f7149876793030e5518dd8d6e956')
|
2017-01-08 10:07:00 +08:00
|
|
|
version('6.3', '9b08daca9bf8eccae9b0f884aba41f9e')
|
2016-01-09 06:16:30 +08:00
|
|
|
version('6.0', 'e1a2ef5dce5018b53f0f6eed45b247a7')
|
|
|
|
version('5.2', '1b8f98b80a8e6c50422125e07522e8db')
|
|
|
|
version('5.1', '54e250014fe698fb4832016158747c03')
|
|
|
|
version('5.0', '918432285abe6fe96c98355594c5656a')
|
2018-10-10 20:17:12 +08:00
|
|
|
|
|
|
|
depends_on('perl')
|