KDE CI: Frameworks ktexteditor kf5-qt5 FreeBSDQt5.7 - Build # 58 - Still Unstable!

2017-08-18 Thread no-reply
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks%20ktexteditor%20kf5-qt5%20FreeBSDQt5.7/58/
 Project:
Frameworks ktexteditor kf5-qt5 FreeBSDQt5.7
 Date of build:
Sat, 19 Aug 2017 00:41:31 +
 Build duration:
3 hr 17 min and counting
   JUnit Tests
  Name: (root) Failed: 2 test(s), Passed: 64 test(s), Skipped: 0 test(s), Total: 66 test(s)Failed: TestSuite.bug205447Failed: TestSuite.kateindenttest_testCstyle

build.log
Description: Binary data


KDE CI: Frameworks ktexteditor kf5-qt5 FreeBSDQt5.7 - Build # 57 - Still Unstable!

2017-08-18 Thread no-reply
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks%20ktexteditor%20kf5-qt5%20FreeBSDQt5.7/57/
 Project:
Frameworks ktexteditor kf5-qt5 FreeBSDQt5.7
 Date of build:
Fri, 18 Aug 2017 21:36:56 +
 Build duration:
3 hr 4 min and counting
   JUnit Tests
  Name: (root) Failed: 2 test(s), Passed: 64 test(s), Skipped: 0 test(s), Total: 66 test(s)Failed: TestSuite.bug205447Failed: TestSuite.kateindenttest_testCstyle

build.log
Description: Binary data


Re: Running applications and unittests without "make install"

2017-08-18 Thread Ben Cooksley
On Wed, Aug 16, 2017 at 3:17 AM, David Faure  wrote:
> Hi everyone,

Hi David,

>
> The documentation for how to do that is now up at
>  
> https://blogs.kde.org/2017/08/15/running-applications-and-unittests-without-make-install
>
> I have ported/fixed all frameworks, except for kirigami, and there are still 
> pending
> merge requests for kpackage.
>
> I'm wondering if we could change the CI scripts so that they run the tests 
> before doing make install?
> For frameworks only, for now.

I've now done this, for Linux at least.

As we don't use a Pipeline template per Product/Platform combination
the Windows and FreeBSD images will continue to install then run tests
as that is what other projects will need.

(I should note that if you are relying on accessing installed
artifacts on Windows then it won't work from tests anyway as Qt on
Windows relies on resources being located relative to the currently
running binary - which will never be the case for tests. Will be
interesting to see how these changes affect this)

>
> --
> David Faure, fa...@kde.org, http://www.davidfaure.fr
> Working on KDE Frameworks 5
>

Cheers,
Ben


[sysadmin/ci-tooling] pipeline-templates: Run tests before installing for the XenialQt5.7 platform.

2017-08-18 Thread Ben Cooksley
Git commit 6d857f92b06fe96fbbebeb9e62b1a02055ef0707 by Ben Cooksley.
Committed on 19/08/2017 at 00:21.
Pushed by bcooksley into branch 'master'.

Run tests before installing for the XenialQt5.7 platform.
This is driven by Frameworks. With few exceptions, only Frameworks uses 
XenialQt5.7 so this shouldn't affect anyone else.
CCMAIL: kde-frameworks-devel@kde.org

T  +182  -1pipeline-templates/FedoraQt5.8.template
M  +1-1pipeline-templates/SUSEQt5.9.template
M  +1-1pipeline-templates/XenialQt4.template
M  +10   -10   pipeline-templates/XenialQt5.7.template

https://commits.kde.org/sysadmin/ci-tooling/6d857f92b06fe96fbbebeb9e62b1a02055ef0707

diff --git a/pipeline-templates/FedoraQt5.8.template 
b/pipeline-templates/FedoraQt5.8.template
deleted file mode 12
index d8a080b..000
--- a/pipeline-templates/FedoraQt5.8.template
+++ /dev/null
@@ -1 +0,0 @@
-XenialQt5.7.template
\ No newline at end of file
diff --git a/pipeline-templates/FedoraQt5.8.template 
b/pipeline-templates/FedoraQt5.8.template
new file mode 100644
index 000..b8ba09a
--- /dev/null
+++ b/pipeline-templates/FedoraQt5.8.template
@@ -0,0 +1,182 @@
+// Provisionally mark the build as successful
+currentBuild.result = 'SUCCESS'
+
+// Request a node to be allocated to us
+node( currentPlatform ) {
+// We want Timestamps on everything
+timestamps {
+   // We want to catch any errors that occur to allow us to send out 
notifications (ie. emails) if needed
+   catchError {
+   // First Thing: Checkout Sources
+   stage('Checkout Sources') {
+
+   // Actual Application Sources
+   checkout changelog: true, poll: true, scm: [
+   $class: 'GitSCM',
+   branches: [[name: branchToBuild]],
+   browser: [$class: 'CGit', repoUrl: browserUrl],
+   extensions: [[$class: 'CloneOption', timeout: 
120]],
+   userRemoteConfigs: [[url: repositoryUrl]]
+   ]
+
+   // Our CI scripts
+   checkout changelog: false, poll: false, scm: [
+   $class: 'GitSCM',
+   branches: [[name: 'master']],
+   extensions: [[$class: 
'RelativeTargetDirectory', relativeTargetDir: 'ci-tooling/']],
+   userRemoteConfigs: [[url: 
'https://anongit.kde.org/sysadmin/ci-tooling']]
+   ]
+
+   // Projects metadata and next generation dependency 
metadata
+   checkout changelog: false, poll: false, scm: [
+   $class: 'GitSCM',
+   branches: [[name: 'master']],
+   extensions: [[$class: 
'RelativeTargetDirectory', relativeTargetDir: 'ci-tooling/repo-metadata/']],
+   userRemoteConfigs: [[url: 
'https://anongit.kde.org/sysadmin/repo-metadata']]
+   ]
+
+   // Dependency Metadata
+   checkout changelog: false, poll: false, scm: [
+   $class: 'GitSCM',
+   branches: [[name: 'master']],
+   extensions: [[$class: 
'RelativeTargetDirectory', relativeTargetDir: 
'ci-tooling/kde-build-metadata/']],
+   userRemoteConfigs: [[url: 
'https://anongit.kde.org/kde-build-metadata']]
+   ]
+
+   // KApiDox: For api.kde.org metadata extraction
+   checkout changelog: false, poll: false, scm: [
+   $class: 'GitSCM',
+   branches: [[name: 'master']],
+   extensions: [[$class: 
'RelativeTargetDirectory', relativeTargetDir: 'ci-tooling/kapidox/']],
+   userRemoteConfigs: [[url: 
'https://anongit.kde.org/kapidox']]
+   ]
+
+   // kde-dev-scripts: For packager metadata extraction
+   checkout changelog: false, poll: false, scm: [
+   $class: 'GitSCM',
+   branches: [[name: 'master']],
+   extensions: [[$class: 
'RelativeTargetDirectory', relativeTargetDir: 'ci-tooling/kde-dev-scripts/']],
+   userRemoteConfigs: [[url: 
'https://anongit.kde.org/kde-dev-scripts']]
+   ]
+
+   }
+
+   // Now Prepare to Build: Get the dependencies ready
+   stage('Setup Dependencies') {
+   // Now we can determine what our dependencies are
+   // Then update to the latest version of the 
dependencies available from the master server
+   // Finally ex

D7280: Add syntax highlighting for Metamath

2017-08-18 Thread Aaron Puchert
aaronpuchert updated this revision to Diff 18373.
aaronpuchert added a comment.


  Fix commit message and indentation.

REPOSITORY
  R216 Syntax Highlighting

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D7280?vs=18081&id=18373

BRANCH
  metamath

REVISION DETAIL
  https://phabricator.kde.org/D7280

AFFECTED FILES
  autotests/folding/test.mm.fold
  autotests/html/test.mm.html
  autotests/input/test.mm
  autotests/input/test.mm.syntax
  autotests/reference/test.mm.ref
  data/syntax/metamath.xml

To: aaronpuchert, #frameworks
Cc: dhaumann


KDE CI: Frameworks kirigami kf5-qt5 FreeBSDQt5.7 - Build # 44 - Still Unstable!

2017-08-18 Thread no-reply
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks%20kirigami%20kf5-qt5%20FreeBSDQt5.7/44/
 Project:
Frameworks kirigami kf5-qt5 FreeBSDQt5.7
 Date of build:
Fri, 18 Aug 2017 21:27:38 +
 Build duration:
16 min and counting
   JUnit Tests
  Name: (root) Failed: 1 test(s), Passed: 0 test(s), Skipped: 0 test(s), Total: 1 test(s)Failed: TestSuite.qmltests

build.log
Description: Binary data


KDE CI: Frameworks kcrash kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Unstable!

2017-08-18 Thread no-reply
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks%20kcrash%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kcrash kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:19:27 +
 Build duration:
5 hr 44 min and counting
   JUnit Tests
  Name: (root) Failed: 1 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 2 test(s)Failed: TestSuite.kcrashtest

build.log
Description: Binary data


KDE CI: Frameworks extra-cmake-modules kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Unstable!

2017-08-18 Thread no-reply
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks%20extra-cmake-modules%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks extra-cmake-modules kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:19:22 +
 Build duration:
5 hr 43 min and counting
   JUnit Tests
  Name: (root) Failed: 5 test(s), Passed: 45 test(s), Skipped: 0 test(s), Total: 50 test(s)Failed: TestSuite.ECMAddAppIconTestFailed: TestSuite.ecm_add_tests-multi_testsFailed: TestSuite.ecm_add_tests-single_testsFailed: TestSuite.ecm_add_tests_did_run-multi_testsFailed: TestSuite.ecm_add_tests_did_run-single_tests

build.log
Description: Binary data


KDE CI: Frameworks kdbusaddons kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kdbusaddons%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kdbusaddons kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:19:25 +
 Build duration:
5 hr 42 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 2 test(s), Skipped: 0 test(s), Total: 2 test(s)

build.log
Description: Binary data


KDE CI: Frameworks kdeclarative kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kdeclarative%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kdeclarative kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:19:23 +
 Build duration:
5 hr 41 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 2 test(s), Skipped: 0 test(s), Total: 2 test(s)

build.log
Description: Binary data


KDE CI: Frameworks frameworkintegration kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20frameworkintegration%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks frameworkintegration kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:19:21 +
 Build duration:
5 hr 38 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)

build.log
Description: Binary data


KDE CI: Frameworks kactivities kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kactivities%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kactivities kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:19:20 +
 Build duration:
5 hr 35 min and counting

build.log
Description: Binary data


KDE CI: Frameworks karchive kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20karchive%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks karchive kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:19:19 +
 Build duration:
5 hr 33 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 5 test(s), Skipped: 0 test(s), Total: 5 test(s)

build.log
Description: Binary data


KDE CI: Frameworks kauth kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kauth%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kauth kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:19:18 +
 Build duration:
5 hr 32 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 2 test(s), Skipped: 0 test(s), Total: 2 test(s)

build.log
Description: Binary data


KDE CI: Frameworks kbookmarks kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Unstable!

2017-08-18 Thread no-reply
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks%20kbookmarks%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kbookmarks kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:19:17 +
 Build duration:
5 hr 30 min and counting
   JUnit Tests
  Name: (root) Failed: 1 test(s), Passed: 0 test(s), Skipped: 0 test(s), Total: 1 test(s)Failed: TestSuite.kbookmarktest

build.log
Description: Binary data


KDE CI: Frameworks kcmutils kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kcmutils%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kcmutils kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:19:15 +
 Build duration:
5 hr 18 min and counting

build.log
Description: Binary data


KDE CI: Frameworks kcodecs kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Unstable!

2017-08-18 Thread no-reply
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks%20kcodecs%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kcodecs kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:19:15 +
 Build duration:
5 hr 15 min and counting
   JUnit Tests
  Name: (root) Failed: 2 test(s), Passed: 4 test(s), Skipped: 0 test(s), Total: 6 test(s)Failed: TestSuite.codectestFailed: TestSuite.kemailaddresstest

build.log
Description: Binary data


KDE CI: Frameworks kcompletion kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kcompletion%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kcompletion kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:19:13 +
 Build duration:
5 hr 14 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 4 test(s), Skipped: 0 test(s), Total: 4 test(s)

build.log
Description: Binary data


KDE CI: Frameworks kconfig kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Unstable!

2017-08-18 Thread no-reply
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks%20kconfig%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kconfig kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:19:12 +
 Build duration:
5 hr 13 min and counting
   JUnit Tests
  Name: (root) Failed: 1 test(s), Passed: 34 test(s), Skipped: 0 test(s), Total: 35 test(s)Failed: TestSuite.kconfigcore-kdesktopfiletest

build.log
Description: Binary data


D7402: Use QUrls from match to create mimeData in base implementation

2017-08-18 Thread David Edmundson
davidedmundson created this revision.
Restricted Application added projects: Plasma, Frameworks.
Restricted Application added subscribers: Frameworks, plasma-devel.

REVISION SUMMARY
  QueryMatch contains a list of URLs.
  
  If an AbstractRunner doesn't implement this method, create some mimeData
  from the availalbe data in the base implementation.

TEST PLAN
  Have a DBus runner which populates a bunch of URLs, but doesn't implement 
this method.

REPOSITORY
  R308 KRunner

BRANCH
  dbusrunner

REVISION DETAIL
  https://phabricator.kde.org/D7402

AFFECTED FILES
  src/abstractrunner.cpp

To: davidedmundson, #plasma
Cc: plasma-devel, #frameworks, ZrenBot, progwolff, lesliezhai, ali-mohamed, 
jensreuterberg, abetts, sebas, apol, mart, lukas


KDE CI: Frameworks kinit kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kinit%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kinit kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:19:11 +
 Build duration:
5 hr 9 min and counting

build.log
Description: Binary data


KDE CI: Frameworks threadweaver kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20threadweaver%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks threadweaver kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:19:10 +
 Build duration:
5 hr 7 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 7 test(s), Skipped: 0 test(s), Total: 7 test(s)

build.log
Description: Binary data


D7401: Solid/Mac : fleshing out the skeleton IOKit backend (WIP)

2017-08-18 Thread René J . V . Bertin
rjvbb set the repository for this revision to R245 Solid.

REPOSITORY
  R245 Solid

REVISION DETAIL
  https://phabricator.kde.org/D7401

To: rjvbb, #frameworks
Cc: cgilles, kde-mac


D7401: Solid/Mac : fleshing out the skeleton IOKit backend (WIP)

2017-08-18 Thread René J . V . Bertin
rjvbb updated this revision to Diff 18366.
rjvbb added a comment.


  Don't add Block output where there shouldn't be.

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D7401?vs=18364&id=18366

REVISION DETAIL
  https://phabricator.kde.org/D7401

AFFECTED FILES
  src/solid/devices/CMakeLists.txt
  src/solid/devices/backends/iokit/CMakeLists.txt
  src/solid/devices/backends/iokit/cfhelper.cpp
  src/solid/devices/backends/iokit/iokitbattery.cpp
  src/solid/devices/backends/iokit/iokitbattery.h
  src/solid/devices/backends/iokit/iokitblock.cpp
  src/solid/devices/backends/iokit/iokitblock.h
  src/solid/devices/backends/iokit/iokitdevice.cpp
  src/solid/devices/backends/iokit/iokitdevice.h
  src/solid/devices/backends/iokit/iokitdeviceinterface.cpp
  src/solid/devices/backends/iokit/iokitdeviceinterface.h
  src/solid/devices/backends/iokit/iokitgenericinterface.cpp
  src/solid/devices/backends/iokit/iokitmanager.cpp
  src/solid/devices/backends/iokit/iokitopticaldisc.cpp
  src/solid/devices/backends/iokit/iokitopticaldisc.h
  src/solid/devices/backends/iokit/iokitopticaldrive.cpp
  src/solid/devices/backends/iokit/iokitopticaldrive.h
  src/solid/devices/backends/iokit/iokitprocessor.cpp
  src/solid/devices/backends/iokit/iokitprocessor.h
  src/solid/devices/backends/iokit/iokitstorage.cpp
  src/solid/devices/backends/iokit/iokitstorage.h
  src/solid/devices/backends/iokit/iokitstorageaccess.cpp
  src/solid/devices/backends/iokit/iokitstorageaccess.h
  src/solid/devices/backends/iokit/iokitvolume.cpp
  src/solid/devices/backends/iokit/iokitvolume.h

To: rjvbb, #frameworks
Cc: cgilles, kde-mac


KDE CI: Frameworks kiconthemes kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Unstable!

2017-08-18 Thread no-reply
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks%20kiconthemes%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kiconthemes kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:19:07 +
 Build duration:
4 hr 58 min and counting
   JUnit Tests
  Name: (root) Failed: 1 test(s), Passed: 6 test(s), Skipped: 0 test(s), Total: 7 test(s)Failed: TestSuite.kiconloader_unittest

build.log
Description: Binary data


KDE CI: Frameworks baloo kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20baloo%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks baloo kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:18:57 +
 Build duration:
4 hr 57 min and counting

build.log
Description: Binary data


KDE CI: Frameworks kidletime kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kidletime%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kidletime kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:18:55 +
 Build duration:
4 hr 53 min and counting

build.log
Description: Binary data


KDE CI: Frameworks kimageformats kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Unstable!

2017-08-18 Thread no-reply
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks%20kimageformats%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kimageformats kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:18:54 +
 Build duration:
4 hr 53 min and counting
   JUnit Tests
  Name: (root) Failed: 1 test(s), Passed: 10 test(s), Skipped: 0 test(s), Total: 11 test(s)Failed: TestSuite.kimageformats-read-xcf

build.log
Description: Binary data


KDE CI: Frameworks attica kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20attica%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks attica kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:18:53 +
 Build duration:
4 hr 51 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)

build.log
Description: Binary data


KDE CI: Frameworks solid kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Unstable!

2017-08-18 Thread no-reply
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks%20solid%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks solid kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:18:51 +
 Build duration:
4 hr 50 min and counting
   JUnit Tests
  Name: (root) Failed: 1 test(s), Passed: 2 test(s), Skipped: 0 test(s), Total: 3 test(s)Failed: TestSuite.solidhwtest

build.log
Description: Binary data


KDE CI: Frameworks kitemmodels kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kitemmodels%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kitemmodels kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:18:49 +
 Build duration:
4 hr 39 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 11 test(s), Skipped: 0 test(s), Total: 11 test(s)

build.log
Description: Binary data


KDE CI: Frameworks kirigami kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kirigami%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kirigami kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:18:50 +
 Build duration:
4 hr 37 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)

build.log
Description: Binary data


KDE CI: Frameworks kitemviews kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kitemviews%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kitemviews kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:18:48 +
 Build duration:
4 hr 36 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)

build.log
Description: Binary data


KDE CI: Frameworks kjobwidgets kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kjobwidgets%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kjobwidgets kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:18:46 +
 Build duration:
4 hr 36 min and counting

build.log
Description: Binary data


KDE CI: Frameworks kjs kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kjs%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kjs kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:18:45 +
 Build duration:
4 hr 35 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)

build.log
Description: Binary data


KDE CI: Frameworks kjsembed kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kjsembed%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kjsembed kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:18:44 +
 Build duration:
4 hr 33 min and counting

build.log
Description: Binary data


KDE CI: Frameworks kmediaplayer kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kmediaplayer%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kmediaplayer kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:18:43 +
 Build duration:
4 hr 31 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 2 test(s), Skipped: 0 test(s), Total: 2 test(s)

build.log
Description: Binary data


KDE CI: Frameworks kconfigwidgets kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kconfigwidgets%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kconfigwidgets kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:18:41 +
 Build duration:
4 hr 29 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 3 test(s), Skipped: 0 test(s), Total: 3 test(s)

build.log
Description: Binary data


KDE CI: Frameworks syntax-highlighting kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20syntax-highlighting%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks syntax-highlighting kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:18:40 +
 Build duration:
4 hr 27 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 8 test(s), Skipped: 0 test(s), Total: 8 test(s)

build.log
Description: Binary data


KDE CI: Frameworks kcoreaddons kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Unstable!

2017-08-18 Thread no-reply
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks%20kcoreaddons%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kcoreaddons kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:18:39 +
 Build duration:
4 hr 23 min and counting
   JUnit Tests
  Name: (root) Failed: 3 test(s), Passed: 19 test(s), Skipped: 0 test(s), Total: 22 test(s)Failed: TestSuite.kdelibs4configmigratortestFailed: TestSuite.kdirwatch_qfswatch_unittestFailed: TestSuite.krandomtest

build.log
Description: Binary data


KDE CI: Frameworks kded kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kded%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kded kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:18:30 +
 Build duration:
4 hr 18 min and counting

build.log
Description: Binary data


KDE CI: Frameworks sonnet kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20sonnet%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks sonnet kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:18:28 +
 Build duration:
4 hr 16 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 4 test(s), Skipped: 0 test(s), Total: 4 test(s)

build.log
Description: Binary data


KDE CI: Frameworks kdesignerplugin kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kdesignerplugin%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kdesignerplugin kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:18:26 +
 Build duration:
4 hr 14 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 2 test(s), Skipped: 0 test(s), Total: 2 test(s)

build.log
Description: Binary data


KDE CI: Frameworks kdewebkit kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kdewebkit%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kdewebkit kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:18:24 +
 Build duration:
4 hr 12 min and counting

build.log
Description: Binary data


KDE CI: Frameworks kdnssd kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kdnssd%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kdnssd kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:18:22 +
 Build duration:
4 hr 11 min and counting

build.log
Description: Binary data


KDE CI: Frameworks kfilemetadata kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Unstable!

2017-08-18 Thread no-reply
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks%20kfilemetadata%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kfilemetadata kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:18:19 +
 Build duration:
4 hr 9 min and counting
   JUnit Tests
  Name: (root) Failed: 3 test(s), Passed: 5 test(s), Skipped: 0 test(s), Total: 8 test(s)Failed: TestSuite.externalextractortestFailed: TestSuite.externalwritertestFailed: TestSuite.qtmultimediaextractortest

build.log
Description: Binary data


KDE CI: Frameworks kglobalaccel kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kglobalaccel%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kglobalaccel kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:18:17 +
 Build duration:
4 hr 6 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)

build.log
Description: Binary data


KDE CI: Frameworks kguiaddons kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kguiaddons%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kguiaddons kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:18:16 +
 Build duration:
4 hr 5 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 3 test(s), Skipped: 0 test(s), Total: 3 test(s)

build.log
Description: Binary data


KDE CI: Frameworks knewstuff kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Unstable!

2017-08-18 Thread no-reply
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks%20knewstuff%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks knewstuff kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:17:58 +
 Build duration:
4 hr 4 min and counting
   JUnit Tests
  Name: (root) Failed: 1 test(s), Passed: 2 test(s), Skipped: 0 test(s), Total: 3 test(s)Failed: TestSuite.kmoretoolstest

build.log
Description: Binary data


KDE CI: Frameworks ki18n kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20ki18n%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks ki18n kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:18:12 +
 Build duration:
4 hr 0 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 5 test(s), Skipped: 0 test(s), Total: 5 test(s)

build.log
Description: Binary data


KDE CI: Frameworks knotifications kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Unstable!

2017-08-18 Thread no-reply
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks%20knotifications%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks knotifications kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:17:57 +
 Build duration:
3 hr 59 min and counting
   JUnit Tests
  Name: (root) Failed: 1 test(s), Passed: 0 test(s), Skipped: 0 test(s), Total: 1 test(s)Failed: TestSuite.KNotificationTest

build.log
Description: Binary data


KDE CI: Frameworks knotifyconfig kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20knotifyconfig%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks knotifyconfig kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:17:49 +
 Build duration:
3 hr 47 min and counting

build.log
Description: Binary data


KDE CI: Frameworks kpackage kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Unstable!

2017-08-18 Thread no-reply
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks%20kpackage%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kpackage kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:17:45 +
 Build duration:
3 hr 45 min and counting
   JUnit Tests
  Name: (root) Failed: 4 test(s), Passed: 6 test(s), Skipped: 0 test(s), Total: 10 test(s)Failed: TestSuite.plasma-fallbackpackagetestFailed: TestSuite.plasma-packagestructuretestFailed: TestSuite.plasma-plasmoidpackagetestFailed: TestSuite.plasma-querytest

build.log
Description: Binary data


KDE CI: Frameworks kparts kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kparts%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kparts kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:17:44 +
 Build duration:
3 hr 43 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 2 test(s), Skipped: 0 test(s), Total: 2 test(s)

build.log
Description: Binary data


KDE CI: Frameworks kpeople kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kpeople%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kpeople kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:17:42 +
 Build duration:
3 hr 39 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 3 test(s), Skipped: 0 test(s), Total: 3 test(s)

build.log
Description: Binary data


KDE CI: Frameworks kplotting kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kplotting%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kplotting kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:17:41 +
 Build duration:
3 hr 37 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 4 test(s), Skipped: 0 test(s), Total: 4 test(s)

build.log
Description: Binary data


KDE CI: Frameworks kross kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kross%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kross kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:17:39 +
 Build duration:
3 hr 35 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)

build.log
Description: Binary data


KDE CI: Frameworks krunner kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Unstable!

2017-08-18 Thread no-reply
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks%20krunner%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks krunner kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:17:37 +
 Build duration:
3 hr 32 min and counting
   JUnit Tests
  Name: (root) Failed: 1 test(s), Passed: 0 test(s), Skipped: 0 test(s), Total: 1 test(s)Failed: TestSuite.runnercontexttest

build.log
Description: Binary data


KDE CI: Frameworks ktextwidgets kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20ktextwidgets%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks ktextwidgets kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:17:25 +
 Build duration:
2 hr 49 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 5 test(s), Skipped: 0 test(s), Total: 5 test(s)

build.log
Description: Binary data


KDE CI: Frameworks kunitconversion kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kunitconversion%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kunitconversion kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:17:24 +
 Build duration:
2 hr 47 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 3 test(s), Skipped: 0 test(s), Total: 3 test(s)

build.log
Description: Binary data


KDE CI: Frameworks kwallet kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kwallet%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kwallet kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:17:23 +
 Build duration:
2 hr 46 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)

build.log
Description: Binary data


KDE CI: Frameworks kwidgetsaddons kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Unstable!

2017-08-18 Thread no-reply
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks%20kwidgetsaddons%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kwidgetsaddons kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:17:21 +
 Build duration:
2 hr 39 min and counting
   JUnit Tests
  Name: (root) Failed: 1 test(s), Passed: 15 test(s), Skipped: 0 test(s), Total: 16 test(s)Failed: TestSuite.kcolorbuttontest

build.log
Description: Binary data


KDE CI: Frameworks kwindowsystem kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kwindowsystem%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kwindowsystem kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:17:20 +
 Build duration:
2 hr 30 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)

build.log
Description: Binary data


KDE CI: Frameworks kxmlgui kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kxmlgui%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kxmlgui kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:17:19 +
 Build duration:
2 hr 28 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 5 test(s), Skipped: 0 test(s), Total: 5 test(s)

build.log
Description: Binary data


KDE CI: Frameworks kxmlrpcclient kf5-qt5 WindowsMSVCQt5.9 - Build # 1 - Successful!

2017-08-18 Thread no-reply
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks%20kxmlrpcclient%20kf5-qt5%20WindowsMSVCQt5.9/1/
 Project:
Frameworks kxmlrpcclient kf5-qt5 WindowsMSVCQt5.9
 Date of build:
Fri, 18 Aug 2017 15:17:18 +
 Build duration:
2 hr 24 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 2 test(s), Skipped: 0 test(s), Total: 2 test(s)

build.log
Description: Binary data


D7294: Deprecate KStandardAction::PasteText and KPasteTextAction

2017-08-18 Thread Elvis Angelaccio
elvisangelaccio edited the summary of this revision.

REPOSITORY
  R265 KConfigWidgets

REVISION DETAIL
  https://phabricator.kde.org/D7294

To: elvisangelaccio, #frameworks


D7369: [WIP] Wayland foreign protocol

2017-08-18 Thread Marco Martin
mart added a comment.


  part of the comments adressed, still to wrap the client part in order to hide 
the v1 implementation.
  
  the status right now is that, when running in valgrind all test pass, while 
then invoked directly it almost always crashes, but every time at a different, 
random place.
  there is some serious memory corruption somewhere, but i'm completely at loss 
in figuring out where it is (and valgrind output, as gdb backtraces seem quite 
useless)

REPOSITORY
  R127 KWayland

REVISION DETAIL
  https://phabricator.kde.org/D7369

To: mart, #plasma, #kwin, davidedmundson
Cc: davidedmundson, graesslin, plasma-devel, #frameworks, ZrenBot, progwolff, 
lesliezhai, ali-mohamed, jensreuterberg, abetts, sebas, apol, mart, lukas


D7369: [WIP] Wayland foreign protocol

2017-08-18 Thread Marco Martin
mart updated this revision to Diff 18357.
mart added a comment.
Restricted Application edited projects, added Plasma; removed Plasma on Wayland.


  - get rid of the v1 from the verver side
  - dress some issues
  - Q_DECL_HIDDEN for all non exported classes
  - track surface destruction
  - more attention to data integrity
  - wait for server surfaces deletion
  - more qpointers out of pure desperation

REPOSITORY
  R127 KWayland

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D7369?vs=18294&id=18357

BRANCH
  mart/xdgforeign

REVISION DETAIL
  https://phabricator.kde.org/D7369

AFFECTED FILES
  autotests/client/CMakeLists.txt
  autotests/client/test_xdg_foreign.cpp
  src/client/CMakeLists.txt
  src/client/protocols/xdg-foreign-unstable-v1.xml
  src/client/registry.cpp
  src/client/registry.h
  src/client/xdgforeign_v1.cpp
  src/client/xdgforeign_v1.h
  src/server/CMakeLists.txt
  src/server/display.cpp
  src/server/display.h
  src/server/xdgforeign_interface.cpp
  src/server/xdgforeign_interface.h
  src/server/xdgforeign_v1_interface.cpp
  src/server/xdgforeign_v1_interface_p.h

To: mart, #plasma, #kwin, davidedmundson
Cc: davidedmundson, graesslin, plasma-devel, #frameworks, ZrenBot, progwolff, 
lesliezhai, ali-mohamed, jensreuterberg, abetts, sebas, apol, mart, lukas


Re: libkcompactdisc test (testkcd) finds no tracks - wrong initialiser sent to the Phonon backend?

2017-08-18 Thread René J . V . Bertin
On Friday August 18 2017 12:22:56 René J.V. Bertin wrote:

So it turns out to be simple to make testkcd find the tracks:

@@ -31,7 +31,7 @@ class TestKCD : public QObject
 void doTest()
 {
 qCDebug(tKCD) << "Starting test";
-mKcd->setDevice(mKcd->defaultCdromDeviceName(), 50, true, "phonon");
+mKcd->setDevice(mKcd->defaultCdromDeviceName(), 50, true, "cdin");
 qCDebug(tKCD) << "";
 
 qCDebug(tKCD) << "We have" << mKcd->audioSystems().size() << "audo 
systems available:";


Doh...


D7294: Deprecate KStandardAction::PasteText and KPasteTextAction

2017-08-18 Thread Elvis Angelaccio
elvisangelaccio edited the summary of this revision.

REPOSITORY
  R265 KConfigWidgets

REVISION DETAIL
  https://phabricator.kde.org/D7294

To: elvisangelaccio, #frameworks


D7391: Replace KStandardAction::PasteText with KStandardAction::Paste

2017-08-18 Thread Elvis Angelaccio
elvisangelaccio created this revision.
Restricted Application added subscribers: Frameworks, kwrite-devel.
Restricted Application added a project: Frameworks.

REVISION SUMMARY
  The PasteText standard action creates a KPasteTextAction rather than
  a simple QAction. KPasteTextAction is a very old class that has been not
  functional for years. Since this action is already used as if it actually
  were a QAction, just use KStandardAction::Paste which is what everyone
  else does.
  
  See also https://phabricator.kde.org/D7294

TEST PLAN
  Paste action still works in kate.

REPOSITORY
  R39 KTextEditor

BRANCH
  master

REVISION DETAIL
  https://phabricator.kde.org/D7391

AFFECTED FILES
  src/view/kateview.cpp

To: elvisangelaccio, #ktexteditor
Cc: kwrite-devel, #frameworks


D7294: Deprecate KStandardAction::PasteText and KPasteTextAction

2017-08-18 Thread Elvis Angelaccio
elvisangelaccio retitled this revision from "Deprecate 
KStandardAction::PasteText" to "Deprecate KStandardAction::PasteText and 
KPasteTextAction".
elvisangelaccio edited the summary of this revision.

REPOSITORY
  R265 KConfigWidgets

REVISION DETAIL
  https://phabricator.kde.org/D7294

To: elvisangelaccio, #frameworks


D7294: Deprecate KStandardAction::PasteText

2017-08-18 Thread Elvis Angelaccio
elvisangelaccio updated this revision to Diff 18351.
elvisangelaccio added a comment.


  - Also deprecate KPasteTextAction

REPOSITORY
  R265 KConfigWidgets

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D7294?vs=18095&id=18351

BRANCH
  deprecate-pastetext

REVISION DETAIL
  https://phabricator.kde.org/D7294

AFFECTED FILES
  src/kpastetextaction.cpp
  src/kpastetextaction.h
  src/kstandardaction.cpp
  src/kstandardaction.h

To: elvisangelaccio, #frameworks


D7294: Deprecate KStandardAction::PasteText

2017-08-18 Thread Elvis Angelaccio
elvisangelaccio added a comment.


  In https://phabricator.kde.org/D7294#135238, @elvisangelaccio wrote:
  
  > I was wrong, this action is needed for KPasteTextAction.
  
  
  Re-opening, KPasteTextAction is not functional.

REPOSITORY
  R265 KConfigWidgets

REVISION DETAIL
  https://phabricator.kde.org/D7294

To: elvisangelaccio, #frameworks


D7294: Deprecate KStandardAction::PasteText

2017-08-18 Thread Elvis Angelaccio
elvisangelaccio reclaimed this revision.

REPOSITORY
  R265 KConfigWidgets

REVISION DETAIL
  https://phabricator.kde.org/D7294

To: elvisangelaccio, #frameworks


D7287: Improve KStandardAction apidox.

2017-08-18 Thread Elvis Angelaccio
This revision was automatically updated to reflect the committed changes.
Closed by commit R265:f16502ff401d: Improve KStandardAction apidox. (authored 
by elvisangelaccio).

REPOSITORY
  R265 KConfigWidgets

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D7287?vs=18146&id=18348

REVISION DETAIL
  https://phabricator.kde.org/D7287

AFFECTED FILES
  src/kstandardaction.h

To: elvisangelaccio, #frameworks, dhaumann
Cc: dhaumann


D7293: Deprecate KStandardAction::SaveOptions

2017-08-18 Thread Elvis Angelaccio
This revision was automatically updated to reflect the committed changes.
Closed by commit R265:157663e2f8f4: Deprecate KStandardAction::SaveOptions 
(authored by elvisangelaccio).

CHANGED PRIOR TO COMMIT
  https://phabricator.kde.org/D7293?vs=18155&id=18349#toc

REPOSITORY
  R265 KConfigWidgets

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D7293?vs=18155&id=18349

REVISION DETAIL
  https://phabricator.kde.org/D7293

AFFECTED FILES
  src/kstandardaction.cpp
  src/kstandardaction.h

To: elvisangelaccio, #frameworks, dfaure
Cc: dfaure


D7292: Deprecate KStandardAction::Help

2017-08-18 Thread Elvis Angelaccio
This revision was automatically updated to reflect the committed changes.
Closed by commit R265:9a7be02eabe8: Deprecate KStandardAction::Help (authored 
by elvisangelaccio).

CHANGED PRIOR TO COMMIT
  https://phabricator.kde.org/D7292?vs=18154&id=18350#toc

REPOSITORY
  R265 KConfigWidgets

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D7292?vs=18154&id=18350

REVISION DETAIL
  https://phabricator.kde.org/D7292

AFFECTED FILES
  src/kstandardaction.cpp
  src/kstandardaction.h

To: elvisangelaccio, #frameworks, dfaure
Cc: dhaumann


D7380: KCD: use modern logging classes throughout

2017-08-18 Thread René J . V . Bertin
rjvbb set the repository for this revision to R349 KCompactDisc Library.

REPOSITORY
  R349 KCompactDisc Library

REVISION DETAIL
  https://phabricator.kde.org/D7380

To: rjvbb, #frameworks, davidedmundson, ltoscano
Cc: ltoscano, davidedmundson


D7380: KCD: use modern logging classes throughout

2017-08-18 Thread René J . V . Bertin
rjvbb updated this revision to Diff 18344.
rjvbb added a comment.


  Updated as discussed.

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D7380?vs=18325&id=18344

REVISION DETAIL
  https://phabricator.kde.org/D7380

AFFECTED FILES
  CMakeLists.txt
  src/CMakeLists.txt
  src/kcompactdisc.cpp
  src/kcompactdisc_p.cpp
  src/kcompactdisc_p.h
  src/phonon_interface.cpp
  src/wmlib_interface.cpp
  tests/testkcd.cpp

To: rjvbb, #frameworks, davidedmundson, ltoscano
Cc: ltoscano, davidedmundson


D7379: KWayland::Client::Surface track output destruction

2017-08-18 Thread David Edmundson
This revision was automatically updated to reflect the committed changes.
Closed by commit R127:e430a44c4a92: KWayland::Client::Surface track output 
destruction (authored by davidedmundson).

REPOSITORY
  R127 KWayland

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D7379?vs=18315&id=18343

REVISION DETAIL
  https://phabricator.kde.org/D7379

AFFECTED FILES
  autotests/client/test_wayland_surface.cpp
  src/client/surface.cpp

To: davidedmundson, #plasma, graesslin
Cc: plasma-devel, #frameworks, leezu, ZrenBot, progwolff, lesliezhai, 
ali-mohamed, jensreuterberg, abetts, eliasp, sebas, apol, mart, hein, lukas


D7153: Drop broken mid-button click handling

2017-08-18 Thread Elvis Angelaccio
elvisangelaccio added a comment.


  In https://phabricator.kde.org/D7153#137028, @broulik wrote:
  
  > Dolphin supposedly also made use of this feature at one point: cf. Bug 
358649 - given I can middle click almost anything in Dolphin (Places, Folders, 
Breadcrumbs) I would expect Back/Forward/Up to also open in a new tab.
  
  
  That could make sense, yes. I added a comment in the bug report.

REPOSITORY
  R263 KXmlGui

REVISION DETAIL
  https://phabricator.kde.org/D7153

To: elvisangelaccio, #frameworks, dfaure
Cc: broulik, dfaure


D7292: Deprecate KStandardAction::Help

2017-08-18 Thread Dominik Haumann
dhaumann added a comment.


  David's ship-it is good enough, please commit :)

REPOSITORY
  R265 KConfigWidgets

BRANCH
  deprecate-help

REVISION DETAIL
  https://phabricator.kde.org/D7292

To: elvisangelaccio, #frameworks, dfaure
Cc: dhaumann


D7292: Deprecate KStandardAction::Help

2017-08-18 Thread Elvis Angelaccio
elvisangelaccio added a comment.


  @dhaumann Ping, are you still not convinced by this change?

REPOSITORY
  R265 KConfigWidgets

BRANCH
  deprecate-help

REVISION DETAIL
  https://phabricator.kde.org/D7292

To: elvisangelaccio, #frameworks, dfaure
Cc: dhaumann


D7379: KWayland::Client::Surface track output destruction

2017-08-18 Thread Martin Flöser
graesslin accepted this revision.
This revision is now accepted and ready to land.

REPOSITORY
  R127 KWayland

BRANCH
  master

REVISION DETAIL
  https://phabricator.kde.org/D7379

To: davidedmundson, #plasma, graesslin
Cc: plasma-devel, #frameworks, leezu, ZrenBot, progwolff, lesliezhai, 
ali-mohamed, jensreuterberg, abetts, eliasp, sebas, apol, mart, hein, lukas


D7153: Drop broken mid-button click handling

2017-08-18 Thread Kai Uwe Broulik
broulik added a comment.


  Dolphin supposedly also made use of this feature at one point: cf. Bug 358649 
- given I can middle click almost anything in Dolphin (Places, Folders, 
Breadcrumbs) I would expect Back/Forward/Up to also open in a new tab.

REPOSITORY
  R263 KXmlGui

REVISION DETAIL
  https://phabricator.kde.org/D7153

To: elvisangelaccio, #frameworks, dfaure
Cc: broulik, dfaure


D7378: Add setFocusProxy() for KPasswordLineEdit

2017-08-18 Thread Christoph Feck
This revision was automatically updated to reflect the committed changes.
Closed by commit R236:e72a8c2dad4d: [KPasswordLineEdit] Set focus proxy to line 
edit (authored by cfeck).

REPOSITORY
  R236 KWidgetsAddons

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D7378?vs=18313&id=18337

REVISION DETAIL
  https://phabricator.kde.org/D7378

AFFECTED FILES
  src/kpasswordlineedit.cpp

To: cfeck, mlaurent, davidedmundson
Cc: #frameworks


D7380: KCD: use modern logging classes throughout

2017-08-18 Thread René J . V . Bertin
rjvbb added a comment.


  Simply because there's no quick and convenient other way for doing output in 
Qt, I think. But even then, if QPrint existed you'd be using it in testkcd but 
most likely not in the library itself and I'd still propose to activate debug 
output from the library in testkcd.
  
  FWIW, the autotests I've run by hand all seem to generate output that looks 
suspiciously as if it's generated by the logging classes, and they don't 
require setting a rule.

REPOSITORY
  R349 KCompactDisc Library

REVISION DETAIL
  https://phabricator.kde.org/D7380

To: rjvbb, #frameworks, davidedmundson, ltoscano
Cc: ltoscano, davidedmundson


D7304: Do not leak symbols of pimpl classes, protect with Q_DECL_HIDDEN

2017-08-18 Thread David Edmundson
This revision was automatically updated to reflect the committed changes.
Closed by commit R127:b7a63491ad1c: Do not leak symbols of pimpl classes, 
protect with Q_DECL_HIDDEN (authored by davidedmundson).

CHANGED PRIOR TO COMMIT
  https://phabricator.kde.org/D7304?vs=18133&id=18330#toc

REPOSITORY
  R127 KWayland

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D7304?vs=18133&id=18330

REVISION DETAIL
  https://phabricator.kde.org/D7304

AFFECTED FILES
  src/client/blur.cpp
  src/client/buffer_p.h
  src/client/compositor.cpp
  src/client/connection_thread.cpp
  src/client/contrast.cpp
  src/client/datadevice.cpp
  src/client/datadevicemanager.cpp
  src/client/dataoffer.cpp
  src/client/datasource.cpp
  src/client/dpms.cpp
  src/client/event_queue.cpp
  src/client/fakeinput.cpp
  src/client/fullscreen_shell.cpp
  src/client/idle.cpp
  src/client/keyboard.cpp
  src/client/output.cpp
  src/client/outputconfiguration.cpp
  src/client/outputdevice.cpp
  src/client/outputmanagement.cpp
  src/client/plasmashell.cpp
  src/client/plasmawindowmanagement.cpp
  src/client/plasmawindowmodel.cpp
  src/client/pointer.cpp
  src/client/pointerconstraints.cpp
  src/client/pointergestures.cpp
  src/client/region.cpp
  src/client/registry.cpp
  src/client/relativepointer.cpp
  src/client/seat.cpp
  src/client/server_decoration.cpp
  src/client/shadow.cpp
  src/client/shell.cpp
  src/client/shm_pool.cpp
  src/client/slide.cpp
  src/client/subcompositor.cpp
  src/client/subsurface.cpp
  src/client/surface.cpp
  src/client/textinput_p.h
  src/client/touch.cpp
  src/client/xdgshell_p.h

To: davidedmundson, #plasma, dfaure
Cc: plasma-devel, #frameworks, leezu, ZrenBot, progwolff, lesliezhai, 
ali-mohamed, jensreuterberg, abetts, eliasp, sebas, apol, mart, hein, lukas


D7380: KCD: use modern logging classes throughout

2017-08-18 Thread Luigi Toscano
ltoscano added inline comments.

INLINE COMMENTS

> rjvbb wrote in testkcd.cpp:66
> I know it can, and I'd agree for regular applications. This is a test 
> application, its users should not have to go figure out why it produces no 
> output and how to make it print something.
> 
> You're right though that QT_LOGGING_RULES can already have been set, I can 
> avoid changing it.

If the output is mandatory, why use a category rule at all, or even logging? 
(and I know this is a pre-existing problem, but still)

REPOSITORY
  R349 KCompactDisc Library

REVISION DETAIL
  https://phabricator.kde.org/D7380

To: rjvbb, #frameworks, davidedmundson, ltoscano
Cc: ltoscano, davidedmundson


D7380: KCD: use modern logging classes throughout

2017-08-18 Thread René J . V . Bertin
rjvbb added a comment.


  Some thoughts, I'll update the patch later today.

INLINE COMMENTS

> ltoscano wrote in kcompactdisc_p.cpp:30
> On the other side, this is not a frameworks, but a generic library. I've seen 
> (and pushed) org.kde.[.] for applications. What could 
> it be a proper choice here? org.kde.lib.[.]? Or simply 
> org.kde.[.]?

I see KCalCore does `ecm_qt_declare_logging_category(kcalcore_LIB_SRCS HEADER 
kcalcore_debug.h IDENTIFIER KCALCORE_LOG CATEGORY_NAME org.kde.pim.kcalcore)`. 
Note the absence of a `lib` namespace/whatever.
We could thus use `org.kde.kcompactdisc` unless there's already a suitable 
namespace to which it could be added (multimedia, audio, ...).

> ltoscano wrote in testkcd.cpp:66
> Please don't set this here. It can be controlled at runtime.

I know it can, and I'd agree for regular applications. This is a test 
application, its users should not have to go figure out why it produces no 
output and how to make it print something.

You're right though that QT_LOGGING_RULES can already have been set, I can 
avoid changing it.

> ltoscano wrote in testkcd.cpp:69
> ditto

And ditto: why would you write an application that's supposed to print test 
results and NOT enable the printing by default? 
(I presume that tests like this would use `QPrint()` if it existed)

REPOSITORY
  R349 KCompactDisc Library

REVISION DETAIL
  https://phabricator.kde.org/D7380

To: rjvbb, #frameworks, davidedmundson, ltoscano
Cc: ltoscano, davidedmundson


D7369: [WIP] Wayland foreign protocol

2017-08-18 Thread Marco Martin
mart marked 2 inline comments as done.
mart added inline comments.

INLINE COMMENTS

> davidedmundson wrote in xdgforeign_v1_interface.cpp:299
> this should be connected to unbound.

perhaps the connects to the destruction of the SurfaceInterface* are not even 
necessary?

REPOSITORY
  R127 KWayland

REVISION DETAIL
  https://phabricator.kde.org/D7369

To: mart, #plasma, #kwin, davidedmundson
Cc: davidedmundson, graesslin, plasma-devel, #frameworks, leezu, ZrenBot, 
progwolff, lesliezhai, ali-mohamed, jensreuterberg, abetts, eliasp, sebas, 
apol, mart, hein, lukas


Re: libkcompactdisc test (testkcd) finds no tracks - wrong initialiser sent to the Phonon backend?

2017-08-18 Thread René J . V . Bertin
On Friday August 18 2017 09:24:56 René J.V. Bertin wrote:

>It looks to me like that could well be because it hands off a Solid UDI to 
>Phonon and from there to the VLC Phonon backend. I've lost track of the 
>control flow somewhere in there but I don't think Phonon knows how to handle 
>such UDIs. Annoyingly there appears to be no way to get useful debugging done 
>via the audiocd kio so I cannot corroborate this intuition.

One thing that seems off is this:

```
Solid::Device opticalDevice(m_udi);
Solid::OpticalDrive *opticalDrive = 
opticalDevice.as();
qCDebug(KCD) << "producer called, opticalDrive is " << 
opticalDrive;

if(opticalDrive) {
Solid::OpticalDisc *opticalDisc = 
opticalDevice.as();
```

This gives opticalDisc==0 (on Linux) which is not illogical; the OpticalDisc 
property/whatever is the child of the OpticalDrive instance (presumably the 
only child for an optical drive).

FWIW, this cast might actually work on Mac since in IOKit there is apparently 
no distinction between OpticalDisc and OpticalDrive (for audio CDs at least 
that have no partitions).

R.


D7369: [WIP] Wayland foreign protocol

2017-08-18 Thread Marco Martin
mart added inline comments.

INLINE COMMENTS

> graesslin wrote in registry.h:938-939
> The general pattern I used for protocols which might get another revision is 
> to create a "meta" class which hides the UnstableV1 mess. C.f. the 
> PointerConstraints a line above.

i see the types are named zxdg_exporter_v1 because it's how the interface is 
calledin the wayland protocol xml.
woudl i need to make another copy of the xml where the interface name is 
unversioned?

REPOSITORY
  R127 KWayland

REVISION DETAIL
  https://phabricator.kde.org/D7369

To: mart, #plasma, #kwin, davidedmundson
Cc: davidedmundson, graesslin, plasma-devel, #frameworks, leezu, ZrenBot, 
progwolff, lesliezhai, ali-mohamed, jensreuterberg, abetts, eliasp, sebas, 
apol, mart, hein, lukas


Re: libkcompactdisc test (testkcd) finds no tracks - wrong initialiser sent to the Phonon backend?

2017-08-18 Thread Luigi Toscano
On Friday, 18 August 2017 11:48:47 CEST Boudhayan Gupta wrote:
> libkcompactdisc doesn't work and should either be deprecated or rewritten
> by someone who has access to an audio cd and a drive.
> 
> Nothing actually uses libkcompactdisc.

I remember that you discussed about this, and lxr search is partially failing, 
but I found that those has them as required dependency:
- audiocd-kio
- kaudiocreator 

and probably others.

-- 
Luigi


D7361: Get rid of QSignalMapper

2017-08-18 Thread Kai Uwe Broulik
This revision was automatically updated to reflect the committed changes.
Closed by commit R242:1419135a5d99: Get rid of QSignalMapper (authored by 
broulik).

REPOSITORY
  R242 Plasma Framework (Library)

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D7361?vs=18280&id=18327

REVISION DETAIL
  https://phabricator.kde.org/D7361

AFFECTED FILES
  src/scriptengines/qml/plasmoid/appletinterface.cpp
  src/scriptengines/qml/plasmoid/appletinterface.h
  src/scriptengines/qml/plasmoid/wallpaperinterface.cpp
  src/scriptengines/qml/plasmoid/wallpaperinterface.h

To: broulik, #plasma, davidedmundson
Cc: davidedmundson, plasma-devel, #frameworks, ZrenBot, progwolff, lesliezhai, 
ali-mohamed, jensreuterberg, abetts, sebas, apol, mart, lukas


Re: libkcompactdisc test (testkcd) finds no tracks - wrong initialiser sent to the Phonon backend?

2017-08-18 Thread Boudhayan Gupta
libkcompactdisc doesn't work and should either be deprecated or rewritten
by someone who has access to an audio cd and a drive.

Nothing actually uses libkcompactdisc.


Freundliche Grüße
Boudhayan Gupta
KDE e.V. - Community Working Group
+49 151 71032970

On 18 August 2017 at 09:24, René J.V. Bertin  wrote:

> Hi,
>
> I'm not certain where to raise issues with libkcompactdisc, I hope this ML
> isn't the worst choice.
>
> I can't say I understand very well exactly how this library is suppose to
> integrate with Solid and the backends. It evidently works with the audiocd
> kio on Linux, but while trying to get that to work on Mac too (part of some
> work I'm doing on Solid) I discovered that testkcd doesn't find any (audio)
> CD tracks on Linux either.
>
> It looks to me like that could well be because it hands off a Solid UDI to
> Phonon and from there to the VLC Phonon backend. I've lost track of the
> control flow somewhere in there but I don't think Phonon knows how to
> handle such UDIs. Annoyingly there appears to be no way to get useful
> debugging done via the audiocd kio so I cannot corroborate this intuition.
>
> Thoughts?
>
> Thanks,
> René
>


D7380: KCD: use modern logging classes throughout

2017-08-18 Thread Luigi Toscano
ltoscano added inline comments.

INLINE COMMENTS

> davidedmundson wrote in kcompactdisc_p.cpp:30
> there's a trend to use "kf5.frameworkname.subpart" as the category.

On the other side, this is not a frameworks, but a generic library. I've seen 
(and pushed) org.kde.[.] for applications. What could it 
be a proper choice here? org.kde.lib.[.]? Or simply 
org.kde.[.]?

REPOSITORY
  R349 KCompactDisc Library

REVISION DETAIL
  https://phabricator.kde.org/D7380

To: rjvbb, #frameworks, davidedmundson, ltoscano
Cc: ltoscano, davidedmundson


D7380: KCD: use modern logging classes throughout

2017-08-18 Thread David Edmundson
davidedmundson accepted this revision.
davidedmundson added inline comments.
This revision is now accepted and ready to land.

INLINE COMMENTS

> kcompactdisc_p.cpp:30
>  
> +Q_LOGGING_CATEGORY(KCD, "cd")
>  Q_LOGGING_CATEGORY(CD_PLAYLIST, "cd.playlist")

there's a trend to use "kf5.frameworkname.subpart" as the category.

REPOSITORY
  R349 KCompactDisc Library

REVISION DETAIL
  https://phabricator.kde.org/D7380

To: rjvbb, #frameworks, davidedmundson
Cc: davidedmundson


D7380: KCD: use modern logging classes throughout

2017-08-18 Thread Luigi Toscano
ltoscano requested changes to this revision.
ltoscano added a comment.
This revision now requires changes to proceed.


  I strongly suggest to port to ecm_qt_declare_logging_category for both the 
old and the new category. This script can automated the process:
  
https://cgit.kde.org/kde-dev-scripts.git/tree/kf5/convert-qkdebug-to-qcdebug.sh

INLINE COMMENTS

> testkcd.cpp:66
>  {
> +qputenv("QT_LOGGING_RULES", QByteArrayLiteral("cd=true"));
>  QCoreApplication app(argc, argv);

Please don't set this here. It can be controlled at runtime.

> testkcd.cpp:69
>  
> -qDebug() << "Testing libKF5CompactDisc";
> +tKCD.setEnabled(QtDebugMsg, true);
> +qCDebug(tKCD) << "Testing libKF5CompactDisc";

ditto

REPOSITORY
  R349 KCompactDisc Library

REVISION DETAIL
  https://phabricator.kde.org/D7380

To: rjvbb, #frameworks, davidedmundson, ltoscano
Cc: ltoscano, davidedmundson


  1   2   >