valorie | ha, first rick says he's going to bed, then he reappears on his tablet, still bug-fixing! | 01:53 |
---|---|---|
soee | yay frameworks are almost green! | 08:52 |
BluesKaj | Howdy all | 10:13 |
Maxiride | Hello BluesKaj | 10:22 |
BluesKaj | Hi Maxiride | 10:23 |
Maxiride | May I invoke your help once again? xD | 10:23 |
BluesKaj | let | 10:23 |
BluesKaj | in #kubuntu woukd be best | 10:23 |
=== ghostcube_ is now known as ghostcube | ||
mamarley | So has anyone dared to install KF5 5.21 from the staging PPA yet? | 12:44 |
sgclark | I have not called for testers | 12:47 |
mamarley | Sorry, not up-to-date on backlog. | 12:48 |
sgclark | it seems kactivities-stats depends on a plasma package kactivitysystemrd | 12:48 |
sgclark | which is bizaare for a framework... | 12:48 |
mamarley | That is weird. | 12:49 |
mamarley | Seems like a good way to create a circular dependency loop. | 12:50 |
sgclark | clivejo: yofel: I was messing about with git last night https://git.launchpad.net/~kubuntu-packagers/+git/extra-cmake-modules and all or nothing if scripted, well I certainly don't feel comfortable deleting in a script. | 12:51 |
sgclark | I however, could not get webhooks to work at all. perhaps sitter will help | 12:52 |
acheron88 | I saw it updated, so disabled that ppa for now. | 12:53 |
sitter | I literally do not know what a webhook is | 12:57 |
sgclark | sitter: How would I could about triggering a jenkins job with just an url, it fails with https://paste.kde.org/psvrqyvi7 | 13:03 |
yofel | that repo looks rather wrong | 13:10 |
yofel | https://git.launchpad.net/~kubuntu-packagers/+git/extra-cmake-modules/refs/heads vs http://anonscm.debian.org/cgit/pkg-kde/frameworks/extra-cmake-modules.git/refs/ | 13:10 |
yofel | https://git.launchpad.net/~kubuntu-packagers/+git/extra-cmake-modules/refs/ rather | 13:11 |
yofel | at least the tags did get uploaded, only the branches are junk | 13:11 |
sgclark | ... | 13:13 |
yofel | sitter: how do the jobs get triggered anyway? All I could find in jenkins was repo polling.. | 13:13 |
yofel | sgclark: you need to check out all branches locally, then push those. If you push remote branches it seems to prepend the remote name, which we don't want | 13:14 |
yofel | (that's what my plan was at least) | 13:14 |
sgclark | triggering won't work anyone now that I think about it, the webhook is per repo and not per branch. | 13:17 |
sgclark | s/anyone/anyway/ | 13:18 |
sitter | yofel: curl http://kci.pangea.pub/git/notifyCommit?url=git.debian.org:/git/${repo_path} | 13:19 |
yofel | hm, and if the webook would trigger the merger, and the merger trigger the builds? (Isn't that how it works now?) | 13:19 |
sitter | this basically makes jenkins check all jobs that *have polling enabled* if their scm url matches the one you notify about | 13:19 |
sitter | if they match a poll is schedule | 13:20 |
sitter | strictly speaking jenkins only does poll-on-demand. you can give it but load of additional information though at which point jenkins could decide to not even poll | 13:20 |
sitter | e.g. if you give the topmost ref | 13:20 |
sitter | https://wiki.jenkins-ci.org/display/JENKINS/Git+Plugin#GitPlugin-Pushnotificationfromrepository | 13:21 |
sitter | yofel: builds get triggered on their own if there is something to build | 13:21 |
yofel | right, during the night.. | 13:22 |
* yofel wonders what's inside the launchpad POST | 13:23 | |
sitter | say you push kubuntu_unstable of yolo -> triggerse merger_yolo && triggers xenial_unstable_yolo -> merger doesn't do anything because unstable is pretty much the last branch it would merge into, no push occurs -> xenial_unstable_yolo builds all the same because it noticed that kubuntu_unstable has a new commit | 13:23 |
sitter | additionally at 0 utc all mergers are polled. afterwards all builds are polled | 13:23 |
sitter | sgclark: that error seems fishy. we only curl the url I pasted above | 13:25 |
sitter | so I am guessing the url you call was wrong | 13:25 |
sgclark | tried the token url in jenkins wiki | 13:25 |
sgclark | anyway it won't work | 13:25 |
sgclark | lp POST won't work | 13:26 |
sgclark | thanks for your help | 13:26 |
sitter | sgclark: why wouldn't it work? | 13:26 |
sgclark | it allows for only an url (per repo) | 13:26 |
sitter | sgclark: jenkins doesn't care though | 13:27 |
yofel | jenkins can't extract any information from the post? | 13:27 |
sitter | oh | 13:27 |
sitter | it posts more information? | 13:27 |
sitter | now the name webhook makes more sense xD | 13:27 |
sgclark | yes | 13:27 |
yofel | https://help.launchpad.net/API/Webhooks | 13:27 |
sitter | what you need is some service that accepts the post and then does things with it | 13:27 |
sgclark | mm yes | 13:28 |
sitter | that could either be a simple python/ruby/go/rust app that essentially provides an api endpoint or a jenkins plugin | 13:28 |
sitter | I'd go with former and simply translate the hook into a notify url for jenkins | 13:28 |
sitter | less work for sure ^^ | 13:28 |
yofel | probably | 13:28 |
sitter | The body of the request will be JSON. | 13:29 |
sitter | ahurr durr | 13:29 |
sitter | 10 lines of ruby maybe ;) | 13:29 |
sitter | if you opt for integrating it with jenkins... the github plugin does exactly the same thing with github's webhook api, so you could check that for some code inspiration | 13:30 |
sitter | by that I mean, if you want to write a jenkins plugin to handle this rather than a standalone service | 13:31 |
yofel | the standalone service would be a script with a socket that converts the post into a jenkins trigger? | 13:32 |
sitter | aye | 13:32 |
yofel | should be doable I guess | 13:33 |
sitter | basically: make a httpserver -> listen to post -> upon post -> check remote is launchpad -> if launchpad, parse payload from json -> build jenkins urly from payload -> http GET jenkins url | 13:33 |
yofel | can we use aribtrary ports on the server? | 13:34 |
sitter | yes, but you need to ask clemens to open them | 13:35 |
sitter | you could also have apache proxy them though | 13:36 |
yofel | true.. | 13:36 |
sitter | e.g. jenkins actually runs on :8080 on that host but gets proxied | 13:36 |
clivejo | sitter: how did you make a copy of the debian git repo for Neon? | 13:50 |
soee_ | :D | 13:53 |
sitter | clivejo: with a foreach loop I'd say | 13:58 |
clivejo | did you do it or JR? | 14:00 |
sitter | jer | 14:00 |
sitter | jr | 14:00 |
clivejo | ah cool | 14:00 |
clivejo | is it hosted on weegie? | 14:00 |
clivejo | sitter: also did you help on the kcm driver manage project? | 14:01 |
sitter | yes | 14:02 |
clivejo | any idea why it would stop working on 16.04, but works in 15.10? | 14:02 |
clivejo | seems to be stuck/blocked waiting on a qapt socket | 14:03 |
sitter | no idea | 14:03 |
clivejo | any suggestions how I could debug it further? | 14:05 |
sitter | gdb it, start a qaptworker and gdb that as well | 14:10 |
clivejo | I dont know how to gdb a library | 14:11 |
clivejo | gapt is libqapt3 lib ? | 14:11 |
clivejo | qapt even | 14:11 |
clivejo | slhk_: ping | 14:13 |
marco-parillo | Based on the topic, KF5 5.21 is in the X staging PPA, not Y, but too early for testers (which we usually do from -landing, anway), correct? | 14:22 |
clivejo | yes | 14:25 |
clivejo | we are trying to move the packaging to LP for dev aka yak | 14:25 |
shadeslayer | clivejo: question, can you query the dbus interface | 14:34 |
shadeslayer | for the data | 14:34 |
clivejo | shadeslayer: how do I test that? | 14:43 |
shadeslayer | clivejo: let me see, | 14:43 |
shadeslayer | clivejo: try : qdbus org.kubuntu.DriverManager | 14:43 |
clivejo | I get / | 14:44 |
clivejo | grrr | 14:44 |
=== ghostcube_ is now known as ghostcube | ||
clivejo | escape/DriverManager | 14:44 |
clivejo | it seems to be blocking on qapt socket | 14:45 |
clivejo | Bug 1530523 | 14:47 |
ubottu | bug 1530523 in kubuntu-driver-manager (Ubuntu) "kcm_driver_manager: Infinitely shows Collecting information" [High,Incomplete] https://launchpad.net/bugs/1530523 | 14:47 |
clivejo | the module seems to update the package list | 14:48 |
clivejo | then opens a socket to qapt and just waits | 14:49 |
shadeslayer | clivejo: does querying the dbus interface get you a response? | 14:51 |
clivejo | yes | 14:51 |
shadeslayer | it lists the drivers? | 14:51 |
shadeslayer | when you query a method in there | 14:52 |
clivejo | :/ | 14:52 |
clivejo | :/DriverManager | 14:52 |
shadeslayer | I don't remember the method names, so you'll have to check it yourself | 14:52 |
clivejo | ignore : its to stop IRC thinking they are commands | 14:52 |
shadeslayer | heh | 14:52 |
shadeslayer | clivejo: that's only part of it | 14:52 |
clivejo | <node name="/DriverManager"> | 14:52 |
shadeslayer | try : qdbus org.kubuntu.DriverManager /DriverManager | 14:52 |
shadeslayer | and then try one of the methods it lists there | 14:53 |
clivejo | <method name="devices"> | 14:53 |
clivejo | how do I try it? | 14:53 |
shadeslayer | clivejo: what does qdbus org.kubuntu.DriverManager /DriverManager output? | 14:53 |
shadeslayer | can you pastebin it? | 14:53 |
clivejo | method QString org.freedesktop.DBus.Introspectable.Introspect() | 14:54 |
clivejo | method {D-Bus type "a{sa{sv}}"} org.kubuntu.DriverManager.devices() | 14:54 |
clivejo | thats the output, two lines | 14:54 |
shadeslayer | yeah | 14:54 |
shadeslayer | qdbus --literal org.kubuntu.DriverManager /DriverManager org.kubuntu.DriverManager.devices | 14:54 |
clivejo | takes a few seconds | 14:55 |
clivejo | but is outputing my hardware | 14:55 |
shadeslayer | awesome | 14:55 |
clivejo | my nvidia graphics and cpu-microcode | 14:56 |
shadeslayer | so that works, and the problem is in the C++ bits | 14:56 |
clivejo | thats what I usually see in the driver manager and I can install the drivers then | 14:56 |
clivejo | yeah, I think all that bit works | 14:57 |
clivejo | its the package stuff thats broken | 14:57 |
shadeslayer | yeah | 14:57 |
clivejo | it does an apt update | 14:57 |
shadeslayer | clivejo: it does a update before querying? | 14:57 |
clivejo | then just hangs waiting on something | 14:57 |
shadeslayer | ah hm | 14:57 |
clivejo | yeah | 14:57 |
clivejo | I can see it downloading from the archive | 14:58 |
clivejo | checking for updates | 14:58 |
clivejo | then it opens a socket to qapt and freezes | 14:58 |
clivejo | /tmp/qapt-sock-xxxxxxxx | 15:01 |
clivejo | then kcmshell5 22846 clivejo 64u unix 0x0000000000000000 0t0 575670 type=STREAM | 15:01 |
shadeslayer | that's the debconf socket I think | 15:02 |
clivejo | shadeslayer: anything else I can try to help bug track? | 16:06 |
shadeslayer | clivejo: talk to apol about qapt issues I think | 16:07 |
shadeslayer | read API docs? | 16:07 |
apol | clivejo: you can help bug track all of plasma :D | 16:08 |
clivejo | apol: I would if I knew how! | 16:08 |
apol | clivejo: how can we help you know? | 16:09 |
clivejo | sorry, I think Ill drop it for today, Im tired and now angry :( | 16:12 |
apol | clivejo: hope you're not angry at me :D if you like, tell me when your mana restores ^^ | 16:27 |
clivejo | no, not at all. Im angry at our so called local representatives. Who have just spent 20mins telling me why I should vote for them next week | 16:28 |
clivejo | they are nothing but leeches who come out just before election time to make lists of promises and pledges and once elected do nothing! | 16:30 |
clivejo | meanwhile they rob us blind via taxing everything and argue over abortion and gay cakes | 16:32 |
clivejo | oh and flags, how could I forget that row | 16:32 |
* clivejo takes a deep breath | 16:33 | |
clivejo | apol: I was trying to look into why kcm driver manager is stuck in some kind of loop or blocked indefinitely | 16:39 |
clivejo | it seems to get to opening a socket to qapt and stops | 16:40 |
apol | you must be from USA | 16:40 |
clivejo | no | 16:40 |
apol | :) | 16:41 |
clivejo | N Ireland, stuck in a time warp | 16:41 |
apol | anyway, qapt is run through a dbus helper AFAIR | 16:41 |
apol | I thought that gay cakes were sorted over there | 16:41 |
clivejo | nope | 16:41 |
clivejo | this driver manager works in 15.10 but is broken in 16.04 | 16:45 |
clivejo | are you aware of any changes in that time frame to qapt that might cause it? | 16:45 |
apol | no | 16:46 |
apol | clivejo: Carlo Vanini worked on the last fixes, he might know | 16:46 |
clivejo | I tried to ping him earlier, but must not be around | 16:47 |
shadeslayer | clivejo: apol https://quickgit.kde.org/?p=scratch%2Fgarg%2Fkcm-driver-manager.git&a=blob&h=c7e550193a3d632eb7960b58775f80e5b6b02146&hb=cd751da5146543dc34b0d7417b515954c7b373c3&f=src%2FModule.cpp < line 85 | 16:54 |
shadeslayer | that connect call is weird | 16:55 |
apol | clivejo: try e-mail, I've never talked to him on IRC | 16:55 |
shadeslayer | I sure write some weird code | 16:55 |
apol | shadeslayer: there's no connect at line 85 | 16:55 |
shadeslayer | apol: 87-88 | 16:55 |
apol | xD true | 16:56 |
apol | it's weird, it's not wrong though | 16:56 |
apol | i.e. compiles | 16:56 |
shadeslayer | yeah | 16:56 |
sgclark | yofel: it looks to me like 15.12 translations never made it into archive.. | 16:59 |
shadeslayer | clivejo: would recommend stepping through Module.cpp via gdb | 17:02 |
shadeslayer | break on line Module.cpp:84 then step through it line by line | 17:02 |
shadeslayer | to see where it stops | 17:02 |
clivejo | can I do that from kdevelop? | 17:09 |
shadeslayer | clivejo: probably, I just use the command line | 17:26 |
sgclark | yofel: ok looks like only a chunk of them got missed somehow https://launchpad.net/~kubuntu-ppa/+archive/ubuntu/staging-misc | 17:43 |
sgclark | yofel: how do we get those in archive? sru? | 17:43 |
soee_ | https://plus.google.com/110954078302330754910/posts/KtEd5A51NvH :) | 18:16 |
renee77 | hi all | 18:30 |
* renee77 waving@clivejo | 18:30 | |
soee_ | hiho renee77 | 18:31 |
renee77 | :) is there someone availleble to show me how to triage? | 18:31 |
soee_ | valorie: ^ | 18:32 |
* soee_ can show only how to be annoying ;D | 18:32 | |
renee77 | I ve read about what I am supposed to do but not sure how i have to | 18:32 |
renee77 | lol | 18:32 |
renee77 | not realy familiar with irc is there a way to allert someone? want to go back to mastering code, but not want to mis oppurtunaty to get in to triaging. I feel I cant do anything usefull and I really want to :D " warned you about being a nasty volunteer ;-)" | 18:42 |
soee_ | you just have to use someones nick | 18:42 |
soee_ | like: hey renee77 | 18:43 |
renee77 | ah ok :) | 18:43 |
soee_ | you can use TAB to autcomplete nicks | 18:43 |
soee_ | we have also channels on Telegram app | 18:44 |
renee77 | and thats where incoming ASCII BEL has to be selected | 18:44 |
renee77 | ah ok have that one too on my pad | 18:44 |
renee77 | not used but it was there | 18:44 |
soee_ | :D | 18:44 |
soee_ | ovidiu-florin: how can she join Telegram channels ? | 18:45 |
soee_ | some invite is required or they are open? | 18:45 |
renee77 | lol looking @ a blank screen account already made | 18:47 |
telegram | <@marcinsagol>: hmm you should be able to join herw | 18:48 |
renee77 | ok will be there soon ;) | 18:51 |
soee_ | there are channels: kubuntu-devel, kubuntu-cafe | 18:53 |
soee_ | and kubuntu i think | 18:53 |
soee_ | renee77: you might want to join also community on Google+ | 18:56 |
soee_ | there are some news, discussions etc. sometimes | 18:56 |
renee77 | oke thanks still have creamy screen | 19:00 |
renee77 | reading faq now | 19:00 |
clivejo | oh well | 19:10 |
clivejo | I quit | 19:10 |
clivejo | After a quiz I shouldnt even be allow near a computer | 19:11 |
clivejo | "Meh. You're fairly digital I suppose - but I wouldn't trust you with any hardcore Linux coding." | 19:11 |
sgclark | lol wut? | 19:13 |
clivejo | I took a quiz | 19:14 |
clivejo | it told me Im not geeky enough | 19:14 |
clivejo | oh well | 19:14 |
* sgclark giggles | 19:14 | |
renee77 | lol | 19:14 |
sgclark | I think you're geeky enough clivejo :) | 19:15 |
soee_ | https://www.youtube.com/watch?v=dPOyOM7wxlE | 19:15 |
clivejo | Ill have to resign from Kubuntu and start a career as a spoon whittler | 19:15 |
sgclark | lol | 19:15 |
clivejo | https://www.youtube.com/watch?v=Fruzi0QYweo | 19:16 |
clivejo | but Im not living in a tent | 19:17 |
renee77 | hehe | 19:17 |
* renee77 was wondering | 19:17 | |
soee_ | will you use git to version spoons ? | 19:17 |
clivejo | no, thank god! | 19:18 |
clivejo | just a huge collection of special spoons! | 19:19 |
shadeslayer | I still haven't watched monty python :( | 19:20 |
soee_ | sgclark: some problematic are this last 4 reds on frameworks list ? | 19:21 |
* soee_ throws holly hand granade at shadeslayer | 19:21 | |
shadeslayer | heh | 19:21 |
shadeslayer | I have played Worms though :P | 19:21 |
clivejo | Ill supply free spoon to sgclark so she can beat soee_ over the head with :P | 19:21 |
soee_ | ;D | 19:21 |
shadeslayer | I'll just ask my gf to bring it over when she visits next xD | 19:21 |
shadeslayer | so that I can watch it | 19:21 |
shadeslayer | because apparently netflix doesn't have it | 19:22 |
soee_ | clivejo: what what you starts, i have this https://www.youtube.com/watch?v=xOrgLj9lOwk | 19:22 |
Odur | Upgrading report: From 15.10 to 16.04 with kubuntu backports and updates ppa enabled and a couple of other third-party repositories. Black screen on boot. Fixed by reinstalling nvidia driver and disabling secure boot. Amarok was gone, but after purging amarok-common and reinstalling amarok it was fine. Probably backports ppa's fault. Other than that, no problem! | 19:23 |
=== ghostcube_ is now known as ghostcube | ||
clivejo | LOL - http://www.theregister.co.uk/2016/04/28/windows_10_live_tv/ | 20:23 |
mamarley | Hah, serves them right for running Windows®. | 20:24 |
clivejo | indeed! | 20:25 |
sgclark | shadeslayer: prepare an archive? | 20:30 |
shadeslayer | sgclark: yeah just zip up everything | 20:30 |
shadeslayer | whatever you want me to upload | 20:31 |
* sgclark ponders what that means | 20:31 | |
shadeslayer | well, all of the .changes files with everything that is required in a upload | 20:32 |
shadeslayer | or a command to run that will generate everything | 20:32 |
shadeslayer | I'm sorry, I don't have enough time to go through things by hand, so it makes things easier if you can give me exactly what needs to be uploaded | 20:33 |
clivejo | hi rick | 20:35 |
sick_rimmit | Hey clivejo | 20:35 |
sick_rimmit | How you doing ? | 20:35 |
clivejo | calming down a bit | 20:35 |
sick_rimmit | Been hectic today ? | 20:36 |
clivejo | its election day for us next week | 20:36 |
clivejo | and the polictians are out being friendly with people | 20:36 |
sick_rimmit | Ah yes, that old chestnut | 20:37 |
clivejo | big posters strapped to every junction and hole in the hedge with their ugly mugs on it | 20:37 |
sick_rimmit | Ask them when they plan to get control of the country back ? | 20:37 |
clivejo | I had one here for 20mins | 20:37 |
clivejo | I just smiled and nodded and bit my tongue, but boy did they wind me up | 20:38 |
sick_rimmit | he hee yeah ! | 20:38 |
clivejo | I need to train my dog to attack on command | 20:38 |
clivejo | have them scared to get out of the car | 20:39 |
sick_rimmit | They know not to come to see me, they'll get a darn good talking to | 20:39 |
sick_rimmit | I don't stand no nonsense, and I'm not interested political clap trap and philabuster. | 20:39 |
sick_rimmit | I know the facts, any nonesense and they get both barrels | 20:39 |
sick_rimmit | lol | 20:39 |
* ahoneybun thinks this should be in #kubuntu-offtipoc | 20:39 | |
ahoneybun | *kubuntu-offtopic | 20:40 |
sick_rimmit | ahoneybun: Is right, well pointed out | 20:40 |
clivejo | hi slhk_ | 20:40 |
sick_rimmit | Ooo I got a nice email from a Muon User, about a Bug. How awesome | 20:41 |
slhk_ | hi clivejo! | 20:41 |
clivejo | slhk_: may I pick your brains? | 20:42 |
slhk_ | clivejo: I've read your messages about kcm, I don't know it. should take a deep look | 20:42 |
clivejo | ah! | 20:42 |
clivejo | https://quickgit.kde.org/?p=scratch/garg/kcm-driver-manager.git | 20:43 |
clivejo | https://quickgit.kde.org/?p=scratch%2Fgarg%2Fkcm-driver-manager.git&a=blob&h=c7e550193a3d632eb7960b58775f80e5b6b02146&hb=cd751da5146543dc34b0d7417b515954c7b373c3&f=src%2FModule.cpp | 20:43 |
slhk_ | but need to wait until monday, sorry | 20:43 |
clivejo | line 85 | 20:43 |
clivejo | that seems to be were the code blocks on my xenial box | 20:44 |
clivejo | do you understand what its doing? | 20:44 |
slhk_ | 85 is just building a file name, a string | 20:46 |
clivejo | well it connects to a socket of that name | 20:46 |
clivejo | then stops | 20:46 |
slhk_ | so it is probably 86 which is blocking | 20:47 |
clivejo | slhk_: do you know if its possible to step through code in kdevelop | 20:48 |
slhk_ | DebconfKde::DebconfGui constructor | 20:48 |
slhk_ | I don't use kdevelop, but sure it is possible | 20:49 |
clivejo | what do you use? | 20:49 |
slhk_ | but if you didn't compile the library yourself you need debug symbols and you need to tell it where to find the source code | 20:49 |
slhk_ | I use qtcreator | 20:49 |
clivejo | wish I even understood what this code even does! | 20:54 |
sick_rimmit | Ah ha | 20:56 |
sick_rimmit | So line 86 is trying to invoke the DebconfGUI which is the popup box | 20:57 |
clivejo | sick_rimmit: so we determined that the actually hardware detection is working | 20:57 |
clivejo | apt is doing an update | 20:57 |
clivejo | and seems to be hanging after this | 20:58 |
sick_rimmit | OK, | 20:58 |
clivejo | but why does it run on your system with an updated libqapt? | 20:59 |
sick_rimmit | Long shot | 20:59 |
sick_rimmit | Is it ownership of the /tmp/qapt socket | 21:00 |
sick_rimmit | systemd likes to set tmp files that are owner specific and abstracted | 21:00 |
sick_rimmit | You could check that by lookng at socket owner and kcmshell5 process owner | 21:01 |
sick_rimmit | I'm stabbiing in the dark abit there | 21:01 |
clivejo | oh! | 21:02 |
clivejo | its doing something | 21:03 |
sick_rimmit | ooo | 21:03 |
clivejo | oh maybe not | 21:03 |
clivejo | kcmshell5 is owned by the local user | 21:06 |
sick_rimmit | Expect, good | 21:07 |
sick_rimmit | and the socket | 21:07 |
clivejo | eakk | 21:07 |
clivejo | they updated firefox | 21:07 |
clivejo | looks weird | 21:07 |
clivejo | socket is owned by local user too | 21:08 |
clivejo | other sockets there are owned by root | 21:09 |
clivejo | who owns it on your box | 21:09 |
sick_rimmit | Hang on I look | 21:09 |
sick_rimmit | localusr | 21:10 |
sgclark | shadeslayer: well it may be awhile, new laptop and it seems I do not have access to depot for the script. | 21:11 |
shadeslayer | ah ok | 21:11 |
shadeslayer | sgclark: whatcha get? | 21:11 |
sgclark | public key permission denied | 21:11 |
sgclark | perhpas I forgot a config file... | 21:11 |
shadeslayer | no, the new hw :P | 21:12 |
sgclark | never know how much config goes into packaging till you move computers heh | 21:12 |
sgclark | oh | 21:12 |
sgclark | lol | 21:12 |
sgclark | Was donated to me by very lovely folks, a dell precision 7510 | 21:13 |
shadeslayer | nice :D | 21:13 |
clivejo | anyone else get this firefox update today? | 21:17 |
sgclark | well I have no idea how to access depot. perhaps I need to bug some sysadmins @ kde | 21:17 |
clivejo | sgclark: Host depot.kde.org | 21:21 |
clivejo | User ftpubuntu | 21:21 |
clivejo | IdentityFile ~/.ssh/your_key | 21:21 |
sgclark | have that | 21:21 |
shadeslayer | new ssh key? | 21:21 |
clivejo | then ssh depot.kde.org | 21:21 |
sgclark | yes | 21:21 |
clivejo | need to use your old key | 21:21 |
sgclark | well I have been commiting to kde repos.. | 21:22 |
sgclark | my old key? umm why? | 21:22 |
clivejo | or setup the new key on KDE | 21:22 |
sgclark | already did for my kde work | 21:22 |
clivejo | and what does it say when you try "ssh depot.kde.org" | 21:22 |
clivejo | sgclark: missing file in kdelibs4support - /usr/share/man/it/man1/kf5-config.1 | 21:27 |
clivejo | and in krunner - /usr/share/kdevappwizard/templates/runner.tar.bz2 | 21:27 |
shadeslayer | I think depot uses different setup | 21:28 |
shadeslayer | for keys | 21:28 |
shadeslayer | sgclark: give me your key | 21:28 |
shadeslayer | the new pubkey | 21:28 |
clivejo | sgclark: any luck pushing git to LP? | 21:28 |
sgclark | shadeslayer: nicolas helping me | 21:30 |
shadeslayer | ah ok | 21:30 |
shadeslayer | gl :) | 21:30 |
sgclark | clivejo: totally distracted by other things | 21:30 |
sgclark | shadeslayer: yakkety running, then I will do xenial backport, I am running the 15.12.3 as it looks like we never got to it. Where should I put these tars when they are ready? | 21:44 |
shadeslayer | share.kde.org ? | 21:44 |
shadeslayer | dropbox? | 21:44 |
shadeslayer | anything works really :) | 21:44 |
sgclark | okies ty | 21:45 |
shadeslayer | yw | 21:45 |
clivejo | ahoneybun: have you tried uNav on your phone? | 21:45 |
sgclark | clivejo: I did make progress on git for LP but then we discovered that CI integration will require extra attention and scripts/webservers/POST etc. I am not entirely in a huge rush now, as I personally do not have the time to write such things right now. | 21:51 |
clivejo | :( | 21:53 |
clivejo | should we just continue on with debian git for now? | 21:53 |
sgclark | I think so personally. | 21:53 |
sgclark | My future is in limbo and unknown right now and I may very well be moving soon. So perhaps this is not a good time for the move to LP | 21:55 |
clivejo | whats yofel's thoughts on it? | 21:55 |
sgclark | I don't know | 21:55 |
clivejo | need to chat to him if hes about | 21:59 |
clivejo | Id like to get on with dev aka yak | 22:00 |
clivejo | sick_rimmit: o/ | 22:02 |
sgclark | I really have no desire to do all of applications by hand. frameworks took a terribly long time... | 22:06 |
clivejo | Im pretty sure that script works if dev is done first | 22:07 |
sgclark | I have not used it since the move to git, no clue. | 22:08 |
renee77 | Me waves @all | 22:37 |
valorie | hi renee77, how are you getting on? | 22:39 |
sgclark | shadeslayer: 340mb just for yakkety, share.kde.org and dropbox to small. Any other ideas? | 22:42 |
shadeslayer | hm | 22:42 |
shadeslayer | sgclark: https://curl.io/ | 22:42 |
sgclark | neat, uploading | 22:46 |
soee | sgclark: frameworks ready for tests ? | 22:49 |
sgclark | soee: mm distracted, I think so, one sec | 22:52 |
sgclark | shadeslayer: https://curl.io/get/di4f5p7b/73538ce80d4ea048d607f58b51184120ef465551 | 22:52 |
soee | sgclark: 1 package kept back http://paste.ubuntu.com/16120847/ | 22:55 |
shadeslayer | downloading | 22:56 |
sgclark | hmm ok, also still uploading symbols | 22:56 |
soee | detailed report: http://paste.ubuntu.com/16120856/ | 22:56 |
sgclark | shadeslayer: xenial running now | 22:59 |
shadeslayer | ack | 23:01 |
shadeslayer | sgclark: all uploading to yakkety | 23:04 |
shadeslayer | lets see if it works | 23:04 |
sgclark | shadeslayer: thanks! | 23:04 |
sgclark | this will fix many bugs piling up. no idea how a chunk of them got missed, very odd | 23:05 |
sgclark | I really need to go after motu myself :*/ | 23:05 |
valorie | \o/ | 23:06 |
valorie | I think they give you a sword with that | 23:06 |
valorie | so you can do the He-Man thing | 23:06 |
sgclark | Shera :) | 23:06 |
valorie | I HAVE THE POWER! | 23:06 |
sgclark | one thing at a time, lets make sure i am not homeless first heh | 23:06 |
shadeslayer | sgclark: https://launchpad.net/ubuntu/+source/kde-l10n-nb/4:15.12.3-0ubuntu1 | 23:07 |
sgclark | woot, your my hero shadeslayer ty! | 23:08 |
shadeslayer | np | 23:08 |
valorie | sgclark: did your hubby lose his job in the Intel bloodbath? | 23:08 |
valorie | thank you shadeslayer | 23:08 |
sgclark | valorie: they are making us wait to find out until Friday night... cruel and unusual punishment. I hate Intel more each day. | 23:09 |
shadeslayer | <3 | 23:09 |
valorie | sgclark: ick! | 23:10 |
shadeslayer | sgclark: oh? :( | 23:10 |
shadeslayer | sgclark: *hugs* | 23:10 |
sgclark | ty | 23:10 |
valorie | {{{{{{{{{{{{{{hugs}}}}}}}}}}}}}}}}} | 23:10 |
sgclark | yes life could get interesting for me soon | 23:10 |
sgclark | as he is our only income, this will hurt heh | 23:10 |
valorie | I hope for the best | 23:11 |
sgclark | ty | 23:11 |
valorie | how is your Debian outreachy project going? | 23:11 |
sgclark | does not start till May | 23:11 |
sgclark | which is why I am desperately trying to get Kubuntu hats finished | 23:12 |
shadeslayer | oh will I see you around in Debian more? | 23:12 |
sgclark | shadeslayer: I will be working on reproducible builds | 23:13 |
valorie | well, if it's anything like GSoC, now is community bonding period | 23:13 |
shadeslayer | ah nice | 23:13 |
valorie | so do the bonding! | 23:13 |
sgclark | ok, bugger Kubuntu, I gots some bonding to do :) | 23:14 |
valorie | rofl | 23:14 |
valorie | wait, that's now what I meant...... | 23:14 |
valorie | lol | 23:14 |
valorie | not | 23:14 |
sgclark | lol | 23:14 |
sgclark | well not sure what is up with oxygen-icons5, it seems to think there is a newer version. | 23:15 |
valorie | anyway, yes I hope we can get the dev in Kubuntu on a good path | 23:15 |
valorie | so the workload is less for you devels | 23:16 |
valorie | and with renee77 to pitch in on bug reports, we'll be able to sort those out better too | 23:17 |
sgclark | valorie: don't suppose you contacted flames? they still show as deactivated. Perhaps you could butter him up and find out what happened. | 23:20 |
valorie | I don't have an email address, sgclark | 23:21 |
sgclark | oh | 23:21 |
valorie | could only do lp, and now that is gone | 23:21 |
valorie | I wrote a response on lp, but don't know if s/he will see it | 23:22 |
sgclark | ok I sent a mail | 23:25 |
sgclark | lets hope they respond. Would at least like to know if something happened | 23:26 |
valorie | yes, I hope I didn't offend by suggesting that they could edit the wiki directly | 23:28 |
valorie | that would really suck | 23:28 |
shadeslayer | sgclark: ok heading to sleep | 23:47 |
sgclark | shadeslayer: ok I will upload tomorrow | 23:47 |
* valorie goes to fix dinner and then head to dad's | 23:47 | |
shadeslayer | sgclark: awesome | 23:48 |
shadeslayer | sgclark: if it's nearly done, I can stick around for 10 minutes | 23:48 |
sgclark | it is done, was going to uploadd to curl.io. doing it now | 23:48 |
shadeslayer | ahhh ok | 23:48 |
shadeslayer | sticking around | 23:49 |
shadeslayer | sgclark: btw, you'll need to file a SRU bug I think | 23:49 |
sgclark | shadeslayer: https://curl.io/get/gfntbisj/3384cfe71eda75407da1a0570e6496d5b8b62c19 | 23:49 |
sgclark | shadeslayer: ok will do that now thanks | 23:49 |
shadeslayer | to get these updated | 23:49 |
shadeslayer | cheers | 23:49 |
Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!