summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorhealther <healther@users.noreply.github.com>2018-06-07 19:33:38 +0200
committerscheibelp <scheibel1@llnl.gov>2018-06-07 10:33:38 -0700
commit980817575a694419198a7ac2e3995a42c8c01b68 (patch)
tree7e5b014fa4bf2eef9b82d1c6c5f7060265c38ac2 /lib
parent1d3ad6ea7e3f62b371418e91f0afc59b7b73b456 (diff)
downloadspack-980817575a694419198a7ac2e3995a42c8c01b68.tar.gz
spack-980817575a694419198a7ac2e3995a42c8c01b68.tar.bz2
spack-980817575a694419198a7ac2e3995a42c8c01b68.tar.xz
spack-980817575a694419198a7ac2e3995a42c8c01b68.zip
add python cache removal to `spack clean` (#8419)
Remove .pyc and .pyo files along with __pycache__directory if the user provides the -p/--python-cache option to "spack clean"
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/cmd/clean.py28
1 files changed, 24 insertions, 4 deletions
diff --git a/lib/spack/spack/cmd/clean.py b/lib/spack/spack/cmd/clean.py
index fd122714a9..b61a02adb0 100644
--- a/lib/spack/spack/cmd/clean.py
+++ b/lib/spack/spack/cmd/clean.py
@@ -23,6 +23,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##############################################################################
import argparse
+import os
+import shutil
import llnl.util.tty as tty
@@ -30,6 +32,7 @@ import spack.caches
import spack.cmd
import spack.repo
import spack.stage
+from spack.paths import spack_root
description = "remove temporary build files and/or downloaded archives"
section = "build"
@@ -37,9 +40,9 @@ level = "long"
class AllClean(argparse.Action):
- """Activates flags -s -d and -m simultaneously"""
+ """Activates flags -s -d -m and -p simultaneously"""
def __call__(self, parser, namespace, values, option_string=None):
- parser.parse_args(['-sdm'], namespace=namespace)
+ parser.parse_args(['-sdmp'], namespace=namespace)
def setup_parser(subparser):
@@ -53,6 +56,9 @@ def setup_parser(subparser):
'-m', '--misc-cache', action='store_true',
help="remove long-lived caches, like the virtual package index")
subparser.add_argument(
+ '-p', '--python-cache', action='store_true',
+ help="remove .pyc, .pyo files and __pycache__ folders")
+ subparser.add_argument(
'-a', '--all', action=AllClean, help="equivalent to -sdm", nargs=0
)
subparser.add_argument(
@@ -63,9 +69,9 @@ def setup_parser(subparser):
def clean(parser, args):
-
# If nothing was set, activate the default
- if not any([args.specs, args.stage, args.downloads, args.misc_cache]):
+ if not any([args.specs, args.stage, args.downloads, args.misc_cache,
+ args.python_cache]):
args.stage = True
# Then do the cleaning falling through the cases
@@ -88,3 +94,17 @@ def clean(parser, args):
if args.misc_cache:
tty.msg('Removing cached information on repositories')
spack.caches.misc_cache.destroy()
+
+ if args.python_cache:
+ tty.msg('Removing python cache files')
+ for root, dirs, files in os.walk(spack_root):
+ for f in files:
+ if f.endswith('.pyc') or f.endswith('.pyo'):
+ fname = os.path.join(root, f)
+ tty.debug('Removing {0}'.format(fname))
+ os.remove(fname)
+ for d in dirs:
+ if d == '__pycache__':
+ dname = os.path.join(root, d)
+ tty.debug('Removing {0}'.format(dname))
+ shutil.rmtree(dname)