Accepting request 500456 from hardware:sdr

- Add patch:
  * bladeRF-add-cflag-Wno-format-truncation.patch (boo#1041192)

OBS-URL: https://build.opensuse.org/request/show/500456
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/bladeRF?expand=0&rev=4
This commit is contained in:
Dominique Leuenberger 2017-06-02 08:34:14 +00:00 committed by Git OBS Bridge
commit 1495b1940b
3 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,12 @@
diff --git a/host/CMakeLists.txt b/host/CMakeLists.txt
index 848b62d..70a5ca3 100644
--- a/host/CMakeLists.txt
+++ b/host/CMakeLists.txt
@@ -91,6 +91,7 @@ if("${CMAKE_C_COMPILER_ID}" STREQUAL "GNU" OR
add_definitions(-Wall)
add_definitions(-Wextra)
add_definitions(-Wno-unused-parameter)
+ add_definitions(-Wno-format-truncation)
if(TREAT_WARNINGS_AS_ERRORS)
add_definitions(-Werror)

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu Jun 1 06:47:30 UTC 2017 - mardnh@gmx.de
- Add patch:
* bladeRF-add-cflag-Wno-format-truncation.patch (boo#1041192)
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Apr 26 18:15:47 UTC 2017 - mardnh@gmx.de Wed Apr 26 18:15:47 UTC 2017 - mardnh@gmx.de

View File

@ -31,6 +31,8 @@ Group: Productivity/Hamradio/Other
Url: http://nuand.com/ Url: http://nuand.com/
#Git-Clone: https://github.com/Nuand/bladeRF.git #Git-Clone: https://github.com/Nuand/bladeRF.git
Source: https://github.com/Nuand/bladeRF/archive/%{release_name}.tar.gz#/%{name}-%{release_name}.tar.xz Source: https://github.com/Nuand/bladeRF/archive/%{release_name}.tar.gz#/%{name}-%{release_name}.tar.xz
# PATCH-FIX-OPENSUSE bladeRF-add-cflag-Wno-format-truncation.patch boo#1041192
Patch0: bladeRF-add-cflag-Wno-format-truncation.patch
BuildRequires: cmake >= 2.8.4 BuildRequires: cmake >= 2.8.4
BuildRequires: doxygen BuildRequires: doxygen
BuildRequires: fdupes BuildRequires: fdupes
@ -74,6 +76,7 @@ use of libbladerf.
%prep %prep
%setup -q -n %{name}-%{release_name} %setup -q -n %{name}-%{release_name}
%patch0 -p1
%build %build
cd host cd host