diff options
author | Josh Morman <mormjb@gmail.com> | 2020-04-23 15:03:55 -0400 |
---|---|---|
committer | Josh Morman <mormjb@gmail.com> | 2020-06-04 10:05:48 -0400 |
commit | 999c0e723240ee783bca17942f77a9d05bbfc168 (patch) | |
tree | 3661aeb0ef10bad228df014a20e5b0a63627c833 /gr-utils/modtool/core/rename.py | |
parent | a4e6d4d55b35ac36dd5915dec5145073d8ec3b9a (diff) |
utils: add functionality to generate bindings
This currently exists in two places
1) Bindtool (longevity TBD) which calls blocktool to parse the public
header file in the include directory
2) Modtool - binding of headers added to add and bind. rm, update,
info, etc still TODO
Diffstat (limited to 'gr-utils/modtool/core/rename.py')
-rw-r--r-- | gr-utils/modtool/core/rename.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/gr-utils/modtool/core/rename.py b/gr-utils/modtool/core/rename.py index ac6f07215a..161d714143 100644 --- a/gr-utils/modtool/core/rename.py +++ b/gr-utils/modtool/core/rename.py @@ -70,17 +70,6 @@ class ModToolRename(ModTool): self._run_include(self.info['modname'], oldname, newname) return - def _run_swig_rename(self, swigfilename, old, new): - """ Rename SWIG includes and block_magic """ - nsubs = self._run_file_replace(swigfilename, old, new) - if nsubs < 1: - logger.info(f"Couldn't find '{old}' in file '{swigfilename}'.") - if nsubs == 2: - logger.info("Changing 'noblock' type file") - if nsubs > 3: - logger.warning(f"Hm, changed more then expected while editing {swigfilename}.") - return False - def _run_lib(self, module, old, new): ccfile = './lib/' + old + '_impl.cc' if not os.path.isfile(ccfile): # in case it is a 'noblock' |