commit-gnuradio
[Top][All Lists]
Advanced

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

[Commit-gnuradio] git://gnuradio.org/gnuradio branch, master, updated. v


From: git version control
Subject: [Commit-gnuradio] git://gnuradio.org/gnuradio branch, master, updated. v3.5.0git-8-gead0538
Date: Mon, 24 Oct 2011 02:01:01 +0000 (UTC)

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/gnuradio".

The branch, master has been updated
       via  ead053858d4f8e2c3f258c09f65f6fe59d404deb (commit)
       via  c63bb2453d9d0e0fc63de9eb9ce54249abacedd1 (commit)
       via  faf7dea043728056bed5a7eb0529162eb7d9f932 (commit)
       via  469cb5fd92ca7d1899e64b011d371f04e8830911 (commit)
       via  529e942f6456d45c957fe8248e7621c956c5f2f1 (commit)
       via  7112e308a6b0b84387c73460c4c8d1e8ff9f3b5a (commit)
      from  9b58dc91c0bf5a87128a24d8e22a8e19aa974c9f (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 ead053858d4f8e2c3f258c09f65f6fe59d404deb
Merge: c63bb24 faf7dea
Author: Tom Rondeau <address@hidden>
Date:   Sun Oct 23 21:11:08 2011 -0400

    Merge branch 'cmake_foo2'

commit c63bb2453d9d0e0fc63de9eb9ce54249abacedd1
Merge: 469cb5f 9b58dc9
Author: Tom Rondeau <address@hidden>
Date:   Sun Oct 23 21:10:59 2011 -0400

    Merge branch 'master' of gnuradio.org:gnuradio

commit faf7dea043728056bed5a7eb0529162eb7d9f932
Author: Josh Blum <address@hidden>
Date:   Sun Oct 23 15:43:03 2011 -0700

    the libraries

commit 469cb5fd92ca7d1899e64b011d371f04e8830911
Author: Tom Rondeau <address@hidden>
Date:   Sun Oct 23 17:52:13 2011 -0400

    core: Making gnuradio-core dependent on Volk. This means you HAVE to have 
Volk build in order to build GNU Radio. Volk is now a 'first-class citizen.'

commit 529e942f6456d45c957fe8248e7621c956c5f2f1
Author: Tom Rondeau <address@hidden>
Date:   Sun Oct 23 17:22:25 2011 -0400

    core: added a test for float_to_int overflow clipping.

commit 7112e308a6b0b84387c73460c4c8d1e8ff9f3b5a
Author: Tom Rondeau <address@hidden>
Date:   Sun Oct 23 17:12:32 2011 -0400

    core: Added type conversion int->float (issue #192). Added with a gri file 
and also added a gri file for float->int to perform function inside 
gr_float_to_int. Also added QA code for the new block.

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

Summary of changes:
 cmake/Modules/CMakeMacroLibtoolFile.cmake          |   57 ++++++++++++++++
 cmake/Modules/GrMiscUtils.cmake                    |   68 ++++++++++++++++++--
 cmake/Modules/GrVersion.cmake                      |   20 +++---
 gnuradio-core/CMakeLists.txt                       |    1 +
 gnuradio-core/src/lib/CMakeLists.txt               |    9 +--
 gnuradio-core/src/lib/general/CMakeLists.txt       |    5 ++
 gnuradio-core/src/lib/general/Makefile.am          |    7 ++
 gnuradio-core/src/lib/general/general.i            |    2 +
 .../{gr_float_to_char.cc => gr_float_to_int.cc}    |   24 ++++----
 .../{gr_int_to_float.h => gr_float_to_int.h}       |   22 +++---
 .../{gr_int_to_float.i => gr_float_to_int.i}       |    8 +-
 gnuradio-core/src/lib/general/gr_int_to_float.cc   |    5 +-
 .../{gri_float_to_short.cc => gri_float_to_int.cc} |   18 +++---
 .../gr_sys_paths.h => general/gri_float_to_int.h}  |   16 ++--
 .../src/lib/general/gri_int_to_float.cc            |   18 +++--
 .../gr_sys_paths.h => general/gri_int_to_float.h}  |   15 ++--
 gnuradio-core/src/python/gnuradio/gr/Makefile.am   |    1 +
 ...qa_vector_sink_source.py => qa_float_to_int.py} |   40 ++++++------
 gr-atsc/src/lib/CMakeLists.txt                     |    9 +--
 gr-audio/lib/CMakeLists.txt                        |    9 +--
 gr-comedi/src/CMakeLists.txt                       |    9 +--
 gr-digital/lib/CMakeLists.txt                      |    9 +--
 gr-noaa/lib/CMakeLists.txt                         |    9 +--
 gr-pager/lib/CMakeLists.txt                        |    9 +--
 gr-qtgui/lib/CMakeLists.txt                        |    9 +--
 gr-trellis/src/lib/CMakeLists.txt                  |    9 +--
 gr-uhd/lib/CMakeLists.txt                          |    9 +--
 gr-video-sdl/src/CMakeLists.txt                    |    9 +--
 gr-vocoder/lib/CMakeLists.txt                      |    9 +--
 gruel/src/lib/CMakeLists.txt                       |    9 +--
 30 files changed, 243 insertions(+), 201 deletions(-)
 create mode 100644 cmake/Modules/CMakeMacroLibtoolFile.cmake
 copy gnuradio-core/src/lib/general/{gr_float_to_char.cc => gr_float_to_int.cc} 
(69%)
 copy gnuradio-core/src/lib/general/{gr_int_to_float.h => gr_float_to_int.h} 
(70%)
 copy gnuradio-core/src/lib/general/{gr_int_to_float.i => gr_float_to_int.i} 
(84%)
 copy gnuradio-core/src/lib/general/{gri_float_to_short.cc => 
gri_float_to_int.cc} (75%)
 copy gnuradio-core/src/lib/{runtime/gr_sys_paths.h => 
general/gri_float_to_int.h} (74%)
 copy gr-digital/swig/_digital_hier.i => 
gnuradio-core/src/lib/general/gri_int_to_float.cc (77%)
 copy gnuradio-core/src/lib/{runtime/gr_sys_paths.h => 
general/gri_int_to_float.h} (77%)
 copy gnuradio-core/src/python/gnuradio/gr/{qa_vector_sink_source.py => 
qa_float_to_int.py} (57%)
 mode change 100755 => 100644


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



reply via email to

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