=== claydoh_ is now known as claydoh [02:28] How do I report a bug if the bug system crashed [02:31] brianherman_home: bugs.launchpad.net or bugs.kde.org [02:36] I can see it on the right hand side [02:36] cant [02:37] my bad [02:37] i was on the wrong page [02:38] is kubuntu-7 the right one [03:35] * ScottK waves from home. [03:35] ScottK: welcome back to the DC-ish area! [03:35] Thanks. [03:35] * claydoh waves back [03:37] ello ScottK [04:18] It would be nice if anyone could offer up any distro specific stuff we have that Debian doesn't in the comments to this post: http://pusling.com/blog/?p=163 [04:22] ScottK: added, but it says something about moderation [04:22] dunno if that is your blog or not [04:22] No, it's not. [04:22] They guy is one of the ldead Debian KDE guys. [04:23] They/the [04:23] txwikinger: Did you file a bug about the lernid thing? [04:23] What you've got there is enough to make it reasonably tractable to fix. [04:23] ScottK: no not yet [04:23] OK. [04:23] I try to fix it [04:23] Even better. [04:24] I don't know why it uses gnome-keyring [04:25] it should use kwallet when on KDE [04:25] but then.. I don't think it does not even need it [10:14] ScottK: when you login again, could you remind me of the name of the email app you were recommending to me? [10:26] jussi: mutt? ^^ [10:26] apachelogger: no, for android ;) [10:26] mutt :P [10:26] lol [10:27] * apachelogger notes that there is no good email app for android he knows of [10:27] quite frankly it does not suprise me after the how to not do development for android talk last week [10:27] every android dev does work like that.. [10:27] * apachelogger better stops before he goes into emergency shutdown again ^^ [10:28] Hi everybody [10:30] apachelogger: lol [10:30] apachelogger: ScottK was telling me about one he quite liked, and I just forgot the name [10:31] aloha AlexzAK [10:31] jussi: well, hence my assumption that it must have been mutt for android :P [10:31] only mutt is likeable [10:31] everything else is barable [10:31] lol [10:33] I want to try being kubuntu developer... Can anyone help me with it? [10:33] Can you give me some small task to do? [10:33] Im off in any case. [10:34] AlexzAK: just hang out, Im sure apachelogger or someone will make you a minion and give you minion tasks :D [10:34] jussi: Sounds good :) [10:34] omg!!! [10:34] omg with the powers of two!!! no danimo!!! [10:35] and my qt creator is crashing [10:36] AlexzAK: do you have enough time to do "research"? [10:38] apachelogger: What kind of "research"? [10:38] finding out how many different versions there are of bug 554514 [10:38] Launchpad bug 554514 in akonadi "cant find resource agents" [Medium,New] https://launchpad.net/bugs/554514 [10:39] by versions I mean, possible causes [10:39] because from the comments I would say there are at least 3 (too slow machine, broken database, slow startup because of database recovery after incomplete shutdown) [10:39] that said [10:40] AlexzAK: I think it might help a bit if you'd tell us what exactly youd be interested to do :) [10:40] I would very much recommend to "scratch an own itch" as they as [10:40] do something about something that annoys you, or that you want to have... [10:40] Im still here and +1 to that suggestion [10:41] but Im going :D [10:42] * apachelogger is wondering how many times jussi tries to go off and winds up back here per day ^^ [10:43] apachelogger: I came back because I had no idea how much money was in my bank account and I needed to check :D [10:43] ^^ [10:43] oh [10:43] jussi: time to get rid of the uds chans [10:43] apachelogger: I need to bother tsimpson about that. [10:43] but you are correct [10:44] well, my quassel has thrown them away already [10:44] * apachelogger pets quassel and continues wondering why his qt creator crashses [10:45] apachelogger: I dont know what i want to do... "scratch an own itch" - is good... i have to think about it... [10:45] apachelogger: I'll try to find out how many different versions there are of bug 554514 [10:45] Launchpad bug 554514 in akonadi "cant find resource agents" [Medium,New] https://launchpad.net/bugs/554514 [10:47] aha! [10:47] it's all kde's fault [10:47] somehow qt creator runs into a segfault when loading the icon cache for the config dialog [10:47] very weird [11:31] apachelogger: I'am can't reproduce bug 554514 :( [11:31] btw, i have kmail configs created on 9.04 and upgraded to 10.04 :( [11:31] Launchpad bug 554514 in akonadi "cant find resource agents" [Medium,New] https://launchpad.net/bugs/554514 [11:32] apachelogger: and i'am using it as gnome user... [11:33] see, that is the beauty of this bug, I cant reproduce it either [11:33] well, actually I can if I logout of a session with a billion apps [11:33] then for some reason akonadi might not quit properly and leave the database dirty, hence causing recovery on next login, which then will trigger errors [11:34] * apachelogger is tempted to close that report really [11:34] it is not a problem it is a symptom of a problem [11:34] actually, various problems :( [11:35] apachelogger: I'll try to break my akonadi db.... :) (Of course with backups) [11:36] Sput: say you have to store standard cpp objects in a vector, would you concur that storing pointers to the objects is the best way to do it? [11:36] apachelogger: yes, though QList<> internally does that already [11:36] afaik [11:37] * apachelogger notes that one needs a copy constructor to push to QList ;) [11:37] noticed that yesterday [11:37] anyhow, I am working on a course exercise right now [11:37] apachelogger: moving around pointers is also more efficient than copying objects, obviously [11:37] AlexzAK: I usually forget backups so I end up breaking useful data ;) [11:37] apachelogger: but yeah, QList does that automagically [11:38] yeah [11:39] (I think copying a QList will try to copy the objects though, copying a QList won't) [11:40] ah, that would make sense [11:41] ahhh [11:41] q_foreach might be why I needed a cctor [11:41] IIRC it "simulates" constness by copying the objects first [11:42] apachelogger: yes, that's why you use const refs instead [11:42] foreach(const QVariant &v, myList) { } [11:42] ahhh [11:43] didnt know that works ^^ [11:43] that avoids the copy and is moar efficient if you don't want to modify the elements [11:43] also, sometimes iterators are the better alternative :) [11:43] you should listen to Thiago moar often! [11:46] groovy [11:46] \o/ [11:46] * apachelogger hugs Sput [11:46] * Sput feels hugged [11:51] hey [11:52] can anyone tell me if there was some sort of upgrade for newtwok manager? [11:52] I can't connect to my home network anymore :/ [11:55] apachelogger: I've found bug 572506... I think It is dublicate to Bug #554514.... I marked em as duplicate. Am i doing right? [11:55] Launchpad bug 572506 in akonadi "Akonadi crashes on start kmail, the kmail stops (dup-of: 554514)" [Undecided,New] https://launchpad.net/bugs/572506 [11:55] Launchpad bug 554514 in akonadi "cant find resource agents" [Medium,New] https://launchpad.net/bugs/554514 [11:56] unlikely [11:57] AlexzAK: as I said, the resources agent not found error is rather a symptom, one of the causes can be a crashing akonadi [11:57] Quintasan|Szel: check your dpkg.log :P [11:58] hngh I have IP conflicts on DHCP based nedtwork [11:58] network* [11:59] must be one crappy dhcp then :P [12:08] hmm [13:32] * apachelogger finds it awfully silent today [13:38] hm [13:38] Nightrose: did you happen to see my passport? [13:38] apachelogger: was i supposed to be looking for it? :D [13:38] nah, just thought maybe you saw it [13:39] * apachelogger cant find it *blush* [13:41] heh not good [13:41] as if one needed one when going to ch :P [13:42] bed linen \o/ [13:42] CHF \o/ [13:42] travelling \o/ [13:42] ah! [13:43] I think I know where my passport is [13:43] ha! [13:43] Nightrose: I can attend the sprint \o/ [13:43] * apachelogger has a valid passport [13:44] weeeeeeeeeeeeeeeeeee [13:44] I couldnt go to the US though ^^ [13:44] * Nightrose can fortunately [13:44] and will [13:44] wohoooo [13:44] \o/ [13:44] Nightrose: that thiny in portland, wasn't it? [13:44] jep jep [13:44] \o/ [13:45] maybe you meet linus, then you can complain about all the brokenness [13:45] haha [13:45] apachelogger: ! [13:45] oh [13:45] !! [13:45] we will see us sooon in randa!!! [13:45] \o/ [13:45] \o/ [13:46] apachelogger: So I'm thinking it might be best if you do the akonadi merge. [13:46] randa is at 1440 meter above sea level [13:46] that means super cold! [13:46] :/ [13:46] * apachelogger packs winter clothing [13:46] nooooooooooooooooooo [13:46] i want sun [13:46] and sea and stuff [13:46] JontheEchidna: did you have to scare my now Oo -.- :/ [13:46] lol [13:46] Nightrose: well, then we should not go do sprinting in the mountains [13:47] true that [13:47] * apachelogger isnt much of a fan of mountains anyway [13:48] Nightrose: we could attract loads of southern european contributors to KDE and then have good reasons to sprint there [13:48] yes! [13:48] we shall discuss this at the sprint then [13:49] i heard greece needs more geardheads [13:49] h [13:49] -d [13:49] oh [13:49] greece neads more of everything [13:49] :D [13:49] but since germany bought greece, we could just ship the KDE devs off to the southern european colony [13:50] "Don't forget your walking shoes!" [13:50] now [13:50] I do not have walking shoes! [13:50] I have dancing shoes, I have biking shoes, I have ski shoes, I have skateboard shoes [13:51] but I do not have walking shoes -.- [13:52] Nightrose: do you know whether we are getting wasted on arrival day? [13:52] no idea [13:52] i guess we'll find out [13:52] well, if we do not, I would stay longer in zurich :P [13:52] no way! [13:54] get wasted there, then sleep in the train, then hack all night, then be all karp0tt the first day of sprint and come up with world changing idea so that I can go home on the second day [13:55] hmmmmm let me think about it [13:55] no! [13:55] meh! [13:56] Nightrose: when are you, where are you, why are you arriving? [13:56] and with what or whom or something [13:56] no idea - depends on the mightly fregl [13:57] and that brings me to the question why fregl is not in here! [13:57] that is no way to treat one's downstream -.- [13:57] \o [13:57] o/ [13:57] he's traveling [13:58] and that is a reason for not lurking? [14:00] hmmm possibly [14:00] idunno [14:00] so he is not even using quassel! [14:01] omg! [14:01] horrible [14:02] afaik he is [14:03] that is even more horrible [14:03] you're not exactly making sense ;-P [14:03] *hug* [14:03] having quassel and not being online! [14:03] anyhow [14:03] * Nightrose goes and prepares foodish stuff [14:03] is http://community.kde.org/ new or something? [14:03] semi new [14:03] it doesnt seem to know my openid [14:04] apachelogger: launchpad openid? [14:05] no, I meant that literally [14:05] my myopenid ^^ [14:06] :P [14:09] ahhh [14:09] I was using my google account [14:10] Nightrose: btw, the kde wikis should be hooked up with that ubuntu login service thingy [14:10] would be ubercool [14:10] apachelogger: single sign on [14:11] thats what I said, isnt it :P [14:12] apachelogger: ubuntu login service thingy... hahaha [14:13] apachelogger: oh btw can you give a talk about kubuntu sometime in august? [14:13] via skype [14:13] via skype? Oo [14:14] apachelogger: or any other VoIP [14:14] i know its very far off.. still.. [14:14] ohhh [14:15] * apachelogger almost forgot about froscon's cfp [14:15] oh my [14:15] kubotu: np [14:15] shadeslayer_ is listening to "Back in Black" by AC/DC [Back in Black, 1994] [http://open.spotify.com/track/76O4RYvalfxxUb4omvoY2v] -- see http://www.last.fm/user/shadeslayer_ for more [14:15] shadeslayer: well, I suppose I can, but I find it very very very very odd [14:16] apachelogger: why? [14:16] I could just as well write it down and post it as blog post :P [14:16] just like irc talks it takes away everything that makes a talk talkworthy [14:16] you could post a writen version and then do a Q&A, and it would be no different :( [14:17] apachelogger: hehe.. well ill be holding a meeting sort of thing,and ill be launching 2 socities,a LUG and a coding group [14:18] hm, I really need more background information on this, but generally, yes I could do a talk [14:19] kubotu: np [14:19] Quintasan is listening to "SOMEONE ELSE" by Asumi Kana & Fujita Saki & Kitamura Eri -- see http://www.last.fm/user/Quintasan for more [14:19] oh [14:19] nice [14:19] * Quintasan hands apachelogger some cookies [14:19] neversfelde: late congrats [14:19] Nightrose: btw, I was thinking about proposing a super duper beginners talk for froscon ... stuff like, how to change a wallpaper, how to create a playlist, how to clip my pictures [14:19] Quintasan: theres identi.ca support as well :) [14:19] kubotu: order cookies for neversfelde [14:19] * kubotu slides a whole bunch of world's finest cookies down the bar to neversfelde. [14:19] it is the cookies [14:19] ! [14:19] shadeslayer: ha? how do I enable it? :D [14:19] \o/ [14:20] Quintasan: thank you [14:20] kubotu: identi.ca [14:20] :P [14:20] kubotu: identi.ca [14:20] :S [14:20] kubotu: help identi.ca [14:20] no help for topic identi.ca [14:20] omg [14:20] kubotu: help [14:20] help topics: 10 core modules: auth, basics, config, filters, httputil, irclog, remote, unicode, userdata, wordlist; 50 plugins: alias, autoop, autorejoin, bans, bar, botsnack, chanserv, debug, dns, eightball, excuse, factoids, googlefight, greet, hangman, host, identica, iplookup, karma, keywords, lastfm, modes, nickrecover, nickserv, note, q, quote, reaction, remind, ri, roshambo, rot, rss, salut, script, search, [14:20] seen, shiritori, spotify, time, topic, translator, tumblr, twitter, uno, urban, usermodes, weather, wheeloffortune, wserver (help for more info) [14:20] kubotu: help identica [14:20] identica status [nick] => show nick's (or your) status, use 'identica friends status [nick]' to also show the friends' timeline | identica dent [status] => updates your status on identi.ca | identica identify [username] [password] => ties your nick to your identi.ca username and password | identica actions [on|off] => enable/disable denting of actions (/me does ...) [14:20] ah [14:20] there we go [14:21] the identify should obviously be done in a query ;) [14:21] :D [14:22] kubotu: identica status [14:22] @neversfelde: he wants to check out the ' new ' features in !maverick :P (2 days, 22 hours, 20 minutes and 17 seconds ago via gwibber) [14:22] kubotu: identica status [14:22] killing @apachelogger 's bot (1 minute and 46 seconds ago via rbot) [14:22] awesome [14:22] :3 [14:23] Quintasan: twitter support as well :) [14:23] I have my Twitter linked with Identi.ca [14:23] so no need for it :P [14:23] I'm also thinking about getting rid of Twitter [14:28] I can't figure out why pbuilder is failing to satisfy the build dependencies :S http://paste.ubuntu.com/434380/ [14:29] Quintasan: any idea how to post from twitter to identi.ca ? [14:29] shadeslayer: beats me :/ [14:30] JontheEchidna: universe vs. main? [14:30] apachelogger: this is a universe package I'm building [14:30] actually, a package not in ubuntu [14:30] JontheEchidna: that still requires you to have pbuilder configured to include universe :P [14:30] it should... [14:30] since libaqbanking29-dev is in universe that is my best guess [14:31] I can install libaqbanking29-dev just fine in the pbuilder [14:31] is it >= 4.2.4? [14:32] cause I only see 4.2.3 in lucid [14:32] should be in maverick: https://edge.launchpad.net/ubuntu/+source/libaqbanking/4.2.4-1 [14:32] oh, is this a lucid pbuilder? [14:33] *facepalm* [14:33] ^^ [14:34] hehe [14:38] So it seems that somebody placed an XL UDS t-shirt into the Medium pile :/ [14:38] hahaha [14:39] * shadeslayer can only imagine the state of the medium pile [14:39] ^it was empty, except for that t-shirt, actually [14:39] hahaha [14:40] oh well, I have the neat crew t-shirt [15:00] Hmmm... cmake is on https://wiki.kubuntu.org/Kubuntu/MaverickKDEMerges but not merges.ubuntu.com ... I'm guessing that that means I'd have to manually merge the two? [15:02] JontheEchidna: I think they did that so you have to come again to uds-n [15:03] narcotic ninja [15:03] oh [15:03] nude ninja [15:03] ^^ [15:09] apachelogger: I have bug 554514 8-) [15:10] Launchpad bug 554514 in akonadi "cant find resource agents" [Medium,New] https://launchpad.net/bugs/554514 [15:11] apachelogger: Fresh kubuntu install; bootup; login; start "akonadi configuration"; have error [15:12] that would be the sloweness-cause then [15:12] lots of things to do at first start [15:12] so the timeout gets exceeded [15:13] apachelogger: I dont think so [15:13] apachelogger: but i need to check it out [15:14] AlexzAK: does the error dialog also say that the server is not registered at dbus? [15:14] apachelogger: yes [15:14] * apachelogger finds the ordering of errors a bit stupid in the dialog [15:14] see [15:14] if the server is not registered to dbus [15:14] i'll attach log in a few minutes [15:14] it either is dead or was just not registered at the time the check was done [15:15] those two cases however imply that no resource agents are found [15:15] so the unavailablility of akonadi server is really what causes the no resource agents [15:16] apachelogger: http://pastebin.com/Vdpjk1aN [15:17] ah [15:17] File content of '/home/testuser/.local/share/akonadi/akonadiserver.error': [15:17] Control process died, committing suicide! [15:17] that is the random-crash-cause [15:17] apachelogger: my buggy kubuntu was idle around 30minues but still have thet problem [15:18] * apachelogger couldnt reproduce that at all [15:18] File content of '/home/testuser/.local/share/akonadi/akonadi_control.error': [15:18] D-Bus session bus went down - quitting [15:18] that however looks like dbus died [15:18] dbus died -> making the control pocess die -> implying death onto the server [15:19] AlexzAK: please attach that to the bug, it's a whole different issue it would seem [15:19] thanks :) [15:19] AlexzAK: maybe you could also attach the ~/.xsession-errors file [15:21] apachelogger: Do you mean file this issue as a new bug report? [15:22] just ditch it in there [15:22] I'll need to divide it at some poine anyway [15:22] because that makes it 4 issues that lead up to the symptom :S [15:23] http://pastebin.com/arVV4rCc [15:25] ryanakca: maybe it does not need merging? [15:25] ohm [15:25] AlexzAK: and that is on a completely new install? [15:25] apachelogger: yes [15:26] one reboot, and virtual box additions [15:26] looks like dbus was either not started at all or crashed not long after that [15:26] apachelogger: Do you understeand anything? %) [15:26] I have that virtual computer here [15:27] What i should to do? [15:27] in line 16 kded (the background service app) tried to attach to various dbus interfaces and failed with an error i never saw before [15:27] and kded gets started pretty early in the startkde process (hence it is already at line 16 ;)) [15:27] Yes [15:27] now if you search that log for d-bus or dbus you will find a lot more of similar and not so similar results [15:28] all suggesting that no dbus daemon was running or it was rather broken [15:28] This just mean "something wrong with D-Bus"... [15:28] How can i chech it status? [15:29] AlexzAK: try a restart [15:29] if that does not change the situation then we'll have to digg a lot deeper [15:30] apachelogger: dbus-daemon process running... [15:30] two of them [15:30] I'll do reboot... [15:32] folks, where are the KDE and Kubuntu shirts in that pic? -> http://www.flickr.com/photos/kwwii/4610334160/sizes/o/ [15:32] only found Riddell so far [15:33] I'm sitting next to Riddell [15:35] JontheEchidna: not wearing a blue shirt or a Kubuntu logo :( [15:35] I did wear my blue "Sonic the Hedgehog" shirt the next day [15:36] I had crew duty that day, which was why I was wearing the yellow shirt [15:37] *sigh* there is a serious lack of Kubuntu evidence in that picture :( [15:38] We should petition for blue lanyards next time [15:39] and wear KDE or Kubuntu shirts, or at least having one ready for the group picture, else people will never even guess there are KDE people there [15:39] I see agateau in the very center of the picture [15:39] dantti's to the left of Riddell, and rbelem is behind dantti [15:41] and noone is recognizable as a KDE person :( [15:46] apachelogger: Maybe you are right about slow machine... I have this problem again :) [15:47] apachelogger: it is so good when bug can be reproduced :) [15:47] AlexzAK: yeah, just make sure you snapshot that virtual machine ^^ [15:48] JontheEchidna: you did not get blue ones? [15:48] apachelogger: nope [15:48] outrages [15:48] so you had to wear them orange thingies? [15:48] yeah [15:48] Oo [15:48] well, I suppose we didn't have to, but otherwise we wouldn't have had a nametag [15:49] you know what, next uds I will just make sure to attend myself and take kde ones with me [15:50] * apachelogger plays spot-the-scott [15:58] apachelogger: It is seems "Akonadi Configuration" just douse not start akonadi server... [15:59] apachelogger: It can be started by pressing "start" button on "Akonadi Server Configuration" tab [15:59] :( [16:05] ScottK: Could you take a look at kmymoney in new queue? It wasn't autosynced from Debian (and it needed some changes to build anyways) so I did an initial merge and uploaded [16:09] jussi: K-9 mail [16:10] apachelogger: ^^^ is at least good enough I didn't return my phone over lack of email clients. [16:10] oh, btw, there is a release candidate for the new KMyMoney for KDE 4, any chance to have that soon in the PPA? [16:10] apachelogger: I've just created one contact http://imagepaste.nullnetwork.net/viewimage.php?id=949 [16:12] Mamarok: oh, really? I just uploaded whatever release came before that, it seems [16:12] to maverick, which is not exactly a ppa though [16:13] I think claydoh has been doing a KMyMoney ppa [16:13] not for the KDE4 version, sadly [16:13] unless I missed any news [16:13] they released the RC yesterday or today IIRC [16:13] https://edge.launchpad.net/~claydoh/+archive/kmymoney2-kde4 [16:13] JontheEchidna: Mamarok I do have it in my ppa, the rc [16:13] apachelogger: You live in an odd place for a person who is not a fan of mountains. [16:14] except for lpia, for some reason [16:14] claydoh: oh, then I need to upgrade ASAP, I really missed that [16:14] lpia support has been dropped, iirc [16:14] lpia is dead. [16:14] ScottK: there are not that many mountains in his place, come to Switzerland if you want to see real high ones [16:14] JontheEchidna: the failing to build is not to bad then :) [16:14] ScottK, jussi: ah k9 is indeed one of the better android clients [16:14] * ScottK is still deep in backscroll, but chatview FTW. [16:15] claydoh: I'm surprised soyuz is still dispatching lpia builds at this point, myself [16:15] claydoh: Hardy is the only release that has a significant lpia user base. [16:15] It just does for releases where lpia exists. [16:15] ScottK: in Graz the definition of mountain is, lets say, a bit off ;) [16:15] apachelogger: Fair enough. [16:15] * claydoh has very meager packaging skilz anyway. only karmic spat out the error [16:16] ScottK: http://en.wikipedia.org/wiki/Grazer_Schloßberg [16:16] lpia on karmic doesn't actually even work, so don't worry about it at all. [16:16] oh [16:16] well [16:16] it is 123 m [16:16] which of course the wikipedia artcile doesnt mention ;) [16:16] ScottK: I haven't been worruing due to lack of complaints [16:16] claydoh: you don't have deb packages for it, don't you? WOuld be nice to have [16:18] Mamarok: in my kmymoney ppa: https://edge.launchpad.net/~claydoh/+archive/kmymoney2-kde4 [16:18] hm, it didn't prompt me for that, let's see... [16:19] ah [16:19] well Karmic just finished building, literally minutes ago [16:19] * apachelogger just debugged inline linker madness -.- [16:19] nope, no kmymoney-dbg package in any repo [16:19] and I use Lucid [16:19] JontheEchidna: does krazy actually complain about inline functions? [16:19] apachelogger: dunno [16:19] typo, sorry, I ment debug package [16:19] JontheEchidna: cause I think the codying style should forbid inline :P [16:19] * apachelogger is all for fobidding madness actually [16:19] and inline functions are as mad as it gets [16:20] or discourage the use [16:20] Mamarok: no dbg package [16:21] hm, is there an IRC channel for KMyMoney? [16:22] thoug I should rectify that, and also noticed that the rc is now compatible with the newer aqbanking stuff [16:22] it doesn't let me open an older file, talking about a bad passphrase [16:22] and I never even typed the passphrase yet [16:22] Mamarok: mo, iirc. Mostly the user and devel mailing lists [16:23] Mamarok: I kied there is a #kmymoney probably very idle :) [16:24] the maine devs seem to be there though [16:24] =OK, I try erasing all the config files I have, let's se if that helps [16:24] er main [16:25] Ha, I thought I'd never see they day when the Doctor ran over old people in a milk van. [16:25] JontheEchidna: Instead of changing kde4 to kde in the doc install path you can change it to kde* and it will work on both Debian and Ubuntu. Please fix that in the Debian packaging svn. If you don't have access, please let me know and we'll get that fixed. [16:26] ScottK: ok [16:26] JontheEchidna: Accepted. [16:26] ScottK: In the future, would it still be worth it to do a merge over boost and the package description? [16:26] thanks [16:27] If boost is the only thing, it's not worth keeping. I'd suggest discussing with Debian a wording that would work in both distros so we can sync. [16:27] hm, no way to open the old file :( [16:27] ScottK: imo mentioning squeeze should be left to the debian/changelog entry that introduced the transitional package [16:29] apachelogger: are you there? [16:29] not really, whats up? [16:30] JontheEchidna: I suspect you are correct, but doing it the other way is not wrong, so it's a question of discussion with Debian and coming to a common understanding. [16:30] i think if you start 'kontact' with stopped akonadi you get error [16:30] well yeah, kontact includes kaddressbook and kaddressbook does not work without akonadi at all [16:31] also kmail indirectly uses kaddressbook for contact lookups [16:31] apachelogger: i have buggy version on virtual pc and dont know what to do :( [16:32] JontheEchidna: The reason kmymoney didn't get sync'ed is sync-source and sync-source-new are two different things and I don't think anyone ran sync-source-new yet. [16:32] apachelogger: Akonadi MUST start with login? [16:33] apachelogger: or by demand? [16:33] Currently we start on demand which is a better design, but it often takes too long. [17:11] ScottK: you know those conflicts/replaces issues you were talking about at UDS? [17:12] Vaguely? [17:12] Where the version wasn't bumped high enough for the backported packages from the previous distro release [17:12] Ah, yes [17:12] I believe those all came about during merges with Debian [17:12] before we upgrade to the beta of KDE 4.next [17:13] hi everyone [17:13] are specs from UDS up? [17:13] yuriy: mostly, I think: https://wiki.kubuntu.org/KubuntuMaverickSpecs [17:13] JontheEchidna: Perhaps, but they were going to be wrong either way as people used the current version as the baseline for conflicts/replaces and then later 4.3.3 -> 4.3.5 got done [17:14] ScottK: Agreed. This presents an interesting problem, though. We can't exactly bump it up to 4.4.60 now since it's not in the archive, and < 4.4.3 will cause those upgrade issues [17:15] Perhaps we should bump to < 4.4.3 for now, making comments in debian/control to revisit this during beta packaging? [17:16] JontheEchidna: I'd hold off on merging such changes and do them with the new release. [17:16] In the case of kde4libs that would be most of the merge itself. (The huge split) [17:17] OK, then I'd just defer on that one. [17:17] Defer the kde4libs merge to beta? [17:17] (KDE beta) [17:17] Yes. [17:17] It's not far off. [17:17] Ok, I'll make a note on the wiki [17:18] Would you also please note I want to do workspace? [17:18] It's sort of semi-merged at the moment and I want to finish it carefully. [17:18] ok [17:19] Thanks. [17:19] Do you happen to know who does dpkg merges? It would be nice if that could get in soon so that I can upload my pkg-kde-tools merge [17:21] JontheEchidna: cjwatson. He said he'd have it done soon after the bzr Debian imports were finished. [17:21] Nice [17:21] finished/fixed [17:21] They've been blocked for < 1 week due to breakage in the Debian archive. [17:21] It looks like we'll actually have infastructure to support the use of symbols files with the new pkg-kde-tools [17:22] Nice. [17:23] BTW, if it does make sense to go ahead and move stuff between files, I don't mind a bit uploading with << 4.4.60 now since anyone upgrading to Maverick in the near term ought to be able to deal with any resulting issues. [17:26] JontheEchidna: Did you get a chance to look at the Jockey desktop file issue? [17:26] rekonq by default huh [17:26] Yep. [17:26] Riddell: its rekonq not Rekonq... [17:27] just a minor change in the wiki.. [17:27] ScottK: I'll do that right now [17:27] shadeslayer: It's a wiki. [17:27] (i.e. fix it) [17:27] ScottK: doing that right now :) [17:27] well. i hope QtWebkit's memory consumption improves soon [17:28] unfourtunately i have to change my LP details a bit first to login [17:28] Excellent. [17:28] ScottK: Yep, that's the problem right here: http://bazaar.launchpad.net/~ubuntu-core-dev/jockey/ubuntu/annotate/head:/kde/jockey-kde.desktop.in [17:28] Remove the SubstituteUID bit in there and everything'll work [17:28] JontheEchidna: I think we should SRU that. [17:29] I'll file a bug. [17:29] ok [17:32] ScottK: done [17:33] Great. [17:35] JontheEchidna: Bug #581379 [17:35] Launchpad bug 581379 in jockey "jockey-kde still uses kdesudo on startup" [Medium,In progress] https://launchpad.net/bugs/581379 [17:39] ryanakca: ping [17:39] pong [17:40] ryanakca: what is kubuntu.org coded in? [17:40] ScottK: debdiff attatched. Do I need ubuntu-sru approval before or after the upload to -proposed? [17:40] We use Drupal... The theme is PHP + CSS [17:40] ScottK: Did you have any luck in cornering lamont re: the website? [17:41] ryanakca: ok,ill be learning PHP in June and July... so i might be able to come up with something to add to the site :) [17:41] i guess ill have to learn drupal too [17:41] ryanakca: I didn't corner lamont, but I did talk to jpds. Unfortunately I didn't hear back. [17:42] JontheEchidna: Upload and ubuntu-sru will review in the queue. [17:42] ryanakca: oh and one more thing,someone on identi.ca said they were making a mockup for kubuntu.org... [17:42] i dont remember the name though.. [17:42] ScottK: uploaded to -proposed [17:42] shadeslayer: Ah, we have ofirk's theme waiting for the sysadmins to push through. [17:43] ryanakca: is there like a preview? [17:43] JontheEchidna: Great. No we'll wait ... [17:43] No/Now [17:44] JontheEchidna: I subscribed ubuntu-sru to the bug. [17:44] shadeslayer: [17:44] oops [17:44] :) [17:47] shadeslayer: http://violetech.org/kubuntu/staging/ [17:47] :) [17:47] ryanakca: needs new logo [17:48] shtylman: *nod* [17:48] ofirk: ^^ [17:48] its pretty awesome [17:55] Another reason to be glad we release with KDE SC 4.*.2 and not .0 or .1: http://thomasmcguire.wordpress.com/2010/05/14/akonadi-meeting-and-the-kde-sc-4-5-release/ [18:02] * ScottK learns something new: http://www.hse.k12.in.us/staff/cvanalstine/echidna_med.jpg === shadeslayer is now known as evilshadeslayer [19:03] Whoever has kubuntu_news on Twitter might ought to update to the new logo. === shadeslayer is now known as evilshadeslayer [19:15] hey ScottK. Make it home ok? [19:15] Yep. [19:15] good stuff [19:16] Imma soo tired still [19:16] ha [19:16] my body never adapted to the +6 hr shift, so I've been on a horrendous 20 hr schedule [19:17] he [19:17] I just stayed up all night Friday night which pretty effectively unset my body clock. I'm on the right schedule, just tired. === verbalshadow_ is now known as verbalshadow [20:05] I got home at a sane bedtime, and since I was dead tired I got right back on schedule more or less the next day [20:51] ScottK: Actually, thinking about it I don't see anything bad that could happen from making the replace versions 4.4.60 and uploading now. [20:55] The betas usually start at .70 or .80, so we won't have the problem of file overwrites slipping through the cracks when packaging those [21:04] ScottK: Could you push meta-kde through new queue too, please? [21:32] JontheEchidna: what is kde-sc-dev-latest ? [21:33] Riddell: It seems to be a metapackage that Debian is using to ensure that all build depends are at proper versions for new releases [21:34] it seems to have a different version number from the rest, presumably that's deliberate [21:34] yeah, they're updating meta-kde each KDE release to bump that number [21:35] Their kdepimlibs then, for example, build-depends on kde-sc-dev-latest [21:36] weirdness, it doesn't depend on anything it just Breaks older stuff [21:37] accepted [21:37] If it depended on anything it would make the whole dependency tree screwy [21:38] This hasn't been a huge problem for us, but maybe things are a bit different for Debian [22:07] * apachelogger needs to stop writing code [22:08] std::cout << "Got exception: " << e.what() << std::endl; [22:08] std::cout << "Good-bye o/" << std::endl; [22:08] std::cout << "I hope you come visit again soon, I am all alone on your" [22:08] "big harddrive, well except for that p0rn over there :'-(" << std::endl; [22:08] stupid exceptions make me write silly output -.-