D25660: Decouple KBookmarksMenu from KActionCollection

2020-03-27 Thread David Faure
dfaure added a subscriber: mlaurent.
dfaure added a comment.


  @mlaurent AFAICS you removed the deprecation macro completely in master, and 
left it (with 0x06) in release/20.04?
  
  I thought we wanted
  
  - to remove it in release/20.04 (or set it to a tested value like 0x053A00)
  - to set it to a tested value in master so we can increase it regularly 
(after verifying compilation)
  
  If you don't have a release/20.04 checkout I can look into making the changes 
there.

REPOSITORY
  R294 KBookmarks

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

To: nicolasfella, #frameworks, dfaure
Cc: mlaurent, bcooksley, kossebau, dfaure, apol, kde-frameworks-devel, 
LeGast00n, cblack, GB_2, michaelh, ngraham, bruns


D25660: Decouple KBookmarksMenu from KActionCollection

2020-03-27 Thread Friedrich W. H. Kossebau
kossebau added a comment.


  Just as reminder:
  When keeping the use of the macro flags, make sure to
  
  - also set the `*_DEPRECATED_WARNINGS_SINCE` flags to 0x06, otherwise 
deprecation warnings for newer API will no longer be shown, due to default set 
by `*_DISABLE_DEPRECATED_BEFORE*`
  - remove the `if (EXISTS "${CMAKE_SOURCE_DIR}/.git")` wrapper, to ensure 
released builds see the same API as developer builds (chance of running 
otherwise into method overloads/implicit conversions)
  
  This would be the recommended use to control limit of deprecated API not 
visible to compiler and limit of until which version use of deprecated API will 
be warned about:
  
add_definitions(
# hide deprecated API of Qt <= 5.9
-DQT_DISABLE_DEPRECATED_BEFORE=0x050900 
# enable warnings for API up to Qt 6.0
-DQT_DEPRECATED_WARNINGS_SINCE=0x06
# hide deprecated API of KF <= 5.48
-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x053000
# enable warnings for API up to KF 6.0
-DKF_DEPRECATED_WARNINGS_SINCE=0x06
)

REPOSITORY
  R294 KBookmarks

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

To: nicolasfella, #frameworks, dfaure
Cc: mlaurent, bcooksley, kossebau, dfaure, apol, kde-frameworks-devel, 
LeGast00n, cblack, GB_2, michaelh, ngraham, bruns


D28129: Read the new message string after rather than before

2020-03-27 Thread Aleix Pol Gonzalez
apol updated this revision to Diff 78627.
apol added a comment.


  address weird +2 in the code

REPOSITORY
  R871 DrKonqi

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D28129?vs=78605=78627

BRANCH
  arcpatch-D28129

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

AFFECTED FILES
  src/backtracegenerator.cpp
  src/data/debuggers/internal/gdbrc
  src/data/debuggers/internal/lldbrc
  src/debugger.cpp
  src/debugger.h
  src/parser/backtraceline.h
  src/parser/backtraceparser.cpp
  src/parser/backtraceparser.h
  src/parser/backtraceparser_p.h
  src/parser/backtraceparsergdb.cpp
  src/parser/backtraceparsergdb.h

To: apol, #frameworks, broulik, sitter
Cc: plasma-devel, Orage, LeGast00n, The-Feren-OS-Dev, cblack, jraleigh, zachus, 
fbampaloukas, GB_2, ragreen, ZrenBot, ngraham, himcesjf, lesliezhai, 
ali-mohamed, jensreuterberg, abetts, sebas, apol, ahiemstra, mart


D27203: Don't try to open files we can't figure out where they are

2020-03-27 Thread Aleix Pol Gonzalez
apol added a comment.


  Ping?

REPOSITORY
  R135 Integration for Qt applications in Plasma

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

To: apol, #frameworks
Cc: plasma-devel, Orage, LeGast00n, The-Feren-OS-Dev, cblack, jraleigh, zachus, 
fbampaloukas, GB_2, ragreen, ZrenBot, ngraham, himcesjf, lesliezhai, 
ali-mohamed, jensreuterberg, abetts, sebas, apol, ahiemstra, mart


D28323: Fix some stylesheet colors in 2 icon files

2020-03-27 Thread Noah Davis
ndavis accepted this revision.
This revision is now accepted and ready to land.

REPOSITORY
  R266 Breeze Icons

BRANCH
  fix-some-stylesheet-colors

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

To: davidhurka, #vdg, ndavis
Cc: kde-frameworks-devel, LeGast00n, cblack, GB_2, michaelh, ngraham, bruns


D27840: Introduce SettingState* elements to ease KCM writing

2020-03-27 Thread David Edmundson
davidedmundson added inline comments.

INLINE COMMENTS

> SettingStateIndicator.qml:30
> +Item {
> +id: root
> +

This is a faux-button.

Which means it needs all the relevant:
Accessible.blah

roles to be manually added

Should it be in the tab focus chain?

(or we could just inherit ToolButton)

> SettingStateIndicator.qml:38
> +
> +width: 16
> +height: 16

Setting root width/height inside a component is almost always not what you want.

Use implicitWidth/implicitHeight.

REPOSITORY
  R296 KDeclarative

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

To: ervin, crossi, hchain, meven, bport, davidedmundson, mart, ngraham, 
#frameworks, #plasma
Cc: kde-frameworks-devel, LeGast00n, cblack, GB_2, michaelh, ngraham, bruns


D25660: Decouple KBookmarksMenu from KActionCollection

2020-03-27 Thread Ben Cooksley
bcooksley added a comment.


  Thanks. That macro really does cause quite a bit of trouble...

REPOSITORY
  R294 KBookmarks

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

To: nicolasfella, #frameworks, dfaure
Cc: bcooksley, kossebau, dfaure, apol, kde-frameworks-devel, LeGast00n, cblack, 
GB_2, michaelh, ngraham, bruns


D25660: Decouple KBookmarksMenu from KActionCollection

2020-03-27 Thread Friedrich W. H. Kossebau
kossebau added a comment.


  In D25660#635658 , @bcooksley 
wrote:
  
  > Thanks. That macro really does cause quite a bit of trouble...
  
  
  It is not the macro, but using it with a future version of 0x06.
  
  See https://marc.info/?l=kde-devel=157190321318565=2 for details.

REPOSITORY
  R294 KBookmarks

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

To: nicolasfella, #frameworks, dfaure
Cc: bcooksley, kossebau, dfaure, apol, kde-frameworks-devel, LeGast00n, cblack, 
GB_2, michaelh, ngraham, bruns


D27840: Introduce SettingState* elements to ease KCM writing

2020-03-27 Thread Kai Uwe Broulik
broulik added a comment.


  Cool

INLINE COMMENTS

> SettingStateBinding.qml:40
> + * target: Item
> + * The graphical element which state we want to manage based on a setting
> + */

*whose

> SettingStateBinding.qml:58
> + * extraEnabledPredicate: bool
> + * An extra predicate which will be applied to the enabled property
> + * of the target combined with the immutable state of the setting

This description didn't really help me in understanding what it does until I 
read the code further down.

> SettingStateBinding.qml:75
> +property KCM.SettingStateIndicator indicator: null
> +// Necessary for proper binding within the Component element,
> +// otherwise it would get null for its created instances

Can you explain this.
Can't you

  indicatorComponent.createObject(target, {
  settingsState: settingsState
  });

> SettingStateBinding.qml:91
> +
> +// We use it via a Component because we potentially need
> +// to escape the parent/siblings only constraint for anchoring

We could also bind `parent: target` instead?

> SettingStateBinding.qml:97
> +KCM.SettingStateIndicator {
> +x: helper.leftCoord - (root.indicatorAsOverlay ? width : 0)
> +y: root.indicatorAsOverlay ? 0 : (parent.height - height) / 2

Please check if this works with right-to-left languages (run with `-reverse` 
argument to test)

> SettingStateBinding.qml:98
> +x: helper.leftCoord - (root.indicatorAsOverlay ? width : 0)
> +y: root.indicatorAsOverlay ? 0 : (parent.height - height) / 2
> +settingState: impl.settingState

Always `Math.round` whenever you divide sizes to ensure integer alignment

> SettingStateIndicator.qml:38
> +
> +width: 16
> +height: 16

Probably should be `Kirigami.Units.iconSizes.small`.
Generally, when creating reusable components, avoid giving them a `width` and 
`height`.
Instead, define an `implicitWidth` and `implicitHeight`.

> SettingStateIndicator.qml:40
> +height: 16
> +visible: icon.source !== ""
> +

Perhaps bind to `icon.valid`?

> SettingStateIndicator.qml:48
> +
> +MouseArea {
> +anchors.fill: parent

You could make the `root` `Item` a `MouseArea` instead.
Also, I think this should get some kind of hover and/or pressed indication?
Also, what about `Accessible` and keyboard focus? Should this be a proper 
`ToolButton` control instead?

> settingstatebindingprivate.cpp:30
> +{
> +// Split since some exported types will be of the form: Foo_QMLTYPE_XX
> +const auto className = 
> QByteArray(item->metaObject()->className()).split('_').first();

Odd. Wouldn't we just get `QQuickRowLayout` et al? Or is that if you do a 
custom item with a `Layout` as a base?

> settingstatebindingprivate.cpp:82
> +m_target->setProperty(bindingProperty, QVariant::fromValue(this));
> +connect(m_target, ::parentChanged, this, 
> ::triggerCoordChanges);
> +connect(m_target, ::widthChanged, this, 
> ::triggerCoordChanges);

Too bad `QQuickItemChangeListener` is private.

Also, does any of this need event compression?

> settingstatebindingprivate.cpp:90
> +emit targetChanged();
> +emit leftCoordChanged();
> +}

Check if it actually changed before emitting

> settingstatebindingprivate.cpp:107
> +emit indicatorChanged();
> +emit leftCoordChanged();
> +}

Check if it actually changed before emitting

> settingstatebindingprivate.h:29
> +Q_OBJECT
> +Q_PROPERTY(QQuickItem* target READ target WRITE setTarget NOTIFY 
> targetChanged)
> +Q_PROPERTY(QQuickItem* indicator READ indicator WRITE setIndicator 
> NOTIFY indicatorChanged)

Coding style, `QQuickItem *target`

REPOSITORY
  R296 KDeclarative

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

To: ervin, crossi, hchain, meven, bport, davidedmundson, mart, ngraham, 
#frameworks, #plasma
Cc: broulik, kde-frameworks-devel, LeGast00n, cblack, GB_2, michaelh, ngraham, 
bruns


D28129: Read the new message string after rather than before

2020-03-27 Thread Harald Sitter
sitter accepted this revision.
sitter added a comment.


  Mind the comment about the +2 please.
  
  Other than that looks reasonable.

INLINE COMMENTS

> backtraceparsergdb.cpp:215
> +case BacktraceLine::Info:
> +d->m_infoLines << line.toString().mid(KCRASH_INFO_MESSAGE.size() + 
> 2);
> +break;

Please add a comment on what that +2 is, or better yet give it a var so it has 
an explicit name in code.

REPOSITORY
  R871 DrKonqi

BRANCH
  arcpatch-D28129

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

To: apol, #frameworks, broulik, sitter
Cc: plasma-devel, Orage, LeGast00n, The-Feren-OS-Dev, cblack, jraleigh, zachus, 
fbampaloukas, GB_2, ragreen, ZrenBot, ngraham, himcesjf, lesliezhai, 
ali-mohamed, jensreuterberg, abetts, sebas, apol, ahiemstra, mart


D25660: Decouple KBookmarksMenu from KActionCollection

2020-03-27 Thread Laurent Montel
mlaurent added a comment.


  In D25660#635693 , @dfaure wrote:
  
  > @mlaurent AFAICS you removed the deprecation macro completely in master, 
and left it (with 0x06) in release/20.04?
  
  
  nope or I missed to forward port in 20.04. So it's an error.
  but by default There is not some 0x06 in 20.04

REPOSITORY
  R294 KBookmarks

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

To: nicolasfella, #frameworks, dfaure
Cc: mlaurent, bcooksley, kossebau, dfaure, apol, kde-frameworks-devel, 
LeGast00n, cblack, GB_2, michaelh, ngraham, bruns


D27983: Make find-location show a magnifier on a map, to be different to mark-location

2020-03-27 Thread Noah Davis
ndavis accepted this revision.

REPOSITORY
  R266 Breeze Icons

BRANCH
  create-find-location

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

To: davidhurka, #vdg, ngraham, ndavis
Cc: ngraham, ndavis, kde-frameworks-devel, LeGast00n, cblack, GB_2, michaelh, 
bruns


D27983: Make find-location show a magnifier on a map, to be different to mark-location

2020-03-27 Thread Noah Davis
ndavis added a comment.


  Not sure how I missed this. LGTM!

REPOSITORY
  R266 Breeze Icons

BRANCH
  create-find-location

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

To: davidhurka, #vdg, ngraham, ndavis
Cc: ngraham, ndavis, kde-frameworks-devel, LeGast00n, cblack, GB_2, michaelh, 
bruns


D28323: Fix some stylesheet colors in 2 icon files

2020-03-27 Thread Noah Davis
This revision was automatically updated to reflect the committed changes.
Closed by commit R266:0b834e41640f: Fix some stylesheet colors in 2 icon files 
(authored by davidhurka, committed by ndavis).

REPOSITORY
  R266 Breeze Icons

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D28323?vs=78598=78620

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

AFFECTED FILES
  icons/status/22/TeamViewer.svg
  icons/status/22/flameshot-tray.svg

To: davidhurka, #vdg, ndavis
Cc: kde-frameworks-devel, LeGast00n, cblack, GB_2, michaelh, ngraham, bruns


D28129: Read the new message string after rather than before

2020-03-27 Thread Aleix Pol Gonzalez
This revision was automatically updated to reflect the committed changes.
Closed by commit R871:cfa43ed278c8: Read the new message string after rather 
than before (authored by apol).

REPOSITORY
  R871 DrKonqi

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D28129?vs=78627=78628

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

AFFECTED FILES
  src/backtracegenerator.cpp
  src/data/debuggers/internal/gdbrc
  src/data/debuggers/internal/lldbrc
  src/debugger.cpp
  src/debugger.h
  src/parser/backtraceline.h
  src/parser/backtraceparser.cpp
  src/parser/backtraceparser.h
  src/parser/backtraceparser_p.h
  src/parser/backtraceparsergdb.cpp
  src/parser/backtraceparsergdb.h

To: apol, #frameworks, broulik, sitter
Cc: plasma-devel, Orage, LeGast00n, The-Feren-OS-Dev, cblack, jraleigh, zachus, 
fbampaloukas, GB_2, ragreen, ZrenBot, ngraham, himcesjf, lesliezhai, 
ali-mohamed, jensreuterberg, abetts, sebas, apol, ahiemstra, mart


D20085: Expose a method to show the context menu of an applet from QML

2020-03-27 Thread Aleix Pol Gonzalez
apol abandoned this revision.

REPOSITORY
  R242 Plasma Framework (Library)

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

To: apol, #plasma, mart
Cc: kde-frameworks-devel, LeGast00n, cblack, GB_2, michaelh, ngraham, bruns


D28324: [Inotify] Remove dead/duplicate code

2020-03-27 Thread Pino Toscano
pino added inline comments.

INLINE COMMENTS

> bruns wrote in kinotify.cpp:350
> man inotify
> 
> > IN_Q_OVERFLOW
> >  Event queue overflowed (wd is -1 for this event).

then add an assert for this case, referencing the documentation?

REPOSITORY
  R293 Baloo

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

To: bruns, #baloo, ngraham
Cc: pino, kde-frameworks-devel, hurikhan77, lots0logs, LeGast00n, cblack, 
fbampaloukas, GB_2, domson, ashaposhnikov, michaelh, astippich, spoorun, 
ngraham, bruns, abrahams


D27951: Allow users to change dropAction to MoveAction through kdeglobals

2020-03-27 Thread David Faure
dfaure added a comment.


  Symlinks are a bit special, we could add a way to ask kio_file not to follow 
them.
  
  But at least it should work for regular files and directories, right?
  
  Anyhow, we don't have a kio_file result here so I guess my point is moot.

REPOSITORY
  R241 KIO

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

To: trmdi, ngraham, dfaure, meven, #vdg, davidedmundson
Cc: elvisangelaccio, davidedmundson, meven, kde-frameworks-devel, LeGast00n, 
cblack, GB_2, michaelh, ngraham, bruns


D28326: [UnindexedFileIndexer] Only mark file for content indexing when needed

2020-03-27 Thread David Edmundson
davidedmundson accepted this revision.
This revision is now accepted and ready to land.

REPOSITORY
  R293 Baloo

BRANCH
  submit

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

To: bruns, #baloo, ngraham, davidedmundson
Cc: kde-frameworks-devel, hurikhan77, lots0logs, LeGast00n, cblack, 
fbampaloukas, GB_2, domson, ashaposhnikov, michaelh, astippich, spoorun, 
ngraham, bruns, abrahams


D25660: Decouple KBookmarksMenu from KActionCollection

2020-03-27 Thread Ben Cooksley
bcooksley added a comment.


  Could this commit be the cause of 
https://build.kde.org/job/Applications/job/krdc/job/stable-kf5-qt5%20FreeBSDQt5.14/3/consoleText
  (ie. this commit is SIC?)

REPOSITORY
  R294 KBookmarks

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

To: nicolasfella, #frameworks, dfaure
Cc: bcooksley, kossebau, dfaure, apol, kde-frameworks-devel, LeGast00n, cblack, 
GB_2, michaelh, ngraham, bruns


D25660: Decouple KBookmarksMenu from KActionCollection

2020-03-27 Thread David Faure
dfaure added a comment.


  As usual, it's the too strong "no deprecated API usage" define in the apps.
  
  Fixed.

REPOSITORY
  R294 KBookmarks

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

To: nicolasfella, #frameworks, dfaure
Cc: bcooksley, kossebau, dfaure, apol, kde-frameworks-devel, LeGast00n, cblack, 
GB_2, michaelh, ngraham, bruns


D28088: Fix warnings

2020-03-27 Thread Aleix Pol Gonzalez
apol marked an inline comment as done.

REPOSITORY
  R242 Plasma Framework (Library)

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

To: apol, #frameworks
Cc: ahmadsamir, kde-frameworks-devel, LeGast00n, cblack, GB_2, michaelh, 
ngraham, bruns


D28088: Fix warnings

2020-03-27 Thread Aleix Pol Gonzalez
apol updated this revision to Diff 78630.
apol added a comment.


  add const

REPOSITORY
  R242 Plasma Framework (Library)

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D28088?vs=77795=78630

BRANCH
  master

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

AFFECTED FILES
  src/plasma/containmentactions.cpp
  src/plasma/private/storagethread.cpp
  src/scriptengines/qml/plasmoid/dropmenu.h

To: apol, #frameworks
Cc: ahmadsamir, kde-frameworks-devel, LeGast00n, cblack, GB_2, michaelh, 
ngraham, bruns


D27951: Allow users to change dropAction to MoveAction through kdeglobals

2020-03-27 Thread Tranter Madi
trmdi added a comment.


  In D27951#635596 , @dfaure wrote:
  
  > Symlinks are a bit special, we could add a way to ask kio_file not to 
follow them.
  >
  > But at least it should work for regular files and directories, right?
  >
  > Anyhow, we don't have a kio_file result here so I guess my point is moot.
  
  
  No. See this:
  
[ "UDS_NAME"="/run/media/trmdi/7E7A4CDA7A4C9137" 
"UDS_SIZE"=4607182418800017408 "UDS_DEVICE_ID"=0 "UDS_INODE"=0 
"UDS_FILE_TYPE"=20480 "UDS_ACCESS"=864 "UDS_MODIFICATION_TIME"=140181869572387 
"UDS_ACCESS_TIME"=0 "UDS_USER"="" "UDS_GROUP"="" ]
"/run/media/trmdi/7E7A4CDA7A4C9137"  -  "/dev/sda2"

[ "UDS_NAME"="/home/trmdi/Downloads" "UDS_SIZE"=4607182418800017408 
"UDS_DEVICE_ID"=0 "UDS_INODE"=0 "UDS_FILE_TYPE"=20480 "UDS_ACCESS"=864 
"UDS_MODIFICATION_TIME"=140181869572387 "UDS_ACCESS_TIME"=0 "UDS_USER"="" 
"UDS_GROUP"="" ]
"/home/thien/Downloads"  -  "/dev/sda1"

REPOSITORY
  R241 KIO

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

To: trmdi, ngraham, dfaure, meven, #vdg, davidedmundson
Cc: elvisangelaccio, davidedmundson, meven, kde-frameworks-devel, LeGast00n, 
cblack, GB_2, michaelh, ngraham, bruns


D28285: [ApplicationLauncherJob] Add way to launch KServiceAction

2020-03-27 Thread Kai Uwe Broulik
broulik added a comment.


  > KDesktopFileActions uses the name and icon from the action rather than the 
namd and icon from the service. Dunno if that's better though?
  
  I think we want to communicate to the user that "[Firefox icon] Firefox" is 
starting, not "[No icon] New incognito tab", which is why we use the service 
icon and name.

REPOSITORY
  R241 KIO

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

To: broulik, #frameworks, dfaure, davidedmundson
Cc: kde-frameworks-devel, LeGast00n, cblack, GB_2, michaelh, ngraham, bruns


Re: Problems in KWayland causes by API and ABI compatibility promises

2020-03-27 Thread Kevin Ottens
Hello,

First, a big fat disclaimer: I'm by no mean expert in what's going on the 
Wayland side, so take what I'll be writing here with truck loads of salt.

I'm jumping in mainly because it looks like you guys are in pain and I'm 
trying to lend a hand to find a way forward. It's obviously written from the 
"dealing with API overtime" point of view which includes horrible trade offs 
we get to make from time to time in KF. ;-)

On Wednesday, 25 March 2020 12:16:58 CET Vlad Zahorodnii wrote:
> On 3/24/20 4:35 PM, Aleix Pol wrote:
> > We can decide what we want for KF6 and act accordingly. If for
> > example, we were to split kwayland into kwaylandclient and
> > kwaylandserver and the latter be in plasma, we could consider putting
> > new code in KWin or a shared repository.

To be honest from the other emails I've seen in this thread I think Aleix is 
very much onto something. To me most of the pain points mentioned early in the 
thread are related to the library trying to do way too much (David's questions 
are illuminating in that regard as well).

That's why trying to reduce the API surface and to focus the library as much 
as possible would be a good thing. Since kwaylandserver seems to be really 
only useful for kwin... no need to keep it in frameworks.

> I was also thinking about splitting KWayland into KWaylandClient and
> KWaylandServer. However, later on, I realized that this is a bad idea
> because it'll make implementing new protocols more difficult and testing
> wrappers will become more difficult. In fact, I don't think that we'll
> be able to keep existing tests in the kwayland repo; we will probably
> have to drop them.

Sure, we're in a dire position so no solution will be easy. I understand the 
pain point will be the tests for kwaylandclient but maybe the situation is not 
that bad there.

My gut feeling is that the current tests are done by testing kwayland against 
itself. So it's likely easy to miss issues with those tests. Couldn't a 
compositor stub be written just for the needs of kwaylandclient and run the 
tests against it? If you go low level enough you might even be able to test 
more error cases than before. It's an opportunity right there.

The above raises a question of the amount of effort needed for such a stub 
(IOW, "how much API coverage should it provide?"). This is an obvious concern, 
and once again: the API surface matters.

Is it me or even in kwaylandclient most of it is unused or not very much used? 
>From what was mentioned in this thread it looks like the users are not that 
numerous and that they each only use a couple of types or methods in there. 
Exception to this would likely only be kwin own unit tests.

If I'm correct then next to moving kwaylandserver out, what about also moving 
everything of kwaylandclient which used only in kwin unit tests? Then that's 
less code to maintain and in turn that puts less pressure on the compositor 
stub used in the tests.

> > In fact, if we ever want to have such a kwayland server and are
> > serious about it, we'll want to be mindful about what we put there.
> > Much like any other framework, we only put things on the framework
> > when it's going to be shared rather than putting some parts of the
> > code somewhere by policy like we've been doing here.
> 
> The problem is that we can't keep KWayland stable; at least, right now.

Not saying it would be full proof but if the API shrinks as much as I'd expect 
it'd be easier to keep it stable.

> There are still things in the wild that need a protocol or something and
> as we implement those protocols, we might need some of existing wrappers
> to adapt to the new changes or rework them completely. One such example
> that comes to my mind is the explicit synchronization protocol.
> 
> I think it's a good thing to have helper classes for Wayland protocols
> that you could plug in and get a running compositor, this is a great
> idea, but I think it's way too early to promise API and ABI guarantees.

That said: I think for now it has to stay an idea, we can't have that in KF 
API not for the years to come.

So... what's the course of action I have in mind really? I mentioned dropping 
stuff and we all know we can't really drop anything yet. Here are the steps I 
propose:
 1) identify the few percents of the kwaylandclient API being used outside of 
kwin unit tests (might make sense to distinguish plasma-framework from other 
consumers BTW, we might apply different strategies for this one in case of 
roadblocks, not getting into this yet);
 2) mark all of the kwaylandclient unused API as deprecated and freeze it;
 3) write a compositor stub needed to exercise the non-deprecated API of 
kwaylandclient;
 4) port the kwaylandclient tests to the compositor stub, dropping the tests 
about deprecated API;
 5) take all of kwaylandserver + kwaylandclient and copy it to kwin (likely 
with a rename to avoid symbol clashes);
 6) mark all of kwaylandserver API deprecated and freeze it;

D28327: [Inotify] Start the MoveFrom expire timer at most once per inotify batch

2020-03-27 Thread Nathaniel Graham
ngraham accepted this revision.
This revision is now accepted and ready to land.

REPOSITORY
  R293 Baloo

BRANCH
  submit

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

To: bruns, #baloo, ngraham
Cc: kde-frameworks-devel, hurikhan77, lots0logs, LeGast00n, cblack, 
fbampaloukas, GB_2, domson, ashaposhnikov, michaelh, astippich, spoorun, 
ngraham, bruns, abrahams


KDE CI: Frameworks » kdnssd » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kdnssd/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:06 +
 Build duration:
1 min 59 sec and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5DNSSD-5.69.0.xmllogs/KF5DNSSD/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report0%
(0/1)0%
(0/24)0%
(0/24)0%
(0/794)0%
(0/357)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalssrc0%
(0/24)0%
(0/24)0%
(0/794)0%
(0/357)

KDE CI: Frameworks » knewstuff » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/knewstuff/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:06 +
 Build duration:
2 min 57 sec and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5NewStuff-5.69.0.xmlacc/KF5NewStuffCore-5.69.0.xmlacc/KF5NewStuffQuick-5.69.0.xmllogs/KF5NewStuff/5.69.0/log.txtlogs/KF5NewStuffCore/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 3 test(s), Skipped: 0 test(s), Total: 3 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report38%
(5/13)16%
(12/75)16%
(12/75)14%
(968/6945)11%
(411/3652)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(2/2)100%
(2/2)100%
(90/90)53%
(38/72)autotests.kmoretools50%
(1/2)50%
(1/2)71%
(199/279)43%
(63/148)src22%
(2/9)22%
(2/9)2%
(22/964)0%
(0/342)src.attica0%
(0/2)0%
(0/2)0%
(0/364)0%
(0/203)src.core17%
(4/23)17%
(4/23)11%
(237/2134)11%
(155/1426)src.core.jobs0%
(0/6)0%
(0/6)0%
(0/185)0%
(0/87)src.kmoretools60%
(3/5)60%
(3/5)47%
(420/895)33%
(155/470)src.qtquick0%
(0/10)0%
(0/10)0%
(0/713)0%
(0/322)src.staticxml0%
(0/1)0%
(0/1)0%
(0/168)0%
(0/140)src.ui0%
(0/8)0%
(0/8)0%
(0/750)0%
(0/307)src.upload0%
(0/1)0%
(0/1)0%
(0/124)0%
(0/50)tests0%
(0/5)0%
(0/5)0%
(0/150)0%
(0/61)tests.kmoretools0%
(0/1)0%
(0/1)0%
(0/129)0%
(0/24)

KDE CI: Frameworks » kcoreaddons » kf5-qt5 SUSEQt5.14 - Build # 1 - Unstable!

2020-03-27 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks/job/kcoreaddons/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:06 +
 Build duration:
3 min 3 sec and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5CoreAddons-5.69.0.xmllogs/KF5CoreAddons/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 1 test(s), Passed: 26 test(s), Skipped: 0 test(s), Total: 27 test(s)Failed: projectroot.autotests.kdirwatch_stat_unittest
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report91%
(10/11)86%
(80/93)86%
(80/93)76%
(6933/9116)43%
(10804/24846)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests94%
(31/33)94%
(31/33)97%
(2901/2993)49%
(6199/12730)src.desktoptojson100%
(2/2)100%
(2/2)78%
(90/115)37%
(108/290)src.lib67%
(2/3)67%
(2/3)62%
(382/621)26%
(244/924)src.lib.caching100%
(2/2)100%
(2/2)45%
(352/782)18%
(187/1054)src.lib.io75%
(9/12)75%
(9/12)66%
(869/1308)35%
(991/2821)src.lib.jobs71%
(5/7)71%
(5/7)56%
(157/278)40%
(54/134)src.lib.plugin100%
(7/7)100%
(7/7)85%
(681/800)42%
(956/2269)src.lib.randomness100%
(2/2)100%
(2/2)69%
(66/95)58%
(45/78)src.lib.text63%
(5/8)63%
(5/8)52%
(441/848)47%
(1008/2157)src.lib.util100%
(15/15)100%
(15/15)83%
(994/1191)51%
(1012/1999)tests0%
(0/2)0%
(0/2)0%
(0/85)0%
(0/390)

KDE CI: Frameworks » kcalendarcore » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kcalendarcore/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:05 +
 Build duration:
2 min 43 sec and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5CalendarCore-5.69.0.xmllogs/KF5CalendarCore/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 492 test(s), Skipped: 0 test(s), Total: 492 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report100%
(2/2)96%
(82/85)96%
(82/85)69%
(9148/13176)49%
(4227/8640)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(38/38)100%
(38/38)96%
(2757/2879)52%
(782/1512)src94%
(44/47)94%
(44/47)62%
(6391/10297)48%
(3445/7128)

KDE CI: Frameworks » kconfigwidgets » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kconfigwidgets/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:09 +
 Build duration:
10 min and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5ConfigWidgets-5.69.0.xmllogs/KF5ConfigWidgets/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 5 test(s), Skipped: 0 test(s), Total: 5 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report67%
(2/3)47%
(15/32)47%
(15/32)35%
(953/2749)25%
(324/1308)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(5/5)100%
(5/5)95%
(319/335)49%
(96/194)src53%
(10/19)53%
(10/19)29%
(634/2192)21%
(228/1090)tests0%
(0/8)0%
(0/8)0%
(0/222)0%
(0/24)

KDE CI: Frameworks » ki18n » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/ki18n/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:09 +
 Build duration:
10 min and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5I18n-5.69.0.xmllogs/KF5I18n/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 5 test(s), Skipped: 0 test(s), Total: 5 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report100%
(2/2)100%
(17/17)100%
(17/17)68%
(2040/3022)48%
(920/1929)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(5/5)100%
(5/5)92%
(424/461)52%
(196/376)src100%
(12/12)100%
(12/12)63%
(1616/2561)47%
(724/1553)

KDE CI: Frameworks » kparts » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kparts/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:10 +
 Build duration:
11 min and counting
   BUILD ARTIFACTS
  acc/KF5Parts-5.69.0.xmllogs/KF5Parts/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 3 test(s), Skipped: 0 test(s), Total: 3 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report67%
(2/3)48%
(26/54)48%
(26/54)27%
(791/2949)15%
(225/1453)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(4/4)100%
(4/4)92%
(262/286)47%
(83/178)src51%
(22/43)51%
(22/43)23%
(529/2349)12%
(142/1189)tests0%
(0/7)0%
(0/7)0%
(0/314)0%
(0/86)

KDE CI: Frameworks » kauth » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kauth/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:10 +
 Build duration:
11 min and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5Auth-5.69.0.xmllogs/KF5Auth/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 4 test(s), Skipped: 0 test(s), Total: 4 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report63%
(5/8)59%
(16/27)59%
(16/27)55%
(682/1250)41%
(258/624)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(5/5)100%
(5/5)94%
(258/274)61%
(137/226)examples0%
(0/2)0%
(0/2)0%
(0/36)0%
(0/8)src62%
(8/13)62%
(8/13)42%
(213/506)17%
(28/163)src.backends.dbus50%
(1/2)50%
(1/2)58%
(109/188)43%
(32/74)src.backends.fake0%
(0/1)0%
(0/1)0%
(0/12)100%
(0/0)src.backends.fakehelper0%
(0/1)0%
(0/1)0%
(0/14)100%
(0/0)src.backends.polkit-150%
(1/2)50%
(1/2)32%
(44/139)31%
(29/93)src.policy-gen100%
(1/1)100%
(1/1)72%
(58/81)53%
(32/60)

D28325: [Inotify] Call QFile::decode only in a single place

2020-03-27 Thread Nathaniel Graham
ngraham accepted this revision.
This revision is now accepted and ready to land.

REPOSITORY
  R293 Baloo

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

To: bruns, #baloo, ngraham
Cc: apol, kde-frameworks-devel, hurikhan77, lots0logs, LeGast00n, cblack, 
fbampaloukas, GB_2, domson, ashaposhnikov, michaelh, astippich, spoorun, 
ngraham, bruns, abrahams


KDE CI: Frameworks » kbookmarks » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kbookmarks/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:11 +
 Build duration:
15 min and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5Bookmarks-5.69.0.xmllogs/KF5Bookmarks/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 2 test(s), Skipped: 0 test(s), Total: 2 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report67%
(2/3)28%
(9/32)28%
(9/32)29%
(587/2028)20%
(244/1199)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(2/2)100%
(2/2)99%
(137/138)44%
(72/164)src24%
(7/29)24%
(7/29)24%
(450/1886)17%
(172/1035)tests0%
(0/1)0%
(0/1)0%
(0/4)100%
(0/0)

KDE CI: Frameworks » kpeople » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kpeople/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:11 +
 Build duration:
15 min and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5People-5.69.0.xmllogs/KF5People/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 3 test(s), Skipped: 0 test(s), Total: 3 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report43%
(3/7)45%
(22/49)45%
(22/49)46%
(762/1656)30%
(255/852)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(4/4)100%
(4/4)99%
(212/214)45%
(101/222)examples0%
(0/5)0%
(0/5)0%
(0/143)0%
(0/42)src71%
(10/14)71%
(10/14)57%
(461/812)32%
(142/437)src.backends73%
(8/11)73%
(8/11)89%
(89/100)55%
(12/22)src.declarative0%
(0/4)0%
(0/4)0%
(0/93)0%
(0/27)src.widgets0%
(0/10)0%
(0/10)0%
(0/279)0%
(0/98)src.widgets.plugins0%
(0/1)0%
(0/1)0%
(0/15)0%
(0/4)

KDE CI: Frameworks » kirigami » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kirigami/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:11 +
 Build duration:
14 min and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5Kirigami2-5.69.0.xmllogs/KF5Kirigami2/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_SUSEQt514 Failed: 0 test(s), Passed: 5 test(s), Skipped: 0 test(s), Total: 5 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report60%
(3/5)50%
(13/26)50%
(13/26)45%
(1393/3083)29%
(609/2111)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(1/1)100%
(1/1)100%
(1/1)100%
(0/0)examples.applicationitemapp0%
(0/1)0%
(0/1)0%
(0/8)100%
(0/0)src64%
(9/14)64%
(9/14)41%
(921/2226)27%
(390/1452)src.libkirigami50%
(3/6)50%
(3/6)73%
(471/647)39%
(219/567)src.scenegraph0%
(0/4)0%
(0/4)0%
(0/201)0%
(0/92)

KDE CI: Frameworks » kimageformats » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kimageformats/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:12 +
 Build duration:
16 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 14 test(s), Skipped: 0 test(s), Total: 14 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report100%
(3/3)85%
(17/20)85%
(17/20)49%
(1938/3962)38%
(860/2238)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(3/3)100%
(3/3)68%
(266/392)46%
(62/134)src.imageformats93%
(13/14)93%
(13/14)49%
(1668/3435)39%
(796/2064)tests33%
(1/3)33%
(1/3)3%
(4/135)5%
(2/40)

D28349: Fix Warnings

2020-03-27 Thread Méven Car
meven updated this revision to Diff 78655.
meven added a comment.


  Add an argc value check

REPOSITORY
  R244 KCoreAddons

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D28349?vs=78654=78655

BRANCH
  master

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

AFFECTED FILES
  autotests/kprocesstest_helper.cpp
  src/lib/caching/kshareddatacache.cpp
  src/lib/io/kdirwatch.cpp

To: meven, #frameworks
Cc: davidedmundson, kde-frameworks-devel, LeGast00n, cblack, GB_2, michaelh, 
ngraham, bruns


KDE CI: Frameworks » extra-cmake-modules » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/extra-cmake-modules/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:11 +
 Build duration:
16 min and counting
   JUnit Tests
  Name: projectroot Failed: 0 test(s), Passed: 19 test(s), Skipped: 0 test(s), Total: 19 test(s)Name: projectroot.tests Failed: 0 test(s), Passed: 61 test(s), Skipped: 0 test(s), Total: 61 test(s)Name: projectroot.tests.ECMAddTests Failed: 0 test(s), Passed: 2 test(s), Skipped: 0 test(s), Total: 2 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  Cobertura Coverage Report

KDE CI: Frameworks » kiconthemes » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kiconthemes/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:13 +
 Build duration:
20 min and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5IconThemes-5.69.0.xmllogs/KF5IconThemes/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 7 test(s), Skipped: 0 test(s), Total: 7 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report50%
(2/4)68%
(15/22)68%
(15/22)53%
(1484/2774)41%
(721/1763)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(7/7)100%
(7/7)99%
(504/506)49%
(188/382)src80%
(8/10)80%
(8/10)47%
(980/2105)39%
(533/1369)src.tools.kiconfinder0%
(0/1)0%
(0/1)0%
(0/17)0%
(0/6)tests0%
(0/4)0%
(0/4)0%
(0/146)0%
(0/6)

KDE CI: Frameworks » kdoctools » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kdoctools/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:13 +
 Build duration:
20 min and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5DocTools-5.69.0.xmllogs/KF5DocTools/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 2 test(s), Skipped: 0 test(s), Total: 2 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report100%
(1/1)83%
(5/6)83%
(5/6)68%
(336/491)43%
(115/267)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalssrc83%
(5/6)83%
(5/6)68%
(336/491)43%
(115/267)

KDE CI: Frameworks » ktextwidgets » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/ktextwidgets/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:12 +
 Build duration:
20 min and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5TextWidgets-5.69.0.xmllogs/KF5TextWidgets/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 5 test(s), Skipped: 0 test(s), Total: 5 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report60%
(3/5)82%
(18/22)82%
(18/22)50%
(1504/3022)39%
(552/1431)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(7/7)100%
(7/7)97%
(608/625)60%
(129/215)src.dialogs0%
(0/1)0%
(0/1)0%
(0/40)0%
(0/4)src.findreplace100%
(7/7)100%
(7/7)63%
(581/918)51%
(250/490)src.widgets67%
(4/6)67%
(4/6)22%
(315/1428)24%
(173/720)tests0%
(0/1)0%
(0/1)0%
(0/11)0%
(0/2)

D28349: Fix Warnings

2020-03-27 Thread David Edmundson
davidedmundson accepted this revision.
This revision is now accepted and ready to land.

REPOSITORY
  R244 KCoreAddons

BRANCH
  master

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

To: meven, #frameworks, davidedmundson
Cc: davidedmundson, kde-frameworks-devel, LeGast00n, cblack, GB_2, michaelh, 
ngraham, bruns


KDE CI: Frameworks » kcoreaddons » kf5-qt5 FreeBSDQt5.14 - Build # 2 - Still Unstable!

2020-03-27 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks/job/kcoreaddons/job/kf5-qt5%20FreeBSDQt5.14/2/
 Project:
kf5-qt5 FreeBSDQt5.14
 Date of build:
Fri, 27 Mar 2020 14:45:49 +
 Build duration:
2 min 31 sec and counting
   JUnit Tests
  Name: projectroot Failed: 2 test(s), Passed: 25 test(s), Skipped: 0 test(s), Total: 27 test(s)Failed: projectroot.autotests.kdirwatch_inotify_unittestFailed: projectroot.autotests.klistopenfilesjobtest_unix

KDE CI: Frameworks » syndication » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/syndication/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:14 +
 Build duration:
25 min and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5Syndication-5.69.0.xmllogs/KF5Syndication/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 3 test(s), Skipped: 0 test(s), Total: 3 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report86%
(6/7)86%
(78/91)86%
(78/91)63%
(2455/3895)32%
(2793/8833)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests83%
(5/6)83%
(5/6)65%
(106/162)38%
(212/562)src83%
(20/24)83%
(20/24)71%
(471/661)43%
(597/1390)src.atom91%
(10/11)91%
(10/11)49%
(342/700)22%
(411/1885)src.mapper100%
(16/16)100%
(16/16)90%
(454/504)51%
(362/712)src.rdf87%
(20/23)87%
(20/23)67%
(839/1244)36%
(1010/2776)src.rss270%
(7/10)70%
(7/10)42%
(243/578)14%
(201/1418)tests0%
(0/1)0%
(0/1)0%
(0/46)0%
(0/90)

KDE CI: Frameworks » kdesignerplugin » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kdesignerplugin/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:14 +
 Build duration:
24 min and counting
   BUILD ARTIFACTS
  acc/KF5DesignerPlugin-5.69.0.xml
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 2 test(s), Skipped: 0 test(s), Total: 2 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report100%
(2/2)100%
(3/3)100%
(3/3)98%
(239/243)52%
(69/132)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(2/2)100%
(2/2)100%
(139/139)49%
(56/114)src100%
(1/1)100%
(1/1)96%
(100/104)72%
(13/18)

KDE CI: Frameworks » baloo » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/baloo/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:16 +
 Build duration:
33 min and counting
   BUILD ARTIFACTS
  acc/KF5Baloo-5.69.0.xmllogs/KF5Baloo/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot.autotests Failed: 0 test(s), Passed: 4 test(s), Skipped: 0 test(s), Total: 4 test(s)Name: projectroot.autotests.unit Failed: 0 test(s), Passed: 34 test(s), Skipped: 0 test(s), Total: 34 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report43%
(10/23)68%
(116/171)68%
(116/171)59%
(6174/10381)42%
(2325/5601)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests.benchmarks100%
(2/2)100%
(2/2)100%
(58/58)100%
(22/22)autotests.integration100%
(3/3)100%
(3/3)93%
(466/500)78%
(206/264)autotests.unit.codecs100%
(3/3)100%
(3/3)100%
(70/70)64%
(23/36)autotests.unit.engine100%
(17/17)100%
(17/17)100%
(799/799)56%
(236/424)autotests.unit.file100%
(12/12)100%
(12/12)98%
(1076/1097)53%
(338/632)autotests.unit.lib100%
(6/6)100%
(6/6)99%
(408/414)60%
(96/160)src.codecs100%
(5/5)100%
(5/5)89%
(130/146)76%
(35/46)src.engine92%
(35/38)92%
(35/38)77%
(1763/2298)53%
(695/1315)src.file69%
(27/39)69%
(27/39)53%
(1011/1910)42%
(462/1105)src.file.extractor0%
(0/6)0%
(0/6)0%
(0/181)0%
(0/70)src.kioslaves.kded0%
(0/1)0%
(0/1)0%
(0/35)0%
(0/30)src.kioslaves.search0%
(0/1)0%
(0/1)0%
(0/88)0%
(0/18)src.kioslaves.tags0%
(0/1)0%
(0/1)0%
(0/274)0%
(0/231)src.kioslaves.timeline0%
(0/2)0%
(0/2)0%
(0/256)0%
(0/131)src.lib55%
(6/11)55%
(6/11)41%
(393/965)37%
(212/577)src.qml0%
(0/2)0%
(0/2)0%
(0/69)0%
(0/20)src.qml.experimental0%
(0/3)0%
(0/3)0%

KDE CI: Frameworks » frameworkintegration » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/frameworkintegration/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:15 +
 Build duration:
32 min and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5FrameworkIntegration-5.69.0.xmllogs/KF5FrameworkIntegration/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report40%
(2/5)33%
(2/6)33%
(2/6)15%
(71/459)10%
(31/302)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(1/1)100%
(1/1)92%
(24/26)50%
(4/8)src.integrationplugin0%
(0/2)0%
(0/2)0%
(0/70)0%
(0/106)src.kpackage-install-handlers.kns0%
(0/1)0%
(0/1)0%
(0/86)0%
(0/40)src.kstyle100%
(1/1)100%
(1/1)19%
(47/253)18%
(27/148)tests0%
(0/1)0%
(0/1)0%
(0/24)100%
(0/0)

KDE CI: Frameworks » oxygen-icons5 » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/oxygen-icons5/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:16 +
 Build duration:
31 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 3 test(s), Skipped: 0 test(s), Total: 3 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report100%
(1/1)100%
(4/4)100%
(4/4)77%
(60/78)57%
(26/46)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(4/4)100%
(4/4)77%
(60/78)57%
(26/46)

D28351: Fix a warning, remove outdated #pragma

2020-03-27 Thread Méven Car
meven created this revision.
meven added a reviewer: Frameworks.
Herald added a project: Frameworks.
Herald added a subscriber: kde-frameworks-devel.
meven requested review of this revision.

REPOSITORY
  R244 KCoreAddons

BRANCH
  master

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

AFFECTED FILES
  src/lib/io/kbackup.cpp
  src/lib/io/kdirwatch.cpp

To: meven, #frameworks
Cc: kde-frameworks-devel, LeGast00n, cblack, GB_2, michaelh, ngraham, bruns


D28352: [BasicIndexingJob] Remove unused include

2020-03-27 Thread Nathaniel Graham
ngraham accepted this revision.
This revision is now accepted and ready to land.

REPOSITORY
  R293 Baloo

BRANCH
  submit

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

To: bruns, #baloo, ngraham
Cc: kde-frameworks-devel, hurikhan77, lots0logs, LeGast00n, cblack, 
fbampaloukas, GB_2, domson, ashaposhnikov, michaelh, astippich, spoorun, 
ngraham, bruns, abrahams


D28352: [BasicIndexingJob] Remove unused include

2020-03-27 Thread Stefan Brüns
bruns created this revision.
bruns added reviewers: Baloo, ngraham.
Herald added projects: Frameworks, Baloo.
Herald added a subscriber: kde-frameworks-devel.
bruns requested review of this revision.

REVISION SUMMARY
  GIT_SILENT

REPOSITORY
  R293 Baloo

BRANCH
  submit

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

AFFECTED FILES
  src/file/basicindexingjob.cpp

To: bruns, #baloo, ngraham
Cc: kde-frameworks-devel, hurikhan77, lots0logs, LeGast00n, cblack, 
fbampaloukas, GB_2, domson, ashaposhnikov, michaelh, astippich, spoorun, 
ngraham, bruns, abrahams


T12855: [Breeze Icons] Get rid of redundancy in icons-dark/

2020-03-27 Thread Nathaniel Graham
ngraham added a comment.


  Ah, that was an oversight on my behalf. I changed the rating icon to be black 
to fix a bug where it becomes invisible on a selected item. I probably forgot 
to change it to be white for the dark version. :/

TASK DETAIL
  https://phabricator.kde.org/T12855

To: ngraham
Cc: ngraham, kde-frameworks-devel, davidhurka, dmenig, manueljlin, Orage, 
LeGast00n, cblack, konkinartem, ian, jguidon, Ghost6, jraleigh, fbampaloukas, 
squeakypancakes, alexde, IohannesPetros, GB_2, trickyricky26, michaelh, crozbo, 
ndavis, firef, bruns, skadinna, aaronhoneycutt, mbohlender


D27203: Don't try to open files we can't figure out where they are

2020-03-27 Thread Nathaniel Graham
ngraham added a reviewer: Plasma.

REPOSITORY
  R135 Integration for Qt applications in Plasma

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

To: apol, #frameworks, #plasma
Cc: plasma-devel, Orage, LeGast00n, The-Feren-OS-Dev, cblack, jraleigh, zachus, 
fbampaloukas, GB_2, ragreen, ZrenBot, ngraham, himcesjf, lesliezhai, 
ali-mohamed, jensreuterberg, abetts, sebas, apol, ahiemstra, mart


KDE CI: Frameworks » kdesu » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kdesu/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:05 +
 Build duration:
1 min 59 sec and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5Su-5.69.0.xmllogs/KF5Su/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report67%
(2/3)38%
(5/13)38%
(5/13)24%
(376/1595)19%
(170/900)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(1/1)100%
(1/1)100%
(40/40)50%
(8/16)src67%
(4/6)67%
(4/6)40%
(336/830)37%
(162/443)src.kdesud0%
(0/6)0%
(0/6)0%
(0/725)0%
(0/441)

KDE CI: Frameworks » knotifyconfig » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/knotifyconfig/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:05 +
 Build duration:
2 min 14 sec and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5NotifyConfig-5.69.0.xmllogs/KF5NotifyConfig/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report0%
(0/2)0%
(0/7)0%
(0/7)0%
(0/393)0%
(0/201)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalssrc0%
(0/5)0%
(0/5)0%
(0/331)0%
(0/195)tests0%
(0/2)0%
(0/2)0%
(0/62)0%
(0/6)

KDE CI: Frameworks » kpackage » kf5-qt5 SUSEQt5.14 - Build # 1 - Unstable!

2020-03-27 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks/job/kpackage/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:07 +
 Build duration:
5 min 46 sec and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5Package-5.69.0.xmllogs/KF5Package/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 1 test(s), Passed: 10 test(s), Skipped: 0 test(s), Total: 11 test(s)Failed: projectroot.autotests.testpackage_appstream
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report100%
(5/5)95%
(20/21)95%
(20/21)74%
(1641/2230)51%
(1035/2022)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(6/6)100%
(6/6)99%
(529/531)48%
(212/442)autotests.mockdepresolver100%
(1/1)100%
(1/1)78%
(14/18)58%
(7/12)src.kpackage75%
(3/4)75%
(3/4)74%
(567/763)63%
(532/843)src.kpackage.private100%
(7/7)100%
(7/7)80%
(304/382)47%
(94/199)src.kpackagetool100%
(3/3)100%
(3/3)42%
(227/536)36%
(190/526)

KDE CI: Frameworks » kcontacts » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kcontacts/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:07 +
 Build duration:
6 min 27 sec and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5Contacts-5.69.0.xmllogs/KF5Contacts/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 32 test(s), Skipped: 0 test(s), Total: 32 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report67%
(4/6)83%
(68/82)83%
(68/82)77%
(8547/11030)52%
(2990/5790)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(32/32)100%
(32/32)99%
(4274/4288)52%
(1030/1974)src82%
(31/38)82%
(31/38)65%
(3602/5566)51%
(1535/3007)src.converter100%
(2/2)100%
(2/2)73%
(331/455)57%
(221/386)src.generator0%
(0/3)0%
(0/3)0%
(0/153)0%
(0/76)src.vcardparser100%
(3/3)100%
(3/3)86%
(340/396)79%
(204/259)tests0%
(0/4)0%
(0/4)0%
(0/172)0%
(0/88)

D28349: Fix Warnings

2020-03-27 Thread Méven Car
meven created this revision.
meven added a reviewer: Frameworks.
Herald added a project: Frameworks.
Herald added a subscriber: kde-frameworks-devel.
meven requested review of this revision.

REVISION SUMMARY
  We had 10 compile warnings before.
  0 after

REPOSITORY
  R244 KCoreAddons

BRANCH
  master

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

AFFECTED FILES
  autotests/kprocesstest_helper.cpp
  src/lib/caching/kshareddatacache.cpp
  src/lib/io/kdirwatch.cpp

To: meven, #frameworks
Cc: kde-frameworks-devel, LeGast00n, cblack, GB_2, michaelh, ngraham, bruns


KDE CI: Frameworks » kwidgetsaddons » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kwidgetsaddons/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:06 +
 Build duration:
5 min 51 sec and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5WidgetsAddons-5.69.0.xmllogs/KF5WidgetsAddons/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 19 test(s), Skipped: 0 test(s), Total: 19 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report50%
(2/4)43%
(74/172)43%
(74/172)34%
(5260/15280)25%
(1884/7453)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(20/20)100%
(20/20)99%
(1677/1686)49%
(775/1572)examples.kmessagebox0%
(0/1)0%
(0/1)0%
(0/17)0%
(0/2)src47%
(54/116)47%
(54/116)29%
(3583/12444)19%
(1109/5722)tests0%
(0/35)0%
(0/35)0%
(0/1133)0%
(0/157)

KDE CI: Frameworks » purpose » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/purpose/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:06 +
 Build duration:
4 min 40 sec and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5Purpose-5.69.0.xmllogs/KF5Purpose/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 2 test(s), Skipped: 0 test(s), Total: 2 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report23%
(5/22)30%
(14/47)30%
(14/47)22%
(452/2036)18%
(172/939)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(2/2)100%
(2/2)98%
(143/146)59%
(54/92)src100%
(8/8)100%
(8/8)68%
(225/333)49%
(89/183)src.externalprocess0%
(0/2)0%
(0/2)0%
(0/137)0%
(0/98)src.fileitemactionplugin0%
(0/1)0%
(0/1)0%
(0/24)0%
(0/18)src.plugins.bluetooth0%
(0/1)0%
(0/1)0%
(0/33)0%
(0/8)src.plugins.email0%
(0/1)0%
(0/1)0%
(0/64)0%
(0/24)src.plugins.imgur0%
(0/2)0%
(0/2)0%
(0/184)0%
(0/63)src.plugins.kdeconnect0%
(0/1)0%
(0/1)0%
(0/31)0%
(0/6)src.plugins.kdeconnect_sms0%
(0/1)0%
(0/1)0%
(0/16)0%
(0/2)src.plugins.ktp-sendfile0%
(0/1)0%
(0/1)0%
(0/28)0%
(0/6)src.plugins.pastebin0%
(0/1)0%
(0/1)0%
(0/54)0%
(0/23)src.plugins.phabricator0%
(0/3)0%
(0/3)0%
(0/216)0%
(0/74)src.plugins.phabricator.quick0%
(0/5)0%
(0/5)0%
(0/93)0%
(0/48)src.plugins.phabricator.tests0%
(0/1)0%
(0/1)0%
(0/60)0%
(0/22)src.plugins.reviewboard0%
(0/3)0%
(0/3)0%
(0/229)0%
(0/70)src.plugins.reviewboard.quick0%
(0/7)0%
(0/7)0%
(0/154)0%
(0/80)src.plugins.saveas100%
(1/1)100%
(1/1)57%
(29/51)61%
(23/38)src.plugins.telegram0%
 

KDE CI: Frameworks » kjobwidgets » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kjobwidgets/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:07 +
 Build duration:
6 min 31 sec and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5JobWidgets-5.69.0.xmllogs/KF5JobWidgets/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report0%
(0/2)0%
(0/11)0%
(0/11)0%
(0/935)0%
(0/368)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalssrc0%
(0/10)0%
(0/10)0%
(0/843)0%
(0/357)tests0%
(0/1)0%
(0/1)0%
(0/92)0%
(0/11)

D28349: Fix Warnings

2020-03-27 Thread David Edmundson
davidedmundson added inline comments.

INLINE COMMENTS

> kprocesstest_helper.cpp:17
>  {
> +Q_UNUSED(argc)
>  KProcess p;

If we use argv[1]   we very much should be using argc beforehand

REPOSITORY
  R244 KCoreAddons

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

To: meven, #frameworks
Cc: davidedmundson, kde-frameworks-devel, LeGast00n, cblack, GB_2, michaelh, 
ngraham, bruns


KDE CI: Frameworks » kpty » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kpty/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:09 +
 Build duration:
9 min 58 sec and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5Pty-5.69.0.xmllogs/KF5Pty/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report100%
(2/2)100%
(7/7)100%
(7/7)78%
(443/569)52%
(116/221)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(1/1)100%
(1/1)99%
(115/116)53%
(32/60)src100%
(6/6)100%
(6/6)72%
(328/453)52%
(84/161)

KDE CI: Frameworks » kross » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kross/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:09 +
 Build duration:
10 min and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5Kross-5.69.0.xmllogs/KF5Kross/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report29%
(2/7)8%
(2/25)8%
(2/25)5%
(129/2377)4%
(57/1556)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(1/1)100%
(1/1)100%
(54/54)69%
(25/36)src.console0%
(0/1)0%
(0/1)0%
(0/55)0%
(0/20)src.core8%
(1/13)8%
(1/13)9%
(75/847)6%
(32/533)src.modules0%
(0/3)0%
(0/3)0%
(0/433)0%
(0/206)src.qts0%
(0/2)0%
(0/2)0%
(0/156)0%
(0/238)src.qts-interpreter0%
(0/2)0%
(0/2)0%
(0/145)0%
(0/112)src.ui0%
(0/3)0%
(0/3)0%
(0/687)0%
(0/411)

KDE CI: Frameworks » kcrash » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kcrash/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:08 +
 Build duration:
9 min 17 sec and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5Crash-5.69.0.xmllogs/KF5Crash/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 2 test(s), Skipped: 0 test(s), Total: 2 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report100%
(2/2)100%
(7/7)100%
(7/7)54%
(269/501)31%
(98/312)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(3/3)100%
(3/3)88%
(72/82)53%
(17/32)src100%
(4/4)100%
(4/4)47%
(197/419)29%
(81/280)

KDE CI: Frameworks » kjsembed » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kjsembed/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:07 +
 Build duration:
8 min 54 sec and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5JsEmbed-5.69.0.xmllogs/KF5JsEmbed/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report0%
(0/3)0%
(0/75)0%
(0/75)0%
(0/4626)0%
(0/2295)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsexamples.kjsconsole0%
(0/5)0%
(0/5)0%
(0/279)0%
(0/86)src.kjscmd0%
(0/1)0%
(0/1)0%
(0/58)0%
(0/34)src.kjsembed0%
(0/69)0%
(0/69)0%
(0/4289)0%
(0/2175)

KDE CI: Frameworks » kinit » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kinit/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:08 +
 Build duration:
9 min 14 sec and counting
   BUILD ARTIFACTS
  acc/KF5Init-5.69.0.xml
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report0%
(0/3)0%
(0/8)0%
(0/8)0%
(0/1925)0%
(0/1185)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalssrc0%
(0/2)0%
(0/2)0%
(0/295)0%
(0/157)src.kdeinit0%
(0/2)0%
(0/2)0%
(0/945)0%
(0/583)src.klauncher0%
(0/4)0%
(0/4)0%
(0/685)0%
(0/445)

KDE CI: Frameworks » knotifications » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/knotifications/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:07 +
 Build duration:
8 min 39 sec and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5Notifications-5.69.0.xmllogs/KF5Notifications/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report0%
(0/2)0%
(0/36)0%
(0/36)0%
(0/2385)0%
(0/1252)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalssrc0%
(0/30)0%
(0/30)0%
(0/2192)0%
(0/1226)tests0%
(0/6)0%
(0/6)0%
(0/193)0%
(0/26)

KDE CI: Frameworks » kidletime » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kidletime/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:13 +
 Build duration:
19 min and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5IdleTime-5.69.0.xmllogs/KF5IdleTime/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report0%
(0/4)0%
(0/9)0%
(0/9)0%
(0/380)0%
(0/204)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsexamples0%
(0/2)0%
(0/2)0%
(0/28)0%
(0/6)src0%
(0/5)0%
(0/5)0%
(0/191)0%
(0/121)src.plugins.xscreensaver0%
(0/1)0%
(0/1)0%
(0/23)0%
(0/2)src.plugins.xsync0%
(0/1)0%
(0/1)0%
(0/138)0%
(0/75)

KDE CI: Frameworks » kcodecs » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kcodecs/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:12 +
 Build duration:
19 min and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5Codecs-5.69.0.xmllogs/KF5Codecs/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 6 test(s), Skipped: 0 test(s), Total: 6 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report100%
(3/3)85%
(50/59)85%
(50/59)76%
(2926/3825)59%
(1308/2199)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(6/6)100%
(6/6)99%
(662/669)61%
(113/184)src81%
(13/16)81%
(13/16)74%
(1488/2006)62%
(835/1338)src.probers84%
(31/37)84%
(31/37)67%
(776/1150)53%
(360/677)

KDE CI: Frameworks » kitemmodels » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kitemmodels/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:14 +
 Build duration:
23 min and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5ItemModels-5.69.0.xmllogs/KF5ItemModels/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 14 test(s), Skipped: 0 test(s), Total: 14 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report67%
(4/6)60%
(49/81)60%
(49/81)73%
(6826/9359)57%
(3066/5366)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(16/16)100%
(16/16)99%
(2616/2633)61%
(1160/1889)autotests.proxymodeltestsuite67%
(12/18)67%
(12/18)69%
(1757/2543)54%
(651/1211)src.core82%
(18/22)82%
(18/22)80%
(2370/2961)65%
(1237/1908)src.qml100%
(3/3)100%
(3/3)58%
(83/144)35%
(18/52)tests0%
(0/1)0%
(0/1)0%
(0/23)0%
(0/8)tests.proxymodeltestapp0%
(0/21)0%
(0/21)0%
(0/1055)0%
(0/298)

KDE CI: Frameworks » kactivities » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kactivities/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:13 +
 Build duration:
24 min and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5Activities-5.69.0.xmllogs/KF5Activities/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report0%
(0/8)0%
(0/33)0%
(0/33)0%
(0/1533)0%
(0/1562)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests.common0%
(0/2)0%
(0/2)0%
(0/46)0%
(0/86)autotests.core0%
(0/4)0%
(0/4)0%
(0/185)0%
(0/422)src.cli0%
(0/2)0%
(0/2)0%
(0/182)0%
(0/150)src.common.dbus0%
(0/2)0%
(0/2)0%
(0/29)0%
(0/4)src.imports0%
(0/5)0%
(0/5)0%
(0/327)0%
(0/159)src.lib0%
(0/11)0%
(0/11)0%
(0/613)0%
(0/709)src.utils0%
(0/5)0%
(0/5)0%
(0/95)0%
(0/24)tests.activities-model0%
(0/2)0%
(0/2)0%
(0/56)0%
(0/8)

KDE CI: Frameworks » kxmlgui » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kxmlgui/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:14 +
 Build duration:
25 min and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5XmlGui-5.69.0.xmllogs/KF5XmlGui/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 5 test(s), Skipped: 0 test(s), Total: 5 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report40%
(2/5)44%
(34/77)44%
(34/77)42%
(4100/9673)34%
(1808/5297)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(7/7)100%
(7/7)99%
(1389/1400)48%
(428/888)src50%
(27/54)50%
(27/54)37%
(2711/7358)32%
(1380/4284)src.ksendbugmail0%
(0/4)0%
(0/4)0%
(0/271)0%
(0/67)tests0%
(0/10)0%
(0/10)0%
(0/584)0%
(0/46)tests.krichtexteditor0%
(0/2)0%
(0/2)0%
(0/60)0%
(0/12)

KDE CI: Frameworks » kdewebkit » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kdewebkit/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:14 +
 Build duration:
27 min and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5WebKit-5.69.0.xmllogs/KF5WebKit/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report0%
(0/1)0%
(0/6)0%
(0/6)0%
(0/752)0%
(0/709)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalssrc0%
(0/6)0%
(0/6)0%
(0/752)0%
(0/709)

KDE CI: Frameworks » kio » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kio/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:12 +
 Build duration:
27 min and counting
   BUILD ARTIFACTS
  acc/KF5KIO-5.69.0.xmllogs/KF5KIO/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 55 test(s), Skipped: 0 test(s), Total: 55 test(s)Name: projectroot.autotests Failed: 0 test(s), Passed: 6 test(s), Skipped: 0 test(s), Total: 6 test(s)Name: projectroot.src.ioslaves.trash Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot.src.kpasswdserver Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report67%
(24/36)67%
(276/412)67%
(276/412)56%
(35289/62556)40%
(17806/43974)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(60/60)100%
(60/60)96%
(9989/10457)47%
(4617/9870)autotests.http100%
(5/5)100%
(5/5)99%
(582/583)65%
(88/136)autotests.kcookiejar100%
(1/1)100%
(1/1)91%
(179/197)72%
(49/68)src100%
(1/1)100%
(1/1)86%
(6/7)67%
(4/6)src.core88%
(105/119)88%
(105/119)60%
(8747/14649)51%
(4551/8837)src.core.kssl100%
(1/1)100%
(1/1)40%
(35/88)50%
(3/6)src.filewidgets68%
(26/38)68%
(26/38)56%
(4689/8336)43%
(2076/4812)src.gui100%
(5/5)100%
(5/5)81%
(328/407)58%
(163/280)src.ioslaves.file100%
(7/7)100%
(7/7)55%
(711/1286)40%
(418/1036)src.ioslaves.file.kauth0%
(0/2)0%
(0/2)0%
(0/168)0%
(0/89)src.ioslaves.ftp100%
(2/2)100%
(2/2)47%
(645/1372)37%
(525/1420)src.ioslaves.help0%
(0/5)0%
(0/5)0%
(0/247)0%
(0/148)src.ioslaves.http88%
(7/8)88%
(7/8)42%
(1796/4286)36%
(1309/3628)src.ioslaves.http.kcookiejar40%
(2/5)40%
(2/5)48%
(634/1333)56%
(578/1029)src.ioslaves.remote100%
(2/2)100%
(2/2)27%
(73/267)8%
(14/184)src.ioslaves.remote.kdedmodule0%
(0/2)0%
(0/2)0%

KDE CI: Frameworks » kholidays » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kholidays/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:17 +
 Build duration:
33 min and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5Holidays-5.69.0.xmllogs/KF5Holidays/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 5 test(s), Skipped: 0 test(s), Total: 5 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report80%
(4/5)88%
(15/17)88%
(15/17)71%
(1577/2225)59%
(858/1462)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(5/5)100%
(5/5)99%
(341/343)63%
(80/128)src100%
(7/7)100%
(7/7)78%
(621/797)70%
(472/675)src.declarative0%
(0/2)0%
(0/2)0%
(0/28)0%
(0/8)src.parsers100%
(2/2)100%
(2/2)45%
(318/705)34%
(137/406)src.parsers.plan2100%
(1/1)100%
(1/1)84%
(297/352)69%
(169/245)

KDE CI: Frameworks » khtml » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/khtml/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:15 +
 Build duration:
33 min and counting
   BUILD ARTIFACTS
  acc/KF5KHtml-5.69.0.xmllogs/KF5KHtml/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 2 test(s), Skipped: 0 test(s), Total: 2 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report58%
(15/26)9%
(57/610)9%
(57/610)3%
(2377/92566)2%
(2205/143316)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(2/2)100%
(2/2)93%
(50/54)48%
(21/44)src41%
(12/29)41%
(12/29)10%
(893/8679)4%
(697/18401)src.css9%
(2/22)9%
(2/22)0%
(20/7603)0%
(8/11768)src.dom15%
(6/39)15%
(6/39)1%
(34/6302)0%
(14/4726)src.ecma2%
(1/46)2%
(1/46)0%
(3/9275)0%
(0/17926)src.editing29%
(2/7)29%
(2/7)1%
(18/1958)0%
(5/4266)src.html0%
(0/49)0%
(0/49)0%
(0/10860)0%
(0/16059)src.imload11%
(3/28)11%
(3/28)3%
(23/773)2%
(14/619)src.imload.decoders80%
(4/5)80%
(4/5)2%
(13/598)1%
(8/654)src.java0%
(0/12)0%
(0/12)0%
(0/1371)0%
(0/2841)src.kmultipart0%
(0/3)0%
(0/3)0%
(0/297)0%
(0/405)src.misc38%
(10/26)38%
(10/26)23%
(821/3628)14%
(696/4979)src.platform0%
(0/1)0%
(0/1)0%
(0/2)100%
(0/0)src.platform.graphics0%
(0/16)0%
(0/16)0%
(0/517)0%
(0/286)src.platform.graphics.qt0%
(0/7)0%
(0/7)0%
(0/225)0%
(0/176)src.platform.text0%
(0/1)0%
(0/1)0%
(0/7)0%
(0/4)src.rendering5%
(5/93)5%
(5/93)0%
(19/23308)0%
(4/32272)src.svg1%
(1/146)1%
(1/146)7%
 

KDE CI: Frameworks » kguiaddons » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kguiaddons/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:18 +
 Build duration:
33 min and counting
   BUILD ARTIFACTS
  acc/KF5GuiAddons-5.69.0.xmllogs/KF5GuiAddons/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 3 test(s), Skipped: 0 test(s), Total: 3 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report67%
(4/6)45%
(9/20)45%
(9/20)38%
(469/1221)36%
(236/664)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(3/3)100%
(3/3)99%
(195/196)67%
(91/136)src.colors60%
(3/5)60%
(3/5)38%
(120/318)34%
(47/138)src.fonts0%
(0/1)0%
(0/1)0%
(0/38)0%
(0/26)src.text50%
(1/2)50%
(1/2)48%
(97/203)51%
(83/164)src.util33%
(2/6)33%
(2/6)16%
(57/350)9%
(15/166)tests0%
(0/3)0%
(0/3)0%
(0/116)0%
(0/34)

KDE CI: Frameworks » networkmanager-qt » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/networkmanager-qt/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:16 +
 Build duration:
33 min and counting
   BUILD ARTIFACTS
  acc/KF5NetworkManagerQt-5.69.0.xmllogs/KF5NetworkManagerQt/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 3 test(s), Skipped: 0 test(s), Total: 3 test(s)Name: projectroot.autotests Failed: 0 test(s), Passed: 37 test(s), Skipped: 0 test(s), Total: 37 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report100%
(6/6)53%
(164/311)53%
(164/311)58%
(8150/14126)36%
(1960/5410)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(3/3)100%
(3/3)100%
(239/239)47%
(108/232)autotests.settings100%
(37/37)100%
(37/37)99%
(1907/1915)76%
(254/336)src25%
(26/102)25%
(26/102)26%
(966/3646)21%
(418/1966)src.dbus20%
(16/80)20%
(16/80)9%
(86/920)100%
(0/0)src.fakenetwork75%
(6/8)75%
(6/8)75%
(502/673)46%
(52/114)src.settings94%
(76/81)94%
(76/81)66%
(4450/6733)41%
(1128/2762)

KDE CI: Frameworks » breeze-icons » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/breeze-icons/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:17 +
 Build duration:
33 min and counting
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 4 test(s), Skipped: 0 test(s), Total: 4 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report100%
(2/2)100%
(6/6)100%
(6/6)78%
(239/305)60%
(110/184)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsdefault100%
(1/1)100%
(1/1)73%
(40/55)56%
(10/18)autotests100%
(5/5)100%
(5/5)80%
(199/250)60%
(100/166)

KDE CI: Frameworks » kwayland » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kwayland/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:18 +
 Build duration:
37 min and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5Wayland-5.69.0.xmllogs/KF5Wayland/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot.autotests Failed: 0 test(s), Passed: 47 test(s), Skipped: 0 test(s), Total: 47 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report63%
(5/8)90%
(244/272)90%
(244/272)85%
(27731/32767)53%
(11167/21009)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests.client100%
(43/43)100%
(43/43)99%
(12604/12679)50%
(6637/13173)autotests.server100%
(6/6)100%
(6/6)99%
(518/521)50%
(233/468)src.client96%
(73/76)96%
(73/76)85%
(6357/7491)65%
(1836/2834)src.compat100%
(2/2)100%
(2/2)100%
(81/81)100%
(0/0)src.server95%
(120/126)95%
(120/126)83%
(8171/9796)63%
(2461/3903)src.tools0%
(0/2)0%
(0/2)0%
(0/785)0%
(0/302)src.tools.testserver0%
(0/3)0%
(0/3)0%
(0/119)0%
(0/14)tests0%
(0/14)0%
(0/14)0%
(0/1295)0%
(0/315)

KDE CI: Frameworks » ktexteditor » kf5-qt5 SUSEQt5.14 - Build # 1 - Unstable!

2020-03-27 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks/job/ktexteditor/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:15 +
 Build duration:
38 min and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5TextEditor-5.69.0.xmllogs/KF5TextEditor/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 3 test(s), Passed: 59 test(s), Skipped: 0 test(s), Total: 62 test(s)Failed: projectroot.autotests.bug313759Failed: projectroot.autotests.kateindenttest_testAdaFailed: projectroot.autotests.kateindenttest_testPascalName: projectroot.autotests.src Failed: 0 test(s), Passed: 5 test(s), Skipped: 0 test(s), Total: 5 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report79%
(22/28)87%
(260/298)87%
(260/298)67%
(32994/49187)49%
(14794/30096)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests.src97%
(37/38)97%
(37/38)93%
(4785/5127)49%
(1812/3680)autotests.src.vimode100%
(9/9)100%
(9/9)99%
(5526/5568)58%
(984/1708)src.buffer88%
(15/17)88%
(15/17)89%
(1677/1892)74%
(1082/1472)src.completion100%
(11/11)100%
(11/11)57%
(1785/3131)42%
(1008/2423)src.completion.expandingtree100%
(3/3)100%
(3/3)40%
(182/457)21%
(73/340)src.dialogs0%
(0/4)0%
(0/4)0%
(0/855)0%
(0/180)src.document100%
(4/4)100%
(4/4)61%
(1934/3176)48%
(1417/2977)src.export0%
(0/4)0%
(0/4)0%
(0/121)0%
(0/156)src.include.ktexteditor93%
(14/15)93%
(14/15)84%
(187/222)55%
(125/226)src.inputmode100%
(8/8)100%
(8/8)63%
(192/304)51%
(39/77)src.mode88%
(7/8)88%
(7/8)36%
(378/1050)16%
(146/897)src.part0%
(0/1)0%
(0/1)0%
(0/7)100%
(0/0)src.printing0%
(0/4)0%
(0/4)0%
(0/862)0%
(0/278)src.render100%
(7/7)100%
(7/7)77%
(947/1224)67%
(612/916)src.schema29%
(2/7)29%
(2/7)1%
(19/1468)1%
(6/625)src.script100%
(16/16)100%
(16/16)67%
(698/1038)53%

KDE CI: Frameworks » kcoreaddons » kf5-qt5 SUSEQt5.14 - Build # 2 - Fixed!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kcoreaddons/job/kf5-qt5%20SUSEQt5.14/2/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:45:48 +
 Build duration:
31 min and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5CoreAddons-5.69.0.xmlcompat_reports/KF5CoreAddons_compat_report.htmllogs/KF5CoreAddons/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 27 test(s), Skipped: 0 test(s), Total: 27 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report91%
(10/11)86%
(80/93)86%
(80/93)76%
(6933/9120)43%
(10802/24851)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests94%
(31/33)94%
(31/33)97%
(2901/2996)49%
(6197/12734)src.desktoptojson100%
(2/2)100%
(2/2)78%
(90/115)37%
(108/290)src.lib67%
(2/3)67%
(2/3)62%
(382/621)26%
(244/924)src.lib.caching100%
(2/2)100%
(2/2)45%
(352/782)18%
(187/1054)src.lib.io75%
(9/12)75%
(9/12)66%
(869/1309)35%
(991/2822)src.lib.jobs71%
(5/7)71%
(5/7)56%
(157/278)40%
(54/134)src.lib.plugin100%
(7/7)100%
(7/7)85%
(681/800)42%
(956/2269)src.lib.randomness100%
(2/2)100%
(2/2)69%
(66/95)58%
(45/78)src.lib.text63%
(5/8)63%
(5/8)52%
(441/848)47%
(1008/2157)src.lib.util100%
(15/15)100%
(15/15)83%
(994/1191)51%
(1012/1999)tests0%
(0/2)0%
(0/2)0%
(0/85)0%
(0/390)

D28295: Introduce KNotificationJobUiDelegate

2020-03-27 Thread Kai Uwe Broulik
broulik added a dependent revision: D28347: Port services and shell runner away 
from KRun.

REPOSITORY
  R289 KNotifications

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

To: broulik, #frameworks, nicolasfella, dfaure
Cc: kde-frameworks-devel, LeGast00n, cblack, GB_2, michaelh, ngraham, bruns


D28326: [UnindexedFileIndexer] Only mark file for content indexing when needed

2020-03-27 Thread Nathaniel Graham
ngraham accepted this revision.

REPOSITORY
  R293 Baloo

BRANCH
  submit

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

To: bruns, #baloo, ngraham, davidedmundson
Cc: kde-frameworks-devel, hurikhan77, lots0logs, LeGast00n, cblack, 
fbampaloukas, GB_2, domson, ashaposhnikov, michaelh, astippich, spoorun, 
ngraham, bruns, abrahams


KDE CI: Frameworks » kunitconversion » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kunitconversion/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:06 +
 Build duration:
4 min 42 sec and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5UnitConversion-5.69.0.xmllogs/KF5UnitConversion/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 3 test(s), Skipped: 0 test(s), Total: 3 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report100%
(2/2)100%
(37/37)100%
(37/37)96%
(3736/3895)54%
(219/403)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(3/3)100%
(3/3)100%
(128/128)53%
(53/100)src100%
(34/34)100%
(34/34)96%
(3608/3767)55%
(166/303)

KDE CI: Frameworks » bluez-qt » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/bluez-qt/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:06 +
 Build duration:
5 min 16 sec and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5BluezQt-5.69.0.xmllogs/KF5BluezQt/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 14 test(s), Skipped: 0 test(s), Total: 14 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report50%
(3/6)56%
(70/124)56%
(70/124)54%
(3642/6735)32%
(1555/4806)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(15/15)100%
(15/15)96%
(1730/1796)38%
(1041/2756)autotests.fakebluez0%
(0/21)0%
(0/21)0%
(0/850)0%
(0/268)src79%
(49/62)79%
(49/62)55%
(1571/2876)38%
(495/1300)src.imports75%
(6/8)75%
(6/8)77%
(341/443)40%
(19/47)tests0%
(0/5)0%
(0/5)0%
(0/245)0%
(0/64)tools.bluezapi2qt0%
(0/13)0%
(0/13)0%
(0/525)0%
(0/371)

KDE CI: Frameworks » karchive » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/karchive/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:06 +
 Build duration:
3 min 55 sec and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5Archive-5.69.0.xmllogs/KF5Archive/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 5 test(s), Skipped: 0 test(s), Total: 5 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report67%
(2/3)78%
(28/36)78%
(28/36)78%
(4393/5615)54%
(1892/3498)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(6/6)100%
(6/6)99%
(1236/1243)52%
(557/1065)src88%
(22/25)88%
(22/25)77%
(3157/4077)59%
(1335/2261)tests0%
(0/5)0%
(0/5)0%
(0/295)0%
(0/172)

KDE CI: Frameworks » kconfig » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kconfig/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:07 +
 Build duration:
8 min 21 sec and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5Config-5.69.0.xmllogs/KF5Config/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 13 test(s), Skipped: 0 test(s), Total: 13 test(s)Name: projectroot.autotests Failed: 0 test(s), Passed: 27 test(s), Skipped: 0 test(s), Total: 27 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report86%
(6/7)91%
(82/90)91%
(82/90)79%
(7314/9211)59%
(3737/6376)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(15/15)100%
(15/15)99%
(2014/2025)52%
(834/1619)autotests.kconfig_compiler97%
(29/30)97%
(29/30)92%
(300/327)45%
(100/222)src.core88%
(23/26)88%
(23/26)69%
(2504/3618)56%
(1223/2171)src.gui71%
(5/7)71%
(5/7)62%
(455/733)53%
(194/363)src.kconf_update100%
(2/2)100%
(2/2)71%
(421/592)55%
(249/456)src.kconfig_compiler100%
(8/8)100%
(8/8)88%
(1620/1833)81%
(1137/1407)src.kreadconfig0%
(0/2)0%
(0/2)0%
(0/83)0%
(0/138)

KDE CI: Frameworks » modemmanager-qt » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/modemmanager-qt/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:06 +
 Build duration:
7 min 55 sec and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5ModemManagerQt-5.69.0.xmllogs/KF5ModemManagerQt/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 10 test(s), Skipped: 0 test(s), Total: 10 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report100%
(4/4)77%
(88/114)77%
(88/114)76%
(3730/4893)60%
(1044/1739)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(10/10)100%
(10/10)100%
(1007/1007)58%
(374/644)src73%
(40/55)73%
(40/55)63%
(1375/2196)56%
(506/909)src.dbus72%
(26/36)72%
(26/36)48%
(241/497)100%
(0/0)src.fakemodem92%
(12/13)92%
(12/13)93%
(1107/1193)88%
(164/186)

KDE CI: Frameworks » kfilemetadata » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kfilemetadata/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:07 +
 Build duration:
7 min 48 sec and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5FileMetaData-5.69.0.xmllogs/KF5FileMetaData/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 20 test(s), Skipped: 0 test(s), Total: 20 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report80%
(4/5)97%
(60/62)97%
(60/62)86%
(4030/4666)48%
(5414/11241)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(19/19)100%
(19/19)98%
(1398/1427)49%
(2726/5569)src96%
(27/28)96%
(27/28)83%
(1472/1778)47%
(653/1378)src.extractors100%
(13/13)100%
(13/13)78%
(952/1225)46%
(1631/3539)src.writers100%
(1/1)100%
(1/1)99%
(208/210)54%
(404/749)tests0%
(0/1)0%
(0/1)0%
(0/26)0%
(0/6)

KDE CI: Frameworks » plasma-framework » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/plasma-framework/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:07 +
 Build duration:
7 min 52 sec and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5Plasma-5.69.0.xmlacc/KF5PlasmaQuick-5.69.0.xmllogs/KF5Plasma/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 11 test(s), Skipped: 0 test(s), Total: 11 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report44%
(8/18)36%
(45/126)36%
(45/126)35%
(4631/13360)26%
(2525/9714)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests92%
(11/12)92%
(11/12)95%
(867/916)52%
(439/852)src.declarativeimports.calendar0%
(0/6)0%
(0/6)0%
(0/472)0%
(0/245)src.declarativeimports.core44%
(7/16)44%
(7/16)34%
(775/2309)26%
(395/1499)src.declarativeimports.plasmacomponents0%
(0/6)0%
(0/6)0%
(0/518)0%
(0/207)src.declarativeimports.plasmaextracomponents0%
(0/3)0%
(0/3)0%
(0/42)0%
(0/22)src.declarativeimports.platformcomponents0%
(0/3)0%
(0/3)0%
(0/59)0%
(0/14)src.declarativeimports.platformcomponents.utils0%
(0/2)0%
(0/2)0%
(0/14)0%
(0/2)src.plasma45%
(10/22)45%
(10/22)43%
(1533/3567)33%
(954/2894)src.plasma.packagestructure43%
(3/7)43%
(3/7)36%
(49/137)42%
(5/12)src.plasma.private39%
(7/18)39%
(7/18)48%
(750/1578)37%
(384/1045)src.plasma.scripting33%
(1/3)33%
(1/3)12%
(20/173)7%
(7/105)src.plasmapkg0%
(0/1)0%
(0/1)0%
(0/45)0%
(0/40)src.plasmaquick38%
(5/13)38%
(5/13)29%
(606/2086)19%
(336/1745)src.plasmaquick.private50%
(1/2)50%
(1/2)29%
(31/106)36%
(5/14)src.scriptengines.qml.plasmoid0%
(0/7)0%
(0/7)0%
(0/1183)0%
(0/994)tests.dpi0%
(0/2)0%
(0/2)0%
(0/21)0%
(0/2)tests.kplugins0%
(0/2)0%
 

KDE CI: Frameworks » qqc2-desktop-style » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/qqc2-desktop-style/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:07 +
 Build duration:
7 min 14 sec and counting
   BUILD ARTIFACTS
  acc/KF5QQC2DeskopStyle-5.69.0.xmlacc/KF5QQC2DesktopStyle-5.69.0.xml
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report0%
(0/2)0%
(0/9)0%
(0/9)0%
(0/1527)0%
(0/933)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalskirigami-plasmadesktop-integration0%
(0/4)0%
(0/4)0%
(0/157)0%
(0/54)plugin0%
(0/5)0%
(0/5)0%
(0/1370)0%
(0/879)

KDE CI: Frameworks » prison » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/prison/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:10 +
 Build duration:
12 min and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5Prison-5.69.0.xmllogs/KF5Prison/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 3 test(s), Skipped: 0 test(s), Total: 3 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report40%
(2/5)46%
(13/28)46%
(13/28)58%
(951/1640)44%
(431/972)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(3/3)100%
(3/3)98%
(374/382)67%
(75/112)src.lib56%
(10/18)56%
(10/18)57%
(577/1010)49%
(356/728)src.quick0%
(0/3)0%
(0/3)0%
(0/77)0%
(0/32)src.tools0%
(0/1)0%
(0/1)0%
(0/52)0%
(0/62)tests0%
(0/3)0%
(0/3)0%
(0/119)0%
(0/38)

KDE CI: Frameworks » kjs » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kjs/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:10 +
 Build duration:
11 min and counting
   BUILD ARTIFACTS
  acc/KF5JS-5.69.0.xml
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report75%
(6/8)74%
(99/134)74%
(99/134)28%
(4624/16464)16%
(1510/9439)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests50%
(1/2)50%
(1/2)46%
(139/304)23%
(71/311)src.kjs66%
(61/92)66%
(61/92)19%
(2582/13740)10%
(830/8255)src.kjs.api100%
(8/8)100%
(8/8)84%
(324/387)59%
(41/70)src.kjs.bytecode0%
(0/1)0%
(0/1)0%
(0/3)100%
(0/0)src.kjs.bytecode.generator100%
(12/12)100%
(12/12)92%
(870/943)86%
(390/452)src.wtf94%
(16/17)94%
(16/17)73%
(704/960)58%
(175/300)src.wtf.unicode.libc100%
(1/1)100%
(1/1)31%
(5/16)38%
(3/8)tests0%
(0/1)0%
(0/1)0%
(0/111)0%
(0/43)

KDE CI: Frameworks » kxmlrpcclient » kf5-qt5 SUSEQt5.14 - Build # 1 - Successful!

2020-03-27 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kxmlrpcclient/job/kf5-qt5%20SUSEQt5.14/1/
 Project:
kf5-qt5 SUSEQt5.14
 Date of build:
Fri, 27 Mar 2020 14:22:09 +
 Build duration:
11 min and counting
   BUILD ARTIFACTS
  abi-compatibility-results.yamlacc/KF5XmlRpcClient-5.69.0.xmllogs/KF5XmlRpcClient/5.69.0/log.txt
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot Failed: 0 test(s), Passed: 2 test(s), Skipped: 0 test(s), Total: 2 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report100%
(2/2)100%
(5/5)100%
(5/5)73%
(297/405)55%
(101/182)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(2/2)100%
(2/2)100%
(136/136)53%
(21/40)src100%
(3/3)100%
(3/3)60%
(161/269)56%
(80/142)

  1   2   >