Skip to content
Snippets Groups Projects
Commit c1ad4bde authored by Todd Gamblin's avatar Todd Gamblin
Browse files

Rename EditableMakefile to MakefilePackage

parent 7bd73541
No related branches found
No related tags found
No related merge requests found
...@@ -189,14 +189,14 @@ ...@@ -189,14 +189,14 @@
__all__ = ['Package', __all__ = ['Package',
'CMakePackage', 'CMakePackage',
'AutotoolsPackage', 'AutotoolsPackage',
'EditableMakefile', 'MakefilePackage',
'Version', 'Version',
'when', 'when',
'ver', 'ver',
'alldeps', 'alldeps',
'nolink'] 'nolink']
from spack.package import Package, ExtensionConflictError from spack.package import Package, ExtensionConflictError
from spack.build_systems.editable_makefile import EditableMakefile from spack.build_systems.makefile import MakefilePackage
from spack.build_systems.autotools import AutotoolsPackage from spack.build_systems.autotools import AutotoolsPackage
from spack.build_systems.cmake import CMakePackage from spack.build_systems.cmake import CMakePackage
from spack.version import Version, ver from spack.version import Version, ver
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
from spack.package import PackageBase from spack.package import PackageBase
class EditableMakefile(PackageBase): class MakefilePackage(PackageBase):
"""Specialized class for packages that are built using editable Makefiles """Specialized class for packages that are built using editable Makefiles
This class provides three phases that can be overridden: This class provides three phases that can be overridden:
...@@ -43,7 +43,7 @@ class EditableMakefile(PackageBase): ...@@ -43,7 +43,7 @@ class EditableMakefile(PackageBase):
phases = ['edit', 'build', 'install'] phases = ['edit', 'build', 'install']
# To be used in UI queries that require to know which # To be used in UI queries that require to know which
# build-system class we are using # build-system class we are using
build_system_class = 'EditableMakefile' build_system_class = 'MakefilePackage'
def build_directory(self): def build_directory(self):
"""Directory where the main Makefile is located""" """Directory where the main Makefile is located"""
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
from spack import * from spack import *
class Astyle(EditableMakefile): class Astyle(MakefilePackage):
"""A Free, Fast, and Small Automatic Formatter for C, C++, C++/CLI, """A Free, Fast, and Small Automatic Formatter for C, C++, C++/CLI,
Objective-C, C#, and Java Source Code. Objective-C, C#, and Java Source Code.
""" """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment