
- remove the old LGPL license headers from all files in Spack - add SPDX headers to all files - core and most packages are (Apache-2.0 OR MIT) - a very small number of remaining packages are LGPL-2.1-only
16 lines
596 B
Python
16 lines
596 B
Python
# Copyright 2013-2018 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 PyPly(PythonPackage):
|
|
"""PLY is nothing more than a straightforward lex/yacc implementation."""
|
|
homepage = "http://www.dabeaz.com/ply"
|
|
url = "https://github.com/dabeaz/ply/archive/3.11.tar.gz"
|
|
|
|
version('3.11', '6465f602e656455affcd7c5734c638f8')
|
|
version('3.8', '94726411496c52c87c2b9429b12d5c50', url='http://www.dabeaz.com/ply/ply-3.8.tar.gz')
|