From 4c4a85f2ebc43c9b7b3d5fdb8ad8387eae735f5f Mon Sep 17 00:00:00 2001
From: japm48 <japm48@users.noreply.github.com>
Date: Thu, 26 Mar 2020 16:01:00 +0100
Subject: gr-utils: restructure {mod,block}tool folders

Move modtool and blocktool outside of the python folder,
as per issue #2462.
---
 gr-utils/python/modtool/cli/disable.py | 40 ----------------------------------
 1 file changed, 40 deletions(-)
 delete mode 100644 gr-utils/python/modtool/cli/disable.py

(limited to 'gr-utils/python/modtool/cli/disable.py')

diff --git a/gr-utils/python/modtool/cli/disable.py b/gr-utils/python/modtool/cli/disable.py
deleted file mode 100644
index 87f891e1c3..0000000000
--- a/gr-utils/python/modtool/cli/disable.py
+++ /dev/null
@@ -1,40 +0,0 @@
-#
-# Copyright 2018 Free Software Foundation, Inc.
-#
-# This file is part of GNU Radio
-#
-# SPDX-License-Identifier: GPL-3.0-or-later
-#
-#
-""" Disable blocks module """
-
-from __future__ import print_function
-from __future__ import absolute_import
-from __future__ import unicode_literals
-
-import click
-
-from ..core import get_block_candidates, ModToolDisable
-from ..tools import SequenceCompleter
-from .base import common_params, block_name, run, cli_input
-
-
-@click.command('disable', short_help=ModToolDisable.description)
-@common_params
-@block_name
-def cli(**kwargs):
-    """Disable a block (comments out CMake entries for files)"""
-    kwargs['cli'] = True
-    self = ModToolDisable(**kwargs)
-    click.secho("GNU Radio module name identified: " + self.info['modname'], fg='green')
-    get_pattern(self)
-    run(self)
-
-def get_pattern(self):
-    """ Get the regex pattern for block(s) to be disabled """
-    if self.info['pattern'] is None:
-        block_candidates = get_block_candidates()
-        with SequenceCompleter(block_candidates):
-            self.info['pattern'] = cli_input('Which blocks do you want to disable? (Regex): ')
-    if not self.info['pattern'] or self.info['pattern'].isspace():
-        self.info['pattern'] = '.'
-- 
cgit v1.2.3