Add latest version of py-pycparser (#13304)

This commit is contained in:
Adam J. Stewart 2019-10-20 11:17:11 -05:00 committed by GitHub
parent d4f409ea51
commit 10065b325d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,13 +8,16 @@
class PyPycparser(PythonPackage): class PyPycparser(PythonPackage):
"""A complete parser of the C language, written in pure python.""" """A complete parser of the C language, written in pure python."""
homepage = "https://github.com/eliben/pycparser" homepage = "https://github.com/eliben/pycparser"
url = "https://pypi.io/packages/source/p/pycparser/pycparser-2.17.tar.gz" url = "https://pypi.io/packages/source/p/pycparser/pycparser-2.19.tar.gz"
import_modules = ['pycparser', 'pycparser.ply'] import_modules = ['pycparser', 'pycparser.ply']
version('2.19', sha256='a988718abfad80b6b157acce7bf130a30876d27603738ac39f140993246b25b3')
version('2.18', sha256='99a8ca03e29851d96616ad0404b4aad7d9ee16f25c9f9708a11faf2810f7b226') version('2.18', sha256='99a8ca03e29851d96616ad0404b4aad7d9ee16f25c9f9708a11faf2810f7b226')
version('2.17', sha256='0aac31e917c24cb3357f5a4d5566f2cc91a19ca41862f6c3c22dc60a629673b6') version('2.17', sha256='0aac31e917c24cb3357f5a4d5566f2cc91a19ca41862f6c3c22dc60a629673b6')
version('2.13', sha256='b399599a8a0e386bfcbc5e01a38d79dd6e926781f9e358cd5512f41ab7d20eb7') version('2.13', sha256='b399599a8a0e386bfcbc5e01a38d79dd6e926781f9e358cd5512f41ab7d20eb7')
depends_on('python@2.7:2.8,3.4:', type=('build', 'run'))
depends_on('py-setuptools', type='build') depends_on('py-setuptools', type='build')