commit libqjack for openSUSE:Factory

2018-06-29 Thread root
Hello community,

here is the log from the commit of package libqjack for openSUSE:Factory 
checked in at 2018-06-29 22:25:11

Comparing /work/SRC/openSUSE:Factory/libqjack (Old)
 and  /work/SRC/openSUSE:Factory/.libqjack.new (New)


Package is "libqjack"

Fri Jun 29 22:25:11 2018 rev:5 rq:616118 version:0.0+20170112

Changes:

--- /work/SRC/openSUSE:Factory/libqjack/libqjack.changes2018-02-25 
11:47:05.868310246 +0100
+++ /work/SRC/openSUSE:Factory/.libqjack.new/libqjack.changes   2018-06-29 
22:25:12.982537164 +0200
@@ -1,0 +2,5 @@
+Mon Jun 11 18:13:47 UTC 2018 - aloi...@gmx.com
+
+- Added qjack-Qt511.patch to fix build with Qt 5.11
+
+---

New:

  qjack-Qt511.patch



Other differences:
--
++ libqjack.spec ++
--- /var/tmp/diff_new_pack.4eKIOx/_old  2018-06-29 22:25:13.714536614 +0200
+++ /var/tmp/diff_new_pack.4eKIOx/_new  2018-06-29 22:25:13.718536610 +0200
@@ -23,12 +23,14 @@
 Version:0.0+%{_reldate}
 Release:0
 Summary:Connect to the Jack Sound Server with Qt
-License:GPL-2.0+
+License:GPL-2.0-or-later
 Group:  Development/Libraries/C and C++
 Url:https://bitbucket.org/asiniscalchi/qjack
 ## https://bitbucket.org/asiniscalchi/qjack.git
 Source: qjack-%{_reldate}.tar.bz2
 Patch1: qjack-soname-lib.patch
+# PATCH-FIX-UPSTREAM qjack-Qt511.patch
+Patch2: qjack-Qt511.patch
 BuildRequires:  cmake
 BuildRequires:  gcc-c++ >= 4.5
 BuildRequires:  glibc-devel
@@ -61,6 +63,7 @@
 %prep
 %setup -q -n qjack-%{_reldate}
 %patch1 -p1
+%patch2 -p1
 
 %build
 install -d build

++ qjack-Qt511.patch ++
From: Luigi Baldoni 
Date: 2018-06-11 20:12:55 +0200
Subject: Fix for Qt 5.11
Upstream: submitted

The qt5_use_modules macro has been deprecated in Qt 5.11

---
Index: qjack-20170112/qjack/CMakeLists.txt
===
--- qjack-20170112.orig/qjack/CMakeLists.txt
+++ qjack-20170112/qjack/CMakeLists.txt
@@ -45,8 +45,8 @@ add_library(qjack_static STATIC ${qjack_
 target_link_libraries(qjack_static ${LIBJACK_LIBRARIES})
 
 if(Qt5Core_FOUND)
-qt5_use_modules(qjack Core)
-qt5_use_modules(qjack_static Core)
+target_link_libraries(qjack Qt5::Core)
+target_link_libraries(qjack_static Qt5::Core)
 endif()
 
 #install
Index: qjack-20170112/examples/CMakeLists.txt
===
--- qjack-20170112.orig/examples/CMakeLists.txt
+++ qjack-20170112/examples/CMakeLists.txt
@@ -16,21 +16,21 @@ find_package(Jack REQUIRED)
 add_executable(example example.cpp)
 target_link_libraries(example ${QT_LIBRARIES} qjack)
 if(Qt5Core_FOUND)
-qt5_use_modules(example Core)
+target_link_libraries(example Qt5::Core)
 endif()
 
 # Executable "qoutportexample"
 add_executable(qoutportexample qoutportexample.cpp noiseqoutport.cpp 
complexoscillator.cpp toneqoutport.cpp)
 target_link_libraries(qoutportexample ${QT_LIBRARIES} qjack)
 if(Qt5Core_FOUND)
-qt5_use_modules(qoutportexample Core)
+target_link_libraries(qoutportexample Qt5::Core)
 endif()
 
 # Executable "qinportexample"
 add_executable(qinportexample qinportexample.cpp rmsqinport.cpp 
exponentialfilter.cpp )
 target_link_libraries(qinportexample ${QT_LIBRARIES} qjack)
 if(Qt5Core_FOUND)
-qt5_use_modules(qinportexample Core)
+target_link_libraries(qinportexample Qt5::Core)
 endif()
 
 # Executable "qfillbufferexample" - peakaveragemeter is a QObject so generate 
MOC
@@ -54,6 +54,6 @@ add_executable(qfillbufferexample qfillb
 target_link_libraries(qfillbufferexample ${QT_LIBRARIES} qjack)
 
 if(Qt5Core_FOUND)
-qt5_use_modules(qfillbufferexample Core)
+target_link_libraries(qfillbufferexample Qt5::Core)
 endif()
 



commit libqjack for openSUSE:Factory

2018-02-25 Thread root
Hello community,

here is the log from the commit of package libqjack for openSUSE:Factory 
checked in at 2018-02-25 11:47:04

Comparing /work/SRC/openSUSE:Factory/libqjack (Old)
 and  /work/SRC/openSUSE:Factory/.libqjack.new (New)


Package is "libqjack"

Sun Feb 25 11:47:04 2018 rev:4 rq:579780 version:0.0+20170112

Changes:

--- /work/SRC/openSUSE:Factory/libqjack/libqjack.changes2017-08-16 
16:13:59.663019493 +0200
+++ /work/SRC/openSUSE:Factory/.libqjack.new/libqjack.changes   2018-02-25 
11:47:05.868310246 +0100
@@ -1,0 +2,5 @@
+Sat Feb 24 11:53:53 UTC 2018 - aloi...@gmx.com
+
+- Removed erroneous dependency on libqt4-devel
+
+---



Other differences:
--
++ libqjack.spec ++
--- /var/tmp/diff_new_pack.oSr7TA/_old  2018-02-25 11:47:07.428253641 +0100
+++ /var/tmp/diff_new_pack.oSr7TA/_new  2018-02-25 11:47:07.436253351 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libqjack
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2012 Pascal Bleser 
 #
 # All modifications and additions to the file contributed by third parties
@@ -39,24 +39,24 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
-QJack makes you connect with the Jack soundserver system with Qt4.
+QJack makes you connect with the Jack soundserver system with Qt.
 
 %package -n libqjack%{sover}
 Summary:Connect to the Jack Sound Server with Qt
 Group:  System/Libraries
 
 %description -n libqjack%{sover}
-QJack makes you connect with the Jack soundserver system with Qt4.
+QJack makes you connect with the Jack soundserver system with Qt.
 
 %package -n libqjack-devel
 Summary:Connect to the Jack Sound Server with Qt
 Group:  Development/Libraries/C and C++
 Requires:   jack-devel
 Requires:   libqjack%{sover} = %{version}
-Requires:   libqt4-devel
+Requires:   pkgconfig(Qt5Core)
 
 %description -n libqjack-devel
-QJack makes you connect with the Jack soundserver system with Qt4.
+QJack makes you connect with the Jack soundserver system with Qt.
 
 %prep
 %setup -q -n qjack-%{_reldate}




commit libqjack for openSUSE:Factory

2017-08-16 Thread root
Hello community,

here is the log from the commit of package libqjack for openSUSE:Factory 
checked in at 2017-08-16 16:13:54

Comparing /work/SRC/openSUSE:Factory/libqjack (Old)
 and  /work/SRC/openSUSE:Factory/.libqjack.new (New)


Package is "libqjack"

Wed Aug 16 16:13:54 2017 rev:3 rq:515892 version:0.0+20170112

Changes:

--- /work/SRC/openSUSE:Factory/libqjack/libqjack.changes2017-02-05 
18:37:15.423293156 +0100
+++ /work/SRC/openSUSE:Factory/.libqjack.new/libqjack.changes   2017-08-16 
16:13:59.663019493 +0200
@@ -1,0 +2,7 @@
+Tue Jul 25 11:57:31 UTC 2017 - aloi...@gmx.com
+
+- Update to version 20170112
+- Switched to Qt5
+- Dropped qjack-gcc6.patch (merged upstream)
+
+---

Old:

  qjack-2013.tar.bz2
  qjack-gcc6.patch

New:

  qjack-20170112.tar.bz2



Other differences:
--
++ libqjack.spec ++
--- /var/tmp/diff_new_pack.lctVnO/_old  2017-08-16 16:14:01.802719147 +0200
+++ /var/tmp/diff_new_pack.lctVnO/_new  2017-08-16 16:14:01.822716340 +0200
@@ -18,7 +18,7 @@
 
 
 %define sover   0
-%define _reldate2013
+%define _reldate20170112
 Name:   libqjack
 Version:0.0+%{_reldate}
 Release:0
@@ -29,14 +29,13 @@
 ## https://bitbucket.org/asiniscalchi/qjack.git
 Source: qjack-%{_reldate}.tar.bz2
 Patch1: qjack-soname-lib.patch
-Patch2: qjack-gcc6.patch
 BuildRequires:  cmake
 BuildRequires:  gcc-c++ >= 4.5
 BuildRequires:  glibc-devel
 BuildRequires:  jack-devel
-BuildRequires:  libqt4-devel
 BuildRequires:  make
 BuildRequires:  pkgconfig
+BuildRequires:  pkgconfig(Qt5Core)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -62,7 +61,6 @@
 %prep
 %setup -q -n qjack-%{_reldate}
 %patch1 -p1
-%patch2 -p1
 
 %build
 install -d build

++ qjack-2013.tar.bz2 -> qjack-20170112.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qjack-2013/examples/qinportexample.cpp 
new/qjack-20170112/examples/qinportexample.cpp
--- old/qjack-2013/examples/qinportexample.cpp  2017-01-06 
13:51:13.796437345 +0100
+++ new/qjack-20170112/examples/qinportexample.cpp  2017-07-25 
13:55:24.527954589 +0200
@@ -56,7 +56,7 @@
 int meterzero = 40; // Where is 1.0 amplitude located?
 
 cout<rmsAmplitude();
 cout<<"RMS: "<

commit libqjack for openSUSE:Factory

2017-02-05 Thread root
Hello community,

here is the log from the commit of package libqjack for openSUSE:Factory 
checked in at 2017-02-05 15:49:42

Comparing /work/SRC/openSUSE:Factory/libqjack (Old)
 and  /work/SRC/openSUSE:Factory/.libqjack.new (New)


Package is "libqjack"

Changes:

--- /work/SRC/openSUSE:Factory/libqjack/libqjack.changes2017-02-03 
17:48:18.386674875 +0100
+++ /work/SRC/openSUSE:Factory/.libqjack.new/libqjack.changes   2017-02-05 
18:37:15.423293156 +0100
@@ -1,0 +2,6 @@
+Thu Feb  2 01:51:19 UTC 2017 - jeng...@inai.de
+
+- Rename %soname to %sover to better reflect its use
+- RPM group association fix
+
+---



Other differences:
--
++ libqjack.spec ++
--- /var/tmp/diff_new_pack.nbFJLk/_old  2017-02-05 18:37:15.779243181 +0100
+++ /var/tmp/diff_new_pack.nbFJLk/_new  2017-02-05 18:37:15.783242620 +0100
@@ -17,14 +17,14 @@
 #
 
 
-%define soname  0
+%define sover   0
 %define _reldate2013
 Name:   libqjack
 Version:0.0+%{_reldate}
 Release:0
 Summary:Connect to the Jack Sound Server with Qt
 License:GPL-2.0+
-Group:  System/Libraries
+Group:  Development/Libraries/C and C++
 Url:https://bitbucket.org/asiniscalchi/qjack
 ## https://bitbucket.org/asiniscalchi/qjack.git
 Source: qjack-%{_reldate}.tar.bz2
@@ -42,18 +42,18 @@
 %description
 QJack makes you connect with the Jack soundserver system with Qt4.
 
-%package -n libqjack%{soname}
+%package -n libqjack%{sover}
 Summary:Connect to the Jack Sound Server with Qt
 Group:  System/Libraries
 
-%description -n libqjack%{soname}
+%description -n libqjack%{sover}
 QJack makes you connect with the Jack soundserver system with Qt4.
 
 %package -n libqjack-devel
 Summary:Connect to the Jack Sound Server with Qt
 Group:  Development/Libraries/C and C++
 Requires:   jack-devel
-Requires:   libqjack%{soname} = %{version}
+Requires:   libqjack%{sover} = %{version}
 Requires:   libqt4-devel
 
 %description -n libqjack-devel
@@ -83,14 +83,14 @@
 make DESTDIR=%{buildroot} install
 popd
 
-%post   -n libqjack%{soname} -p /sbin/ldconfig
-%postun -n libqjack%{soname} -p /sbin/ldconfig
+%post   -n libqjack%{sover} -p /sbin/ldconfig
+%postun -n libqjack%{sover} -p /sbin/ldconfig
 
-%files -n libqjack%{soname}
+%files -n libqjack%{sover}
 %defattr(-,root,root)
 %doc README
-%{_libdir}/libqjack.so.%{soname}
-%{_libdir}/libqjack.so.%{soname}.*
+%{_libdir}/libqjack.so.%{sover}
+%{_libdir}/libqjack.so.%{sover}.*
 
 %files -n libqjack-devel
 %defattr(-,root,root)