summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMassimiliano Culpo <massimiliano.culpo@googlemail.com>2017-04-07 11:18:34 +0200
committerGitHub <noreply@github.com>2017-04-07 11:18:34 +0200
commit10c395b2f510eb9ce1036222d30ef99d9aa26212 (patch)
treea182fca5321719b5f48bda0031418022c176e16e /lib
parent030127a07173357013302d024acf60b151a95fbd (diff)
downloadspack-10c395b2f510eb9ce1036222d30ef99d9aa26212.tar.gz
spack-10c395b2f510eb9ce1036222d30ef99d9aa26212.tar.bz2
spack-10c395b2f510eb9ce1036222d30ef99d9aa26212.tar.xz
spack-10c395b2f510eb9ce1036222d30ef99d9aa26212.zip
Abinit: a few modernizations for the package and its dependencies (#3699)
* libxc: added libs interface * hdf5: added libs interface, added conflicts * abinit: modernized package to use build interface * netcdf-fortran: added libs interface * abinit: added version 8.2.2
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/spec.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/spack/spack/spec.py b/lib/spack/spack/spec.py
index 534bc6c2d3..adddb87428 100644
--- a/lib/spack/spack/spec.py
+++ b/lib/spack/spack/spec.py
@@ -901,16 +901,12 @@ class SpecBuildInterface(ObjectWrapper):
)
is_virtual = Spec.is_virtual(name)
- self._query_to_package = QueryState(
+ self.last_query = QueryState(
name=name,
extra_parameters=query_parameters,
isvirtual=is_virtual
)
- @property
- def last_query(self):
- return self._query_to_package
-
@key_ordering
class Spec(object):