diff options
author | Marcus Müller <mmueller@gnuradio.org> | 2020-11-12 18:34:28 +0100 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2020-12-17 08:08:38 -0500 |
commit | e3b2d81e1572071c98b304c4696a115a53ebf0da (patch) | |
tree | cb376c599ea8b2c617fb86f90f7419a86faaed74 /gnuradio-runtime/python | |
parent | 36654e9068930f973112b90ac48e62a749cefcfc (diff) |
runtime: abolish the gru python module
Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
Diffstat (limited to 'gnuradio-runtime/python')
4 files changed, 0 insertions, 46 deletions
diff --git a/gnuradio-runtime/python/gnuradio/CMakeLists.txt b/gnuradio-runtime/python/gnuradio/CMakeLists.txt index 7fad732038..9fc601bb70 100644 --- a/gnuradio-runtime/python/gnuradio/CMakeLists.txt +++ b/gnuradio-runtime/python/gnuradio/CMakeLists.txt @@ -9,7 +9,6 @@ include(GrPython) add_subdirectory(gr) -add_subdirectory(gru) if(ENABLE_GR_CTRLPORT) add_subdirectory(ctrlport) diff --git a/gnuradio-runtime/python/gnuradio/gr/qa_kludged_imports.py b/gnuradio-runtime/python/gnuradio/gr/qa_kludged_imports.py deleted file mode 100644 index 257aa3a761..0000000000 --- a/gnuradio-runtime/python/gnuradio/gr/qa_kludged_imports.py +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2005,2008,2010 Free Software Foundation, Inc. -# -# This file is part of GNU Radio -# -# SPDX-License-Identifier: GPL-3.0-or-later -# -# - - -from gnuradio import gr, gr_unittest - - -class test_kludged_imports (gr_unittest.TestCase): - - def setUp(self): - pass - - def tearDown(self): - pass - - def test_gru_import(self): - # make sure that this somewhat magic import works - from gnuradio import gru - - -if __name__ == '__main__': - gr_unittest.run(test_kludged_imports) diff --git a/gnuradio-runtime/python/gnuradio/gru/CMakeLists.txt b/gnuradio-runtime/python/gnuradio/gru/CMakeLists.txt deleted file mode 100644 index 123cf8c34e..0000000000 --- a/gnuradio-runtime/python/gnuradio/gru/CMakeLists.txt +++ /dev/null @@ -1,13 +0,0 @@ -# Copyright 2010-2011 Free Software Foundation, Inc. -# -# This file is part of GNU Radio -# -# SPDX-License-Identifier: GPL-3.0-or-later -# - -include(GrPython) - -GR_PYTHON_INSTALL(FILES - __init__.py - DESTINATION ${GR_PYTHON_DIR}/gnuradio/gru -) diff --git a/gnuradio-runtime/python/gnuradio/gru/__init__.py b/gnuradio-runtime/python/gnuradio/gru/__init__.py deleted file mode 100644 index 0857b0302b..0000000000 --- a/gnuradio-runtime/python/gnuradio/gru/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -# make this a package - -# Import gru stuff |