Skip to content

Commit 58dbbdb

Browse files
Merge pull request #3 from spack/develop
Pull3
2 parents dd7a413 + 268c2a1 commit 58dbbdb

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

var/spack/repos/builtin/packages/boost/package.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,9 @@ def libs(self):
178178
conflicts('+taggedlayout', when='+versionedlayout')
179179
conflicts('+numpy', when='~python')
180180

181+
# boost-python in 1.72.0 broken with cxxstd=98
182+
conflicts('cxxstd=98', when='+mpi+python @1.72.0:')
183+
181184
# Container's Extended Allocators were not added until 1.56.0
182185
conflicts('+container', when='@:1.55.99')
183186

var/spack/repos/builtin/packages/py-espressopp/package.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class PyEspressopp(CMakePackage):
2727

2828
depends_on("cmake@2.8:", type='build')
2929
depends_on("mpi")
30-
depends_on("boost+serialization+filesystem+system+python+mpi", when='@1.9.4:')
30+
depends_on("boost+serialization+filesystem+system+python+mpi cxxstd=11", when='@1.9.4:')
3131
extends("python")
3232
depends_on("python@2:2.8")
3333
depends_on("py-mpi4py@2.0.0:", when='@1.9.4', type=('build', 'run'))

var/spack/repos/builtin/packages/py-spatialist/package.py

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,24 @@ class PySpatialist(PythonPackage):
1212
processing using GDAL and OGR."""
1313

1414
homepage = "https://github.com/johntruckenbrodt/spatialist"
15-
url = "https://files.pythonhosted.org/packages/source/s/spatialist/spatialist-0.2.8.tar.gz"
15+
url = "https://pypi.io/packages/source/s/spatialist/spatialist-0.4.tar.gz"
1616

17+
maintainers = ['adamjstewart']
18+
19+
version('0.4', sha256='153b118022c06ad2d1d51fb6cd9ecbfc8020bc1995b643ec7fa689a8c5dde7e9')
1720
version('0.2.8', sha256='97de7f9c0fbf28497ef28970bdf8093a152e691a783e7edad22998cb235154c6')
1821

22+
depends_on('python@2.7.9:', type=('build', 'run'))
1923
depends_on('py-setuptools', type='build')
24+
depends_on('py-setuptools-scm', type='build')
2025
depends_on('py-progressbar2', type=('build', 'run'))
21-
depends_on('py-pathos@0.2.0:', type=('build', 'run'))
22-
depends_on('py-numpy', type=('build', 'run'))
23-
depends_on('py-matplotlib', type=('build', 'run'))
24-
depends_on('py-jupyter-core', type=('build', 'run'))
26+
depends_on('py-jupyter', type=('build', 'run'))
2527
depends_on('py-ipython', type=('build', 'run'))
2628
depends_on('py-ipywidgets', type=('build', 'run'))
29+
depends_on('py-matplotlib', type=('build', 'run'))
30+
depends_on('py-prompt-toolkit@2.0.10:2.0.999', type=('build', 'run'))
31+
depends_on('py-pathos@0.2:', type=('build', 'run'))
32+
depends_on('py-numpy', type=('build', 'run'))
33+
depends_on('py-scoop', type=('build', 'run'))
2734
depends_on('py-tblib', type=('build', 'run'))
35+
depends_on('py-pyyaml', type=('build', 'run'))

0 commit comments

Comments
 (0)