- Update to version 25.02

Breaking Changes
  * Changed state key value to ON/OFF, BREAKING CHANGE for
    Waveman-Switch.
  Highlights
  * Added support for General Motors TPMS.
  * Added Globe Thermometer for 8-in-1 sensor to Bresser-7in1.
  * Added rain start detection feature for WS90 sensor.
  * Added id key to IDM and NETIDM.
  * Added decoder conf for Hormann remotes.
  * Added client cert option to HA script.
  * Added support for Revolt ZX-7717 power meter.
  * Added support for Gridstream RF protocol from Landis & Gyr
    meters.
  * Added decoder conf for Rako wireless lighting controls.
  * Added support for Quinetic Switches and Sensors.
  * Added support for DeltaDore X3D.
  * Fixed Prometheus exposition format for metrics endpoint.
  * Added support for Bresser/Explore Scientific ST1005H.
  * Improved HA script to round battery level display.
  * Fixed M-Bus Mode C Format B for wmbusmeters.
  * Added support for Thermopro TP828B Meat Thermometers 2 probes.
  * Added support for Arexx TL-3TSN, TSN-33MN and similar sensors.
  * Improved decoder conf qx-30x to support multiple switches and
    multi-gang versions.
  Changed
  * Changed LandisGyr-GS location output.
  * Changed Rubicson, Nexus, Solight-TE44, Baldr-Rain priority.
  * Added energy msg to Revolt-ZX7717.
  * Added broadcast flag for syslog output.

OBS-URL: https://build.opensuse.org/package/show/hardware:sdr/rtl_433?expand=0&rev=33
This commit is contained in:
Martin Pluskal
2025-02-20 08:16:32 +00:00
committed by Git OBS Bridge
commit 013aac17f4
7 changed files with 1815 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.osc

3
rtl_433-23.11.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1260c58400bf35832ac1b76cb3cccf3dc1335ffa2416909c63c7d7060c74663b
size 1060640

3
rtl_433-24.10.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e5ab1597a723bf9e0eaa56be988b23dae3670471c6472510ba07b3b588407dcb
size 1106652

3
rtl_433-25.02.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5a409ea10e6d3d7d4aa5ea91d2d6cc92ebb2d730eb229c7b37ade65458223432
size 1125144

1709
rtl_433.changes Normal file

File diff suppressed because it is too large Load Diff

73
rtl_433.spec Normal file
View File

@@ -0,0 +1,73 @@
#
# spec file for package rtl_433
#
# Copyright (c) 2025 SUSE LLC
# Copyright (c) 2017-2025, Martin Hauke <mardnh@gmx.de>
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: rtl_433
Version: 25.02
Release: 0
Summary: Application turning the RTL2832 dongle into a 433.92MHz generic data receiver
License: GPL-2.0-only
Group: Productivity/Hamradio/Other
URL: https://github.com/merbanan/rtl_433.git
Source: https://github.com/merbanan/rtl_433/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: cmake
BuildRequires: pkgconfig
BuildRequires: pkgconfig(SoapySDR)
BuildRequires: pkgconfig(librtlsdr)
BuildRequires: pkgconfig(libusb)
BuildRequires: pkgconfig(openssl)
%description
An application using librtlsdr to decode the temperature from
wireless temperature sensors (433.92MHz)
%package devel
Summary: Header files for the RTL2832 dongle library
Group: Development/Libraries/C and C++
Requires: %{name} = %{version}
%description devel
Turns RTL2832 dongle into a 433.92MHz generic data receiver.
This subpackage contains header files for developing applications that want
to make use of rtl_433.
%prep
%setup -q
%build
%cmake \
-DBUILD_TESTING=OFF
%cmake_build
%install
%cmake_install
%files
%license COPYING
%doc AUTHORS README.md
%{_bindir}/rtl_433
%dir %{_sysconfdir}/rtl_433
%config %{_sysconfdir}/rtl_433/*.conf
%{_mandir}/man1/rtl_433.1%{?ext_man}
%files devel
%{_includedir}/rtl_433.h
%{_includedir}/rtl_433_devices.h
%changelog