summaryrefslogtreecommitdiff
path: root/gr-utils/blocktool/core/parseheader_generic.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove pygccxml hackAndré Apitzsch2022-01-171-6/+0
| | | | | | | Upstream fixed the issue in version 2.0.0, the minimal version gnuradio depends on. Signed-off-by: André Apitzsch <andre.apitzsch@etit.tu-chemnitz.de>
* blocktool: disable logger header when parsing headerJosh Morman2021-12-061-1/+1
| | | | Signed-off-by: Josh Morman <jmorman@gnuradio.org>
* utils: pep8 formattingJosh Morman2021-11-241-17/+18
| | | | Signed-off-by: Josh Morman <jmorman@gnuradio.org>
* blocktool: use c++17Josh Morman2021-11-031-1/+1
| | | | Signed-off-by: Josh Morman <jmorman@gnuradio.org>
* gr-utils: improve usefulness of blocktool exceptionsJacob Gilbert2021-02-151-1/+1
| | | | | | When binding blocks using 'gr_modtool bind' if a file is missing a fairly useless error is now printed that 'file does not exist'. This actually prints the file that was attempted to be accessed Signed-off-by: Jacob Gilbert <jacob.gilbert@protonmail.com>
* Fix typos throughout the codeluzpaz2020-10-291-2/+2
| | | | | | | * Fix various typos Found via `codespell v2.0.dev` `codespell -q 3 -L ans,fo,hist,inout,ist,ith,nd,sinc,uint -S ./volk`
* Make additional includes and defines available in the bind processVolker Schroer2020-10-281-4/+7
|
* python: Remove unnecessary 'from __future__ import'Oleksandr Kravchuk2020-08-031-3/+0
| | | | | | | | | | | | | | | | 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
* blocktool: Monkeypatch time module for pygccxml to work under Python>=3.8Marcus Müller2020-06-231-0/+7
| | | | | | | | | pygccxml tries to import time.clock, which was deprecated since Py3.3, and removed in Py3.8 Thus, for these platforms: time.clock = time.perf_counter
* pybind: add hash check to binding file creation (#3472)mormj2020-06-041-0/+10
|
* utils: add functionality to generate bindingsJosh Morman2020-06-041-0/+340
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