Rename py-proj to py-pyproj, consistent with Spack's current naming conventions (#9962)

This commit is contained in:
Neil Flood 2018-11-28 08:31:30 +10:00 committed by Adam J. Stewart
parent 2e04f3daab
commit 8a78c9c6bc
3 changed files with 4 additions and 4 deletions

View file

@ -25,6 +25,6 @@ class PyGeopandas(PythonPackage):
depends_on('py-descartes', type=('build', 'run'), when='+plotting')
depends_on('py-matplotlib', type=('build', 'run'), when='+plotting')
depends_on('py-fiona', type=('build', 'run'))
depends_on('py-proj', type=('build', 'run'))
depends_on('py-pyproj', type=('build', 'run'))
depends_on('py-shapely', type=('build', 'run'))
depends_on('py-pandas', type=('build', 'run'))

View file

@ -20,4 +20,4 @@ class PyOwslib(PythonPackage):
depends_on('py-dateutil@1.5:', type=('build', 'run'))
depends_on('py-pytz', type=('build', 'run'))
depends_on('py-requests@1.0:', type=('build', 'run'))
depends_on('py-proj', type=('build', 'run'))
depends_on('py-pyproj', type=('build', 'run'))

View file

@ -6,7 +6,7 @@
from spack import *
class PyProj(PythonPackage):
class PyPyproj(PythonPackage):
"""Python interface to the PROJ.4 Library."""
homepage = "http://jswhit.github.io/pyproj/"
@ -21,7 +21,7 @@ class PyProj(PythonPackage):
depends_on('py-cython', type='build')
depends_on('py-setuptools', type='build')
# NOTE: py-proj does NOT depends_on('proj').
# NOTE: py-pyproj does NOT depends_on('proj').
# The py-proj git repo actually includes the correct version of PROJ.4,
# which is built internally as part of the py-proj build.
# Adding depends_on('proj') will cause mysterious build errors.