From 54cb59870999a01c38deb82b086275b53fc25ced Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Mon, 7 May 2018 13:12:26 +0200 Subject: [PATCH 001/100] New version Resolves: rhbz#1575442 --- sources | 2 +- urh.spec | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/sources b/sources index af8e720..34635e4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.0.2.tar.gz) = 34a866a5ce6dabb8b44f2bdeeda0033e725048d800c55e7dedd66e1d698f97fbd354364328010c8bc6c61de80e52e04b561af14d74cbe8b8513e01962aa9e051 +SHA512 (urh-2.0.4.tar.gz) = 596f98ab02e9016fd60261703dc06d29ecdab42db1fc30011dcc7e1efd6f053f80442ff628a996b587e984a5801b32f3667a6c162812daccba09bdec30e79a83 diff --git a/urh.spec b/urh.spec index 45594e3..fe0ed02 100644 --- a/urh.spec +++ b/urh.spec @@ -1,7 +1,7 @@ # python 2 not supported Name: urh -Version: 2.0.2 +Version: 2.0.4 Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 @@ -11,6 +11,7 @@ Source0: https://github.com/jopohl/urh/archive/v%{version}.tar.gz#/urh-%{version BuildRequires: python3-setuptools, python3-devel, gcc-c++, python3-numpy, desktop-file-utils BuildRequires: hackrf-devel, rtl-sdr-devel, uhd-devel, python3-qt5, python3-Cython Requires: python3-numpy, python3-psutil python3-zmq, python3-qt5 +Patch0: urh-2.0.4-compile-fix.patch %description The Universal Radio Hacker is a software for investigating unknown wireless @@ -18,6 +19,7 @@ protocols. %prep %setup -q +%patch0 -p1 -b .compile-fix # remove *.pyc find . -name '*.pyc' | xargs rm -f @@ -81,6 +83,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Mon May 7 2018 Jaroslav Škarvada - 2.0.4-1 +- New version + Resolves: rhbz#1575442 + * Mon Apr 23 2018 Jaroslav Škarvada - 2.0.2-1 - New version Resolves: rhbz#1570453 From e35c5da80942fdca44002f05eea5eb8bd301b569 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Mon, 7 May 2018 13:13:50 +0200 Subject: [PATCH 002/100] Added patch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jaroslav Škarvada --- urh-2.0.4-compile-fix.patch | 80 +++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 urh-2.0.4-compile-fix.patch diff --git a/urh-2.0.4-compile-fix.patch b/urh-2.0.4-compile-fix.patch new file mode 100644 index 0000000..98f7cfc --- /dev/null +++ b/urh-2.0.4-compile-fix.patch @@ -0,0 +1,80 @@ +diff --git a/src/urh/dev/native/lib/chackrf.pxd b/src/urh/dev/native/lib/chackrf.pxd +index a85e0c6..0765dea 100644 +--- a/src/urh/dev/native/lib/chackrf.pxd ++++ b/src/urh/dev/native/lib/chackrf.pxd +@@ -1,6 +1,3 @@ +-cdef extern from "config.h": +- cdef bint HACKRF_HAS_MULTI_DEVICE +- + cdef extern from "libhackrf/hackrf.h": + enum hackrf_error: + HACKRF_SUCCESS = 0 +diff --git a/src/urh/dev/native/lib/crtlsdr.pxd b/src/urh/dev/native/lib/crtlsdr.pxd +index 76df34a..1701258 100644 +--- a/src/urh/dev/native/lib/crtlsdr.pxd ++++ b/src/urh/dev/native/lib/crtlsdr.pxd +@@ -1,6 +1,3 @@ +-cdef extern from "config.h": +- cdef bint RTLSDR_HAS_BANDWIDTH +- + cdef extern from "rtl-sdr.h": + ctypedef struct rtlsdr_dev_t: + pass +diff --git a/src/urh/dev/native/lib/hackrf.pyx b/src/urh/dev/native/lib/hackrf.pyx +index 4aa1290..a1c08a8 100644 +--- a/src/urh/dev/native/lib/hackrf.pyx ++++ b/src/urh/dev/native/lib/hackrf.pyx +@@ -40,7 +40,7 @@ cdef chackrf.hackrf_device*_c_device + cdef int hackrf_success = chackrf.HACKRF_SUCCESS + + cpdef has_multi_device_support(): +- return chackrf.HACKRF_HAS_MULTI_DEVICE != 0 ++ return True + + cpdef setup(str serial): + """ +@@ -54,7 +54,7 @@ cpdef init(): + return chackrf.hackrf_init() + + cpdef open(str serial_number=""): +- if not chackrf.HACKRF_HAS_MULTI_DEVICE or not serial_number: ++ if not serial_number: + return chackrf.hackrf_open(&_c_device) + + desired_serial = serial_number.encode('UTF-8') +@@ -154,9 +154,6 @@ cpdef set_baseband_filter_bandwidth(bandwidth_hz): + return chackrf.hackrf_set_baseband_filter_bandwidth(_c_device, bandwidth_hz) + + cpdef get_device_list(): +- if not chackrf.HACKRF_HAS_MULTI_DEVICE: +- return None +- + init() + cdef chackrf.hackrf_device_list_t* device_list = chackrf.hackrf_device_list() + +diff --git a/src/urh/dev/native/lib/rtlsdr.pyx b/src/urh/dev/native/lib/rtlsdr.pyx +index ba2486f..6b7f6b8 100644 +--- a/src/urh/dev/native/lib/rtlsdr.pyx ++++ b/src/urh/dev/native/lib/rtlsdr.pyx +@@ -17,10 +17,7 @@ cdef void _c_callback_recv(unsigned char *buffer, uint32_t length, void *ctx): + + + cpdef bandwidth_is_adjustable(): +- if crtlsdr.RTLSDR_HAS_BANDWIDTH: +- return True +- else: +- return False ++ return True + + cpdef uint32_t get_device_count(): + return crtlsdr.rtlsdr_get_device_count() +@@ -222,9 +219,6 @@ cpdef int set_tuner_bandwidth(uint32_t bw): + :param bw: bandwidth in Hz. Zero means automatic BW selection. + :return 0 on success + """ +- if not crtlsdr.RTLSDR_HAS_BANDWIDTH: +- return -100 +- + return crtlsdr.rtlsdr_set_tuner_bandwidth(_c_device, bw) + + cpdef int set_sample_rate(uint32_t sample_rate): From 7689f6d96e18fc8219b3dfcb66e056fe5891daf6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Mon, 7 May 2018 14:29:50 +0200 Subject: [PATCH 003/100] Fixed build --- urh-2.0.4-compile-fix.patch | 80 ------------------------------------- urh.spec | 13 +++--- 2 files changed, 8 insertions(+), 85 deletions(-) delete mode 100644 urh-2.0.4-compile-fix.patch diff --git a/urh-2.0.4-compile-fix.patch b/urh-2.0.4-compile-fix.patch deleted file mode 100644 index 98f7cfc..0000000 --- a/urh-2.0.4-compile-fix.patch +++ /dev/null @@ -1,80 +0,0 @@ -diff --git a/src/urh/dev/native/lib/chackrf.pxd b/src/urh/dev/native/lib/chackrf.pxd -index a85e0c6..0765dea 100644 ---- a/src/urh/dev/native/lib/chackrf.pxd -+++ b/src/urh/dev/native/lib/chackrf.pxd -@@ -1,6 +1,3 @@ --cdef extern from "config.h": -- cdef bint HACKRF_HAS_MULTI_DEVICE -- - cdef extern from "libhackrf/hackrf.h": - enum hackrf_error: - HACKRF_SUCCESS = 0 -diff --git a/src/urh/dev/native/lib/crtlsdr.pxd b/src/urh/dev/native/lib/crtlsdr.pxd -index 76df34a..1701258 100644 ---- a/src/urh/dev/native/lib/crtlsdr.pxd -+++ b/src/urh/dev/native/lib/crtlsdr.pxd -@@ -1,6 +1,3 @@ --cdef extern from "config.h": -- cdef bint RTLSDR_HAS_BANDWIDTH -- - cdef extern from "rtl-sdr.h": - ctypedef struct rtlsdr_dev_t: - pass -diff --git a/src/urh/dev/native/lib/hackrf.pyx b/src/urh/dev/native/lib/hackrf.pyx -index 4aa1290..a1c08a8 100644 ---- a/src/urh/dev/native/lib/hackrf.pyx -+++ b/src/urh/dev/native/lib/hackrf.pyx -@@ -40,7 +40,7 @@ cdef chackrf.hackrf_device*_c_device - cdef int hackrf_success = chackrf.HACKRF_SUCCESS - - cpdef has_multi_device_support(): -- return chackrf.HACKRF_HAS_MULTI_DEVICE != 0 -+ return True - - cpdef setup(str serial): - """ -@@ -54,7 +54,7 @@ cpdef init(): - return chackrf.hackrf_init() - - cpdef open(str serial_number=""): -- if not chackrf.HACKRF_HAS_MULTI_DEVICE or not serial_number: -+ if not serial_number: - return chackrf.hackrf_open(&_c_device) - - desired_serial = serial_number.encode('UTF-8') -@@ -154,9 +154,6 @@ cpdef set_baseband_filter_bandwidth(bandwidth_hz): - return chackrf.hackrf_set_baseband_filter_bandwidth(_c_device, bandwidth_hz) - - cpdef get_device_list(): -- if not chackrf.HACKRF_HAS_MULTI_DEVICE: -- return None -- - init() - cdef chackrf.hackrf_device_list_t* device_list = chackrf.hackrf_device_list() - -diff --git a/src/urh/dev/native/lib/rtlsdr.pyx b/src/urh/dev/native/lib/rtlsdr.pyx -index ba2486f..6b7f6b8 100644 ---- a/src/urh/dev/native/lib/rtlsdr.pyx -+++ b/src/urh/dev/native/lib/rtlsdr.pyx -@@ -17,10 +17,7 @@ cdef void _c_callback_recv(unsigned char *buffer, uint32_t length, void *ctx): - - - cpdef bandwidth_is_adjustable(): -- if crtlsdr.RTLSDR_HAS_BANDWIDTH: -- return True -- else: -- return False -+ return True - - cpdef uint32_t get_device_count(): - return crtlsdr.rtlsdr_get_device_count() -@@ -222,9 +219,6 @@ cpdef int set_tuner_bandwidth(uint32_t bw): - :param bw: bandwidth in Hz. Zero means automatic BW selection. - :return 0 on success - """ -- if not crtlsdr.RTLSDR_HAS_BANDWIDTH: -- return -100 -- - return crtlsdr.rtlsdr_set_tuner_bandwidth(_c_device, bw) - - cpdef int set_sample_rate(uint32_t sample_rate): diff --git a/urh.spec b/urh.spec index fe0ed02..35326d3 100644 --- a/urh.spec +++ b/urh.spec @@ -2,7 +2,7 @@ Name: urh Version: 2.0.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 Group: Applications/Engineering @@ -11,7 +11,6 @@ Source0: https://github.com/jopohl/urh/archive/v%{version}.tar.gz#/urh-%{version BuildRequires: python3-setuptools, python3-devel, gcc-c++, python3-numpy, desktop-file-utils BuildRequires: hackrf-devel, rtl-sdr-devel, uhd-devel, python3-qt5, python3-Cython Requires: python3-numpy, python3-psutil python3-zmq, python3-qt5 -Patch0: urh-2.0.4-compile-fix.patch %description The Universal Radio Hacker is a software for investigating unknown wireless @@ -19,7 +18,6 @@ protocols. %prep %setup -q -%patch0 -p1 -b .compile-fix # remove *.pyc find . -name '*.pyc' | xargs rm -f @@ -37,9 +35,11 @@ pushd src/urh/dev/native/lib rm -rf win popd -# remove bundled libraries, cpp will be generated by cython +# remove bundled libraries, cpp will be generated by cython, preserve config.h pushd src/urh/dev/native -rm -rf includes +mv includes/config.h . +rm -rf includes/* +mv config.h includes/ cd lib rm -f *.cpp popd @@ -83,6 +83,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Mon May 7 2018 Jaroslav Škarvada - 2.0.4-2 +- Fixed build + * Mon May 7 2018 Jaroslav Škarvada - 2.0.4-1 - New version Resolves: rhbz#1575442 From bbb3e9e498d9c5f3e7018dc3179e2d3c2bd4796e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Fri, 1 Jun 2018 16:34:53 +0200 Subject: [PATCH 004/100] New version Resolves: rhbz#1585185 --- sources | 2 +- urh.spec | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/sources b/sources index 34635e4..f33a28d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.0.4.tar.gz) = 596f98ab02e9016fd60261703dc06d29ecdab42db1fc30011dcc7e1efd6f053f80442ff628a996b587e984a5801b32f3667a6c162812daccba09bdec30e79a83 +SHA512 (urh-2.1.0.tar.gz) = 745400f322a529128c818398e8529f23723d7c8f21e1c0388cb8ebc62db332aaaaab2e164a59e83996853dcbad35dfc58ba27edf954402002da7401195f53b57 diff --git a/urh.spec b/urh.spec index 35326d3..59099da 100644 --- a/urh.spec +++ b/urh.spec @@ -1,8 +1,8 @@ # python 2 not supported Name: urh -Version: 2.0.4 -Release: 2%{?dist} +Version: 2.1.0 +Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 Group: Applications/Engineering @@ -77,12 +77,17 @@ desktop-file-install --add-category="Utility" \ %license LICENSE %doc README.md %{_bindir}/urh +%{_bindir}/urh_cli %{_datadir}/icons/hicolor/128x128/apps/urh.png %{_datadir}/applications/urh.desktop %{python3_sitearch}/urh %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Fri Jun 1 2018 Jaroslav Škarvada - 2.1.0-1 +- New version + Resolves: rhbz#1585185 + * Mon May 7 2018 Jaroslav Škarvada - 2.0.4-2 - Fixed build From 7f637d011750f2522c8baa1c3214895c3311327c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Tue, 19 Jun 2018 11:29:57 +0200 Subject: [PATCH 005/100] Rebuilt for Python 3.7 --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 59099da..8d5c3ee 100644 --- a/urh.spec +++ b/urh.spec @@ -2,7 +2,7 @@ Name: urh Version: 2.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 Group: Applications/Engineering @@ -84,6 +84,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Tue Jun 19 2018 Miro Hrončok - 2.1.0-2 +- Rebuilt for Python 3.7 + * Fri Jun 1 2018 Jaroslav Škarvada - 2.1.0-1 - New version Resolves: rhbz#1585185 From 8fb9306e91354a0d9b093e6560169a2d4ea2bb48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Tue, 19 Jun 2018 23:07:39 +0200 Subject: [PATCH 006/100] New version Resolves: rhbz#1592165 --- sources | 2 +- urh.spec | 14 +++++++++----- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/sources b/sources index f33a28d..aa54d46 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.1.0.tar.gz) = 745400f322a529128c818398e8529f23723d7c8f21e1c0388cb8ebc62db332aaaaab2e164a59e83996853dcbad35dfc58ba27edf954402002da7401195f53b57 +SHA512 (urh-2.1.1.tar.gz) = 7106c09563aba3252520031ad154806d5ea792765fff05d262e632a57e58febcea6ff02dd44f0b517091186b722d634e187dd0a96ab8fe07d9d83b7b6f1957ea diff --git a/urh.spec b/urh.spec index 8d5c3ee..1ce2444 100644 --- a/urh.spec +++ b/urh.spec @@ -1,8 +1,8 @@ # python 2 not supported Name: urh -Version: 2.1.0 -Release: 2%{?dist} +Version: 2.1.1 +Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 Group: Applications/Engineering @@ -37,9 +37,9 @@ popd # remove bundled libraries, cpp will be generated by cython, preserve config.h pushd src/urh/dev/native -mv includes/config.h . -rm -rf includes/* -mv config.h includes/ +mv include/config.h . +rm -rf include/* +mv config.h include/ cd lib rm -f *.cpp popd @@ -84,6 +84,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Tue Jun 19 2018 Jaroslav Škarvada - 2.1.1-1 +- New version + Resolves: rhbz#1592165 + * Tue Jun 19 2018 Miro Hrončok - 2.1.0-2 - Rebuilt for Python 3.7 From 5a8e87b105dc0cad0fc607eb4ad41df059677386 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Mon, 2 Jul 2018 12:00:06 +0200 Subject: [PATCH 007/100] New version Resolves: rhbz#1596898 --- sources | 2 +- urh.spec | 23 +++++++---------------- 2 files changed, 8 insertions(+), 17 deletions(-) diff --git a/sources b/sources index aa54d46..6354311 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.1.1.tar.gz) = 7106c09563aba3252520031ad154806d5ea792765fff05d262e632a57e58febcea6ff02dd44f0b517091186b722d634e187dd0a96ab8fe07d9d83b7b6f1957ea +SHA512 (urh-2.2.2.tar.gz) = 6e84c6a8712b3bc3eb320840fe50cd55439ad06c81262ecc5407e529810038f114e81f3229dfc588603f88d795365737bf85816b5df3ad63e814fff93bcd85d6 diff --git a/urh.spec b/urh.spec index 1ce2444..17354c1 100644 --- a/urh.spec +++ b/urh.spec @@ -1,7 +1,7 @@ # python 2 not supported Name: urh -Version: 2.1.1 +Version: 2.2.2 Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 @@ -29,25 +29,12 @@ popd # remove binaries pushd data/decodings -rm -f enocean_switchtelegram homematic test +rm -f enocean_switchtelegram homematic homematic_complete test popd pushd src/urh/dev/native/lib rm -rf win popd -# remove bundled libraries, cpp will be generated by cython, preserve config.h -pushd src/urh/dev/native -mv include/config.h . -rm -rf include/* -mv config.h include/ -cd lib -rm -f *.cpp -popd - -# remove sources, they will be generated by cython -pushd src/urh/cythonext -rm -f *.cpp -popd %build %py3_build @@ -71,7 +58,7 @@ install -Dpm 0644 data/icons/appicon.png %{buildroot}%{_datadir}/icons/hicolor/1 mkdir -p %{buildroot}%{_datadir}/applications desktop-file-install --add-category="Utility" \ --dir=%{buildroot}%{_datadir}/applications \ - ./urh.desktop + data/urh.desktop %files %license LICENSE @@ -84,6 +71,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Mon Jul 2 2018 Jaroslav Škarvada - 2.2.2-1 +- New version + Resolves: rhbz#1596898 + * Tue Jun 19 2018 Jaroslav Škarvada - 2.1.1-1 - New version Resolves: rhbz#1592165 From 7f7f60942fa35ede082b4f91e86720c451846311 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 2 Jul 2018 18:24:20 +0200 Subject: [PATCH 008/100] Rebuilt for Python 3.7 --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 17354c1..897518f 100644 --- a/urh.spec +++ b/urh.spec @@ -2,7 +2,7 @@ Name: urh Version: 2.2.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 Group: Applications/Engineering @@ -71,6 +71,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Mon Jul 02 2018 Miro Hrončok - 2.2.2-2 +- Rebuilt for Python 3.7 + * Mon Jul 2 2018 Jaroslav Škarvada - 2.2.2-1 - New version Resolves: rhbz#1596898 From b0cf66d10063a1b51a9397c654286e3b037660a8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 14 Jul 2018 08:18:50 +0000 Subject: [PATCH 009/100] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 897518f..a5a0672 100644 --- a/urh.spec +++ b/urh.spec @@ -2,7 +2,7 @@ Name: urh Version: 2.2.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 Group: Applications/Engineering @@ -71,6 +71,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Sat Jul 14 2018 Fedora Release Engineering - 2.2.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Mon Jul 02 2018 Miro Hrončok - 2.2.2-2 - Rebuilt for Python 3.7 From 3ee2dac312836cef8e106593fcc3f6d2da8adba7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Thu, 9 Aug 2018 20:32:29 +0200 Subject: [PATCH 010/100] New version Resolves: rhbz#1609532 --- sources | 2 +- urh.spec | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/sources b/sources index 6354311..62e678f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.2.2.tar.gz) = 6e84c6a8712b3bc3eb320840fe50cd55439ad06c81262ecc5407e529810038f114e81f3229dfc588603f88d795365737bf85816b5df3ad63e814fff93bcd85d6 +SHA512 (urh-2.2.3.tar.gz) = 1851c79a3eed7ef23a2e0fbbbab308d001f7900c563e8c003c961fbe474e796f96a10a5cafbede833ccef9184bc1d2994cc5e87df3ed97614842edaab373522d diff --git a/urh.spec b/urh.spec index a5a0672..b8118fa 100644 --- a/urh.spec +++ b/urh.spec @@ -1,8 +1,8 @@ # python 2 not supported Name: urh -Version: 2.2.2 -Release: 3%{?dist} +Version: 2.2.3 +Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 Group: Applications/Engineering @@ -71,6 +71,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Thu Aug 9 2018 Jaroslav Škarvada - 2.2.3-1 +- New version + Resolves: rhbz#1609532 + * Sat Jul 14 2018 Fedora Release Engineering - 2.2.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From f6a4102dc4d92303bf6db9dd9d88f783cffbe0df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Thu, 10 Jan 2019 19:16:00 +0100 Subject: [PATCH 011/100] New version Related: rhbz#1609532 --- sources | 2 +- urh.spec | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/sources b/sources index 62e678f..3e88cf0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.2.3.tar.gz) = 1851c79a3eed7ef23a2e0fbbbab308d001f7900c563e8c003c961fbe474e796f96a10a5cafbede833ccef9184bc1d2994cc5e87df3ed97614842edaab373522d +SHA512 (urh-2.5.4.tar.gz) = b8e58199d364b5f84058eaaa9392e22484a2b92ab112144c85ce0cd8f274cadeea6512c48f10dfdde8b0ec26374d91d85ab92754f5e46a8e5a0b1e4954b1fd9e diff --git a/urh.spec b/urh.spec index b8118fa..0a5be35 100644 --- a/urh.spec +++ b/urh.spec @@ -1,7 +1,7 @@ # python 2 not supported Name: urh -Version: 2.2.3 +Version: 2.5.4 Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 @@ -71,6 +71,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Thu Jan 10 2019 Jaroslav Škarvada - 2.5.4-1 +- New version + Related: rhbz#1609532 + * Thu Aug 9 2018 Jaroslav Škarvada - 2.2.3-1 - New version Resolves: rhbz#1609532 From 16bce1fd9b3a77e5114865d44a6398d9f150ecab Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Fri, 11 Jan 2019 13:37:02 +0100 Subject: [PATCH 012/100] Enable python dependency generator References: https://fedoraproject.org/wiki/Changes/EnablingPythonGeneratorsByDefault Signed-off-by: Igor Gnatenko --- urh.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/urh.spec b/urh.spec index 0a5be35..2942d03 100644 --- a/urh.spec +++ b/urh.spec @@ -1,8 +1,9 @@ +%{?python_enable_dependency_generator} # python 2 not supported Name: urh Version: 2.5.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 Group: Applications/Engineering @@ -10,7 +11,6 @@ URL: https://github.com/jopohl/urh Source0: https://github.com/jopohl/urh/archive/v%{version}.tar.gz#/urh-%{version}.tar.gz BuildRequires: python3-setuptools, python3-devel, gcc-c++, python3-numpy, desktop-file-utils BuildRequires: hackrf-devel, rtl-sdr-devel, uhd-devel, python3-qt5, python3-Cython -Requires: python3-numpy, python3-psutil python3-zmq, python3-qt5 %description The Universal Radio Hacker is a software for investigating unknown wireless @@ -71,6 +71,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Fri Jan 11 2019 Igor Gnatenko - 2.5.4-2 +- Enable python dependency generator + * Thu Jan 10 2019 Jaroslav Škarvada - 2.5.4-1 - New version Related: rhbz#1609532 From 311d8e437cf9a4b7192ff46b311c81e20f01c3c7 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:18:29 +0100 Subject: [PATCH 013/100] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- urh.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/urh.spec b/urh.spec index 2942d03..c3ae052 100644 --- a/urh.spec +++ b/urh.spec @@ -6,7 +6,6 @@ Version: 2.5.4 Release: 2%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 -Group: Applications/Engineering URL: https://github.com/jopohl/urh Source0: https://github.com/jopohl/urh/archive/v%{version}.tar.gz#/urh-%{version}.tar.gz BuildRequires: python3-setuptools, python3-devel, gcc-c++, python3-numpy, desktop-file-utils From ba9b5012d919e31daff27e3e8657bf309ed2efac Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 3 Feb 2019 10:55:37 +0000 Subject: [PATCH 014/100] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index c3ae052..be9e269 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.5.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -70,6 +70,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Sun Feb 03 2019 Fedora Release Engineering - 2.5.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Fri Jan 11 2019 Igor Gnatenko - 2.5.4-2 - Enable python dependency generator From 2050bd99d324a54d7c522dbb71c98d5dedc7faca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Tue, 5 Feb 2019 17:41:10 +0100 Subject: [PATCH 015/100] New version Resolves: rhbz#1667686 --- sources | 2 +- urh.spec | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/sources b/sources index 3e88cf0..4280cd8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.5.4.tar.gz) = b8e58199d364b5f84058eaaa9392e22484a2b92ab112144c85ce0cd8f274cadeea6512c48f10dfdde8b0ec26374d91d85ab92754f5e46a8e5a0b1e4954b1fd9e +SHA512 (urh-2.5.5.tar.gz) = 73088f8606f3a1e554b784890f96b80bba467abecd8b6c788b440f98153c5fe913800ac1ac8c725d998e6197064b0e3298a62f6c9e46a6ddf1940102ef5bd475 diff --git a/urh.spec b/urh.spec index be9e269..f5d27d8 100644 --- a/urh.spec +++ b/urh.spec @@ -2,8 +2,8 @@ # python 2 not supported Name: urh -Version: 2.5.4 -Release: 3%{?dist} +Version: 2.5.5 +Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -70,6 +70,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Tue Feb 5 2019 Jaroslav Škarvada - 2.5.5-1 +- New version + Resolves: rhbz#1667686 + * Sun Feb 03 2019 Fedora Release Engineering - 2.5.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From bdf9619f9c38c032a9a79b02416437f0b270d518 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Mon, 25 Feb 2019 14:26:16 +0100 Subject: [PATCH 016/100] New version Resolves: rhbz#1680429 --- sources | 2 +- urh.spec | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/sources b/sources index 4280cd8..6b26861 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.5.5.tar.gz) = 73088f8606f3a1e554b784890f96b80bba467abecd8b6c788b440f98153c5fe913800ac1ac8c725d998e6197064b0e3298a62f6c9e46a6ddf1940102ef5bd475 +SHA512 (urh-2.5.6.tar.gz) = 87940b031749b4d786d1c726b24a0b0265d95e3e8d071cdaaa9f77c1fb713a6817c2bf61de4e339eca01cdf160614a5a9ff5b0b5f6d58d8e2bed02f1aefaaa37 diff --git a/urh.spec b/urh.spec index f5d27d8..7ae1414 100644 --- a/urh.spec +++ b/urh.spec @@ -2,7 +2,7 @@ # python 2 not supported Name: urh -Version: 2.5.5 +Version: 2.5.6 Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 @@ -70,6 +70,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Mon Feb 25 2019 Jaroslav Škarvada - 2.5.6-1 +- New version + Resolves: rhbz#1680429 + * Tue Feb 5 2019 Jaroslav Škarvada - 2.5.5-1 - New version Resolves: rhbz#1667686 From a66f84326a9fc5b21c076c3caf379c0c87f605da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Wed, 3 Apr 2019 17:11:27 +0200 Subject: [PATCH 017/100] New version Resolves: rhbz#1695648 --- sources | 2 +- urh.spec | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/sources b/sources index 6b26861..580efdd 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.5.6.tar.gz) = 87940b031749b4d786d1c726b24a0b0265d95e3e8d071cdaaa9f77c1fb713a6817c2bf61de4e339eca01cdf160614a5a9ff5b0b5f6d58d8e2bed02f1aefaaa37 +SHA512 (urh-2.5.7.tar.gz) = 69f1d38e6465794b3a226b397486afc63254e2aa5a6781bbec1d192a2b250a66324bb2644c98d474a5ce0bdb92dba99976514ca14fd17c769408cbdac7a6ae98 diff --git a/urh.spec b/urh.spec index 7ae1414..26e84ce 100644 --- a/urh.spec +++ b/urh.spec @@ -2,7 +2,7 @@ # python 2 not supported Name: urh -Version: 2.5.6 +Version: 2.5.7 Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 @@ -70,6 +70,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Wed Apr 3 2019 Jaroslav Škarvada - 2.5.7-1 +- New version + Resolves: rhbz#1695648 + * Mon Feb 25 2019 Jaroslav Škarvada - 2.5.6-1 - New version Resolves: rhbz#1680429 From 8afe77bc5d624ddf4beaad849e1e6c038841f3ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Mon, 20 May 2019 18:45:20 +0200 Subject: [PATCH 018/100] New version Resolves: rhbz#1711889 --- sources | 2 +- urh.spec | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/sources b/sources index 580efdd..ee4c802 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.5.7.tar.gz) = 69f1d38e6465794b3a226b397486afc63254e2aa5a6781bbec1d192a2b250a66324bb2644c98d474a5ce0bdb92dba99976514ca14fd17c769408cbdac7a6ae98 +SHA512 (urh-2.6.0.tar.gz) = daa183690f1e2c097fa3bf27f320076e062b9f04daf6028d295da7f1f64ab184275299748d0b8f9d6cd4bdf2613839c5008439d3cf17512e0764488ccdd1b1ea diff --git a/urh.spec b/urh.spec index 26e84ce..bab4282 100644 --- a/urh.spec +++ b/urh.spec @@ -2,7 +2,7 @@ # python 2 not supported Name: urh -Version: 2.5.7 +Version: 2.6.0 Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 @@ -70,6 +70,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Mon May 20 2019 Jaroslav Škarvada - 2.6.0-1 +- New version + Resolves: rhbz#1711889 + * Wed Apr 3 2019 Jaroslav Škarvada - 2.5.7-1 - New version Resolves: rhbz#1695648 From f5314a0097b3533a0b99eab49adb8c4e4be78717 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Mon, 3 Jun 2019 17:51:09 +0200 Subject: [PATCH 019/100] New version Resolves: rhbz#1716083 --- sources | 2 +- urh.spec | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/sources b/sources index ee4c802..4e36f6b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.6.0.tar.gz) = daa183690f1e2c097fa3bf27f320076e062b9f04daf6028d295da7f1f64ab184275299748d0b8f9d6cd4bdf2613839c5008439d3cf17512e0764488ccdd1b1ea +SHA512 (urh-2.7.0.tar.gz) = 7b61476086bc077746bee661d77e95fff1b9c420656dab8c7b6480b2e424597989775b561c7c0f439d8d6f2fe1738db93fc847b2051632baf29d41017bffee5f diff --git a/urh.spec b/urh.spec index bab4282..e8af7f4 100644 --- a/urh.spec +++ b/urh.spec @@ -2,7 +2,7 @@ # python 2 not supported Name: urh -Version: 2.6.0 +Version: 2.7.0 Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 @@ -70,6 +70,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Mon Jun 3 2019 Jaroslav Škarvada - 2.7.0-1 +- New version + Resolves: rhbz#1716083 + * Mon May 20 2019 Jaroslav Škarvada - 2.6.0-1 - New version Resolves: rhbz#1711889 From b2b37bfe129f1369f8c273e1eac696c1040c3c95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Sat, 22 Jun 2019 12:47:25 +0200 Subject: [PATCH 020/100] Added missing explicit requirements --- urh.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index e8af7f4..cd3a265 100644 --- a/urh.spec +++ b/urh.spec @@ -3,13 +3,14 @@ Name: urh Version: 2.7.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh Source0: https://github.com/jopohl/urh/archive/v%{version}.tar.gz#/urh-%{version}.tar.gz BuildRequires: python3-setuptools, python3-devel, gcc-c++, python3-numpy, desktop-file-utils BuildRequires: hackrf-devel, rtl-sdr-devel, uhd-devel, python3-qt5, python3-Cython +Requires: python3-numpy, python3-qt5 %description The Universal Radio Hacker is a software for investigating unknown wireless @@ -70,6 +71,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Sat Jun 22 2019 Jaroslav Škarvada - 2.7.0-2 +- Added missing explicit requirements + * Mon Jun 3 2019 Jaroslav Škarvada - 2.7.0-1 - New version Resolves: rhbz#1716083 From 1bf29fe5d994a88c36fbb9a46aa475e363ad565c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Wed, 26 Jun 2019 16:12:04 +0200 Subject: [PATCH 021/100] New version Resolves: rhbz#1724216 --- sources | 2 +- urh.spec | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/sources b/sources index 4e36f6b..464b2d3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.7.0.tar.gz) = 7b61476086bc077746bee661d77e95fff1b9c420656dab8c7b6480b2e424597989775b561c7c0f439d8d6f2fe1738db93fc847b2051632baf29d41017bffee5f +SHA512 (urh-2.7.2.tar.gz) = 56ecd5dc86ea6a18cd9443266ce56e8f784dd5f09f6318da56b4719b588cc9c7a4716aeafa9a64e910dd2575e0c3c4b40573a2d336bcef2aca5f51ac08843bce diff --git a/urh.spec b/urh.spec index cd3a265..3fca729 100644 --- a/urh.spec +++ b/urh.spec @@ -2,8 +2,8 @@ # python 2 not supported Name: urh -Version: 2.7.0 -Release: 2%{?dist} +Version: 2.7.2 +Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -71,6 +71,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Wed Jun 26 2019 Jaroslav Škarvada - 2.7.2-1 +- New version + Resolves: rhbz#1724216 + * Sat Jun 22 2019 Jaroslav Škarvada - 2.7.0-2 - Added missing explicit requirements From 96a0448718617febe77f509ec16e723f37d43c3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Mon, 1 Jul 2019 17:09:42 +0200 Subject: [PATCH 022/100] New version Resolves: rhbz#1725697 --- sources | 2 +- urh.spec | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/sources b/sources index 464b2d3..eb4cb29 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.7.2.tar.gz) = 56ecd5dc86ea6a18cd9443266ce56e8f784dd5f09f6318da56b4719b588cc9c7a4716aeafa9a64e910dd2575e0c3c4b40573a2d336bcef2aca5f51ac08843bce +SHA512 (urh-2.7.3.tar.gz) = 2caf0bb3900f30d4fc59205fabbfb0a0d81b0ab4eecc04ff1a1ab4f76d8bac569c652385bb0cf64d50786abb939eda4e8e5bf9f50b794bd5055b18ff6fbab41c diff --git a/urh.spec b/urh.spec index 3fca729..7bc4a68 100644 --- a/urh.spec +++ b/urh.spec @@ -2,7 +2,7 @@ # python 2 not supported Name: urh -Version: 2.7.2 +Version: 2.7.3 Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 @@ -71,6 +71,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Mon Jul 1 2019 Jaroslav Škarvada - 2.7.3-1 +- New version + Resolves: rhbz#1725697 + * Wed Jun 26 2019 Jaroslav Škarvada - 2.7.2-1 - New version Resolves: rhbz#1724216 From ff124c1a7e4a450660b5d5b18dfc864e6c3d2cdd Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jul 2019 02:37:19 +0000 Subject: [PATCH 023/100] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 7bc4a68..a502b4b 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.7.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -71,6 +71,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Sat Jul 27 2019 Fedora Release Engineering - 2.7.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Mon Jul 1 2019 Jaroslav Škarvada - 2.7.3-1 - New version Resolves: rhbz#1725697 From da4c3f71a9b2c5d4205b7e9107173f470f961c2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 19 Aug 2019 11:08:46 +0200 Subject: [PATCH 024/100] Rebuilt for Python 3.8 --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index a502b4b..f548811 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.7.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -71,6 +71,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Mon Aug 19 2019 Miro Hrončok - 2.7.3-3 +- Rebuilt for Python 3.8 + * Sat Jul 27 2019 Fedora Release Engineering - 2.7.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 84f5c5eb75cffbdf53fa291ab8b2317e91ec71e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Tue, 20 Aug 2019 18:22:25 +0200 Subject: [PATCH 025/100] New version Resolves: rhbz#1743014 --- urh.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/urh.spec b/urh.spec index f548811..b26cc63 100644 --- a/urh.spec +++ b/urh.spec @@ -2,8 +2,8 @@ # python 2 not supported Name: urh -Version: 2.7.3 -Release: 3%{?dist} +Version: 2.7.4 +Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -71,6 +71,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Tue Aug 20 2019 Jaroslav Škarvada - 2.7.4-1 +- New version + Resolves: rhbz#1743014 + * Mon Aug 19 2019 Miro Hrončok - 2.7.3-3 - Rebuilt for Python 3.8 From 3840141aedef443cb2686f1d701627393bff28b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Tue, 20 Aug 2019 18:32:47 +0200 Subject: [PATCH 026/100] Added sources MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jaroslav Škarvada --- sources | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources b/sources index eb4cb29..46d23ac 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.7.3.tar.gz) = 2caf0bb3900f30d4fc59205fabbfb0a0d81b0ab4eecc04ff1a1ab4f76d8bac569c652385bb0cf64d50786abb939eda4e8e5bf9f50b794bd5055b18ff6fbab41c +SHA512 (urh-2.7.4.tar.gz) = 171b408b84349a0edbfe06f720bb87751adce7f770c16304df0676181f0af9430856ae592d471b30dc53fab594922d0f49c7dea6395e90aa8091d49b3b18937b From 9ba7ed3ca61564ec879ac288d1bc57dc6a9b7c32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Wed, 21 Aug 2019 19:16:29 +0200 Subject: [PATCH 027/100] Rebuilt for Python 3.8 --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index b26cc63..07b6c40 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.7.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -71,6 +71,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Wed Aug 21 2019 Miro Hrončok - 2.7.4-2 +- Rebuilt for Python 3.8 + * Tue Aug 20 2019 Jaroslav Škarvada - 2.7.4-1 - New version Resolves: rhbz#1743014 From eeac1edbbeec938bcbbe840bbd8c9942cbfd780f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Fri, 30 Aug 2019 14:46:17 +0200 Subject: [PATCH 028/100] New version Resolves: rhbz#1747017 --- urh.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/urh.spec b/urh.spec index 07b6c40..2efe202 100644 --- a/urh.spec +++ b/urh.spec @@ -2,8 +2,8 @@ # python 2 not supported Name: urh -Version: 2.7.4 -Release: 2%{?dist} +Version: 2.7.5 +Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -71,6 +71,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Fri Aug 30 2019 Jaroslav Škarvada - 2.7.5-1 +- New version + Resolves: rhbz#1747017 + * Wed Aug 21 2019 Miro Hrončok - 2.7.4-2 - Rebuilt for Python 3.8 From a21ce5747067de65050d3add479d02a61eb3fe56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Fri, 30 Aug 2019 14:50:54 +0200 Subject: [PATCH 029/100] Added missing sources MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jaroslav Škarvada --- sources | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources b/sources index 46d23ac..ff7c7ff 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.7.4.tar.gz) = 171b408b84349a0edbfe06f720bb87751adce7f770c16304df0676181f0af9430856ae592d471b30dc53fab594922d0f49c7dea6395e90aa8091d49b3b18937b +SHA512 (urh-2.7.5.tar.gz) = 81f32d8be83c5ea764de728c66c201d522a25a14baed30a7e6c7f0a4089d98d71520f8cb9cc594f41a6570e61fd48b9dc06ce8b87701f94b4ff58aed356f6481 From 400faceabf7423f9c3b502bc4cfd2ce680a15be3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Thu, 3 Oct 2019 14:41:06 +0200 Subject: [PATCH 030/100] Rebuilt for Python 3.8.0rc1 (#1748018) --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 2efe202..dc1c54e 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.7.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -71,6 +71,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Thu Oct 03 2019 Miro Hrončok - 2.7.5-2 +- Rebuilt for Python 3.8.0rc1 (#1748018) + * Fri Aug 30 2019 Jaroslav Škarvada - 2.7.5-1 - New version Resolves: rhbz#1747017 From 765ec069c76108a3a5c3b8717f425a45561638fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Mon, 11 Nov 2019 13:31:46 +0100 Subject: [PATCH 031/100] Rebuilt for new uhd Resolves: rhbz#1770877 --- urh.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index dc1c54e..41578f9 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.7.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -71,6 +71,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Mon Nov 11 2019 Jaroslav Škarvada - 2.7.5-3 +- Rebuilt for new uhd + Resolves: rhbz#1770877 + * Thu Oct 03 2019 Miro Hrončok - 2.7.5-2 - Rebuilt for Python 3.8.0rc1 (#1748018) From 60004e431bf5e00da69a29d6d0db712bd2fbc365 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Sun, 24 Nov 2019 21:22:44 +0100 Subject: [PATCH 032/100] New version Resolves: rhbz#1763507 --- sources | 2 +- urh.spec | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/sources b/sources index ff7c7ff..8f6911a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.7.5.tar.gz) = 81f32d8be83c5ea764de728c66c201d522a25a14baed30a7e6c7f0a4089d98d71520f8cb9cc594f41a6570e61fd48b9dc06ce8b87701f94b4ff58aed356f6481 +SHA512 (urh-2.8.1.tar.gz) = ce1d9de195578072b80927248fa601659a3e7e6454f7c3bcffcdff8ec4c30738a55933fa31ae81ac1afdb251c1cb3155927ad63012f6bf0fcd5c2bbae6c80a7f diff --git a/urh.spec b/urh.spec index 41578f9..797568c 100644 --- a/urh.spec +++ b/urh.spec @@ -2,8 +2,8 @@ # python 2 not supported Name: urh -Version: 2.7.5 -Release: 3%{?dist} +Version: 2.8.1 +Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -71,6 +71,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Sun Nov 24 2019 Jaroslav Škarvada - 2.8.1-1 +- New version + Resolves: rhbz#1763507 + * Mon Nov 11 2019 Jaroslav Škarvada - 2.7.5-3 - Rebuilt for new uhd Resolves: rhbz#1770877 From b48b0f527ce837929dcb253628a07e9c16665b00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Tue, 7 Jan 2020 17:25:11 +0100 Subject: [PATCH 033/100] New version Resolves: rhbz#1788393 --- sources | 2 +- urh.spec | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/sources b/sources index 8f6911a..c95e01c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.8.1.tar.gz) = ce1d9de195578072b80927248fa601659a3e7e6454f7c3bcffcdff8ec4c30738a55933fa31ae81ac1afdb251c1cb3155927ad63012f6bf0fcd5c2bbae6c80a7f +SHA512 (urh-2.8.2.tar.gz) = 076c8baa5531b5c5b500c50d37c01435725e76f29ae881af74c8c6f4a2d5f8dcfdd0ff93ce7a714c8e9eb4db4f76749c81b24e91190e284ff6b2f4310aa629c1 diff --git a/urh.spec b/urh.spec index 797568c..0c6fba0 100644 --- a/urh.spec +++ b/urh.spec @@ -2,7 +2,7 @@ # python 2 not supported Name: urh -Version: 2.8.1 +Version: 2.8.2 Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 @@ -71,6 +71,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Tue Jan 7 2020 Jaroslav Škarvada - 2.8.2-1 +- New version + Resolves: rhbz#1788393 + * Sun Nov 24 2019 Jaroslav Škarvada - 2.8.1-1 - New version Resolves: rhbz#1763507 From 82ef45abba95a8623fb07b8d1e2cc27915b984dc Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 31 Jan 2020 02:44:03 +0000 Subject: [PATCH 034/100] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 0c6fba0..1f5e34c 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.8.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -71,6 +71,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Fri Jan 31 2020 Fedora Release Engineering - 2.8.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Tue Jan 7 2020 Jaroslav Škarvada - 2.8.2-1 - New version Resolves: rhbz#1788393 From d1917922c3c1bfef0bc03344dd63981824db00d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Tue, 25 Feb 2020 08:44:45 +0100 Subject: [PATCH 035/100] New version Resolves: rhbz#1806112 --- sources | 2 +- urh.spec | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/sources b/sources index c95e01c..ed2f53d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.8.2.tar.gz) = 076c8baa5531b5c5b500c50d37c01435725e76f29ae881af74c8c6f4a2d5f8dcfdd0ff93ce7a714c8e9eb4db4f76749c81b24e91190e284ff6b2f4310aa629c1 +SHA512 (urh-2.8.3.tar.gz) = a76f7ca0da20cb77149f32a764e29ae82417fb33a9d727ca5a05c52d4aafe58512acd0b180a329252a1ca8eb20e87ff182a88e72037b5b5e525a6d580e37aac5 diff --git a/urh.spec b/urh.spec index 1f5e34c..abc8071 100644 --- a/urh.spec +++ b/urh.spec @@ -2,8 +2,8 @@ # python 2 not supported Name: urh -Version: 2.8.2 -Release: 2%{?dist} +Version: 2.8.3 +Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -71,6 +71,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Tue Feb 25 2020 Jaroslav Škarvada - 2.8.3-1 +- New version + Resolves: rhbz#1806112 + * Fri Jan 31 2020 Fedora Release Engineering - 2.8.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 663ee40fc0effe5030152a6563d71b505413979b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Mon, 9 Mar 2020 11:54:22 +0100 Subject: [PATCH 036/100] New version Resolves: rhbz#1811369 --- urh.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index abc8071..27054ae 100644 --- a/urh.spec +++ b/urh.spec @@ -2,7 +2,7 @@ # python 2 not supported Name: urh -Version: 2.8.3 +Version: 2.8.4 Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 @@ -71,6 +71,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Mon Mar 9 2020 Jaroslav Škarvada - 2.8.4-1 +- New version + Resolves: rhbz#1811369 + * Tue Feb 25 2020 Jaroslav Škarvada - 2.8.3-1 - New version Resolves: rhbz#1806112 From 76875062d0fa29d9accddbbad765aefc5595bdfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Mon, 9 Mar 2020 12:11:17 +0100 Subject: [PATCH 037/100] Added sources MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jaroslav Škarvada --- sources | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources b/sources index ed2f53d..ffc81cc 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.8.3.tar.gz) = a76f7ca0da20cb77149f32a764e29ae82417fb33a9d727ca5a05c52d4aafe58512acd0b180a329252a1ca8eb20e87ff182a88e72037b5b5e525a6d580e37aac5 +SHA512 (urh-2.8.4.tar.gz) = 8ded9d065cd4773b1a5d26b47838d7586b22fc142d0101388bd6aa5c638cf858452857191ca5de553b1a62397fb814c0f1839175647ec41cec32e216a6244ce6 From ec82484a9bfa294d720b826e78e5fc5c7b317325 Mon Sep 17 00:00:00 2001 From: David Sastre Medina Date: Sat, 21 Mar 2020 13:42:09 +0100 Subject: [PATCH 038/100] Add AirSpy R2 native support --- urh.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/urh.spec b/urh.spec index 27054ae..270d5fe 100644 --- a/urh.spec +++ b/urh.spec @@ -3,13 +3,13 @@ Name: urh Version: 2.8.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh Source0: https://github.com/jopohl/urh/archive/v%{version}.tar.gz#/urh-%{version}.tar.gz BuildRequires: python3-setuptools, python3-devel, gcc-c++, python3-numpy, desktop-file-utils -BuildRequires: hackrf-devel, rtl-sdr-devel, uhd-devel, python3-qt5, python3-Cython +BuildRequires: airspyone_host-devel, hackrf-devel, rtl-sdr-devel, uhd-devel, python3-qt5, python3-Cython Requires: python3-numpy, python3-qt5 %description @@ -71,6 +71,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Sat Mar 21 2020 David Sastre - 2.8.4-2 +- Add AirSpy R2 native support + * Mon Mar 9 2020 Jaroslav Škarvada - 2.8.4-1 - New version Resolves: rhbz#1811369 From 5b33ca5d52e63f62cebc4f8d8bcedb0e7491ae2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Tue, 24 Mar 2020 16:47:38 +0100 Subject: [PATCH 039/100] New version Resolves: rhbz#1816690 Resolves: rhbz#1815664 --- sources | 2 +- urh.spec | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/sources b/sources index ffc81cc..29ad245 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.8.4.tar.gz) = 8ded9d065cd4773b1a5d26b47838d7586b22fc142d0101388bd6aa5c638cf858452857191ca5de553b1a62397fb814c0f1839175647ec41cec32e216a6244ce6 +SHA512 (urh-2.8.5.tar.gz) = 4f5258279bdcd17c4644e3f85af76baea3e7e29d8db2e03eed08eee1f063e96ba1bd7bb18a7b93e222322572b414db61248e32e3561730691a1ca4a5ef5ae422 diff --git a/urh.spec b/urh.spec index 270d5fe..e6b72df 100644 --- a/urh.spec +++ b/urh.spec @@ -2,8 +2,8 @@ # python 2 not supported Name: urh -Version: 2.8.4 -Release: 2%{?dist} +Version: 2.8.5 +Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -71,6 +71,11 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Tue Mar 24 2020 Jaroslav Škarvada - 2.8.5-1 +- New version + Resolves: rhbz#1816690 + Resolves: rhbz#1815664 + * Sat Mar 21 2020 David Sastre - 2.8.4-2 - Add AirSpy R2 native support From a5b7cfb02bc1aa68ec3468f9277389ff81d8be66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Thu, 16 Apr 2020 20:30:12 +0200 Subject: [PATCH 040/100] New version Resolves: rhbz#1824311 Simplified source URL --- sources | 2 +- urh.spec | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/sources b/sources index 29ad245..0d9ef5a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.8.5.tar.gz) = 4f5258279bdcd17c4644e3f85af76baea3e7e29d8db2e03eed08eee1f063e96ba1bd7bb18a7b93e222322572b414db61248e32e3561730691a1ca4a5ef5ae422 +SHA512 (urh-2.8.6.tar.gz) = b2b86d97423d232f51e11adef1a9f55cd75b1c3afa92f07746272a1c2b367505ef7f56075777711a191a984f6b8173ce14af8c1ec6474984aa283ebc0237c1e4 diff --git a/urh.spec b/urh.spec index e6b72df..a4db37a 100644 --- a/urh.spec +++ b/urh.spec @@ -2,12 +2,12 @@ # python 2 not supported Name: urh -Version: 2.8.5 +Version: 2.8.6 Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh -Source0: https://github.com/jopohl/urh/archive/v%{version}.tar.gz#/urh-%{version}.tar.gz +Source0: https://github.com/jopohl/urh/archive/v%{version}/%{name}-%{version}.tar.gz BuildRequires: python3-setuptools, python3-devel, gcc-c++, python3-numpy, desktop-file-utils BuildRequires: airspyone_host-devel, hackrf-devel, rtl-sdr-devel, uhd-devel, python3-qt5, python3-Cython Requires: python3-numpy, python3-qt5 @@ -71,6 +71,11 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Thu Apr 16 2020 Jaroslav Škarvada - 2.8.6-1 +- New version + Resolves: rhbz#1824311 +- Simplified source URL + * Tue Mar 24 2020 Jaroslav Škarvada - 2.8.5-1 - New version Resolves: rhbz#1816690 From cc5401ddf17663e0e746231a726308322555abe7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Mon, 27 Apr 2020 21:56:51 +0200 Subject: [PATCH 041/100] New version Resolves: rhbz#1828481 --- sources | 2 +- urh.spec | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/sources b/sources index 0d9ef5a..bfb0a86 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.8.6.tar.gz) = b2b86d97423d232f51e11adef1a9f55cd75b1c3afa92f07746272a1c2b367505ef7f56075777711a191a984f6b8173ce14af8c1ec6474984aa283ebc0237c1e4 +SHA512 (urh-2.8.7.tar.gz) = 78c24ce6273ef5962261bb02c9955474e50e732723edfa190c83d8540c5d998d1b685f6195b3a3ef2520ead42a1b698e03c448ab377c569bc78e3f5a6dfc5d3e diff --git a/urh.spec b/urh.spec index a4db37a..4922751 100644 --- a/urh.spec +++ b/urh.spec @@ -2,7 +2,7 @@ # python 2 not supported Name: urh -Version: 2.8.6 +Version: 2.8.7 Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 @@ -71,6 +71,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Mon Apr 27 2020 Jaroslav Škarvada - 2.8.7-1 +- New version + Resolves: rhbz#1828481 + * Thu Apr 16 2020 Jaroslav Škarvada - 2.8.6-1 - New version Resolves: rhbz#1824311 From d2ea33681bf6ad97c2b7599752bfddb7e2e9178b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Tue, 19 May 2020 11:13:17 +0200 Subject: [PATCH 042/100] New version Resolves: rhbz#1837080 --- sources | 2 +- urh.spec | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/sources b/sources index bfb0a86..f6e4b1f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.8.7.tar.gz) = 78c24ce6273ef5962261bb02c9955474e50e732723edfa190c83d8540c5d998d1b685f6195b3a3ef2520ead42a1b698e03c448ab377c569bc78e3f5a6dfc5d3e +SHA512 (urh-2.8.8.tar.gz) = 499df6e15fbf73b0b7ecda3ea65c5246b3fd7e3da510b3602ea2f41390ad98c672cc9228394f779178daf545ade3783545f462436f295c06f5e37c0a5dc69179 diff --git a/urh.spec b/urh.spec index 4922751..ddaa6cc 100644 --- a/urh.spec +++ b/urh.spec @@ -2,7 +2,7 @@ # python 2 not supported Name: urh -Version: 2.8.7 +Version: 2.8.8 Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 @@ -71,6 +71,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Tue May 19 2020 Jaroslav Škarvada - 2.8.8-1 +- New version + Resolves: rhbz#1837080 + * Mon Apr 27 2020 Jaroslav Škarvada - 2.8.7-1 - New version Resolves: rhbz#1828481 From 245b6b0eb0c6480087b497cecead592ac91b8a20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Tue, 26 May 2020 03:54:03 +0200 Subject: [PATCH 043/100] Rebuilt for Python 3.9 --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index ddaa6cc..a3a2db6 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.8.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -71,6 +71,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Tue May 26 2020 Miro Hrončok - 2.8.8-2 +- Rebuilt for Python 3.9 + * Tue May 19 2020 Jaroslav Škarvada - 2.8.8-1 - New version Resolves: rhbz#1837080 From 2d9b038c7d840c4146882a6475a2f50c92c18791 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 13:23:30 +0000 Subject: [PATCH 044/100] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index a3a2db6..88a9672 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.8.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -71,6 +71,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 2.8.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Tue May 26 2020 Miro Hrončok - 2.8.8-2 - Rebuilt for Python 3.9 From 3661b1064e5a6d655069cb9745d649f853b7971e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Mon, 21 Sep 2020 22:06:55 +0200 Subject: [PATCH 045/100] New version Resolves: rhbz#1876872 --- sources | 2 +- urh.spec | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/sources b/sources index f6e4b1f..4fcb610 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.8.8.tar.gz) = 499df6e15fbf73b0b7ecda3ea65c5246b3fd7e3da510b3602ea2f41390ad98c672cc9228394f779178daf545ade3783545f462436f295c06f5e37c0a5dc69179 +SHA512 (urh-2.8.9.tar.gz) = bdcca5210df79d41f606f83f8034796b942be192ee61e02af2217ae9ab2044a69ef04d694123a4cc029f047186af0880833355ee1fd7a3dfb5c29552c1892ffb diff --git a/urh.spec b/urh.spec index 88a9672..27e6943 100644 --- a/urh.spec +++ b/urh.spec @@ -2,8 +2,8 @@ # python 2 not supported Name: urh -Version: 2.8.8 -Release: 3%{?dist} +Version: 2.8.9 +Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -71,6 +71,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Mon Sep 21 2020 Jaroslav Škarvada - 2.8.9-1 +- New version + Resolves: rhbz#1876872 + * Wed Jul 29 2020 Fedora Release Engineering - 2.8.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From d09f792fb152a1eb16e6c04601cb0f32c989510b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Wed, 25 Nov 2020 16:25:36 +0100 Subject: [PATCH 046/100] New version Resolves: rhbz#1901393 --- sources | 2 +- urh.spec | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/sources b/sources index 4fcb610..4cb3633 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.8.9.tar.gz) = bdcca5210df79d41f606f83f8034796b942be192ee61e02af2217ae9ab2044a69ef04d694123a4cc029f047186af0880833355ee1fd7a3dfb5c29552c1892ffb +SHA512 (urh-2.9.0.tar.gz) = f385b8c921d8439ba121d60a0c160608e7e0c82db03420aa363aac2074e09deafe9bee02ecac96c74f5dcefb9367e1080cfd265b461dc596fcc8e285ea9298ad diff --git a/urh.spec b/urh.spec index 27e6943..e80c6cb 100644 --- a/urh.spec +++ b/urh.spec @@ -2,7 +2,7 @@ # python 2 not supported Name: urh -Version: 2.8.9 +Version: 2.9.0 Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 @@ -71,6 +71,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Wed Nov 25 2020 Jaroslav Škarvada - 2.9.0-1 +- New version + Resolves: rhbz#1901393 + * Mon Sep 21 2020 Jaroslav Škarvada - 2.8.9-1 - New version Resolves: rhbz#1876872 From e193c23dfd4d3f387f0313c7b045cd70b5c283d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Mon, 4 Jan 2021 19:49:04 +0100 Subject: [PATCH 047/100] New version Resolves: rhbz#1911772 --- sources | 2 +- urh.spec | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/sources b/sources index 4cb3633..707646c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.9.0.tar.gz) = f385b8c921d8439ba121d60a0c160608e7e0c82db03420aa363aac2074e09deafe9bee02ecac96c74f5dcefb9367e1080cfd265b461dc596fcc8e285ea9298ad +SHA512 (urh-2.9.1.tar.gz) = e6982a665775c74673b2f409ba2ca42466312dd952ad0ba575405389c1a1274b03e6dde32338a6746d76b25c53018e2ec59f986687dcb18cf95b7087d631ee80 diff --git a/urh.spec b/urh.spec index e80c6cb..4170531 100644 --- a/urh.spec +++ b/urh.spec @@ -2,7 +2,7 @@ # python 2 not supported Name: urh -Version: 2.9.0 +Version: 2.9.1 Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 @@ -71,6 +71,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Mon Jan 4 2021 Jaroslav Škarvada - 2.9.1-1 +- New version + Resolves: rhbz#1911772 + * Wed Nov 25 2020 Jaroslav Škarvada - 2.9.0-1 - New version Resolves: rhbz#1901393 From f2541823cec3f0cad3ff3175ac99b703100873ed Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 22:45:37 +0000 Subject: [PATCH 048/100] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 4170531..3e93e81 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -71,6 +71,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 2.9.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Mon Jan 4 2021 Jaroslav Škarvada - 2.9.1-1 - New version Resolves: rhbz#1911772 From 7fbedc07655d40a7f8ebb08db8fe5a8b306a15e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Mon, 8 Feb 2021 12:07:35 +0100 Subject: [PATCH 049/100] Rebuilt for new uhd Resolves: rhbz#1925578 --- urh.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 3e93e81..6849dbf 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -71,6 +71,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Mon Feb 8 2021 Jaroslav Škarvada - 2.9.1-3 +- Rebuilt for new uhd + Resolves: rhbz#1925578 + * Wed Jan 27 2021 Fedora Release Engineering - 2.9.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From f831d2ae77f0e5c7c2cf30e40291d5f35408e214 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Mon, 19 Apr 2021 23:00:20 +0200 Subject: [PATCH 050/100] New version Resolves: rhbz#1950673 --- .gitignore | 2 +- sources | 2 +- urh.spec | 8 ++++++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 60ca72c..f35da22 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -urh-*.tar.gz +/urh-*.tar.gz diff --git a/sources b/sources index 707646c..ce18c29 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.9.1.tar.gz) = e6982a665775c74673b2f409ba2ca42466312dd952ad0ba575405389c1a1274b03e6dde32338a6746d76b25c53018e2ec59f986687dcb18cf95b7087d631ee80 +SHA512 (urh-2.9.2.tar.gz) = 4cf0ae173be467257d64f9d27aad52ffa73ef3a1b428e8bb8ca5d5647ddca48418f0625cc14b93f434ecb92095162a560f0a89e4e378fc98c38393af44425854 diff --git a/urh.spec b/urh.spec index 6849dbf..0cf8d07 100644 --- a/urh.spec +++ b/urh.spec @@ -2,8 +2,8 @@ # python 2 not supported Name: urh -Version: 2.9.1 -Release: 3%{?dist} +Version: 2.9.2 +Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -71,6 +71,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Mon Apr 19 2021 Jaroslav Škarvada - 2.9.2-1 +- New version + Resolves: rhbz#1950673 + * Mon Feb 8 2021 Jaroslav Škarvada - 2.9.1-3 - Rebuilt for new uhd Resolves: rhbz#1925578 From d53dacca39a70c52525a1b6a9691785221e10bd4 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 4 Jun 2021 21:18:53 +0200 Subject: [PATCH 051/100] Rebuilt for Python 3.10 --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 0cf8d07..9e0e6c5 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -71,6 +71,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Fri Jun 04 2021 Python Maint - 2.9.2-2 +- Rebuilt for Python 3.10 + * Mon Apr 19 2021 Jaroslav Škarvada - 2.9.2-1 - New version Resolves: rhbz#1950673 From 8d1be70d0230ed56ad4b6f0bf397a81ea1cbcd1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Fri, 2 Jul 2021 20:44:00 +0200 Subject: [PATCH 052/100] Rebuilt for new uhd --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 9e0e6c5..4dc1fe6 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -71,6 +71,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Fri Jul 2 2021 Jaroslav Škarvada - 2.9.2-3 +- Rebuilt for new uhd + * Fri Jun 04 2021 Python Maint - 2.9.2-2 - Rebuilt for Python 3.10 From a2f5102efe820904300ad692a250dfd478d79408 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 20:08:18 +0000 Subject: [PATCH 053/100] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 4dc1fe6..bb92dc1 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -71,6 +71,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 2.9.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Fri Jul 2 2021 Jaroslav Škarvada - 2.9.2-3 - Rebuilt for new uhd From 20b2a854f64478e9b55d682c7c7f1615ee5d8391 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jan 2022 03:37:22 +0000 Subject: [PATCH 054/100] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index bb92dc1..472f11a 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -71,6 +71,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Sat Jan 22 2022 Fedora Release Engineering - 2.9.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Jul 23 2021 Fedora Release Engineering - 2.9.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 8d85fe114b59a5a8fb4f0192948d266b0ccd179b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Wed, 2 Mar 2022 21:43:06 +0100 Subject: [PATCH 055/100] New version Resolves: rhbz#2059689 --- sources | 2 +- urh.spec | 26 ++++++++++++++++++++------ 2 files changed, 21 insertions(+), 7 deletions(-) diff --git a/sources b/sources index ce18c29..a2999ad 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.9.2.tar.gz) = 4cf0ae173be467257d64f9d27aad52ffa73ef3a1b428e8bb8ca5d5647ddca48418f0625cc14b93f434ecb92095162a560f0a89e4e378fc98c38393af44425854 +SHA512 (urh-2.9.3.tar.gz) = 5d166d6895271a6f2c5cc09f80fef2b7780f4ceec030fdfe229abafa76d77718bc5ca6d0b462c3745e71a28f2172534e756a795c3ec95f4f0f23efab8bd69e82 diff --git a/urh.spec b/urh.spec index 472f11a..d200aeb 100644 --- a/urh.spec +++ b/urh.spec @@ -2,22 +2,32 @@ # python 2 not supported Name: urh -Version: 2.9.2 -Release: 5%{?dist} +Version: 2.9.3 +Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh Source0: https://github.com/jopohl/urh/archive/v%{version}/%{name}-%{version}.tar.gz -BuildRequires: python3-setuptools, python3-devel, gcc-c++, python3-numpy, desktop-file-utils -BuildRequires: airspyone_host-devel, hackrf-devel, rtl-sdr-devel, uhd-devel, python3-qt5, python3-Cython -Requires: python3-numpy, python3-qt5 +BuildRequires: python3-setuptools +BuildRequires: python3-devel +BuildRequires: gcc-c++ +BuildRequires: python3-numpy +BuildRequires: desktop-file-utils +BuildRequires: airspyone_host-devel +BuildRequires: hackrf-devel +BuildRequires: rtl-sdr-devel +BuildRequires: uhd-devel +BuildRequires: python3-qt5 +BuildRequires: python3-Cython +Requires: python3-numpy +Requires: python3-qt5 %description The Universal Radio Hacker is a software for investigating unknown wireless protocols. %prep -%setup -q +%autosetup -p1 # remove *.pyc find . -name '*.pyc' | xargs rm -f @@ -71,6 +81,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Wed Mar 2 2022 Jaroslav Škarvada - 2.9.3-1 +- New version + Resolves: rhbz#2059689 + * Sat Jan 22 2022 Fedora Release Engineering - 2.9.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From 5e7963e771ed5e68cc8b6d16d9f6b067c3f4154a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Tue, 26 Apr 2022 15:07:54 +0200 Subject: [PATCH 056/100] Rebuilt for new uhd Resolves: rhbz#2077807 --- urh.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index d200aeb..c1da030 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -81,6 +81,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Tue Apr 26 2022 Jaroslav Škarvada - 2.9.3-2 +- Rebuilt for new uhd + Resolves: rhbz#2077807 + * Wed Mar 2 2022 Jaroslav Škarvada - 2.9.3-1 - New version Resolves: rhbz#2059689 From e266e1046bf15311fe1c19ab4666c54db15b55a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Mon, 20 Jun 2022 12:25:08 +0200 Subject: [PATCH 057/100] Rebuilt for new python Resolves: rhbz#2099183 --- urh.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index c1da030..2fbdc3d 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -81,6 +81,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Mon Jun 20 2022 Jaroslav Škarvada - 2.9.3-3 +- Rebuilt for new python + Resolves: rhbz#2099183 + * Tue Apr 26 2022 Jaroslav Škarvada - 2.9.3-2 - Rebuilt for new uhd Resolves: rhbz#2077807 From 072d9c7e925f7afa4c99a2cc3488d524b57ac191 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Tue, 12 Jul 2022 00:56:47 +0200 Subject: [PATCH 058/100] Rebuilt for new airspyone_host --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 2fbdc3d..8de273f 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -81,6 +81,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Mon Jul 11 2022 Jaroslav Škarvada - 2.9.3-4 +- Rebuilt for new airspyone_host + * Mon Jun 20 2022 Jaroslav Škarvada - 2.9.3-3 - Rebuilt for new python Resolves: rhbz#2099183 From 0a69beca82c873a29e5d81075d3c376e77ddf4f2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 11:30:13 +0000 Subject: [PATCH 059/100] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 8de273f..6143369 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -81,6 +81,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 2.9.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Mon Jul 11 2022 Jaroslav Škarvada - 2.9.3-4 - Rebuilt for new airspyone_host From 09f43503903cdc55ecd584f81f018509ea84008e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Sat, 30 Jul 2022 13:06:52 +0200 Subject: [PATCH 060/100] Rebuilt for new uhd --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 6143369..a3677ac 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -81,6 +81,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Sat Jul 30 2022 Jaroslav Škarvada - 2.9.3-6 +- Rebuilt for new uhd + * Sat Jul 23 2022 Fedora Release Engineering - 2.9.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From 1fb4499f8dcc6fd7c1818a3bd391bb6f5d94f347 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Mon, 26 Sep 2022 20:43:23 +0200 Subject: [PATCH 061/100] Rebuilt for new uhd Resolves: rhbz#2129789 --- urh.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index a3677ac..7eed158 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.3 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -81,6 +81,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Mon Sep 26 2022 Jaroslav Škarvada - 2.9.3-7 +- Rebuilt for new uhd + Resolves: rhbz#2129789 + * Sat Jul 30 2022 Jaroslav Škarvada - 2.9.3-6 - Rebuilt for new uhd From 01c7fd9a993d0abe8b06bac977b1da91b5dffbdb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 21 Jan 2023 05:55:23 +0000 Subject: [PATCH 062/100] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 7eed158..a304f4d 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.3 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -81,6 +81,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Sat Jan 21 2023 Fedora Release Engineering - 2.9.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Mon Sep 26 2022 Jaroslav Škarvada - 2.9.3-7 - Rebuilt for new uhd Resolves: rhbz#2129789 From 725302d2a4f930a5a7cae6909fd32564d7e85e83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Mon, 30 Jan 2023 11:06:51 +0100 Subject: [PATCH 063/100] New version Resolves: rhbz#2165227 --- sources | 2 +- urh.spec | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/sources b/sources index a2999ad..2c7c1b0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.9.3.tar.gz) = 5d166d6895271a6f2c5cc09f80fef2b7780f4ceec030fdfe229abafa76d77718bc5ca6d0b462c3745e71a28f2172534e756a795c3ec95f4f0f23efab8bd69e82 +SHA512 (urh-2.9.4.tar.gz) = a888c20a4d2f349960e41defdb5cce6590d4523f8a1a655e21e4caaf7dd98a6f51936fa5a038787cb5935bc42e8863d2940059130dc9982caeea4b80e431aeeb diff --git a/urh.spec b/urh.spec index a304f4d..ecb138d 100644 --- a/urh.spec +++ b/urh.spec @@ -2,8 +2,8 @@ # python 2 not supported Name: urh -Version: 2.9.3 -Release: 8%{?dist} +Version: 2.9.4 +Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -81,6 +81,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Mon Jan 30 2023 Jaroslav Škarvada - 2.9.4-1 +- New version + Resolves: rhbz#2165227 + * Sat Jan 21 2023 Fedora Release Engineering - 2.9.3-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 31cf63308064f0e75d41751de7012ac8d57aa629 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Wed, 1 Feb 2023 19:19:39 +0100 Subject: [PATCH 064/100] Rebuilt for new uhd --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index ecb138d..078b5ee 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -81,6 +81,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Wed Feb 1 2023 Jaroslav Škarvada - 2.9.4-2 +- Rebuilt for new uhd + * Mon Jan 30 2023 Jaroslav Škarvada - 2.9.4-1 - New version Resolves: rhbz#2165227 From 67e38801a2af8a49238877a96d95f3f84af1c7c9 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 16 Jun 2023 17:31:01 +0200 Subject: [PATCH 065/100] Rebuilt for Python 3.12 --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 078b5ee..7eb0c90 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -81,6 +81,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Fri Jun 16 2023 Python Maint - 2.9.4-3 +- Rebuilt for Python 3.12 + * Wed Feb 1 2023 Jaroslav Škarvada - 2.9.4-2 - Rebuilt for new uhd From 06a0a1519b9390e822f4fe9a762d7ee9e443613a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jul 2023 17:13:24 +0000 Subject: [PATCH 066/100] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 7eb0c90..b88cbc5 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -81,6 +81,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Sat Jul 22 2023 Fedora Release Engineering - 2.9.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Fri Jun 16 2023 Python Maint - 2.9.4-3 - Rebuilt for Python 3.12 From 26b3079f6fc23d9bf03580e6aad8358f7e44a8da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Tue, 8 Aug 2023 18:21:14 +0200 Subject: [PATCH 067/100] Fixed FTBFS Resolves: rhbz#2226494 --- urh.spec | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/urh.spec b/urh.spec index b88cbc5..5c0bc01 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -18,7 +18,8 @@ BuildRequires: hackrf-devel BuildRequires: rtl-sdr-devel BuildRequires: uhd-devel BuildRequires: python3-qt5 -BuildRequires: python3-Cython +# temporal workaround until upstream adds support for cython-3.0.0 +BuildRequires: python3-cython0.29 Requires: python3-numpy Requires: python3-qt5 @@ -81,6 +82,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Tue Aug 8 2023 Jaroslav Škarvada - 2.9.4-5 +- Fixed FTBFS + Resolves: rhbz#2226494 + * Sat Jul 22 2023 Fedora Release Engineering - 2.9.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 9b8f4b60201a2471cd64d7d6d6d16c55f5155702 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Mon, 25 Sep 2023 16:04:34 +0200 Subject: [PATCH 068/100] Rebuilt for new uhd --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 5c0bc01..72faa88 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -82,6 +82,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Mon Sep 25 2023 Jaroslav Škarvada - 2.9.4-6 +- Rebuilt for new uhd + * Tue Aug 8 2023 Jaroslav Škarvada - 2.9.4-5 - Fixed FTBFS Resolves: rhbz#2226494 From 4771d539d3e655c2dbdf5b2b11f7ea868bdab33f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Tue, 31 Oct 2023 17:26:25 +0100 Subject: [PATCH 069/100] New version Resolves: rhbz#2246830 --- sources | 2 +- urh.spec | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/sources b/sources index 2c7c1b0..d233d82 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.9.4.tar.gz) = a888c20a4d2f349960e41defdb5cce6590d4523f8a1a655e21e4caaf7dd98a6f51936fa5a038787cb5935bc42e8863d2940059130dc9982caeea4b80e431aeeb +SHA512 (urh-2.9.5.tar.gz) = 7f04f041963103aab4a67fd5fd8f874339cad04da846236b0ec4584553ae6b4a6469c2505cec7c67f72d848d0eb90a4996753802c65535914e70a943d40e6970 diff --git a/urh.spec b/urh.spec index 72faa88..ce7d4cb 100644 --- a/urh.spec +++ b/urh.spec @@ -2,8 +2,8 @@ # python 2 not supported Name: urh -Version: 2.9.4 -Release: 6%{?dist} +Version: 2.9.5 +Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -82,6 +82,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Tue Oct 31 2023 Jaroslav Škarvada - 2.9.5-1 +- New version + Resolves: rhbz#2246830 + * Mon Sep 25 2023 Jaroslav Škarvada - 2.9.4-6 - Rebuilt for new uhd From 947851cd9d286b016da02bfaba4ce23e7549a7e0 Mon Sep 17 00:00:00 2001 From: Karolina Surma Date: Mon, 13 Nov 2023 10:50:13 +0100 Subject: [PATCH 070/100] Allow to build with Cython 3.0.5 --- urh.spec | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/urh.spec b/urh.spec index ce7d4cb..a8a7d0e 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -18,8 +18,8 @@ BuildRequires: hackrf-devel BuildRequires: rtl-sdr-devel BuildRequires: uhd-devel BuildRequires: python3-qt5 -# temporal workaround until upstream adds support for cython-3.0.0 -BuildRequires: python3-cython0.29 +# Unpinning Cython raised upstream: https://github.com/jopohl/urh/issues/1087 +BuildRequires: python3-cython Requires: python3-numpy Requires: python3-qt5 @@ -46,6 +46,7 @@ pushd src/urh/dev/native/lib rm -rf win popd +sed -i 's/"cython<3.0.0"/"cython"/' setup.py %build %py3_build @@ -82,6 +83,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Mon Nov 13 2023 Karolina Surma - 2.9.5-2 +- Stop pinning Cython to 0.29, package builds with Cython 3 too + * Tue Oct 31 2023 Jaroslav Škarvada - 2.9.5-1 - New version Resolves: rhbz#2246830 From 53319a3bd4e7e5800014eaa5398843e80a4b6c47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Wed, 22 Nov 2023 18:34:20 +0100 Subject: [PATCH 071/100] Rebuilt for new uhd --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index a8a7d0e..7ddef85 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -83,6 +83,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Wed Nov 22 2023 Jaroslav Škarvada - 2.9.5-3 +- Rebuilt for new uhd + * Mon Nov 13 2023 Karolina Surma - 2.9.5-2 - Stop pinning Cython to 0.29, package builds with Cython 3 too From ebf1072243e6d70d4db5db5441a9761547fbd15a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Tue, 16 Jan 2024 15:56:54 +0100 Subject: [PATCH 072/100] New version Resolves: rhbz#2258401 --- sources | 2 +- urh.spec | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/sources b/sources index d233d82..7af696f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.9.5.tar.gz) = 7f04f041963103aab4a67fd5fd8f874339cad04da846236b0ec4584553ae6b4a6469c2505cec7c67f72d848d0eb90a4996753802c65535914e70a943d40e6970 +SHA512 (urh-2.9.6.tar.gz) = c5a153bf6df2421b496c58957b5ea0d591efd8caa12e08638560c125014d935abf279328a8b91fd09ab21444a58eea6ab7e59c3524b5c586c294b11123bff250 diff --git a/urh.spec b/urh.spec index 7ddef85..09f12b2 100644 --- a/urh.spec +++ b/urh.spec @@ -2,8 +2,8 @@ # python 2 not supported Name: urh -Version: 2.9.5 -Release: 3%{?dist} +Version: 2.9.6 +Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -83,6 +83,10 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Tue Jan 16 2024 Jaroslav Škarvada - 2.9.6-1 +- New version + Resolves: rhbz#2258401 + * Wed Nov 22 2023 Jaroslav Škarvada - 2.9.5-3 - Rebuilt for new uhd From 7d6a8d6432e621832c16b9467e70df76ca6c0965 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jan 2024 07:13:08 +0000 Subject: [PATCH 073/100] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 09f12b2..7d67bb5 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -83,6 +83,9 @@ desktop-file-install --add-category="Utility" \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Sat Jan 27 2024 Fedora Release Engineering - 2.9.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Tue Jan 16 2024 Jaroslav Škarvada - 2.9.6-1 - New version Resolves: rhbz#2258401 From 1a393c11a478b521cc52bde04aa2aee77c830a43 Mon Sep 17 00:00:00 2001 From: AsciiWolf Date: Thu, 25 Jan 2024 19:58:32 +0100 Subject: [PATCH 074/100] Added AppStream metadata --- io.github.jopohl.urh.metainfo.xml | 41 +++++++++++++++++++++++++++++++ urh.spec | 11 ++++++++- 2 files changed, 51 insertions(+), 1 deletion(-) create mode 100644 io.github.jopohl.urh.metainfo.xml diff --git a/io.github.jopohl.urh.metainfo.xml b/io.github.jopohl.urh.metainfo.xml new file mode 100644 index 0000000..7deccfa --- /dev/null +++ b/io.github.jopohl.urh.metainfo.xml @@ -0,0 +1,41 @@ + + + io.github.jopohl.urh + urh.desktop + CC0-1.0 + GPL-2.0 + Universal Radio Hacker + Dr. Johannes Pohl + Investigate Wireless Protocols Like A Boss + +

+ The Universal Radio Hacker (URH) is a complete suite for wireless protocol investigation with native support for many + common Software Defined Radios. URH allows easy demodulation of signals combined with an automatic detection of + modulation parameters making it a breeze to identify the bits and bytes that fly over the air. +

+

+ As data often gets encoded before transmission, URH offers customizable decodings to crack even sophisticated encodings + like CC1101 data whitening. When it comes to protocol reverse-engineering, URH is helpful in two ways. You can either + manually assign protocol fields and message types or let URH automatically infer protocol fields with a rule-based + intelligence. Finally, URH entails a fuzzing component aimed at stateless protocols and a simulation environment + for stateful attacks. +

+
+ + + https://asciiwolf.fedorapeople.org/appstream/screenshots/urh/1.png + Get the data out of raw signals + + + https://asciiwolf.fedorapeople.org/appstream/screenshots/urh/2.png + Keep an overview even on complex protocols + + + https://asciiwolf.fedorapeople.org/appstream/screenshots/urh/3.png + Record and send signals + + + https://github.com/jopohl/urh + https://github.com/jopohl/urh/issues + +
diff --git a/urh.spec b/urh.spec index 7d67bb5..3655298 100644 --- a/urh.spec +++ b/urh.spec @@ -3,11 +3,12 @@ Name: urh Version: 2.9.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh Source0: https://github.com/jopohl/urh/archive/v%{version}/%{name}-%{version}.tar.gz +Source1: io.github.jopohl.urh.metainfo.xml BuildRequires: python3-setuptools BuildRequires: python3-devel BuildRequires: gcc-c++ @@ -72,6 +73,10 @@ desktop-file-install --add-category="Utility" \ --dir=%{buildroot}%{_datadir}/applications \ data/urh.desktop +# metainfo file +install -Dpm 0644 %{SOURCE1} \ + %{buildroot}%{_metainfodir}/io.github.jopohl.urh.metainfo.xml + %files %license LICENSE %doc README.md @@ -79,10 +84,14 @@ desktop-file-install --add-category="Utility" \ %{_bindir}/urh_cli %{_datadir}/icons/hicolor/128x128/apps/urh.png %{_datadir}/applications/urh.desktop +%{_metainfodir}/io.github.jopohl.urh.metainfo.xml %{python3_sitearch}/urh %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Mon Jan 29 2024 Daniel Rusek - 2.9.6-3 +- Added AppStream metadata + * Sat Jan 27 2024 Fedora Release Engineering - 2.9.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 95dce0cfbf7e7e7c1bee8171c87bbe6c2cf933fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Thu, 4 Apr 2024 15:23:38 +0200 Subject: [PATCH 075/100] Fixed FTBFS with python-3.13 Resolves: rhbz#2272955 --- urh-2.9.6-python-3.13.patch | 22 ++++++++++++++++++++++ urh.spec | 8 +++++++- 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 urh-2.9.6-python-3.13.patch diff --git a/urh-2.9.6-python-3.13.patch b/urh-2.9.6-python-3.13.patch new file mode 100644 index 0000000..84d691e --- /dev/null +++ b/urh-2.9.6-python-3.13.patch @@ -0,0 +1,22 @@ +diff --git a/src/urh/dev/native/lib/airspy.pyx b/src/urh/dev/native/lib/airspy.pyx +index ee2cf43..bfba573 100644 +--- a/src/urh/dev/native/lib/airspy.pyx ++++ b/src/urh/dev/native/lib/airspy.pyx +@@ -7,9 +7,6 @@ from cython.view cimport array as cvarray # needed for converting of malloc arr + from urh.util.Logger import logger + + +-cdef extern from "Python.h": +- void PyEval_InitThreads() +- + ctypedef unsigned char uint8_t + ctypedef unsigned int uint32_t + ctypedef unsigned long long uint64_t +@@ -81,7 +78,6 @@ cpdef int set_if_rx_gain(uint8_t vga_gain): + cpdef int start_rx(callback): + global f + f = callback +- PyEval_InitThreads() + cairspy.airspy_set_sample_type(_c_device, cairspy.airspy_sample_type.AIRSPY_SAMPLE_FLOAT32_IQ) + return cairspy.airspy_start_rx(_c_device, _c_callback_recv, NULL) + diff --git a/urh.spec b/urh.spec index 3655298..34ccac0 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -23,6 +23,8 @@ BuildRequires: python3-qt5 BuildRequires: python3-cython Requires: python3-numpy Requires: python3-qt5 +# https://github.com/jopohl/urh/pull/1111 +Patch0: urh-2.9.6-python-3.13.patch %description The Universal Radio Hacker is a software for investigating unknown wireless @@ -89,6 +91,10 @@ install -Dpm 0644 %{SOURCE1} \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Thu Apr 4 2024 Jaroslav Škarvada - 2.9.6-4 +- Fixed FTBFS with python-3.13 + Resolves: rhbz#2272955 + * Mon Jan 29 2024 Daniel Rusek - 2.9.6-3 - Added AppStream metadata From 0814cc4108f3e01036ed7df6f67a44d8f57ac3a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Tue, 9 Apr 2024 14:40:18 +0200 Subject: [PATCH 076/100] Rebuilt for new rtl-sdr --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 34ccac0..fe4816a 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.6 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -91,6 +91,9 @@ install -Dpm 0644 %{SOURCE1} \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Tue Apr 9 2024 Jaroslav Škarvada - 2.9.6-5 +- Rebuilt for new rtl-sdr + * Thu Apr 4 2024 Jaroslav Škarvada - 2.9.6-4 - Fixed FTBFS with python-3.13 Resolves: rhbz#2272955 From 3843f891fbed6f3d7bf340888e67b019a4dcf5b7 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Sun, 9 Jun 2024 01:40:53 +0200 Subject: [PATCH 077/100] Rebuilt for Python 3.13 --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index fe4816a..5947be6 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.6 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -91,6 +91,9 @@ install -Dpm 0644 %{SOURCE1} \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Sat Jun 08 2024 Python Maint - 2.9.6-6 +- Rebuilt for Python 3.13 + * Tue Apr 9 2024 Jaroslav Škarvada - 2.9.6-5 - Rebuilt for new rtl-sdr From ab11eafbaaf5e0083f6405a4ca7095ace640e57d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Mon, 15 Jul 2024 18:48:19 +0200 Subject: [PATCH 078/100] Rebuilt for new uhd --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 5947be6..c433de5 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.6 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -91,6 +91,9 @@ install -Dpm 0644 %{SOURCE1} \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Mon Jul 15 2024 Jaroslav Škarvada - 2.9.6-7 +- Rebuilt for new uhd + * Sat Jun 08 2024 Python Maint - 2.9.6-6 - Rebuilt for Python 3.13 From 68b4b6b64af369701856efa3a132ad04db856e44 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jul 2024 08:22:25 +0000 Subject: [PATCH 079/100] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index c433de5..131bbc3 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.6 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss License: ASL 2.0 and GPLv2 URL: https://github.com/jopohl/urh @@ -91,6 +91,9 @@ install -Dpm 0644 %{SOURCE1} \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Sat Jul 20 2024 Fedora Release Engineering - 2.9.6-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Mon Jul 15 2024 Jaroslav Škarvada - 2.9.6-7 - Rebuilt for new uhd From 37ccab8ec59371f4f4591c18a2d11ccdc5265caa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Wed, 7 Aug 2024 10:19:09 +0200 Subject: [PATCH 080/100] convert license to SPDX This is part of https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_4 --- urh.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/urh.spec b/urh.spec index 131bbc3..d0cafd0 100644 --- a/urh.spec +++ b/urh.spec @@ -3,9 +3,10 @@ Name: urh Version: 2.9.6 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss -License: ASL 2.0 and GPLv2 +# Automatically converted from old format: ASL 2.0 and GPLv2 - review is highly recommended. +License: Apache-2.0 AND GPL-2.0-only URL: https://github.com/jopohl/urh Source0: https://github.com/jopohl/urh/archive/v%{version}/%{name}-%{version}.tar.gz Source1: io.github.jopohl.urh.metainfo.xml @@ -91,6 +92,9 @@ install -Dpm 0644 %{SOURCE1} \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Wed Aug 07 2024 Miroslav Suchý - 2.9.6-9 +- convert license to SPDX + * Sat Jul 20 2024 Fedora Release Engineering - 2.9.6-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From c75af2cfbe4146a038c3441df824987f6d3550ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Sat, 16 Nov 2024 20:15:39 +0100 Subject: [PATCH 081/100] New version Resolves: rhbz#2325899 --- sources | 2 +- urh.spec | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/sources b/sources index 7af696f..317174f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.9.6.tar.gz) = c5a153bf6df2421b496c58957b5ea0d591efd8caa12e08638560c125014d935abf279328a8b91fd09ab21444a58eea6ab7e59c3524b5c586c294b11123bff250 +SHA512 (urh-2.9.8.tar.gz) = a5327bee699bba8e6ffef2e7ec54f5f4b354feda18340c9b567b10b8c9283c5c907a546fd8a5660a2c325d42b8928cb9592630d0c2a5ed7dfdcf5dc434be4cb2 diff --git a/urh.spec b/urh.spec index d0cafd0..59231d7 100644 --- a/urh.spec +++ b/urh.spec @@ -2,8 +2,8 @@ # python 2 not supported Name: urh -Version: 2.9.6 -Release: 9%{?dist} +Version: 2.9.8 +Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss # Automatically converted from old format: ASL 2.0 and GPLv2 - review is highly recommended. License: Apache-2.0 AND GPL-2.0-only @@ -92,6 +92,10 @@ install -Dpm 0644 %{SOURCE1} \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Sat Nov 16 2024 Jaroslav Škarvada - 2.9.8-1 +- New version + Resolves: rhbz#2325899 + * Wed Aug 07 2024 Miroslav Suchý - 2.9.6-9 - convert license to SPDX From a51f52d1cd4f2863dbcabcabdac7c2e080c31f73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Sat, 16 Nov 2024 20:45:36 +0100 Subject: [PATCH 082/100] Dropped upstreamed patch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jaroslav Škarvada --- urh-2.9.6-python-3.13.patch | 22 ---------------------- urh.spec | 2 -- 2 files changed, 24 deletions(-) delete mode 100644 urh-2.9.6-python-3.13.patch diff --git a/urh-2.9.6-python-3.13.patch b/urh-2.9.6-python-3.13.patch deleted file mode 100644 index 84d691e..0000000 --- a/urh-2.9.6-python-3.13.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff --git a/src/urh/dev/native/lib/airspy.pyx b/src/urh/dev/native/lib/airspy.pyx -index ee2cf43..bfba573 100644 ---- a/src/urh/dev/native/lib/airspy.pyx -+++ b/src/urh/dev/native/lib/airspy.pyx -@@ -7,9 +7,6 @@ from cython.view cimport array as cvarray # needed for converting of malloc arr - from urh.util.Logger import logger - - --cdef extern from "Python.h": -- void PyEval_InitThreads() -- - ctypedef unsigned char uint8_t - ctypedef unsigned int uint32_t - ctypedef unsigned long long uint64_t -@@ -81,7 +78,6 @@ cpdef int set_if_rx_gain(uint8_t vga_gain): - cpdef int start_rx(callback): - global f - f = callback -- PyEval_InitThreads() - cairspy.airspy_set_sample_type(_c_device, cairspy.airspy_sample_type.AIRSPY_SAMPLE_FLOAT32_IQ) - return cairspy.airspy_start_rx(_c_device, _c_callback_recv, NULL) - diff --git a/urh.spec b/urh.spec index 59231d7..ec1f9c9 100644 --- a/urh.spec +++ b/urh.spec @@ -24,8 +24,6 @@ BuildRequires: python3-qt5 BuildRequires: python3-cython Requires: python3-numpy Requires: python3-qt5 -# https://github.com/jopohl/urh/pull/1111 -Patch0: urh-2.9.6-python-3.13.patch %description The Universal Radio Hacker is a software for investigating unknown wireless From ac4c18513e6acb61471eab38473e6b0ff5475fde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Mon, 6 Jan 2025 11:46:29 +0100 Subject: [PATCH 083/100] Relaxed numpy dependency, this will probably kill the GUI Resolves: rhbz#2332202 --- urh-2.9.8-relax-numpy-dep.patch | 22 ++++++++++++++++++++++ urh.spec | 9 ++++++++- 2 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 urh-2.9.8-relax-numpy-dep.patch diff --git a/urh-2.9.8-relax-numpy-dep.patch b/urh-2.9.8-relax-numpy-dep.patch new file mode 100644 index 0000000..7071d81 --- /dev/null +++ b/urh-2.9.8-relax-numpy-dep.patch @@ -0,0 +1,22 @@ +diff --git a/setup.py b/setup.py +index e6f122d..ea30195 100644 +--- a/setup.py ++++ b/setup.py +@@ -142,7 +142,7 @@ def read_long_description(): + return "" + + +-install_requires = ["numpy<2.0.0", "psutil", "cython", "setuptools"] ++install_requires = ["numpy", "psutil", "cython", "setuptools"] + if IS_RELEASE: + install_requires.append("pyqt5") + else: +@@ -168,7 +168,7 @@ setup( + license="GNU General Public License (GPL)", + download_url="https://github.com/jopohl/urh/tarball/v" + str(version.VERSION), + install_requires=install_requires, +- setup_requires=["numpy<2.0.0"], ++ setup_requires=["numpy"], + packages=get_packages(), + ext_modules=get_extensions(), + cmdclass={"build_ext": build_ext}, diff --git a/urh.spec b/urh.spec index ec1f9c9..9efae72 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss # Automatically converted from old format: ASL 2.0 and GPLv2 - review is highly recommended. License: Apache-2.0 AND GPL-2.0-only @@ -24,6 +24,9 @@ BuildRequires: python3-qt5 BuildRequires: python3-cython Requires: python3-numpy Requires: python3-qt5 +# Temporal dirty workaround, the GUI will probably crash, it has to be ported +# to numpy-2, upstream report: https://github.com/jopohl/urh/issues/1149 +Patch0: urh-2.9.8-relax-numpy-dep.patch %description The Universal Radio Hacker is a software for investigating unknown wireless @@ -90,6 +93,10 @@ install -Dpm 0644 %{SOURCE1} \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Mon Jan 6 2025 Jaroslav Škarvada - 2.9.8-2 +- Relaxed numpy dependency, this will probably kill the GUI + Resolves: rhbz#2332202 + * Sat Nov 16 2024 Jaroslav Škarvada - 2.9.8-1 - New version Resolves: rhbz#2325899 From a1f7186bd55faa264e6d5e6db88a10b59538fca2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Mon, 6 Jan 2025 14:11:55 +0100 Subject: [PATCH 084/100] Updated comments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jaroslav Škarvada --- urh.spec | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/urh.spec b/urh.spec index 9efae72..07ea2de 100644 --- a/urh.spec +++ b/urh.spec @@ -24,8 +24,9 @@ BuildRequires: python3-qt5 BuildRequires: python3-cython Requires: python3-numpy Requires: python3-qt5 -# Temporal dirty workaround, the GUI will probably crash, it has to be ported -# to numpy-2, upstream report: https://github.com/jopohl/urh/issues/1149 +# Temporal workaround, it may cause problems with the GUI may crash, it should +# be ported to numpy-2, upstream report: +# https://github.com/jopohl/urh/issues/1149 Patch0: urh-2.9.8-relax-numpy-dep.patch %description @@ -94,7 +95,7 @@ install -Dpm 0644 %{SOURCE1} \ %changelog * Mon Jan 6 2025 Jaroslav Škarvada - 2.9.8-2 -- Relaxed numpy dependency, this will probably kill the GUI +- Relaxed numpy dependency, this may cause problems with the GUI Resolves: rhbz#2332202 * Sat Nov 16 2024 Jaroslav Škarvada - 2.9.8-1 From 2c0d02bc36ac83289927f91cbbc0ac9ad82fc86a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Tue, 7 Jan 2025 16:03:52 +0100 Subject: [PATCH 085/100] Added check phase (still disabled) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jaroslav Škarvada --- urh.spec | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/urh.spec b/urh.spec index 07ea2de..3d50fb0 100644 --- a/urh.spec +++ b/urh.spec @@ -20,6 +20,8 @@ BuildRequires: hackrf-devel BuildRequires: rtl-sdr-devel BuildRequires: uhd-devel BuildRequires: python3-qt5 +BuildRequires: python3-pytest +BuildRequires: xorg-x11-server-Xvfb # Unpinning Cython raised upstream: https://github.com/jopohl/urh/issues/1087 BuildRequires: python3-cython Requires: python3-numpy @@ -82,6 +84,10 @@ desktop-file-install --add-category="Utility" \ install -Dpm 0644 %{SOURCE1} \ %{buildroot}%{_metainfodir}/io.github.jopohl.urh.metainfo.xml +%check +# https://github.com/jopohl/urh/issues/1149 +#xvfb-run pytest -s -v tests + %files %license LICENSE %doc README.md From 233914873f96b6a042faf9af1e3f3cdb15b2e9fc Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 19 Jan 2025 13:53:08 +0000 Subject: [PATCH 086/100] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 3d50fb0..c87c575 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss # Automatically converted from old format: ASL 2.0 and GPLv2 - review is highly recommended. License: Apache-2.0 AND GPL-2.0-only @@ -100,6 +100,9 @@ install -Dpm 0644 %{SOURCE1} \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Sun Jan 19 2025 Fedora Release Engineering - 2.9.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Mon Jan 6 2025 Jaroslav Škarvada - 2.9.8-2 - Relaxed numpy dependency, this may cause problems with the GUI Resolves: rhbz#2332202 From 590c020ae00557faccd5feda69fd7f6538344d9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Mon, 17 Mar 2025 18:33:08 +0100 Subject: [PATCH 087/100] Rebuilt for new uhd --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index c87c575..a1110a1 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.8 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss # Automatically converted from old format: ASL 2.0 and GPLv2 - review is highly recommended. License: Apache-2.0 AND GPL-2.0-only @@ -100,6 +100,9 @@ install -Dpm 0644 %{SOURCE1} \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Mon Mar 17 2025 Jaroslav Škarvada - 2.9.8-4 +- Rebuilt for new uhd + * Sun Jan 19 2025 Fedora Release Engineering - 2.9.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From b5d3ff7642275b945dc9d9ac30e88716fe9b426b Mon Sep 17 00:00:00 2001 From: Python Maint Date: Tue, 3 Jun 2025 16:09:52 +0200 Subject: [PATCH 088/100] Rebuilt for Python 3.14 --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index a1110a1..18f92e4 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.8 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss # Automatically converted from old format: ASL 2.0 and GPLv2 - review is highly recommended. License: Apache-2.0 AND GPL-2.0-only @@ -100,6 +100,9 @@ install -Dpm 0644 %{SOURCE1} \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Tue Jun 03 2025 Python Maint - 2.9.8-5 +- Rebuilt for Python 3.14 + * Mon Mar 17 2025 Jaroslav Škarvada - 2.9.8-4 - Rebuilt for new uhd From 13a0dfd773240e1e2f61e19ad720e2e99998ab74 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 19:50:57 +0000 Subject: [PATCH 089/100] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 18f92e4..b0c09b0 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.8 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss # Automatically converted from old format: ASL 2.0 and GPLv2 - review is highly recommended. License: Apache-2.0 AND GPL-2.0-only @@ -100,6 +100,9 @@ install -Dpm 0644 %{SOURCE1} \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 2.9.8-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Tue Jun 03 2025 Python Maint - 2.9.8-5 - Rebuilt for Python 3.14 From 6f6e07ea168310d2b61eb9494e379ea16f36fdd9 Mon Sep 17 00:00:00 2001 From: Charalampos Stratakis Date: Thu, 31 Jul 2025 02:07:23 +0200 Subject: [PATCH 090/100] Fix build failures with Cython >= 3.1 Resolves: rhbz#2377057 --- fix-cython-3.1-build.patch | 39 ++++++++++++++++++++++++++++++++++++++ urh.spec | 10 +++++++++- 2 files changed, 48 insertions(+), 1 deletion(-) create mode 100644 fix-cython-3.1-build.patch diff --git a/fix-cython-3.1-build.patch b/fix-cython-3.1-build.patch new file mode 100644 index 0000000..c0a44cd --- /dev/null +++ b/fix-cython-3.1-build.patch @@ -0,0 +1,39 @@ +From 11451e4cc0dab5e189cd441b96399f679c532fd3 Mon Sep 17 00:00:00 2001 +From: "Prof. Dr. Andreas Noack" +Date: Thu, 31 Jul 2025 10:15:32 +0200 +Subject: [PATCH] Fix compilation with Cython3.1. (#1184) + +Thanks to ahesford: + +Failure to compile with Cython 3.1 is caused by a collision between struct hackrf_device_list and the function hackrf_device_list. In the C library that this wraps, the two names are distinct. Cython, however, folds struct hackrf_device_list into just hackrf_device_list. Fortunately, Cython allows the use of a name for its definitions that differs from the underlying C name, so the struct can just be called c_hackrf_device_list. This doesn't seem to be a critical change because the immediately following typedef just aliases this to hackrf_device_list_t everywhere it is needed. + +Cf. http://docs.cython.org/en/stable/src/userguide/external_C_code.html#resolving-naming-conflicts-c-name-specifications +--- + src/urh/dev/native/lib/chackrf.pxd | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/urh/dev/native/lib/chackrf.pxd b/src/urh/dev/native/lib/chackrf.pxd +index a1382db..1577352 100644 +--- a/src/urh/dev/native/lib/chackrf.pxd ++++ b/src/urh/dev/native/lib/chackrf.pxd +@@ -54,7 +54,7 @@ cdef extern from "libhackrf/hackrf.h": + uint32_t part_id[2] + uint32_t serial_no[4] + +- ctypedef struct hackrf_device_list: ++ ctypedef struct c_hackrf_device_list "hackrf_device_list": + char ** serial_numbers + hackrf_usb_board_id * usb_board_ids + int *usb_device_index +@@ -63,7 +63,7 @@ cdef extern from "libhackrf/hackrf.h": + void ** usb_devices + int usb_devicecount + +- ctypedef hackrf_device_list hackrf_device_list_t; ++ ctypedef c_hackrf_device_list hackrf_device_list_t; + + ctypedef int (*hackrf_sample_block_cb_fn)(hackrf_transfer* transfer) + +-- +2.50.1 + diff --git a/urh.spec b/urh.spec index b0c09b0..a116125 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.8 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss # Automatically converted from old format: ASL 2.0 and GPLv2 - review is highly recommended. License: Apache-2.0 AND GPL-2.0-only @@ -31,6 +31,10 @@ Requires: python3-qt5 # https://github.com/jopohl/urh/issues/1149 Patch0: urh-2.9.8-relax-numpy-dep.patch +# Resolve build failures with Cython >= 3.1 +# Fixed upstream: https://github.com/jopohl/urh/pull/1184 +Patch1: fix-cython-3.1-build.patch + %description The Universal Radio Hacker is a software for investigating unknown wireless protocols. @@ -100,6 +104,10 @@ install -Dpm 0644 %{SOURCE1} \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Thu Jul 31 2025 Charalampos Stratakis - 2.9.8-7 +- Fix build failures with Cython >= 3.1 + Resolves: rhbz#2377057 + * Fri Jul 25 2025 Fedora Release Engineering - 2.9.8-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From 9e0dce5342d90ed16f83c9a4e219be839db20fb2 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 15 Aug 2025 15:21:32 +0200 Subject: [PATCH 091/100] Rebuilt for Python 3.14.0rc2 bytecode --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index a116125..8031c0e 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.8 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss # Automatically converted from old format: ASL 2.0 and GPLv2 - review is highly recommended. License: Apache-2.0 AND GPL-2.0-only @@ -104,6 +104,9 @@ install -Dpm 0644 %{SOURCE1} \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Fri Aug 15 2025 Python Maint - 2.9.8-8 +- Rebuilt for Python 3.14.0rc2 bytecode + * Thu Jul 31 2025 Charalampos Stratakis - 2.9.8-7 - Fix build failures with Cython >= 3.1 Resolves: rhbz#2377057 From 6a64c0b076514e8ae97a9df7c9617cfd016a8cb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Thu, 11 Sep 2025 17:36:40 +0200 Subject: [PATCH 092/100] Rebuilt for new uhd --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 8031c0e..174ab62 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.8 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss # Automatically converted from old format: ASL 2.0 and GPLv2 - review is highly recommended. License: Apache-2.0 AND GPL-2.0-only @@ -104,6 +104,9 @@ install -Dpm 0644 %{SOURCE1} \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Thu Sep 11 2025 Jaroslav Škarvada - 2.9.8-9 +- Rebuilt for new uhd + * Fri Aug 15 2025 Python Maint - 2.9.8-8 - Rebuilt for Python 3.14.0rc2 bytecode From e478593c8f7bd3d09aed8cc6eb8dfc66aed416d2 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 19 Sep 2025 15:01:18 +0200 Subject: [PATCH 093/100] Rebuilt for Python 3.14.0rc3 bytecode --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 174ab62..81f18ef 100644 --- a/urh.spec +++ b/urh.spec @@ -3,7 +3,7 @@ Name: urh Version: 2.9.8 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss # Automatically converted from old format: ASL 2.0 and GPLv2 - review is highly recommended. License: Apache-2.0 AND GPL-2.0-only @@ -104,6 +104,9 @@ install -Dpm 0644 %{SOURCE1} \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Fri Sep 19 2025 Python Maint - 2.9.8-10 +- Rebuilt for Python 3.14.0rc3 bytecode + * Thu Sep 11 2025 Jaroslav Škarvada - 2.9.8-9 - Rebuilt for new uhd From 4dcbf745e311bf2fa920da591e570a13cbf242ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Sat, 3 Jan 2026 01:26:12 +0100 Subject: [PATCH 094/100] New version Resolves: rhbz#2423176 --- fix-cython-3.1-build.patch | 39 --------------------------------- sources | 2 +- urh-2.9.8-relax-numpy-dep.patch | 22 ------------------- urh.spec | 16 +++++--------- 4 files changed, 7 insertions(+), 72 deletions(-) delete mode 100644 fix-cython-3.1-build.patch delete mode 100644 urh-2.9.8-relax-numpy-dep.patch diff --git a/fix-cython-3.1-build.patch b/fix-cython-3.1-build.patch deleted file mode 100644 index c0a44cd..0000000 --- a/fix-cython-3.1-build.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 11451e4cc0dab5e189cd441b96399f679c532fd3 Mon Sep 17 00:00:00 2001 -From: "Prof. Dr. Andreas Noack" -Date: Thu, 31 Jul 2025 10:15:32 +0200 -Subject: [PATCH] Fix compilation with Cython3.1. (#1184) - -Thanks to ahesford: - -Failure to compile with Cython 3.1 is caused by a collision between struct hackrf_device_list and the function hackrf_device_list. In the C library that this wraps, the two names are distinct. Cython, however, folds struct hackrf_device_list into just hackrf_device_list. Fortunately, Cython allows the use of a name for its definitions that differs from the underlying C name, so the struct can just be called c_hackrf_device_list. This doesn't seem to be a critical change because the immediately following typedef just aliases this to hackrf_device_list_t everywhere it is needed. - -Cf. http://docs.cython.org/en/stable/src/userguide/external_C_code.html#resolving-naming-conflicts-c-name-specifications ---- - src/urh/dev/native/lib/chackrf.pxd | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/urh/dev/native/lib/chackrf.pxd b/src/urh/dev/native/lib/chackrf.pxd -index a1382db..1577352 100644 ---- a/src/urh/dev/native/lib/chackrf.pxd -+++ b/src/urh/dev/native/lib/chackrf.pxd -@@ -54,7 +54,7 @@ cdef extern from "libhackrf/hackrf.h": - uint32_t part_id[2] - uint32_t serial_no[4] - -- ctypedef struct hackrf_device_list: -+ ctypedef struct c_hackrf_device_list "hackrf_device_list": - char ** serial_numbers - hackrf_usb_board_id * usb_board_ids - int *usb_device_index -@@ -63,7 +63,7 @@ cdef extern from "libhackrf/hackrf.h": - void ** usb_devices - int usb_devicecount - -- ctypedef hackrf_device_list hackrf_device_list_t; -+ ctypedef c_hackrf_device_list hackrf_device_list_t; - - ctypedef int (*hackrf_sample_block_cb_fn)(hackrf_transfer* transfer) - --- -2.50.1 - diff --git a/sources b/sources index 317174f..5df2392 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (urh-2.9.8.tar.gz) = a5327bee699bba8e6ffef2e7ec54f5f4b354feda18340c9b567b10b8c9283c5c907a546fd8a5660a2c325d42b8928cb9592630d0c2a5ed7dfdcf5dc434be4cb2 +SHA512 (urh-2.10.0.tar.gz) = 0e46c7f74b1108ed32128cb1b3034b62ec03595057e5822c7e27e9340d2b81cc6240376bef3d3ba5b03e47396ccdfd737cb911788a1f36be2be30928e101fc57 diff --git a/urh-2.9.8-relax-numpy-dep.patch b/urh-2.9.8-relax-numpy-dep.patch deleted file mode 100644 index 7071d81..0000000 --- a/urh-2.9.8-relax-numpy-dep.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff --git a/setup.py b/setup.py -index e6f122d..ea30195 100644 ---- a/setup.py -+++ b/setup.py -@@ -142,7 +142,7 @@ def read_long_description(): - return "" - - --install_requires = ["numpy<2.0.0", "psutil", "cython", "setuptools"] -+install_requires = ["numpy", "psutil", "cython", "setuptools"] - if IS_RELEASE: - install_requires.append("pyqt5") - else: -@@ -168,7 +168,7 @@ setup( - license="GNU General Public License (GPL)", - download_url="https://github.com/jopohl/urh/tarball/v" + str(version.VERSION), - install_requires=install_requires, -- setup_requires=["numpy<2.0.0"], -+ setup_requires=["numpy"], - packages=get_packages(), - ext_modules=get_extensions(), - cmdclass={"build_ext": build_ext}, diff --git a/urh.spec b/urh.spec index 81f18ef..9ae2237 100644 --- a/urh.spec +++ b/urh.spec @@ -2,8 +2,8 @@ # python 2 not supported Name: urh -Version: 2.9.8 -Release: 10%{?dist} +Version: 2.10.0 +Release: 1%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss # Automatically converted from old format: ASL 2.0 and GPLv2 - review is highly recommended. License: Apache-2.0 AND GPL-2.0-only @@ -26,14 +26,6 @@ BuildRequires: xorg-x11-server-Xvfb BuildRequires: python3-cython Requires: python3-numpy Requires: python3-qt5 -# Temporal workaround, it may cause problems with the GUI may crash, it should -# be ported to numpy-2, upstream report: -# https://github.com/jopohl/urh/issues/1149 -Patch0: urh-2.9.8-relax-numpy-dep.patch - -# Resolve build failures with Cython >= 3.1 -# Fixed upstream: https://github.com/jopohl/urh/pull/1184 -Patch1: fix-cython-3.1-build.patch %description The Universal Radio Hacker is a software for investigating unknown wireless @@ -104,6 +96,10 @@ install -Dpm 0644 %{SOURCE1} \ %{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Sat Jan 03 2026 Jaroslav Škarvada - 2.10.0-1 +- New version + Resolves: rhbz#2423176 + * Fri Sep 19 2025 Python Maint - 2.9.8-10 - Rebuilt for Python 3.14.0rc3 bytecode From 580577da4067f1c09d96f1858a7013ff0e9d4041 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Thu, 15 Jan 2026 14:14:24 +0100 Subject: [PATCH 095/100] Converted to new python packaging Resolves: rhbz#2378489 --- urh.spec | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/urh.spec b/urh.spec index 9ae2237..10d3285 100644 --- a/urh.spec +++ b/urh.spec @@ -1,16 +1,12 @@ -%{?python_enable_dependency_generator} -# python 2 not supported - Name: urh Version: 2.10.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss # Automatically converted from old format: ASL 2.0 and GPLv2 - review is highly recommended. License: Apache-2.0 AND GPL-2.0-only URL: https://github.com/jopohl/urh Source0: https://github.com/jopohl/urh/archive/v%{version}/%{name}-%{version}.tar.gz Source1: io.github.jopohl.urh.metainfo.xml -BuildRequires: python3-setuptools BuildRequires: python3-devel BuildRequires: gcc-c++ BuildRequires: python3-numpy @@ -19,13 +15,12 @@ BuildRequires: airspyone_host-devel BuildRequires: hackrf-devel BuildRequires: rtl-sdr-devel BuildRequires: uhd-devel -BuildRequires: python3-qt5 -BuildRequires: python3-pytest +BuildRequires: python3-pyqt6 BuildRequires: xorg-x11-server-Xvfb # Unpinning Cython raised upstream: https://github.com/jopohl/urh/issues/1087 BuildRequires: python3-cython Requires: python3-numpy -Requires: python3-qt5 +Requires: python3-pyqt6 %description The Universal Radio Hacker is a software for investigating unknown wireless @@ -52,11 +47,15 @@ popd sed -i 's/"cython<3.0.0"/"cython"/' setup.py +%generate_buildrequires +%pyproject_buildrequires + %build -%py3_build +%pyproject_wheel %install -%py3_install +%pyproject_install +%pyproject_save_files urh # remove cpp files generated by cython pushd %{buildroot}%{python3_sitearch}/urh/dev/native/lib @@ -84,7 +83,7 @@ install -Dpm 0644 %{SOURCE1} \ # https://github.com/jopohl/urh/issues/1149 #xvfb-run pytest -s -v tests -%files +%files -f %{pyproject_files} %license LICENSE %doc README.md %{_bindir}/urh @@ -92,10 +91,12 @@ install -Dpm 0644 %{SOURCE1} \ %{_datadir}/icons/hicolor/128x128/apps/urh.png %{_datadir}/applications/urh.desktop %{_metainfodir}/io.github.jopohl.urh.metainfo.xml -%{python3_sitearch}/urh -%{python3_sitearch}/urh-%{version}-*.egg-info %changelog +* Thu Jan 15 2026 Jaroslav Škarvada - 2.10.0-2 +- Converted to new python packaging + Resolves: rhbz#2378489 + * Sat Jan 03 2026 Jaroslav Škarvada - 2.10.0-1 - New version Resolves: rhbz#2423176 From 61b45da603dbff0c9ed2834a88977451ad7a31fd Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 17 Jan 2026 19:40:11 +0000 Subject: [PATCH 096/100] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 10d3285..467a257 100644 --- a/urh.spec +++ b/urh.spec @@ -1,6 +1,6 @@ Name: urh Version: 2.10.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss # Automatically converted from old format: ASL 2.0 and GPLv2 - review is highly recommended. License: Apache-2.0 AND GPL-2.0-only @@ -93,6 +93,9 @@ install -Dpm 0644 %{SOURCE1} \ %{_metainfodir}/io.github.jopohl.urh.metainfo.xml %changelog +* Sat Jan 17 2026 Fedora Release Engineering - 2.10.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + * Thu Jan 15 2026 Jaroslav Škarvada - 2.10.0-2 - Converted to new python packaging Resolves: rhbz#2378489 From 00cba95c12576eaf238806ce3f66e3c44b21564e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Tue, 28 Apr 2026 16:46:34 +0200 Subject: [PATCH 097/100] Rebuilt for new uhd --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 467a257..14139f8 100644 --- a/urh.spec +++ b/urh.spec @@ -1,6 +1,6 @@ Name: urh Version: 2.10.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss # Automatically converted from old format: ASL 2.0 and GPLv2 - review is highly recommended. License: Apache-2.0 AND GPL-2.0-only @@ -93,6 +93,9 @@ install -Dpm 0644 %{SOURCE1} \ %{_metainfodir}/io.github.jopohl.urh.metainfo.xml %changelog +* Tue Apr 28 2026 Jaroslav Škarvada - 2.10.0-4 +- Rebuilt for new uhd + * Sat Jan 17 2026 Fedora Release Engineering - 2.10.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild From 73a5a07fa380ff2d4b94a65e0c30a403645f57a9 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Thu, 4 Jun 2026 12:38:47 +0200 Subject: [PATCH 098/100] Rebuilt for Python 3.15 --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 14139f8..d886ab8 100644 --- a/urh.spec +++ b/urh.spec @@ -1,6 +1,6 @@ Name: urh Version: 2.10.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss # Automatically converted from old format: ASL 2.0 and GPLv2 - review is highly recommended. License: Apache-2.0 AND GPL-2.0-only @@ -93,6 +93,9 @@ install -Dpm 0644 %{SOURCE1} \ %{_metainfodir}/io.github.jopohl.urh.metainfo.xml %changelog +* Thu Jun 04 2026 Python Maint - 2.10.0-5 +- Rebuilt for Python 3.15 + * Tue Apr 28 2026 Jaroslav Škarvada - 2.10.0-4 - Rebuilt for new uhd From ea7213543f9071569df5631d21676f07aeef3b0b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jul 2026 08:14:48 +0000 Subject: [PATCH 099/100] Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index d886ab8..0889ad6 100644 --- a/urh.spec +++ b/urh.spec @@ -1,6 +1,6 @@ Name: urh Version: 2.10.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss # Automatically converted from old format: ASL 2.0 and GPLv2 - review is highly recommended. License: Apache-2.0 AND GPL-2.0-only @@ -93,6 +93,9 @@ install -Dpm 0644 %{SOURCE1} \ %{_metainfodir}/io.github.jopohl.urh.metainfo.xml %changelog +* Fri Jul 17 2026 Fedora Release Engineering - 2.10.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild + * Thu Jun 04 2026 Python Maint - 2.10.0-5 - Rebuilt for Python 3.15 From dc88b3f59d3549202f696df285ea313a440a5175 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Wed, 22 Jul 2026 10:11:31 +0200 Subject: [PATCH 100/100] Rebuilt for Python 3.15.0b4 ABI change --- urh.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/urh.spec b/urh.spec index 0889ad6..4f4e967 100644 --- a/urh.spec +++ b/urh.spec @@ -1,6 +1,6 @@ Name: urh Version: 2.10.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Universal Radio Hacker: investigate wireless protocols like a boss # Automatically converted from old format: ASL 2.0 and GPLv2 - review is highly recommended. License: Apache-2.0 AND GPL-2.0-only @@ -93,6 +93,9 @@ install -Dpm 0644 %{SOURCE1} \ %{_metainfodir}/io.github.jopohl.urh.metainfo.xml %changelog +* Wed Jul 22 2026 Python Maint - 2.10.0-7 +- Rebuilt for Python 3.15.0b4 ABI change + * Fri Jul 17 2026 Fedora Release Engineering - 2.10.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild