
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
71 lines
2.3 KiB
Python
71 lines
2.3 KiB
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 *
|
|
|
|
import sys
|
|
|
|
|
|
class Emacs(AutotoolsPackage):
|
|
"""The Emacs programmable text editor."""
|
|
|
|
homepage = "https://www.gnu.org/software/emacs"
|
|
url = "https://ftpmirror.gnu.org/emacs/emacs-24.5.tar.gz"
|
|
|
|
version('26.2', sha256='4f99e52a38a737556932cc57479e85c305a37a8038aaceb5156625caf102b4eb')
|
|
version('26.1', sha256='760382d5e8cdc5d0d079e8f754bce1136fbe1473be24bb885669b0e38fc56aa3')
|
|
version('25.3', sha256='f72c6a1b48b6fbaca2b991eed801964a208a2f8686c70940013db26cd37983c9')
|
|
version('25.2', sha256='505bbd6ea6c197947001d0f80bfccb6b30e1add584d6376f54d4fd6e4de72d2d')
|
|
version('25.1', sha256='763344b90db4d40e9fe90c5d14748a9dbd201ce544e2cf0835ab48a0aa4a1c67')
|
|
version('24.5', sha256='2737a6622fb2d9982e9c47fb6f2fb297bda42674e09db40fc9bcc0db4297c3b6')
|
|
|
|
variant('X', default=False, description="Enable an X toolkit")
|
|
variant(
|
|
'toolkit',
|
|
default='gtk',
|
|
values=('gtk', 'athena'),
|
|
description="Select an X toolkit (gtk, athena)"
|
|
)
|
|
variant('tls', default=False, description="Build Emacs with gnutls")
|
|
|
|
depends_on('pkgconfig', type='build')
|
|
|
|
depends_on('ncurses')
|
|
depends_on('pcre')
|
|
depends_on('zlib')
|
|
depends_on('libtiff', when='+X')
|
|
depends_on('libpng', when='+X')
|
|
depends_on('libxpm', when='+X')
|
|
depends_on('giflib', when='+X')
|
|
depends_on('libx11', when='+X')
|
|
depends_on('libxaw', when='+X toolkit=athena')
|
|
depends_on('gtkplus', when='+X toolkit=gtk')
|
|
depends_on('gnutls', when='+tls')
|
|
depends_on('jpeg')
|
|
|
|
def configure_args(self):
|
|
spec = self.spec
|
|
|
|
toolkit = spec.variants['toolkit'].value
|
|
if '+X' in spec:
|
|
args = [
|
|
'--with-x',
|
|
'--with-x-toolkit={0}'.format(toolkit)
|
|
]
|
|
else:
|
|
args = ['--without-x']
|
|
|
|
# On OS X/macOS, do not build "nextstep/Emacs.app", because
|
|
# doing so throws an error at build-time
|
|
if sys.platform == 'darwin':
|
|
args.append('--without-ns')
|
|
|
|
if '+tls' in spec:
|
|
args.append('--with-gnutls')
|
|
else:
|
|
args.append('--without-gnutls')
|
|
|
|
return args
|