Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package airspy for openSUSE:Factory checked in at 2025-05-05 22:30:07 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/airspy (Old) and /work/SRC/openSUSE:Factory/.airspy.new.30101 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "airspy" Mon May 5 22:30:07 2025 rev:9 rq:1274666 version:1.0.10 Changes: -------- --- /work/SRC/openSUSE:Factory/airspy/airspy.changes 2025-03-24 13:30:00.322202662 +0100 +++ /work/SRC/openSUSE:Factory/.airspy.new.30101/airspy.changes 2025-05-05 22:56:30.636758251 +0200 @@ -1,0 +2,7 @@ +Mon May 5 12:11:21 UTC 2025 - pgaj...@suse.com + +- added patches + https://github.com/airspy/airspyone_host/commit/bd15be38e91ebaa3e0bebb1e320255bde4ccf059 + + airspy-gcc15.patch + +------------------------------------------------------------------- New: ---- airspy-gcc15.patch BETA DEBUG BEGIN: New: https://github.com/airspy/airspyone_host/commit/bd15be38e91ebaa3e0bebb1e320255bde4ccf059 + airspy-gcc15.patch BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ airspy.spec ++++++ --- /var/tmp/diff_new_pack.Qek49b/_old 2025-05-05 22:56:31.080776919 +0200 +++ /var/tmp/diff_new_pack.Qek49b/_new 2025-05-05 22:56:31.080776919 +0200 @@ -28,6 +28,8 @@ URL: http://www.airspy.com #Git-Clone: https://github.com/airspy/airspyone_host.git Source: https://github.com/airspy/airspyone_host/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz +# https://github.com/airspy/airspyone_host/commit/bd15be38e91ebaa3e0bebb1e320255bde4ccf059 +Patch0: airspy-gcc15.patch BuildRequires: cmake >= 3.5 BuildRequires: gcc-c++ BuildRequires: ninja @@ -60,7 +62,7 @@ Library headers for airspy driver. %prep -%setup -q -n airspyone_host-%{version} +%autosetup -p1 -n airspyone_host-%{version} # HACK: set udev group to airspy sed -i "s/plugdev/airspy/g" airspy-tools/52-airspy.rules ++++++ airspy-gcc15.patch ++++++ diff --git a/CMakeLists.txt b/CMakeLists.txt index f03fa6d..0e80c43 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,6 +8,12 @@ if(MSVC11) add_definitions(-Dstrtoull=_strtoui64) endif(MSVC11) +if (MSVC) + add_compile_options(/std:c17) +else() + add_compile_options(-std=gnu17) +endif() + add_subdirectory(libairspy) add_subdirectory(airspy-tools)