removed package for python packages with problematic / duplicate names
This commit is contained in:
parent
e9f7d033ff
commit
f3254ff02d
2 changed files with 0 additions and 27 deletions
|
@ -1,12 +0,0 @@
|
||||||
from spack import *
|
|
||||||
|
|
||||||
class PyCython(Package):
|
|
||||||
"""The Cython compiler for writing C extensions for the Python language."""
|
|
||||||
homepage = "http://www.cython.org"
|
|
||||||
version("0.21.2", "d21adb870c75680dc857cd05d41046a4",
|
|
||||||
url="https://pypi.python.org/packages/source/C/Cython/Cython-0.21.2.tar.gz")
|
|
||||||
|
|
||||||
extends("python")
|
|
||||||
|
|
||||||
def install(self, spec, prefix):
|
|
||||||
python("setup.py", "install", "--prefix=%s" % prefix)
|
|
|
@ -1,15 +0,0 @@
|
||||||
from spack import *
|
|
||||||
|
|
||||||
class PyDistutils2(Package):
|
|
||||||
"""Python Packaging Library."""
|
|
||||||
|
|
||||||
homepage = "https://hg.python.org/distutils2"
|
|
||||||
url = "https://pypi.python.org/packages/source/D/Distutils2/Distutils2-1.0a4.tar.gz"
|
|
||||||
|
|
||||||
version('1.0a4', '52bc9dffb394970c27e02853ae3a3241')
|
|
||||||
|
|
||||||
depends_on("python")
|
|
||||||
|
|
||||||
def install(self, spec, prefix):
|
|
||||||
python('setup.py', 'install', '--prefix=%s' % prefix)
|
|
||||||
|
|
Loading…
Reference in a new issue