commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] git://gnuradio.org/jcorgan branch, wip/gnuradio-runtim


From: git repository hosting
Subject: [Commit-gnuradio] git://gnuradio.org/jcorgan branch, wip/gnuradio-runtime, updated. 3.3git-606-g9755c40
Date: Wed, 27 Jan 2010 16:18:53 +0000 (GMT)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "git://gnuradio.org/jcorgan".

The branch, wip/gnuradio-runtime has been updated
       via  9755c40536bac013d1f308c478cdc5a678bb0bb9 (commit)
      from  fddfe81f85b167a2f21f52a40cd963cf4788a08d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 9755c40536bac013d1f308c478cdc5a678bb0bb9
Author: Johnathan Corgan <address@hidden>
Date:   Wed Jan 27 08:09:57 2010 -0800

    gnuradio-runtime: create gnuradio.gr namespace
    
    QA code is not working, need custom gnuradio-runtime only run_tests.sh
    Need to move gr.vector_source* and gr.vector_sink* into runtime for QA

-----------------------------------------------------------------------

Summary of changes:
 ATTENTION!!!                                       |   10 +-
 config/grc_gnuradio_core.m4                        |    1 -
 config/grc_gnuradio_runtime.m4                     |    6 +-
 gnuradio-core/src/lib/general/Makefile.am          |    6 +-
 gnuradio-core/src/lib/swig/gnuradio.i              |   87 -------
 .../src/python/gnuradio/gr/hier_block2.py          |  113 ---------
 gnuradio-core/src/python/gnuradio/gr/prefs.py      |  126 ----------
 gnuradio-core/src/python/gnuradio/gr/top_block.py  |  159 ------------
 gnuradio-runtime/Makefile.am                       |    2 +-
 gnuradio-runtime/lib/.gitignore                    |    3 +-
 gnuradio-runtime/lib/Makefile.am                   |    6 +
 .../lib}/gr_constants.cc.in                        |    0
 .../lib}/gr_constants.h                            |    0
 gnuradio-runtime/python/Makefile.am                |    8 +
 .../src => gnuradio-runtime}/python/__init__.py    |    0
 .../python/gr}/.gitignore                          |    0
 gnuradio-runtime/python/gr/Makefile.am             |   39 +++
 gnuradio-runtime/python/gr/__init__.py             |   54 ++++
 .../python}/gr/exceptions.py                       |    0
 .../python}/gr/gr_threading.py                     |    0
 .../python}/gr/gr_threading_23.py                  |    0
 .../python}/gr/gr_threading_24.py                  |    0
 gnuradio-runtime/python/gr/hier_block2.py          |  113 +++++++++
 gnuradio-runtime/python/gr/prefs.py                |  124 ++++++++++
 gnuradio-runtime/python/gr/top_block.py            |  157 ++++++++++++
 .../python}/gr_unittest.py                         |    0
 gnuradio-runtime/swig/.gitignore                   |    2 +
 gnuradio-runtime/swig/Makefile.am                  |   62 +++++
 gnuradio-runtime/swig/Makefile.swig.gen            |  259 ++++++++++++++++++++
 gnuradio-runtime/swig/gnuradio.i                   |   81 ++++++
 .../swig}/gr_constants.i                           |    0
 .../lib => gnuradio-runtime}/swig/gr_shared_ptr.i  |    0
 gnuradio-runtime/swig/gr_swig.i                    |   76 ++++++
 .../swig/gr_swig_block_magic.i                     |    0
 gnuradio-runtime/swig/runtime.i                    |   60 -----
 gnuradio-runtime/tests/.gitignore                  |    3 +
 gnuradio-runtime/tests/Makefile.am                 |   34 +++
 .../gr => gnuradio-runtime/tests}/qa_head.py       |    0
 .../tests}/qa_hier_block2.py                       |    0
 .../tests}/qa_kludge_copy.py                       |    0
 gnuradio-runtime/tests/run_tests.in                |    5 +
 41 files changed, 1041 insertions(+), 555 deletions(-)
 delete mode 100644 gnuradio-core/src/lib/swig/gnuradio.i
 delete mode 100644 gnuradio-core/src/python/gnuradio/gr/hier_block2.py
 delete mode 100644 gnuradio-core/src/python/gnuradio/gr/prefs.py
 delete mode 100644 gnuradio-core/src/python/gnuradio/gr/top_block.py
 rename {gnuradio-core/src/lib/general => 
gnuradio-runtime/lib}/gr_constants.cc.in (100%)
 rename {gnuradio-core/src/lib/general => gnuradio-runtime/lib}/gr_constants.h 
(100%)
 copy {gr-qtgui/src => gnuradio-runtime}/python/__init__.py (100%)
 copy {gcell/include/gcell => gnuradio-runtime/python/gr}/.gitignore (100%)
 create mode 100644 gnuradio-runtime/python/gr/Makefile.am
 create mode 100644 gnuradio-runtime/python/gr/__init__.py
 rename {gnuradio-core/src/python/gnuradio => 
gnuradio-runtime/python}/gr/exceptions.py (100%)
 rename {gnuradio-core/src/python/gnuradio => 
gnuradio-runtime/python}/gr/gr_threading.py (100%)
 rename {gnuradio-core/src/python/gnuradio => 
gnuradio-runtime/python}/gr/gr_threading_23.py (100%)
 rename {gnuradio-core/src/python/gnuradio => 
gnuradio-runtime/python}/gr/gr_threading_24.py (100%)
 create mode 100644 gnuradio-runtime/python/gr/hier_block2.py
 create mode 100644 gnuradio-runtime/python/gr/prefs.py
 create mode 100644 gnuradio-runtime/python/gr/top_block.py
 rename {gnuradio-core/src/python/gnuradio => 
gnuradio-runtime/python}/gr_unittest.py (100%)
 create mode 100644 gnuradio-runtime/swig/Makefile.swig.gen
 create mode 100644 gnuradio-runtime/swig/gnuradio.i
 rename {gnuradio-core/src/lib/general => gnuradio-runtime/swig}/gr_constants.i 
(100%)
 rename {gnuradio-core/src/lib => gnuradio-runtime}/swig/gr_shared_ptr.i (100%)
 create mode 100644 gnuradio-runtime/swig/gr_swig.i
 rename {gnuradio-core/src/lib => gnuradio-runtime}/swig/gr_swig_block_magic.i 
(100%)
 delete mode 100644 gnuradio-runtime/swig/runtime.i
 create mode 100644 gnuradio-runtime/tests/.gitignore
 create mode 100644 gnuradio-runtime/tests/Makefile.am
 rename {gnuradio-core/src/python/gnuradio/gr => 
gnuradio-runtime/tests}/qa_head.py (100%)
 rename {gnuradio-core/src/python/gnuradio/gr => 
gnuradio-runtime/tests}/qa_hier_block2.py (100%)
 rename {gnuradio-core/src/python/gnuradio/gr => 
gnuradio-runtime/tests}/qa_kludge_copy.py (100%)
 create mode 100755 gnuradio-runtime/tests/run_tests.in


hooks/post-receive
-- 
git://gnuradio.org/jcorgan




reply via email to

[Prev in Thread] Current Thread [Next in Thread]