| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Signed-off-by: Josh Morman <jmorman@gnuradio.org>
|
|
|
|
|
|
|
| |
These were added in GNU Radio 3.1.3, but a Google search finds no
mention of gru.daemonize outside of the changelog. Modern Python
programs could use the python-daemon library, which implements the
daemon specification of PEP 3143.
|
|
|
|
|
| |
The recent libsndfile transition changed the API of the wavfile_sink
block, so the two examples that use it need to be updated.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
All of the removed `from __future__ import` were needed in older
versions of Python (mostly 2.5.x and below) but later became mandatory
in most versions of Python 3 hence are not necessary anymore.
More specifically, according to __future__.py[1]:
- unicode_literals is part of Python since versions 2.6.0 and 3.0.0;
- print_function is part of Python since versions 2.6.0 and 3.0.0;
- absolute_import is part of Python since versions 2.5.0 and 3.0.0;
- division is part of Python since versions 2.2.0 and 3.0.0;
Get rid of those unnecessary imports to slightly clean up the codebase.
[1] https://github.com/python/cpython/blob/master/Lib/__future__.py
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
CPack is not used, unmaintaned, and broken.
This does not eliminate any MSVC build functionality.
|
| |
|
|
|
|
| |
copy, head, skiphead, vector_map, and annotator blocks to use gr-blocks.
|
|
|
|
| |
moved all refs to gr-blocks.
|
|
|
|
| |
in gr-blocks.
|
|
|
|
| |
Also fixes up some other missing moves.
|
|
|
|
| |
Examples that use gr-analog test for it first.
|
|
|
|
|
|
|
|
| |
possible.
Passing make and make test. Examples and apps need testing.
gr-filter relies on sig_source and noise_source, so can't remove them from core.
|
| |
|
|
|
|
|
|
| |
this in the future.
The sed script was provided by Moritz Fischer.
|
|
|
|
| |
All python and GRC examples directly associated with a top-level component are now in that examples directory. Examples are split into c++, python, and grc dirs but are all installed into $prefix/share/gnuradio/examples/<component>.
|
|
|
|
| |
Nick Foster owes Nick Corgan a six-pack of beer!
|
| |
|
| |
|
|
This begins a transition of examples from a separate gnuradio-examples component
into an examples directory with the component they go with. In this commit:
gnuradio-examples/c++/audio/ => gr-audio/examples/c++
gnuradio-examples/python/audio => gr-audio/examples/python
The system installation directory remains $PREFIX/share/gnuradio/examples/audio
|