Hello community,

here is the log from the commit of package portaudio for openSUSE:Factory 
checked in at 2018-06-15 14:34:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/portaudio (Old)
 and      /work/SRC/openSUSE:Factory/.portaudio.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "portaudio"

Fri Jun 15 14:34:44 2018 rev:30 rq:615444 version:190600_20161030

Changes:
--------
--- /work/SRC/openSUSE:Factory/portaudio/portaudio.changes      2017-08-29 
11:36:32.400005551 +0200
+++ /work/SRC/openSUSE:Factory/.portaudio.new/portaudio.changes 2018-06-15 
14:34:45.469619568 +0200
@@ -1,0 +2,7 @@
+Sat Jun  9 11:14:56 UTC 2018 - tom.m...@googlemail.com
+
+- Add upstream patch 0001-Merge-branch-ticket_275_pass_void-into-master.patch
+  adding a missing void argument to Pa_GetVersionInfo() to fix no-prototype
+  warning when compiling against ANSI C projects
+
+-------------------------------------------------------------------

New:
----
  0001-Merge-branch-ticket_275_pass_void-into-master.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ portaudio.spec ++++++
--- /var/tmp/diff_new_pack.fdqali/_old  2018-06-15 14:34:46.077597330 +0200
+++ /var/tmp/diff_new_pack.fdqali/_new  2018-06-15 14:34:46.085597037 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package portaudio
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -28,6 +28,7 @@
 Url:            http://www.portaudio.com/
 Source:         http://www.portaudio.com/archives/pa_stable_v%{version}.tgz
 Source1:        baselibs.conf
+Patch1:         0001-Merge-branch-ticket_275_pass_void-into-master.patch
 %define lname_c        libportaudio%{soname_c}
 %define lname_p        libportaudiocpp%{soname_p}
 BuildRequires:  alsa-devel
@@ -80,6 +81,7 @@
 
 %prep
 %setup -q -n portaudio
+%patch1 -p1
 FAKE_BUILDDATE=$(LC_ALL=C date -u -r %{_sourcedir}/%{name}.changes '+%%b %%e 
%%Y')  
 sed -i "s/__DATE__/\"$FAKE_BUILDDATE\"/" qa/loopback/src/paqa.c 
src/common/pa_front.c
 FAKE_BUILDTIME=$(LC_ALL=C date -u -r %{_sourcedir}/%{name}.changes 
'+%%H:%%M:%%S')  

++++++ 0001-Merge-branch-ticket_275_pass_void-into-master.patch ++++++
>From 8dc6d59877f2d102065871c3ef3020f3b98fd6b1 Mon Sep 17 00:00:00 2001
From: Phil Burk <burkp...@gmail.com>
Date: Sat, 26 May 2018 04:49:10 +0000
Subject: [PATCH 528/528] Merge branch 'ticket_275_pass_void' into 'master'

Add void argument to Pa_GetVersionInfo()

+1: Anonymous

Merged-on: https://assembla.com/code/portaudio/git/merge_requests/6415893
---
 include/portaudio.h   | 2 +-
 src/common/pa_front.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/portaudio.h b/include/portaudio.h
index 8a94aaf..738080d 100644
--- a/include/portaudio.h
+++ b/include/portaudio.h
@@ -111,7 +111,7 @@ typedef struct PaVersionInfo {
  @see PaVersionInfo, paMakeVersionNumber
  @version Available as of 19.5.0.
 */
-const PaVersionInfo* Pa_GetVersionInfo();
+const PaVersionInfo* Pa_GetVersionInfo( void );
 
 
 /** Error codes returned by PortAudio functions.
diff --git a/src/common/pa_front.c b/src/common/pa_front.c
index 188cee9..9d30f48 100644
--- a/src/common/pa_front.c
+++ b/src/common/pa_front.c
@@ -130,7 +130,7 @@ static PaVersionInfo versionInfo_ = {
     /*.versionText =*/ PA_VERSION_TEXT_
 };
 
-const PaVersionInfo* Pa_GetVersionInfo()
+const PaVersionInfo* Pa_GetVersionInfo( void )
 {
     return &versionInfo_;
 }
-- 
2.13.7


Reply via email to