
* Update URL parsing regexes and tests * Get rid of no longer used README * Merge py-udunits and py-cf-units * netcdf -> netcdf-c * setup_environment -> setup_*_environment * Fix doc tests * Few last minute fixes * Simplify prefix removal copypasta
22 lines
832 B
Python
22 lines
832 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 EsShell(AutotoolsPackage):
|
|
"""Es is an extensible shell. The language was derived from the Plan 9
|
|
shell, rc, and was influenced by functional programming languages,
|
|
such as Scheme, and the Tcl embeddable programming language. This
|
|
implementation is derived from Byron Rakitzis's public domain
|
|
implementation of rc."""
|
|
|
|
homepage = "http://wryun.github.io/es-shell/"
|
|
url = "https://github.com/wryun/es-shell/releases/download/v0.9.1/es-0.9.1.tar.gz"
|
|
|
|
version('0.9.1', sha256='b0b41fce99b122a173a06b899a4d92e5bd3cc48b227b2736159f596a58fff4ba')
|
|
|
|
depends_on('readline')
|