2015-12-09 16:06:10 +08:00
|
|
|
##############################################################################
|
2018-03-25 03:13:52 +08:00
|
|
|
# Copyright (c) 2013-2018, Lawrence Livermore National Security, LLC.
|
2015-12-09 16:06:10 +08:00
|
|
|
# Produced at the Lawrence Livermore National Laboratory.
|
|
|
|
#
|
|
|
|
# This file is part of Spack.
|
2016-05-12 12:22:25 +08:00
|
|
|
# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
|
2015-12-09 16:06:10 +08:00
|
|
|
# LLNL-CODE-647188
|
|
|
|
#
|
2017-11-05 08:08:04 +08:00
|
|
|
# For details, see https://github.com/spack/spack
|
2017-06-25 13:22:55 +08:00
|
|
|
# Please also see the NOTICE and LICENSE files for our notice and the LGPL.
|
2015-12-09 16:06:10 +08:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
2016-05-12 12:22:25 +08:00
|
|
|
# it under the terms of the GNU Lesser General Public License (as
|
|
|
|
# published by the Free Software Foundation) version 2.1, February 1999.
|
2015-12-09 16:06:10 +08:00
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful, but
|
|
|
|
# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
|
2016-05-12 12:22:25 +08:00
|
|
|
# conditions of the GNU Lesser General Public License for more details.
|
2015-12-09 16:06:10 +08:00
|
|
|
#
|
2016-05-12 12:22:25 +08:00
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
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')
|