Codebase list gr-dab / 07546c5
Drop patches and add changelog entry Ruben Undheim 4 years ago
5 changed file(s) with 7 addition(s) and 82 deletion(s). Raw diff Collapse all Expand all
0 gr-dab (0.4-1) UNRELEASED; urgency=medium
1
2 * New upstream release
3 * debian/patches: Drop patches
4
5 -- Ruben Undheim <ruben.undheim@gmail.com> Mon, 30 Sep 2019 08:12:33 +0200
6
07 gr-dab (0.4~alpha-1) unstable; urgency=medium
18
29 * New upstream release
+0
-26
debian/patches/0001-Fix-library-version.patch less more
0 From: Ruben Undheim <ruben.undheim@gmail.com>
1 Date: Sun, 29 Sep 2019 08:57:08 +0200
2 Subject: Fix library version
3
4 ---
5 CMakeLists.txt | 6 +++---
6 1 file changed, 3 insertions(+), 3 deletions(-)
7
8 diff --git a/CMakeLists.txt b/CMakeLists.txt
9 index 8f79fdf..f9a26f4 100644
10 --- a/CMakeLists.txt
11 +++ b/CMakeLists.txt
12 @@ -42,10 +42,10 @@ set(CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE} CACHE STRING "")
13 list(INSERT CMAKE_MODULE_PATH 0 ${CMAKE_SOURCE_DIR}/cmake/Modules)
14
15 # Set the version information here
16 -set(VERSION_MAJOR 1)
17 -set(VERSION_API 0)
18 +set(VERSION_MAJOR 3)
19 +set(VERSION_API 8)
20 set(VERSION_ABI 0)
21 -set(VERSION_PATCH git)
22 +#set(VERSION_PATCH git)
23
24 cmake_policy(SET CMP0011 NEW)
25
+0
-18
debian/patches/0002-sdr-zmq-daemon-is-also-Python-3.patch less more
0 From: Ruben Undheim <ruben.undheim@gmail.com>
1 Date: Sun, 29 Sep 2019 10:17:16 +0000
2 Subject: sdr-zmq-daemon is also Python 3
3
4 ---
5 apps/sdr-zmq-daemon | 2 +-
6 1 file changed, 1 insertion(+), 1 deletion(-)
7
8 diff --git a/apps/sdr-zmq-daemon b/apps/sdr-zmq-daemon
9 index 16cad1c..2ae1506 100755
10 --- a/apps/sdr-zmq-daemon
11 +++ b/apps/sdr-zmq-daemon
12 @@ -1,4 +1,4 @@
13 -#!/usr/bin/env python2
14 +#!/usr/bin/env python3
15 # -*- coding: utf-8 -*-
16 #
17 # Copyright 2018 by Ruben Undheim
+0
-35
debian/patches/0003-Replace-raw_input-with-input.patch less more
0 From: Ruben Undheim <ruben.undheim@gmail.com>
1 Date: Sun, 29 Sep 2019 20:14:26 +0200
2 Subject: Replace raw_input with input
3
4 ---
5 apps/sdr-zmq-daemon | 2 +-
6 python/app/receive_dabplus.py | 2 +-
7 2 files changed, 2 insertions(+), 2 deletions(-)
8
9 diff --git a/apps/sdr-zmq-daemon b/apps/sdr-zmq-daemon
10 index 2ae1506..6ddfc10 100755
11 --- a/apps/sdr-zmq-daemon
12 +++ b/apps/sdr-zmq-daemon
13 @@ -99,7 +99,7 @@ def main(top_block_cls=top_block, options=None):
14 tb = top_block_cls()
15 tb.start()
16 try:
17 - raw_input('Press Enter to quit: ')
18 + input('Press Enter to quit: ')
19 except EOFError:
20 pass
21 tb.stop()
22 diff --git a/python/app/receive_dabplus.py b/python/app/receive_dabplus.py
23 index 7ad031a..14fb441 100755
24 --- a/python/app/receive_dabplus.py
25 +++ b/python/app/receive_dabplus.py
26 @@ -89,7 +89,7 @@ def receive_dabplus(frequency=220.352e6, rf_gain=25, if_gain=0, bb_gain=0, ppm=8
27
28
29 fg.start()
30 - raw_input("Running..")
31 + input("Running..")
32 #new = grdab.dabplus_audio_decoder_ff(grdab.parameters.dab_parameters(mode=1, sample_rate=samp_rate, verbose=False), 64, 304, 64, 1, True)
33 #newaudio = audio.sink(44100, '', True)
34 fg.stop()
+0
-3
debian/patches/series less more
0 0001-Fix-library-version.patch
1 0002-sdr-zmq-daemon-is-also-Python-3.patch
2 0003-Replace-raw_input-with-input.patch