[hamradio-commits] [soapyosmo] branch master updated (b8f32a3 -> 1711947)

Andreas E. Bombe aeb at moszumanska.debian.org
Sat Aug 12 20:06:19 UTC 2017


This is an automated email from the git hooks/post-receive script.

aeb pushed a change to branch master
in repository soapyosmo.

      from  b8f32a3   Changelog for 0.2.4-2
       new  9303121   New upstream version 0.2.5
       new  8414014   Updated version 0.2.5 from 'upstream/0.2.5'
       new  bc4625a   Restore .gitignore
       new  38d6c50   Change SoapySDR ABI version in package names and dependencies from 0.5-2 to 0.6
       new  79544c6   Build-Depend on versioned libsoapysdr0.6-dev instead of libsoapysdr-dev
       new  76ba417   Bump Standards-Version to 4.0.1
       new  c50eace   Add new files and new copyright years to debian/copyright
       new  1711947   Finalize changelog for 0.2.5-1

The 8 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CMakeLists.txt                                     |   9 +
 Changelog.txt                                      |   8 +
 GrOsmoSDRInterface.hpp                             |  38 +-
 debian/changelog                                   |  11 +
 debian/control                                     |  24 +-
 debian/copyright                                   |  61 +-
 debian/patches/internal-common-library             |   2 +-
 debian/rules                                       |   4 +-
 ...o-common0.5-2.docs => soapyosmo-common0.6.docs} |   0
 ...on0.5-2.install => soapyosmo-common0.6.install} |   0
 ....install => soapysdr0.6-module-mirisdr.install} |   0
 ....install => soapysdr0.6-module-osmosdr.install} |   0
 ....install => soapysdr0.6-module-rfspace.install} |   0
 gr-osmosdr/AUTHORS                                 |   1 +
 gr-osmosdr/CMakeLists.txt                          |   2 +
 gr-osmosdr/README                                  |   1 +
 gr-osmosdr/cmake/Modules/FindLibFreeSRP.cmake      |  27 +
 gr-osmosdr/grc/gen_osmosdr_blocks.py               |   2 +
 gr-osmosdr/lib/CMakeLists.txt                      |   8 +
 gr-osmosdr/lib/airspy/airspy_fir_kernels.h         | 101 +++
 gr-osmosdr/lib/airspy/airspy_source_c.cc           |  72 +-
 gr-osmosdr/lib/bladerf/CMakeLists.txt              |   3 +-
 gr-osmosdr/lib/bladerf/bladerf_sink_c.cc           |   7 +-
 gr-osmosdr/lib/bladerf/bladerf_source_c.cc         |  19 +-
 gr-osmosdr/lib/config.h.in                         |   1 +
 gr-osmosdr/lib/device.cc                           |  16 +
 gr-osmosdr/lib/{osmosdr => freesrp}/CMakeLists.txt |  12 +-
 gr-osmosdr/lib/freesrp/freesrp_common.cc           | 199 ++++++
 gr-osmosdr/lib/freesrp/freesrp_common.h            |  29 +
 gr-osmosdr/lib/freesrp/freesrp_sink_c.cc           | 280 ++++++++
 gr-osmosdr/lib/freesrp/freesrp_sink_c.h            | 130 ++++
 gr-osmosdr/lib/freesrp/freesrp_source_c.cc         | 341 +++++++++
 gr-osmosdr/lib/freesrp/freesrp_source_c.h          | 131 ++++
 .../lib/freesrp/readerwriterqueue/LICENSE.md       |  28 +
 gr-osmosdr/lib/freesrp/readerwriterqueue/README.md | 114 +++
 .../lib/freesrp/readerwriterqueue/atomicops.h      | 577 ++++++++++++++++
 .../freesrp/readerwriterqueue/readerwriterqueue.h  | 764 +++++++++++++++++++++
 gr-osmosdr/lib/hackrf/hackrf_sink_c.cc             |  27 +-
 gr-osmosdr/lib/hackrf/hackrf_source_c.cc           |  27 +-
 gr-osmosdr/lib/rfspace/rfspace_source_c.cc         |  37 +
 gr-osmosdr/lib/rfspace/rfspace_source_c.h          |   3 +
 gr-osmosdr/lib/rtl/rtl_source_c.cc                 |   2 +-
 gr-osmosdr/lib/rtl_tcp/rtl_tcp_source_c.cc         |   2 +-
 gr-osmosdr/lib/sink_impl.cc                        |  16 +
 gr-osmosdr/lib/soapy/CMakeLists.txt                |   1 +
 .../aadvark.h => lib/soapy/soapy_common.cc}        |  45 +-
 .../osmosdr/api.h => lib/soapy/soapy_common.h}     |  31 +-
 gr-osmosdr/lib/soapy/soapy_sink_c.cc               |  13 +-
 gr-osmosdr/lib/soapy/soapy_source_c.cc             |   9 +-
 gr-osmosdr/lib/source_impl.cc                      |  19 +
 50 files changed, 3130 insertions(+), 124 deletions(-)
 rename debian/{soapyosmo-common0.5-2.docs => soapyosmo-common0.6.docs} (100%)
 rename debian/{soapyosmo-common0.5-2.install => soapyosmo-common0.6.install} (100%)
 rename debian/{soapysdr0.5-2-module-mirisdr.install => soapysdr0.6-module-mirisdr.install} (100%)
 rename debian/{soapysdr0.5-2-module-osmosdr.install => soapysdr0.6-module-osmosdr.install} (100%)
 rename debian/{soapysdr0.5-2-module-rfspace.install => soapysdr0.6-module-rfspace.install} (100%)
 create mode 100644 gr-osmosdr/cmake/Modules/FindLibFreeSRP.cmake
 create mode 100644 gr-osmosdr/lib/airspy/airspy_fir_kernels.h
 copy gr-osmosdr/lib/{osmosdr => freesrp}/CMakeLists.txt (80%)
 create mode 100644 gr-osmosdr/lib/freesrp/freesrp_common.cc
 create mode 100644 gr-osmosdr/lib/freesrp/freesrp_common.h
 create mode 100644 gr-osmosdr/lib/freesrp/freesrp_sink_c.cc
 create mode 100644 gr-osmosdr/lib/freesrp/freesrp_sink_c.h
 create mode 100644 gr-osmosdr/lib/freesrp/freesrp_source_c.cc
 create mode 100644 gr-osmosdr/lib/freesrp/freesrp_source_c.h
 create mode 100644 gr-osmosdr/lib/freesrp/readerwriterqueue/LICENSE.md
 create mode 100644 gr-osmosdr/lib/freesrp/readerwriterqueue/README.md
 create mode 100644 gr-osmosdr/lib/freesrp/readerwriterqueue/atomicops.h
 create mode 100644 gr-osmosdr/lib/freesrp/readerwriterqueue/readerwriterqueue.h
 copy gr-osmosdr/{docs/doxygen/doxyxml/example/aadvark.h => lib/soapy/soapy_common.cc} (53%)
 copy gr-osmosdr/{include/osmosdr/api.h => lib/soapy/soapy_common.h} (55%)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-hamradio/soapyosmo.git



More information about the pkg-hamradio-commits mailing list