commit
04bcf43649
2 changed files with 32 additions and 0 deletions
17
var/spack/packages/py-cffi/package.py
Normal file
17
var/spack/packages/py-cffi/package.py
Normal file
|
@ -0,0 +1,17 @@
|
|||
from spack import *
|
||||
|
||||
class PyCffi(Package):
|
||||
"""Foreign Function Interface for Python calling C code"""
|
||||
homepage = "http://cffi.readthedocs.org/en/latest/"
|
||||
# base https://pypi.python.org/pypi/cffi
|
||||
url = "https://pypi.python.org/packages/source/c/cffi/cffi-1.1.2.tar.gz#md5="
|
||||
|
||||
version('1.1.2', 'ca6e6c45b45caa87aee9adc7c796eaea')
|
||||
|
||||
extends('python')
|
||||
depends_on('py-setuptools')
|
||||
depends_on('py-pycparser')
|
||||
depends_on('libffi')
|
||||
|
||||
def install(self, spec, prefix):
|
||||
python('setup.py', 'install', '--prefix=%s' % prefix)
|
15
var/spack/packages/py-pycparser/package.py
Normal file
15
var/spack/packages/py-pycparser/package.py
Normal file
|
@ -0,0 +1,15 @@
|
|||
from spack import *
|
||||
|
||||
class PyPycparser(Package):
|
||||
"""pycparser is a complete parser of the C language, written in pure python"""
|
||||
homepage = "https://github.com/eliben/pycparser"
|
||||
url = "https://pypi.python.org/packages/source/p/pycparser/pycparser-2.13.tar.gz"
|
||||
|
||||
version('2.13', 'e4fe1a2d341b22e25da0d22f034ef32f')
|
||||
|
||||
|
||||
extends('python')
|
||||
depends_on('py-setuptools')
|
||||
|
||||
def install(self, spec, prefix):
|
||||
python('setup.py', 'install', '--prefix=%s' % prefix)
|
Loading…
Reference in a new issue