Gitlab Bugzilla integration

2022-01-07 Thread Ben Cooksley
Hi all,

This afternoon work has been completed to better link Gitlab with Bugzilla,
allowing people to get from Gitlab more quickly to Bugzilla and also
enabling us to link CCBUG/BUG references in commits, issues and merge
requests from Gitlab over to Bugzilla.

This functionality can be seen in action on
https://invent.kde.org/graphics/digikam/-/commit/7ca7bf03b11ae72842006af8a66ed02894a4a605
(note that content posted prior to this being enabled may not feature links
due to caching in Gitlab)

This integration does not change in any way the use of Gitlab Issues, which
continue to remain intended for contributor collaboration and project
planning.

Use of this functionality requires the setup of some metadata within
sysadmin/repo-metadata which a number of projects have already completed.
Once added it will be synced to Gitlab overnight and will become available
the next day.

Thanks,
Ben Cooksley
KDE Sysadmin


Gitlab Bugzilla integration

2022-01-07 Thread Ben Cooksley
Hi all,

This afternoon work has been completed to better link Gitlab with Bugzilla,
allowing people to get from Gitlab more quickly to Bugzilla and also
enabling us to link CCBUG/BUG references in commits, issues and merge
requests from Gitlab over to Bugzilla.

This functionality can be seen in action on
https://invent.kde.org/graphics/digikam/-/commit/7ca7bf03b11ae72842006af8a66ed02894a4a605
(note that content posted prior to this being enabled may not feature links
due to caching in Gitlab)

This integration does not change in any way the use of Gitlab Issues, which
continue to remain intended for contributor collaboration and project
planning.

Use of this functionality requires the setup of some metadata within
sysadmin/repo-metadata which a number of projects have already completed.
Once added it will be synced to Gitlab overnight and will become available
the next day.

Thanks,
Ben Cooksley
KDE Sysadmin


Re: Season of KDE Proposal: Rust wrapper for KConfig

2022-01-07 Thread Ayush Singh
On Sat, Jan 8, 2022 at 7:54 AM Aleix Pol  wrote:
>
> On Thu, Jan 6, 2022 at 8:27 PM Ayush Singh  wrote:
> >
> > I am a University student and the author of the rust crate ki18n. This 
> > crate allows using the KI18n Framework from Rust and can be used in 
> > conjunction with the qmetaobject crate to allow writing QML applications 
> > for KDE using Rust.
> >
> > The Proposal for my project is to create a rust wrapper for the KConfig KDE 
> > Framework. With this crate present, it will be possible to create a 
> > QML/Kirigami + Rust application without C++. I already have some other Rust 
> > crates ready to help make the wrapper.
> >
> > Currently, the primary GUI solution for creating Rust applications is 
> > GTK-rs. If Rust wrappers of at least the essential parts of KDE are 
> > present, it can become a viable toolkit for GUI development in Rust. If 
> > this project is done as part of the Season of KDE, it might also help to 
> > inform people about crates like qmetaobject, which works almost flawlessly 
> > to create QML + Rust applications.
> >
> > I am looking for someone to mentor my project. The mentor does not need to 
> > have Rust skills but should be familiar with KConfig. I haven't used 
> > KConfig much and might miss important parts of the Framework. I would also 
> > like to make the Bindings ergonomic and would need someone who has a better 
> > understanding of the Framework.
> >
> > My goal with this project is to increase the use of Rust in KDE as a whole. 
> > But for that to happen, we first need a base to allow people to start 
> > seeing KDE Frameworks as viable for Rust-based GUI.
> >
> > Here is my alternate email to contact me directly: ayushsingh1...@gmail.com
> >
> > Thank You
>
> Rust sure looks interesting but I wonder whether having bindings for a
> framework will make applications suddenly pop.
>
> Is there any KDE project that would be furthered by having (and
> maintaining) these bindings?
>
> Aleix

Having Rust bindings will not really make applications pop up suddenly
(at least not according to me). However, they will allow pre-existing
Rust KDE applications (like [Ikona](https://invent.kde.org/sdk/ikona)
and [Angelfish](https://invent.kde.org/plasma-mobile/angelfish)) to
migrate more code to Rust if they desire to do so.

Having said that, it is only true in the short term. Last year when I
was not as familiar with KDE Frameworks and qmetaobject, I tried to
find a way to write KDE Application in Rust. I came across Rust Qt
Binding Generator but I decided not to use it since it meant I had to
maintain a JSON file on top of everything else. It might not seem like
a big thing in big projects but it is a big commitment for small
applications which people like to create when they are not really
invested in technology. I also came across qmetaobject and it actually
was quite good. However, most KDE applications used Kirigami and KI18n
at least, so it while it made creating QML + Rust applications
possible, it was still difficult to create an application specifically
for KDE. In the end, I ended up moving on since I did not have the
technical skills to write the C++ bindings myself at the time and
there didn't seem to be much interest from the KDE side in Rust
either.

However, after seeing the work on GTK-rs with GTK4, I was once again
decided to give Rust + KDE development a try, but with one major
difference. I decided that if something does not already exist, I will
simply write it myself. And that's how I ended up with writing
bindings for KI18n since it is literally one of the 3 packages that
are present in the Kirigami Getting Started guide.

The reason I am repeating this story is that I found out something as
I was searching to find a mentor for my project. People from the
Season of KDE team directed me to message in #kde-rust channel to find
a mentor. However, they in turn directed me back to the #kde-soc team
to find a mentor. There were many people who found my proposal
interesting but in the end, the interested people weren't really able
to mentor it. The reason they gave is that there is not much Rust in
KDE. And well, I think I know the reason why now.

1. It is hard to manually use C++ from Rust. There are crates that
help a lot, like rust-cpp and Google's autocxx. However, once you
start passing data from C++ to Rust and vice versa, things become a
mess. There is a lot of unsafe involved and unless someone has a very
good understanding of both Rust and C++ memory models, it is pretty
much not possible to create anything halfway decent. This means
currently, the ceiling for Rust usage in KDE is very high.

2. This first point kinda means that no new KDE applications can be
written in Rust even if the developer has an interest in doing so. If
they really want to use Rust, they are much better off using GTK. This
is fine if the developer is a complete beginner, however, this also
detracts intermediate developers who might have the skills to do it
but just 

Re: Season of KDE Proposal: Rust wrapper for KConfig

2022-01-07 Thread Aleix Pol
On Thu, Jan 6, 2022 at 8:27 PM Ayush Singh  wrote:
>
> I am a University student and the author of the rust crate ki18n. This crate 
> allows using the KI18n Framework from Rust and can be used in conjunction 
> with the qmetaobject crate to allow writing QML applications for KDE using 
> Rust.
>
> The Proposal for my project is to create a rust wrapper for the KConfig KDE 
> Framework. With this crate present, it will be possible to create a 
> QML/Kirigami + Rust application without C++. I already have some other Rust 
> crates ready to help make the wrapper.
>
> Currently, the primary GUI solution for creating Rust applications is GTK-rs. 
> If Rust wrappers of at least the essential parts of KDE are present, it can 
> become a viable toolkit for GUI development in Rust. If this project is done 
> as part of the Season of KDE, it might also help to inform people about 
> crates like qmetaobject, which works almost flawlessly to create QML + Rust 
> applications.
>
> I am looking for someone to mentor my project. The mentor does not need to 
> have Rust skills but should be familiar with KConfig. I haven't used KConfig 
> much and might miss important parts of the Framework. I would also like to 
> make the Bindings ergonomic and would need someone who has a better 
> understanding of the Framework.
>
> My goal with this project is to increase the use of Rust in KDE as a whole. 
> But for that to happen, we first need a base to allow people to start seeing 
> KDE Frameworks as viable for Rust-based GUI.
>
> Here is my alternate email to contact me directly: ayushsingh1...@gmail.com
>
> Thank You

Rust sure looks interesting but I wonder whether having bindings for a
framework will make applications suddenly pop.

Is there any KDE project that would be furthered by having (and
maintaining) these bindings?

Aleix


KDE CI: Frameworks » kirigami » kf5-qt5 WindowsMSVCQt5.15 - Build # 623 - Unstable!

2022-01-07 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks/job/kirigami/job/kf5-qt5%20WindowsMSVCQt5.15/623/
 Project:
kf5-qt5 WindowsMSVCQt5.15
 Date of build:
Fri, 07 Jan 2022 22:57:21 +
 Build duration:
2 min 1 sec and counting
   JUnit Tests
  Name: projectrootC_.CI.Job_Build Failed: 1 test(s), Passed: 15 test(s), Skipped: 0 test(s), Total: 16 test(s)Failed: projectrootC_.CI.Job_Build.autotests.pagepool/tst_layers.qml

KDE CI: Frameworks » kirigami » kf5-qt5 FreeBSDQt5.15 - Build # 726 - Still Unstable!

2022-01-07 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks/job/kirigami/job/kf5-qt5%20FreeBSDQt5.15/726/
 Project:
kf5-qt5 FreeBSDQt5.15
 Date of build:
Fri, 07 Jan 2022 22:57:21 +
 Build duration:
51 sec and counting
   JUnit Tests
  Name: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515 Failed: 16 test(s), Passed: 0 test(s), Skipped: 0 test(s), Total: 16 test(s)Failed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.pagepool/tst_layers.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.pagepool/tst_pagepool.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_actiontoolbar.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_avatar.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_icon.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_keynavigation.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_listskeynavigation.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_mnemonicdata.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_pagerouter.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_pagerow.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_routerwindow.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_theme.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.wheelhandler/tst_filterMouseEvents.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.wheelhandler/tst_invokables.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.wheelhandler/tst_onWheel.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.wheelhandler/tst_scrolling.qml

KDE CI: Frameworks » kcmutils » kf5-qt5 SUSEQt5.15 - Build # 212 - Still Unstable!

2022-01-07 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks/job/kcmutils/job/kf5-qt5%20SUSEQt5.15/212/
 Project:
kf5-qt5 SUSEQt5.15
 Date of build:
Fri, 07 Jan 2022 22:31:33 +
 Build duration:
2 min 29 sec and counting
   BUILD ARTIFACTS
  acc/KF5KCMUtils-5.90.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: 1 test(s), Passed: 0 test(s), Skipped: 0 test(s), Total: 1 test(s)Failed: projectroot.autotests.kcmoduleinfotestName: projectroot.autotests Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report43%
(3/7)44%
(12/27)44%
(12/27)19%
(454/2452)12%
(147/1248)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(1/1)100%
(1/1)92%
(45/49)44%
(31/70)autotests.desktopfilekcm0%
(0/1)0%
(0/1)0%
(0/3)100%
(0/0)autotests.jsonplugin0%
(0/1)0%
(0/1)0%
(0/3)100%
(0/0)autotests.module_data_codegen100%
(1/1)100%
(1/1)100%
(8/8)50%
(4/8)src67%
(10/15)67%
(10/15)21%
(401/1921)12%
(112/942)src.core0%
(0/1)0%
(0/1)0%
(0/116)0%
(0/49)src.ksettings0%
(0/7)0%
(0/7)0%
(0/352)0%
(0/179)

KDE CI: Frameworks » kcmutils » kf5-qt5 SUSEQt5.15 - Build # 211 - Still Unstable!

2022-01-07 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks/job/kcmutils/job/kf5-qt5%20SUSEQt5.15/211/
 Project:
kf5-qt5 SUSEQt5.15
 Date of build:
Fri, 07 Jan 2022 22:29:04 +
 Build duration:
2 min 28 sec and counting
   BUILD ARTIFACTS
  acc/KF5KCMUtils-5.90.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: 1 test(s), Passed: 0 test(s), Skipped: 0 test(s), Total: 1 test(s)Failed: projectroot.autotests.kcmoduleinfotestName: projectroot.autotests Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report43%
(3/7)44%
(12/27)44%
(12/27)19%
(454/2452)12%
(147/1248)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(1/1)100%
(1/1)92%
(45/49)44%
(31/70)autotests.desktopfilekcm0%
(0/1)0%
(0/1)0%
(0/3)100%
(0/0)autotests.jsonplugin0%
(0/1)0%
(0/1)0%
(0/3)100%
(0/0)autotests.module_data_codegen100%
(1/1)100%
(1/1)100%
(8/8)50%
(4/8)src67%
(10/15)67%
(10/15)21%
(401/1921)12%
(112/942)src.core0%
(0/1)0%
(0/1)0%
(0/116)0%
(0/49)src.ksettings0%
(0/7)0%
(0/7)0%
(0/352)0%
(0/179)

KDE CI: Frameworks » kcmutils » kf5-qt5 FreeBSDQt5.15 - Build # 195 - Still Unstable!

2022-01-07 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks/job/kcmutils/job/kf5-qt5%20FreeBSDQt5.15/195/
 Project:
kf5-qt5 FreeBSDQt5.15
 Date of build:
Fri, 07 Jan 2022 22:29:04 +
 Build duration:
37 sec and counting
   JUnit Tests
  Name: projectroot Failed: 1 test(s), Passed: 0 test(s), Skipped: 0 test(s), Total: 1 test(s)Failed: projectroot.autotests.kcmoduleinfotestName: projectroot.autotests Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)

KDE CI: Frameworks » kirigami » kf5-qt5 FreeBSDQt5.15 - Build # 725 - Still Unstable!

2022-01-07 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks/job/kirigami/job/kf5-qt5%20FreeBSDQt5.15/725/
 Project:
kf5-qt5 FreeBSDQt5.15
 Date of build:
Fri, 07 Jan 2022 22:19:14 +
 Build duration:
37 sec and counting
   JUnit Tests
  Name: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515 Failed: 16 test(s), Passed: 0 test(s), Skipped: 0 test(s), Total: 16 test(s)Failed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.pagepool/tst_layers.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.pagepool/tst_pagepool.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_actiontoolbar.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_avatar.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_icon.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_keynavigation.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_listskeynavigation.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_mnemonicdata.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_pagerouter.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_pagerow.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_routerwindow.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_theme.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.wheelhandler/tst_filterMouseEvents.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.wheelhandler/tst_invokables.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.wheelhandler/tst_onWheel.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.wheelhandler/tst_scrolling.qml

Re: Genderidentity

2022-01-07 Thread Ian Wadham
The original sentence:
"Place %n boy(s) and %n girl(s) in the center. Then split %n pieces of
candy equally between them.”

could maybe be changed to:
“Place some children in the center, %n from the left and %n from the right.
Then split %n pieces of candy equally between them.”

Perhaps that would solve two problems, Johnny Jazeix’s original  coding
problem with the numbers and Sandro’s problem with the gendered words.

FWIW, 75 years ago I disliked being called a child or worse still a kid. Schools
I attended were single-sex and class-distinction was rife. So was bullying.

Today’s schools have come a long way!

Cheers, Ian W.

> On 7 Jan 2022, at 6:07 am, Rik Mills  wrote:
> 
> On 06/01/2022 17:56, Nicolás Alvarez wrote:
>> There is a time and place to teach kids about the complexity of gender
>> and I don't think an exercise about arithmetic/counting is the right
>> place.
>> https://en.wikipedia.org/wiki/Lie-to-children
> 
> +1
> 



KDE CI: Frameworks » kcoreaddons » kf5-qt5 SUSEQt5.15 - Build # 404 - Still Unstable!

2022-01-07 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks/job/kcoreaddons/job/kf5-qt5%20SUSEQt5.15/404/
 Project:
kf5-qt5 SUSEQt5.15
 Date of build:
Fri, 07 Jan 2022 21:15:15 +
 Build duration:
4 min 52 sec and counting
   BUILD ARTIFACTS
  acc/KF5CoreAddons-5.90.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: 1 test(s), Passed: 31 test(s), Skipped: 0 test(s), Total: 32 test(s)Failed: projectroot.autotests.kformattest
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report91%
(10/11)86%
(95/111)86%
(95/111)78%
(8645/11136)43%
(13240/30508)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests93%
(40/43)93%
(40/43)96%
(3936/4120)48%
(8187/17091)src.desktoptojson100%
(2/2)100%
(2/2)80%
(101/127)37%
(108/290)src.lib67%
(2/3)67%
(2/3)59%
(388/655)26%
(258/988)src.lib.caching100%
(2/2)100%
(2/2)46%
(356/779)16%
(199/1212)src.lib.io80%
(12/15)80%
(12/15)70%
(1094/1554)38%
(1198/3135)src.lib.jobs71%
(5/7)71%
(5/7)55%
(179/323)33%
(65/196)src.lib.plugin89%
(8/9)89%
(8/9)79%
(878/1117)37%
(1144/3087)src.lib.randomness100%
(3/3)100%
(3/3)71%
(72/101)57%
(48/84)src.lib.text70%
(7/10)70%
(7/10)61%
(615/1011)51%
(973/1895)src.lib.util100%
(14/14)100%
(14/14)83%
(1026/1241)50%
(1060/2132)tests0%
(0/3)0%
(0/3)0%
(0/108)0%
(0/398)

KDE CI: Frameworks » kcoreaddons » kf5-qt5 SUSEQt5.15 - Build # 403 - Still Unstable!

2022-01-07 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks/job/kcoreaddons/job/kf5-qt5%20SUSEQt5.15/403/
 Project:
kf5-qt5 SUSEQt5.15
 Date of build:
Fri, 07 Jan 2022 21:04:03 +
 Build duration:
11 min and counting
   BUILD ARTIFACTS
  acc/KF5CoreAddons-5.90.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: 1 test(s), Passed: 31 test(s), Skipped: 0 test(s), Total: 32 test(s)Failed: projectroot.autotests.kformattest
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report91%
(10/11)86%
(95/111)86%
(95/111)78%
(8645/11136)43%
(13240/30508)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests93%
(40/43)93%
(40/43)96%
(3936/4120)48%
(8187/17091)src.desktoptojson100%
(2/2)100%
(2/2)80%
(101/127)37%
(108/290)src.lib67%
(2/3)67%
(2/3)59%
(388/655)26%
(258/988)src.lib.caching100%
(2/2)100%
(2/2)46%
(356/779)16%
(199/1212)src.lib.io80%
(12/15)80%
(12/15)70%
(1094/1554)38%
(1198/3135)src.lib.jobs71%
(5/7)71%
(5/7)55%
(179/323)33%
(65/196)src.lib.plugin89%
(8/9)89%
(8/9)79%
(878/1117)37%
(1144/3087)src.lib.randomness100%
(3/3)100%
(3/3)71%
(72/101)57%
(48/84)src.lib.text70%
(7/10)70%
(7/10)61%
(615/1011)51%
(973/1895)src.lib.util100%
(14/14)100%
(14/14)83%
(1026/1241)50%
(1060/2132)tests0%
(0/3)0%
(0/3)0%
(0/108)0%
(0/398)

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

2022-01-07 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks/job/kcoreaddons/job/kf5-qt5%20FreeBSDQt5.15/376/
 Project:
kf5-qt5 FreeBSDQt5.15
 Date of build:
Fri, 07 Jan 2022 21:07:09 +
 Build duration:
3 min 44 sec and counting
   JUnit Tests
  Name: projectroot Failed: 3 test(s), Passed: 29 test(s), Skipped: 0 test(s), Total: 32 test(s)Failed: projectroot.autotests.kdirwatch_inotify_unittestFailed: projectroot.autotests.kformattestFailed: projectroot.autotests.klistopenfilesjobtest_unix

KDE CI: Frameworks » kwidgetsaddons » kf5-qt5 SUSEQt5.15 - Build # 273 - Still Unstable!

2022-01-07 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks/job/kwidgetsaddons/job/kf5-qt5%20SUSEQt5.15/273/
 Project:
kf5-qt5 SUSEQt5.15
 Date of build:
Fri, 07 Jan 2022 20:57:18 +
 Build duration:
11 min and counting
   BUILD ARTIFACTS
  acc/KF5WidgetsAddons-5.90.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: 1 test(s), Passed: 23 test(s), Skipped: 0 test(s), Total: 24 test(s)Failed: projectroot.autotests.ksqueezedtextlabelautotest
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report50%
(2/4)44%
(83/187)44%
(83/187)38%
(6565/17224)29%
(2444/8433)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(25/25)100%
(25/25)99%
(2440/2469)49%
(1137/2306)examples.kmessagebox0%
(0/1)0%
(0/1)0%
(0/15)0%
(0/2)src47%
(58/123)47%
(58/123)31%
(4125/13328)22%
(1307/5922)tests0%
(0/38)0%
(0/38)0%
(0/1412)0%
(0/203)

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

2022-01-07 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks/job/kcoreaddons/job/kf5-qt5%20FreeBSDQt5.15/375/
 Project:
kf5-qt5 FreeBSDQt5.15
 Date of build:
Fri, 07 Jan 2022 21:04:03 +
 Build duration:
2 min 51 sec and counting
   JUnit Tests
  Name: projectroot Failed: 2 test(s), Passed: 30 test(s), Skipped: 0 test(s), Total: 32 test(s)Failed: projectroot.autotests.kformattestFailed: projectroot.autotests.klistopenfilesjobtest_unix

KDE CI: Frameworks » kwidgetsaddons » kf5-qt5 SUSEQt5.15 - Build # 272 - Still Unstable!

2022-01-07 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks/job/kwidgetsaddons/job/kf5-qt5%20SUSEQt5.15/272/
 Project:
kf5-qt5 SUSEQt5.15
 Date of build:
Fri, 07 Jan 2022 20:44:58 +
 Build duration:
12 min and counting
   BUILD ARTIFACTS
  acc/KF5WidgetsAddons-5.90.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: 1 test(s), Passed: 23 test(s), Skipped: 0 test(s), Total: 24 test(s)Failed: projectroot.autotests.ksqueezedtextlabelautotest
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report50%
(2/4)44%
(83/187)44%
(83/187)38%
(6565/17224)29%
(2444/8433)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(25/25)100%
(25/25)99%
(2440/2469)49%
(1137/2306)examples.kmessagebox0%
(0/1)0%
(0/1)0%
(0/15)0%
(0/2)src47%
(58/123)47%
(58/123)31%
(4125/13328)22%
(1307/5922)tests0%
(0/38)0%
(0/38)0%
(0/1412)0%
(0/203)

KDE CI: Frameworks » kwidgetsaddons » kf5-qt5 FreeBSDQt5.15 - Build # 261 - Still Unstable!

2022-01-07 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks/job/kwidgetsaddons/job/kf5-qt5%20FreeBSDQt5.15/261/
 Project:
kf5-qt5 FreeBSDQt5.15
 Date of build:
Fri, 07 Jan 2022 20:49:48 +
 Build duration:
3 min 6 sec and counting
   JUnit Tests
  Name: projectroot Failed: 1 test(s), Passed: 23 test(s), Skipped: 0 test(s), Total: 24 test(s)Failed: projectroot.autotests.ksqueezedtextlabelautotest

KDE CI: Frameworks » kwidgetsaddons » kf5-qt5 FreeBSDQt5.15 - Build # 260 - Still Unstable!

2022-01-07 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks/job/kwidgetsaddons/job/kf5-qt5%20FreeBSDQt5.15/260/
 Project:
kf5-qt5 FreeBSDQt5.15
 Date of build:
Fri, 07 Jan 2022 20:44:58 +
 Build duration:
4 min 39 sec and counting
   JUnit Tests
  Name: projectroot Failed: 1 test(s), Passed: 23 test(s), Skipped: 0 test(s), Total: 24 test(s)Failed: projectroot.autotests.ksqueezedtextlabelautotest

KDE CI: Frameworks » kconfig » kf5-qt5 SUSEQt5.15 - Build # 249 - Fixed!

2022-01-07 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kconfig/job/kf5-qt5%20SUSEQt5.15/249/
 Project:
kf5-qt5 SUSEQt5.15
 Date of build:
Fri, 07 Jan 2022 20:37:23 +
 Build duration:
8 min 47 sec and counting
   BUILD ARTIFACTS
  acc/KF5Config-5.90.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: 13 test(s), Skipped: 0 test(s), Total: 13 test(s)Name: projectroot.autotests Failed: 0 test(s), Passed: 30 test(s), Skipped: 0 test(s), Total: 30 test(s)
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report75%
(6/8)90%
(84/93)90%
(84/93)80%
(7893/9899)58%
(4377/7605)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests100%
(15/15)100%
(15/15)99%
(2259/2276)51%
(1319/2569)autotests.kconfig_compiler97%
(32/33)97%
(32/33)93%
(355/380)46%
(126/274)src.core88%
(22/25)88%
(22/25)72%
(2701/3768)57%
(1278/2231)src.gui71%
(5/7)71%
(5/7)58%
(447/769)49%
(194/399)src.kconf_update100%
(2/2)100%
(2/2)71%
(457/642)53%
(274/515)src.kconfig_compiler100%
(8/8)100%
(8/8)89%
(1674/1891)80%
(1186/1483)src.kreadconfig0%
(0/2)0%
(0/2)0%
(0/113)0%
(0/106)src.qml0%
(0/1)0%
(0/1)0%
(0/60)0%
(0/28)

KDE CI: Frameworks » kcoreaddons » kf5-qt5 SUSEQt5.15 - Build # 402 - Still Unstable!

2022-01-07 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks/job/kcoreaddons/job/kf5-qt5%20SUSEQt5.15/402/
 Project:
kf5-qt5 SUSEQt5.15
 Date of build:
Fri, 07 Jan 2022 19:53:45 +
 Build duration:
12 min and counting
   BUILD ARTIFACTS
  acc/KF5CoreAddons-5.90.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: 1 test(s), Passed: 31 test(s), Skipped: 0 test(s), Total: 32 test(s)Failed: projectroot.autotests.kformattest
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report91%
(10/11)86%
(95/111)86%
(95/111)78%
(8645/11136)43%
(13240/30508)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests93%
(40/43)93%
(40/43)96%
(3936/4120)48%
(8187/17091)src.desktoptojson100%
(2/2)100%
(2/2)80%
(101/127)37%
(108/290)src.lib67%
(2/3)67%
(2/3)59%
(388/655)26%
(258/988)src.lib.caching100%
(2/2)100%
(2/2)46%
(356/779)16%
(199/1212)src.lib.io80%
(12/15)80%
(12/15)70%
(1094/1554)38%
(1198/3135)src.lib.jobs71%
(5/7)71%
(5/7)55%
(179/323)33%
(65/196)src.lib.plugin89%
(8/9)89%
(8/9)79%
(878/1117)37%
(1144/3087)src.lib.randomness100%
(3/3)100%
(3/3)71%
(72/101)57%
(48/84)src.lib.text70%
(7/10)70%
(7/10)61%
(615/1011)51%
(973/1895)src.lib.util100%
(14/14)100%
(14/14)83%
(1026/1241)50%
(1060/2132)tests0%
(0/3)0%
(0/3)0%
(0/108)0%
(0/398)

KDE CI: Frameworks » purpose » kf5-qt5 SUSEQt5.15 - Build # 198 - Still Unstable!

2022-01-07 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks/job/purpose/job/kf5-qt5%20SUSEQt5.15/198/
 Project:
kf5-qt5 SUSEQt5.15
 Date of build:
Fri, 07 Jan 2022 19:51:55 +
 Build duration:
6 min 44 sec and counting
   BUILD ARTIFACTS
  acc/KF5Purpose-5.90.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: 1 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 2 test(s)Failed: projectroot.autotests.menutest
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report13%
(3/24)20%
(10/50)20%
(10/50)17%
(371/2170)16%
(159/993)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests50%
(1/2)50%
(1/2)73%
(107/146)48%
(62/128)src89%
(8/9)89%
(8/9)59%
(230/389)41%
(73/177)src.externalprocess0%
(0/2)0%
(0/2)0%
(0/137)0%
(0/98)src.fileitemactionplugin0%
(0/1)0%
(0/1)0%
(0/34)0%
(0/26)src.plugins.barcode0%
(0/1)0%
(0/1)0%
(0/5)100%
(0/0)src.plugins.bluetooth0%
(0/1)0%
(0/1)0%
(0/35)0%
(0/8)src.plugins.email0%
(0/1)0%
(0/1)0%
(0/48)0%
(0/30)src.plugins.imgur0%
(0/2)0%
(0/2)0%
(0/188)0%
(0/61)src.plugins.kdeconnect0%
(0/1)0%
(0/1)0%
(0/35)0%
(0/6)src.plugins.kdeconnect_sms0%
(0/1)0%
(0/1)0%
(0/17)0%
(0/2)src.plugins.ktp-sendfile0%
(0/1)0%
(0/1)0%
(0/29)0%
(0/6)src.plugins.pastebin0%
(0/1)0%
(0/1)0%
(0/58)0%
(0/23)src.plugins.phabricator0%
(0/3)0%
(0/3)0%
(0/223)0%
(0/74)src.plugins.phabricator.quick0%
(0/5)0%
(0/5)0%
(0/96)0%
(0/48)src.plugins.phabricator.tests0%
(0/1)0%
(0/1)0%
(0/63)0%
(0/22)src.plugins.reviewboard0%
(0/3)0%
(0/3)0%
(0/252)0%
(0/70)src.plugins.reviewboard.quick0%
(0/7)0%
(0/7)0%
(0/163)0%
(0/80)src.plugins.saveas100%

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

2022-01-07 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks/job/kcoreaddons/job/kf5-qt5%20FreeBSDQt5.15/374/
 Project:
kf5-qt5 FreeBSDQt5.15
 Date of build:
Fri, 07 Jan 2022 19:53:45 +
 Build duration:
1 min 34 sec and counting
   JUnit Tests
  Name: projectroot Failed: 1 test(s), Passed: 31 test(s), Skipped: 0 test(s), Total: 32 test(s)Failed: projectroot.autotests.klistopenfilesjobtest_unix

KDE CI: Frameworks » purpose » kf5-qt5 FreeBSDQt5.15 - Build # 188 - Still Unstable!

2022-01-07 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks/job/purpose/job/kf5-qt5%20FreeBSDQt5.15/188/
 Project:
kf5-qt5 FreeBSDQt5.15
 Date of build:
Fri, 07 Jan 2022 19:51:55 +
 Build duration:
39 sec and counting
   JUnit Tests
  Name: projectroot Failed: 1 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 2 test(s)Failed: projectroot.autotests.menutest

KDE CI: Frameworks » kirigami » kf5-qt5 WindowsMSVCQt5.15 - Build # 621 - Fixed!

2022-01-07 Thread CI System
BUILD SUCCESS
 Build URL
https://build.kde.org/job/Frameworks/job/kirigami/job/kf5-qt5%20WindowsMSVCQt5.15/621/
 Project:
kf5-qt5 WindowsMSVCQt5.15
 Date of build:
Fri, 07 Jan 2022 19:36:35 +
 Build duration:
3 min 2 sec and counting
   JUnit Tests
  Name: projectrootC_.CI.Job_Build Failed: 0 test(s), Passed: 16 test(s), Skipped: 0 test(s), Total: 16 test(s)

KDE CI: Frameworks » kirigami » kf5-qt5 FreeBSDQt5.15 - Build # 724 - Still Unstable!

2022-01-07 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks/job/kirigami/job/kf5-qt5%20FreeBSDQt5.15/724/
 Project:
kf5-qt5 FreeBSDQt5.15
 Date of build:
Fri, 07 Jan 2022 19:33:47 +
 Build duration:
35 sec and counting
   JUnit Tests
  Name: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515 Failed: 16 test(s), Passed: 0 test(s), Skipped: 0 test(s), Total: 16 test(s)Failed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.pagepool/tst_layers.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.pagepool/tst_pagepool.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_actiontoolbar.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_avatar.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_icon.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_keynavigation.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_listskeynavigation.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_mnemonicdata.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_pagerouter.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_pagerow.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_routerwindow.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_theme.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.wheelhandler/tst_filterMouseEvents.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.wheelhandler/tst_invokables.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.wheelhandler/tst_onWheel.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.wheelhandler/tst_scrolling.qml

KDE CI: Frameworks » kirigami » kf5-qt5 FreeBSDQt5.15 - Build # 723 - Still Unstable!

2022-01-07 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks/job/kirigami/job/kf5-qt5%20FreeBSDQt5.15/723/
 Project:
kf5-qt5 FreeBSDQt5.15
 Date of build:
Fri, 07 Jan 2022 19:33:10 +
 Build duration:
36 sec and counting
   JUnit Tests
  Name: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515 Failed: 16 test(s), Passed: 0 test(s), Skipped: 0 test(s), Total: 16 test(s)Failed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.pagepool/tst_layers.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.pagepool/tst_pagepool.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_actiontoolbar.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_avatar.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_icon.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_keynavigation.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_listskeynavigation.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_mnemonicdata.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_pagerouter.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_pagerow.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_routerwindow.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_theme.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.wheelhandler/tst_filterMouseEvents.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.wheelhandler/tst_invokables.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.wheelhandler/tst_onWheel.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.wheelhandler/tst_scrolling.qml

KDE CI: Frameworks » kirigami » kf5-qt5 FreeBSDQt5.15 - Build # 722 - Still Unstable!

2022-01-07 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks/job/kirigami/job/kf5-qt5%20FreeBSDQt5.15/722/
 Project:
kf5-qt5 FreeBSDQt5.15
 Date of build:
Fri, 07 Jan 2022 19:32:33 +
 Build duration:
35 sec and counting
   JUnit Tests
  Name: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515 Failed: 16 test(s), Passed: 0 test(s), Skipped: 0 test(s), Total: 16 test(s)Failed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.pagepool/tst_layers.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.pagepool/tst_pagepool.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_actiontoolbar.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_avatar.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_icon.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_keynavigation.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_listskeynavigation.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_mnemonicdata.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_pagerouter.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_pagerow.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_routerwindow.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.tst_theme.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.wheelhandler/tst_filterMouseEvents.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.wheelhandler/tst_invokables.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.wheelhandler/tst_onWheel.qmlFailed: projectroot.usr.home.jenkins.workspace.Frameworks.kirigami.kf5-qt5_FreeBSDQt515.autotests.wheelhandler/tst_scrolling.qml

Re: Genderidentity

2022-01-07 Thread Rik Mills
On 06/01/2022 17:56, Nicolás Alvarez wrote:
> There is a time and place to teach kids about the complexity of gender
> and I don't think an exercise about arithmetic/counting is the right
> place.
> https://en.wikipedia.org/wiki/Lie-to-children

+1



Re: Genderidentity

2022-01-07 Thread Harald Sitter
On Fri, Jan 7, 2022 at 12:36 AM Johnny Jazeix  wrote:
> ps : please, don't assume by this answer that I am for or against the third 
> gender and not telling explicitely what is my opinion about it makes me by 
> default against it. I think it is just not the place in GCompris.

I'm not sure why you bother writing so much text for strawman
arguments then. Maybe I'm being daft but this looks like a no-brainer
issue.

What we have right now, right here, is a person that rightly points
out that there are people, that includes children, that do not
identify as boy or girl and we alienate them and make them feel
"other" by using these stand-ins. We can literally change the counting
example to anything else - and if someone complains in the future
about us using a werewolf as depiction for a dog then we change it
again. That being said I think having cute dogs and cute kitties is a
splendid idea, maybe not go with werewolfs ;)

HS


KDE CI: Frameworks » kwayland » kf5-qt5 SUSEQt5.15 - Build # 150 - Still Unstable!

2022-01-07 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks/job/kwayland/job/kf5-qt5%20SUSEQt5.15/150/
 Project:
kf5-qt5 SUSEQt5.15
 Date of build:
Fri, 07 Jan 2022 08:49:43 +
 Build duration:
8 min 58 sec and counting
   BUILD ARTIFACTS
  acc/KF5Wayland-5.90.0.xml
   JUnit Tests
  Name: (root) Failed: 0 test(s), Passed: 1 test(s), Skipped: 0 test(s), Total: 1 test(s)Name: projectroot.autotests Failed: 1 test(s), Passed: 46 test(s), Skipped: 0 test(s), Total: 47 test(s)Failed: projectroot.autotests.client.kwayland_testWaylandRegistry
   Cobertura Report
  
   Project Coverage Summary
  
   Name
  PackagesFilesClassesLinesConditionalsCobertura Coverage Report63%
(5/8)90%
(218/241)90%
(218/241)84%
(28386/33638)53%
(12797/24339)Coverage Breakdown by Package
Name
   FilesClassesLinesConditionalsautotests.client100%
(43/43)100%
(43/43)99%
(13098/13168)50%
(8206/16317)autotests.server100%
(6/6)100%
(6/6)99%
(539/542)50%
(283/568)src.client97%
(72/74)97%
(72/74)83%
(6380/7676)63%
(1832/2886)src.compat100%
(2/2)100%
(2/2)100%
(78/78)100%
(0/0)src.server96%
(95/99)96%
(95/99)83%
(8291/9964)63%
(2476/3933)src.tools0%
(0/2)0%
(0/2)0%
(0/786)0%
(0/302)src.tools.testserver0%
(0/2)0%
(0/2)0%
(0/119)0%
(0/14)tests0%
(0/13)0%
(0/13)0%
(0/1305)0%
(0/319)

KDE CI: Frameworks » kwayland » kf5-qt5 FreeBSDQt5.15 - Build # 140 - Still Unstable!

2022-01-07 Thread CI System
BUILD UNSTABLE
 Build URL
https://build.kde.org/job/Frameworks/job/kwayland/job/kf5-qt5%20FreeBSDQt5.15/140/
 Project:
kf5-qt5 FreeBSDQt5.15
 Date of build:
Fri, 07 Jan 2022 08:49:43 +
 Build duration:
5 min 56 sec and counting
   JUnit Tests
  Name: projectroot.autotests Failed: 14 test(s), Passed: 32 test(s), Skipped: 0 test(s), Total: 46 test(s)Failed: projectroot.autotests.client.kwayland_testCompositorFailed: projectroot.autotests.client.kwayland_testDataDeviceFailed: projectroot.autotests.client.kwayland_testDataSourceFailed: projectroot.autotests.client.kwayland_testRegionFailed: projectroot.autotests.client.kwayland_testShmPoolFailed: projectroot.autotests.client.kwayland_testSubCompositorFailed: projectroot.autotests.client.kwayland_testSubSurfaceFailed: projectroot.autotests.client.kwayland_testWaylandConnectionThreadFailed: projectroot.autotests.client.kwayland_testWaylandOutputDeviceFailed: projectroot.autotests.client.kwayland_testWaylandRegistryFailed: projectroot.autotests.client.kwayland_testWaylandSeatFailed: projectroot.autotests.client.kwayland_testWaylandShellFailed: projectroot.autotests.client.kwayland_testWaylandSurfaceFailed: projectroot.autotests.server.kwayland_testWaylandServerDisplay