From 13b6fc6435e21926977f33e90d93f6fb9530931c Mon Sep 17 00:00:00 2001
From: Josh Morman <mormjb@gmail.com>
Date: Fri, 29 May 2020 10:11:43 -0400
Subject: pybind: clean up unused script and modtool tests

---
 gr-utils/bindtool/scripts/batch_gen_gr_modules.py | 25 -----------------------
 1 file changed, 25 deletions(-)
 delete mode 100644 gr-utils/bindtool/scripts/batch_gen_gr_modules.py

(limited to 'gr-utils/bindtool/scripts/batch_gen_gr_modules.py')

diff --git a/gr-utils/bindtool/scripts/batch_gen_gr_modules.py b/gr-utils/bindtool/scripts/batch_gen_gr_modules.py
deleted file mode 100644
index a133b18cb3..0000000000
--- a/gr-utils/bindtool/scripts/batch_gen_gr_modules.py
+++ /dev/null
@@ -1,25 +0,0 @@
-from gnuradio.bindtool import BindingGenerator
-
-prefix = '/share/gnuradio/grnext'
-output_dir = '/share/tmp/test_pybind'
-namespace = ['gr']
-module_dir = '/share/gnuradio/grnext/src/gnuradio/gnuradio-runtime/include/gnuradio'
-prefix_include_root = 'gnuradio'  #pmt, gnuradio/digital, etc.
-
-prefix = '/share/gnuradio/grnext'
-output_dir = '/share/tmp/test_pybind'
-namespace = ['gr','digital']
-module_dir = '/share/gnuradio/grnext/src/gnuradio/gr-digital/include'
-prefix_include_root = 'gnuradio/digital'  #pmt, gnuradio/digital, etc.
-
-prefix = '/share/gnuradio/grnext'
-output_dir = '/share/tmp/test_pybind'
-namespace = ['gr','fft']
-module_dir = '/share/gnuradio/grnext/src/gnuradio/gr-fft/include'
-prefix_include_root = 'gnuradio/fft'  #pmt, gnuradio/digital, etc.
-
-import warnings
-with warnings.catch_warnings():
-    warnings.filterwarnings("ignore", category=DeprecationWarning)
-    bg = BindingGenerator(prefix, namespace, prefix_include_root, output_dir)
-    bg.gen_bindings(module_dir)
\ No newline at end of file
-- 
cgit v1.2.3