[00:13] tada: https://bugs.launchpad.net/ubuntu/+source/koffice [00:13] nice :) [00:14] getting bug 528015 taken care of will allow us to close the remaining 3 in the koffice2 source package entry [00:14] Launchpad bug 528015 in koffice2 "Request for removal from archive (binary and source)" [Wishlist,New] https://launchpad.net/bugs/528015 [00:19] is that a hint? [00:19] maybe :) [00:20] oh, I have a few more archive-adminly things that need gettin' done if you're up to it [00:20] I'll give you a chance to run for the hills now, though. ;-) [00:20] what are they? [00:20] bug 528023, bug 524955 and bug 524957 [00:20] Launchpad bug 528023 in koffice-l10n "Request for removal from archive (binary and source)" [Wishlist,Confirmed] https://launchpad.net/bugs/528023 [00:21] Launchpad bug 524955 in polkit-qt "Fake sync polkit-qt 0.9.3-1 (main) from Debian testing (main)" [Undecided,Confirmed] https://launchpad.net/bugs/524955 [00:21] Launchpad bug 524957 in polkit-qt-1 "Fake sync polkit-qt-1 0.95.1-1 (main) from Debian testing (main)" [Undecided,Confirmed] https://launchpad.net/bugs/524957 [00:22] we can also demote kde3 kdelibs to universe after koffice-l10n bites the dust :) [00:23] 524955 has a question on it [00:23] oh, I thought I had posted a reply to that [00:23] Riddell: I renamed kdebluetooth now, do we need a feature freeze exception for this change? [00:24] neversfelde: no [00:24] Riddell: dantti didn't really have a change, dholbach just read the change to debian/copyright as a change on our end [00:24] Riddell: k, I will attach it to the bug report tomorrow. [00:25] there are koffice-l10n tars for 2.1.1 [00:25] but separate for each language [00:25] dang [00:26] not sure what the best way to package those is [00:26] where're they hiding them? [00:26] on ktown [00:26] hrm, would be nice if they gave a link on their website [00:26] we could make a hulking monolith like debian does with kde-l10n [00:27] maybe since koffice is smaller it wouldn't be so bad? [00:28] I'm included to keep them all separate [00:28] separate binaries too [00:28] and have language-support-xx recommend them [00:28] yeah, I'd never have a monolithic binary package for that [00:30] what would have to be done to set things up so that they could be handled with our current l10n packaging scripts (or tweaked variants of our scripts)? [00:33] what scripts? [00:35] the ones used to update the kde l10n packages each release [00:35] rumours of such scripts are much exaggerated [00:36] ouch :( [00:37] there's not much that needs to be scripted, it's just a case of running dch for each package using a bash for loop [00:38] doing the debuild -S (and debuild if you're doing it properly which takes hours) and uploading is the time sync [00:42] that's those three bugs done anyway [00:43] * Riddell snoozes [00:44] nini [01:30] oh alpha 3 is already out? I guess i'll install that instead of "testing" an image [02:15] *grumbles* [02:15] I hate getting bad images [02:33] damn, installer on alpha 3 is crashing on manual partitioning [02:40] bug 528171 [02:40] Launchpad bug 528171 in ubiquity "Lucid Alpha 3 installer crashes on manual partitioning" [Undecided,New] https://launchpad.net/bugs/528171 [03:53] hmm these .sip files for kdebindings are hard to read [03:58] they didn't seem hard for me to read, but they hard as hell for me to create...then I found out about the script sime uses to create them...grrr, I wasted a few hours on that one night [03:59] heh [03:59] well im looking at it going "it SAYS namespace Phonon.... so why's the resulting thing have the wrong string for .__class__.__name__ ???" [04:00] oh, you really want to dive into python [04:00] what is it giving you? [04:00] PyKDE4.phonon.MediaSource instead of PyKDE4.phonon.Phonon.MediaSource [04:01] im looking at kdebindings/python/pykde4/sip/phonon/mediasource.sip [04:02] * nixternal tries to think of the word to use to describe why... [04:02] ummm...shoot, what is the word I am looking for [04:02] because...ummm [04:02] lol [04:02] "because it's broken"? [04:02] no no [04:02] PyQt4.phonon.Phonon.MediaSource does it right [04:05] how are you importing phonon? [04:05] I can't reproduce it with bpython [04:05] from PyKDE4.phonon import * [04:05] thats what i'm using [04:05] hrmm [04:05] >>> from PyKDE4.phonon import * [04:05] >>> foo = Phonon.MediaSource() [04:05] >>> foo.__class__.__name__ [04:05] 'MediaSource' [04:06] which is wrong [04:06] it should say Phonon.MediaSource [04:06] MediaSource is the class name though [04:06] but if you try to use a VideoPlayer with .play(foo) it'll tell you it expected a Phonon.MediaSource and instead received a MediaSource [04:07] >>> foo.__class__ [04:07] [04:07] see? [04:07] I see what you are saying [04:07] it's missing a capital-P Phonon [04:10] ooh or... [04:11] this could be a qt designer v. python issue [04:11] qt designer might be putting in the PyQt4 version of phonon not the pykde4 one... [04:12] ahh, that might explain some funkiness here [04:12] hmm so .ui doesnt specify whether to use the pyqt4 or pykde4 versions of stuff [04:12] so in there it just says Phonon::VideoPlayer [04:13] right, and that is the Qt Phonon stuff, not the KDE Phonon stuff [04:13] the .py generated by pykdeuic4 imports PyQt4 but of PyKDE4 it ony imports kdeui and kdecore [04:14] so maybe its actually that pykdeuic4 ought to pick PyKDE4.phonon if it encounters phonon stuff? [04:15] * maco2 boggles [04:15] the .py generated includes 2 import statements *at the end* [04:15] why would it do that? [04:16] no idea, I don't use any of the *uic* tools [04:17] with linuxtoday, reddit, and digg....I have served over 1,000,000 unique hits in less than a week...pretty good, and my server never tanked, and I made a whopping...wait for it...wait for it...$16 from adsense! [04:17] click damnit click! [04:18] hehe [04:19] ok i see whats happening [04:19] if i play with the generated .py [04:19] i have to remove "from PyQt4 import phonon" from the end of the file and add "from PyKDE4 import phonon" to the beginning of the file [04:22] or the more correct way, 'from PyKDE4.phonon import *' [04:22] gotta follow PEP8 [04:24] ok or that [04:29] i just finished watching a thing on tv about software patents...it is ridiculous what is patented...now I can't remember the channel I watched it on, nor the link of really crazy software patents [04:29] and facebook today patented some news feed stuff...it is just getting out of hand [04:30] according to this show, Microsoft is sued on average, 5 times a day for patent infringement...and the other big one was...damn, I can't remember now [04:30] that's what I get for messing with python while trying to watch that :p [04:30] * nixternal blames maco2 [04:31] Apple just won a big Patent suit in Texas. [04:31] I read about it on Groklaw earlier in the week. [04:31] does apple have a lot of software patents for their stuff? they didn't say a thing about apple on this show [04:32] They were getting sued for violating someone else's patent. [04:32] texas is where everyone sues for patents, easiest place to win [04:32] Yep [04:32] my dad was sued back in the 80s for his patents...he told the court in texas to kiss his ass [04:32] I gather Apple has a pretty strict policy of not settling out of court except in a few rare cases where they agree they goofed. [04:33] he still isn't out of prison :p just kidding...but he never had to go to court, and ended up winning because he was backed by panasonic who ended up purchasing some of his patents [04:34] then recently, he was contacted by someone about someone supposedly violating his patents, so my dad called him...told the guy, hey that has been patented by me for almost 30 years...the guy on the other end got nervous and asked what he should do, and my dad said, well I think you at least owe me a beer :) [04:35] he has like 30 patents, and I couldn't tell you what any of them even do...that deep electronics stuff makes absolutely no sense to me [04:39] *sigh* [04:40] Remind me again why I handed out all of my Kubuntu CDs at SCALE? [04:41] Because you want Lucid, not Karmic and you didn't have any Lucid CDs. [04:42] LOL [04:43] I want something stabler to start with on my X41 [04:43] lucid is pretty good right now actually [04:43] one week without a single hiccup [04:44] I am probably going to reformat/reinstall with lucid this weekend on this laptop [04:44] even netbook? [04:44] ScottK: is knr dirt slow on your dell mini? [04:45] myself and another guy who was running opensuse with plasma-netbook the other night, both commented on how slow the netbook stuff was on our netbooks [04:45] wondering if my netbook has a fault somewhere, or is it really that darn slow [04:45] anyways, bbiaf, gonna go enjoy some ice cream...i fried the roof of my mouth on pizza [04:47] KNR will runnin a full 1024x768 [04:47] right? [04:48] this way I can test the wacom interface with it being a tablet [04:50] Anyone have the Lucid KNR daily (Or a couple days ago) on a fater server? I'm only able to pull 60kbps down off the server. [04:52] *faster [05:03] Is the Lucid ISOs burnable/bootable [05:04] Daily builds have been for me since pre-alpha [05:05] Kool [05:06] hnmmm the release page is missing in the announcement [05:06] meh [05:06] the release page is missing screenshots [05:13] god I hate bogged servers [05:47] nixternal: How much RAM? [05:47] It seems to be right on the edge of digging itself into swap with 1GB. [05:47] I've got an SSD, so I don't notice so much. [05:48] nixternal: For your OpportunistiK session, you might show how to develop something quick and easy on Kubuntu with PyKDE and then show how to deploy it on Windows, Mac, and Linux. [06:06] 1GB [06:06] SSD or hard drive? [06:06] ScottK: I don't even know where to begin on deploying shit on Mac let alone Windows anymore [06:06] 160gb hd [06:07] SSD makes a huge difference in Netbook performance. [06:07] OK, it was a thought. [06:07] a good thought though...one that I just might look into to be honest [06:08] right now, the only feedback I got was create a simple podcatcher with the rss plasma engine and phonon [06:08] i was thinking get rid of the plasma part, and do a simple podcatcher...very simple podcatcher that someone could expand on [06:08] ScottK: damn, that windows mac linux thing is about as opportunistic as one can get [06:09] f'n bingo dude [06:09] I think one of the keys to catching real opportunistic programmers is to show it's easy to solve real problems they've got at work, quickly and easily. [06:09] Not being just for Linux is a big part of that. [06:09] right...i didn't look our that far...that is a really awesome idea [06:10] Don't think in terms of stuff we'd want in the distro, think in terms of getting your idiot boss to stop screaming at you. [06:10] i wonder how you would deploy with python and pykde4 on windows and mac... [06:10] Dunno. [06:10] i know people who will though, Python Chicago here I come! :) [06:10] I'd suggest focus on Windows and just mention it's for Mac too. [06:10] yeah, especially since I don't have a way to test on a mac [06:22] apachelogger: someone, you have a very confusing way of writing blogs ;) [06:22] I don't really understand what you are saying there [06:22] it's full of mythical allusions and inside jokes, I guess [06:22] "Opportunistic opportunity" [06:22] what is that? :) [06:22] s/someone/somehow [06:23] ScottK: ahh, PyKDE !work with Windows (yet?) [06:23] I read it twice, but I still don't get it :p [06:23] Ah, crap. [06:24] The idea is that opportunistic programmers ares doing normal application development like most people think of it. It's small, one off, scripts or small apps to solve local needs."" [06:24] lolwut [06:25] hehe [06:25] can't you just write: "I have idea A. It works like this: B. Thank you for reading." [06:25] that would make it easier to parse [06:25] "Isn't this obvious. A quickly template for Pyside?" WTF? That is the only comment for my opportunistiK call....tom are you in here? [06:27] nixternal: Ruby Chicago? [06:28] i would like to localize kubuntu, i have done kde essentials for my language and also continuing the rest of localizing the apps [06:30] Ruby is as opportunistic as a bullet hole in the head [06:30] I have been to a few of the Chicago Ruby mixes...cool getting to hang out with the big wigs in the Ruby and Rails communities [06:31] That's an oppurtunity for bullet and casket makers [06:35] http://blog.nixternal.com/2010.02.25/opportunistik-needs-help/comment-page-1/#comment-5647 [06:35] and that's my answer, or that's my story and I'm stickin' with it [06:36] nixternal: want to point hanthana to docs? :) [06:36] hi folks, synaptic reports that kdelibs-dbg is broken [06:36] it wants to put in qt-x11-free-dbg instead [06:36] does that sound right? [06:36] the Amarok devs didn't know [06:37] hanthana: in the next couple of weeks, the docs for kubuntu will be made available on launchpad for localizing [06:37] and that's why I installed kdelibs-dbg in the first place [06:37] to help debug amarok [06:37] nixternal: daskreech: dude, we are ready to support. but there is no one supporting [06:37] I think that might already be known as I saw someone talking about that either earlier or yesterday valorie [06:38] Support the Support of the support! [06:38] should I allow synaptic to do it? [06:38] what do you mean hanthana that there is no one supporting? [06:38] i meant giving required info to contributors [06:38] it doesn't sound right to me [06:39] synaptic reports a broken package [06:39] 4hrs searching but still no luck [06:39] hanthana: string freeze is March 25th I believe...until we have a package with the new kubuntu-docs uploaded, there is nothing to translate [06:39] perhaps I should try adept or something and see what It says [06:39] we are reworking the docs....that's why there is nothing yet...we did a complete rewrite [06:39] nixternal: where is the po file for kubuntu installer [06:40] and what are the essential desktop apps for kubuntu [06:40] nixternal: really, I'd rethink the naming. it's your call, but "OpportunistiK" is far out.. ;) [06:40] it sounds both weird and strange, in a weird way [06:40] that makes no sense at all [06:40] hehe, I had to have a bit of fun so apachelogger couldn't grep planet.ubuntu.com for opportunistic and raise his numbers [06:41] that blog, I guess only Kubuntu insiders would understand it [06:42] https://translations.edge.launchpad.net/ubuntu/lucid/+source/ubiquity <- hanthana, there is the ubiquity installer if that is what you were referring to [06:43] the essential desktop apps for kubuntu are translated upstream, unless of course that changed, as I do not closely follow translation stuff... dpm would know more about translation stuff than I would for sure [06:43] nixternal: i am a fedora user not familiar with Ubuntu packages, but i have localized the Debian installer [06:43] groovy [06:43] just contributing for the community [06:43] * hanthana hate launch pad! [06:44] hanthana, you can also ask translations questions at https://wiki.ubuntu.com/Translations/Contact#UbuntuTranslators (both for Ubuntu and Kubuntu) [06:44] nothing going back to upstream [06:44] markey: what doesn't make sense about my blog post? and I agree with you on harald's post :D [06:44] dpm: ok [06:44] damn, I don't think dpm sleeps [06:44] hey nixternal :) [06:44] anyway, pls update the site with 'how to join' etc [06:44] gout up a bit earlier today to finish off some stuff [06:45] got up [06:45] dpm: oh yeah, I will email you with a list of the templates to remove...I forgot...need to go through and see what can stay and what can go [06:45] oh wow, just realized it is 00:45 here..didn't realize it was that late [06:45] Hmm I just grabbed the Daily Live CD and the md5sums listed on the site aren't the same as the ICO [06:45] nixternal, heh, see who's not sleeping now ;) [06:45] 12.15 here :) [06:45] ISO [06:45] How often is that wrong? [06:46] Okay, I forget... whats the command to update my 9.10 to 10.04 Alpha-Current? [06:46] DWonderly: if you have to ask you probably shouldn't update :) [06:46] DWonderly: update iso or your computer? [06:47] nixternal: computer [06:47] nixternal: haven't read yours yet, I meant Harald's ;) [06:47] nixternal: sec, gonna read yours [06:47] * daskreech ponders burning his last blank with an ISO that doesn't have a correct md5sum [06:47] I was going to just DL the ISO but, be quicker this way... maybe [06:47] update-notifier-kde -u <- DWonderly [06:47] daskreech: I know what I'm doing... just slips my mind. [06:48] nixternal: thanks [06:48] nixternal, great, thanks for the update on kubuntu-docs. I'll wait for the e-mail then. [06:48] I think that will work [06:48] oh, I was gonna say, mine had to make sense, I poked fun at Harald and asked what kind of app I should write for my presentation :) [06:48] I'll say this... KNE looks good on tablets [06:48] nixternal: yeah, yours is easier to understand ;) [06:48] I just saw your buzz [06:48] got it now [06:48] stupid buzz [06:49] nixternal: yeah I saw your blog on Buzz, not on Planet KDE. got all confused [06:49] this cross-aggregating is becoming weird [06:49] you can't tell anymore what the actual source of something is ;) [06:49] "I help you double your income, doing what you love. And, I ride a 5' tall unicycle!!" ...shit, sign me up! [06:50] yeah, it was for planet.ubuntu.com...I don't post all of my stuff to kde anymore, as there are to many distro-x fanboys who do nothing more than waste bandwidth === DWonderly is now known as DarkwingDuck [06:50] if I say Kubuntu in a post on planetkde.org, I will be tarred and feathered [06:51] Okay, this is better [06:51] DarkwingDuck: you in Mississippi yet? [06:51] No. 20th [06:51] how in the hell did you pull that for a duty station being a brown shoe? [06:51] of March [06:51] you had to get in trouble :p [06:51] I'm an Aviation... [06:51] Yeah, I got hurt :/ [06:51] ouch, that sucks [06:52] ugh, after researching, I decided to let synaptic do what it wanted, which was to reinstall and ADD the qt--x11-free-dbg [06:52] Yeah... Oh well [06:52] this is very funny.. jumping to channel by channel :D [06:52] now it errors out: E: /var/cache/apt/archives/qt-x11-free-dbg_3%3a3.3.8-b-5ubuntu3_amd64.deb: trying to overwrite '/usr/lib/debug/usr/bin/qvfb', which is also in package libqt4-dbg 4 [06:52] Good night all. [06:52] nite ScottK [06:52] oops [06:53] so any suggestions? [06:53] valorie: what did you actually try to do there? :) [06:53] But nixternal, I finally have a laptop again [06:53] reinstall kdelibs-dbg [06:53] hm [06:53] but why :) [06:54] because it is reported as broken [06:54] seems #ubuntu-translators are sleeping :( [06:55] I have a bunch of updates to do, but cannot while there is a broken package [06:55] DarkwingDuck: woohoo! [06:55] Yup [06:55] ThinkPad X41 Tablet [06:56] and it's -d rather then -u [06:56] -u is latest release and -d the latest Devel [06:56] better than my old dell laptop or compaq laptop that I use religiously still [06:56] hehehe [06:56] what are you going to be doing at good ol' McCain Air Field? [06:56] arresting gear and field support [06:57] damn, you should have tried for Pax River instead [06:57] hanthana, please, be patient, people are not there 24/7. It's 07:54 am in Europe, for example, and most people are just starting the day. Furthermore, you haven't posted a question there, only what you are doing. What is the actual question? How can we help you? [06:57] they have all the bad ass squadrons there [06:57] oh yeah... VT-3 and VT-5 [06:57] hanthana, if there are no answers on IRC, you cal always use the mailing list [06:57] nixternal: who has the good ass? [06:57] also, we are the backup home of the Blue Angels [06:57] I used to party hard with the VT wings [06:57] :D [06:57] they had the best beach parties at pax [06:58] Im actually looking forward to it [06:58] and it was a blast breaking into the marine corps barracks and stealing their ugly bull dog [06:59] hehehe [06:59] Sounds like the fun I had with the Army nerds at Goodfellow AFB [07:00] http://www.navair.navy.mil/ <- DarkwingDuck that's where you want to be as a brown shoe....that's where pre-astronauts train for nasa...that was my last duty station, and it made me wish I was a brown shoe because of all the awesome toys and testing [07:00] I almost landed Key West but, they didn't want to spend the $$ to send me to south Florida [07:00] I was there when they were crashing all of the ospreys [07:00] lol [07:00] its a good spot [07:01] i hated living in that area though, and that was probably due to my ex-wife..under different circumstances I think I could live there [07:02] Meridian is about an hour and a half from the wifes family [07:02] So, she is MORE then happy [07:02] oh lord, don't say I didn't warn you...unless of course you get along with your inlaws [07:03] I actually do LOL [07:03] Kinda strange [07:03] My father in law is happy that he thinks he will have a hunting buddy LOL [07:04] so, I went up to great mistakes this week...let me just say, after seeing the new uniforms, I am glad I am not in the navy anymore [07:05] LOL They arn't actually THAT bad. Actually kinda comfy. I'm NOT happy about giving E-1 - E-6 kahki shirts though [07:06] no, they are stupid looking [07:06] yeah, that would piss me off...here I busted my ass to be a kahki, and now e-1 through e-6 have them...piss off :) [07:07] Oh I know [07:07] ScottK: did you see the new navy uniforms? [07:07] coast guard + army + smurfs == new navy uniforms [07:08] Jungle Smurfs [07:09] so when you fall in the water, the sharks won't see you, nor will your shipmates...whope you got a chem pack on that bad boy :) [07:09] Oh well... on ships I wear bright yellow :P [07:10] on ships, I wore either shorts all day or my dungarees...yeah baby, bell bottom jeans ftw! [07:10] Hehehehe [07:10] You make Chief before you sep? [07:10] senior chief [07:11] actually made master chief, but got out before being frocked [07:11] didn't know I made it until after I was out, by like 3 days..it was the same week, I do know that [07:12] lol GM right? [07:13] NO! [07:13] GMG!!! [07:13] you silly ass youngsters trying to remove my guns [07:13] :) [07:14] ROFL [07:14] Ok ok... GMG [07:14] GMGCM [07:14] GMGMC [07:14] Has a nice ring to it ;) [07:14] CS and CM... at least it is now [07:14] yeah, my master chief did the GMMC, and I told him I will never be just a GM, as I wasn't a generalist [07:14] I didn't work on missiles, MK45 only [07:14] and the occasional MK38 [07:15] nice, a topic specific Kubuntu book http://iaclub.ist.psu.edu/2010/basic-penetration-testing-kubuntu-style/ [07:15] ahh how ya [07:15] Hey Riddell... your name kept popping up at SCALE [07:16] err, really? [07:16] from whom? [07:16] A few here and there... Jono asked if I had met you. [07:17] The KDE booth guys [07:17] ahh, I wonder if that is the same griffith that was asking me questions the other day [07:17] who was on the KDE booth? (I should chase them up for a Dot News article) [07:18] ahhh. crap... I have names somewhere... [07:18] Couple locals... not the best booth this year... 3 laptops [07:18] If it wasn't for me bringing over some Kubuntu CDs they wouldn't have had any handouts [07:18] tsk [07:19] yeah I know. [07:19] i would figure blauzal, but I saw a bunch of openSUSE stuff in the pics...maybe will was around? [07:20] the Ubuntu Booth I was a part of handed out around 2500 CDs between Ubuntu, Kubuntu and Ubuntu Server [07:21] if they got a conference pack, they got 1500 Ubuntu Desktop CDs, 500 Server CDs, and 500 Kubuntu CDs...and like I said earlier, for me Kubuntu goes at a faster rate here in Chicago [07:21] actually, at every event I have been too...people are quick to do "ewww KDE" but they sure are just as quick to grab a Kubuntu CD [07:22] Esp when you show them 4.3 [07:22] that or I act like a wise guy and plan on taking them out if they don't :) [07:23] Use Kubuntu, or else this guy, http://www.flickr.com/photos/nixternal/4314711628/ will come after you! [07:23] hehehe [07:24] hehehe [07:26] I was about to mention that Kubuntu CDs go faster at the conferences that nixternal is at ... because they are conferences that nixternal is at [07:27] I think it is time to become metrosexual and less meat head/goodfellas character [07:28] though, meat head is fun...how many nerds do you know can benchpress over 300 pounds? [07:28] dunno many open source hackers who played college ball either...i know a couple at microsoft, but not here in our awesome world [07:31] heh. I'm going to have to make it up there to Chi-Town again some day [07:32] good, you can buy me some beers then :) [07:32] Lupe! [07:33] as long as it isn't a nasty jamaican beer :p [07:33] Of course [07:33] red stripe ftw! [07:34] Just like any good PO2 would do [07:34] Goose Island Matilda, the best beer there is righ tnow [07:34] there are a few IPAs out there that I absolutely love [07:34] dogfish head has a great ipa [07:35] Nice [07:46] Yay! [07:46] No Red stripe for nixternal [07:46] more for the nasty Jamaicans :) [07:50] Hehehe [07:50] Ok, almost done with the upgrade [07:51] meanwhile I downloaded the ISO twice and burnt it [07:51] I could have installed it as well :) [07:53] lol === xeros2 is now known as xeros [08:18] apachelogger: hi! [08:18] apachelogger: just read your latest post, and laughed quite a bit :) [08:19] apachelogger: I am wondering if you did not mean to say KDE in this sentence "You do not like that GNOME is using a closed source toolkit" [08:19] apachelogger: or am I opportunisticly lost? [08:27] agateau: right, I thought the same with that line [08:29] is that post ment to make any sense? [08:29] probably not, like markey said, booze and weed may have contributed :) [08:30] surely not, this is harald, probably just too many sweeties [08:30] oh poppy... [08:31] wacom stopped working as soon as I updated to 10.04A [08:31] Now to figure out why I can'y use my tablet [08:34] "I am trying to locate GMC(SW) Willie B. Tate. I know he was stationed on the IOWA, MONONGAHELA, IKE and in Pax River. He retired in Norfolk a couple of years ago. If anyone knows how to contact him, please let me know. BZ Goatlocker, great site! Thanks shipmates." <- whoa, I was searching for old shipmates, and someone is looking for my old chief too...from 2001, so I don't think her email address will still be the same [08:37] sent an email anyways [08:49] Is there an X11 configuration for KDE? [08:55] no [08:56] what is "X11 configuration"? things like dual monitors etc can be handled with krandrtray or the newish KCM [08:56] not sure what else is there to configure [08:58] Tablet input [09:00] the wacom inputs for my tablet were working in 9.10 [09:00] But, while the drivers are all still there the tablet input stopped working on the update [09:06] I'll dig tomorrow. *sigh* [09:30] btw what line should i add to rules for the patch system? [09:31] ah nvm [09:56] Lex79: I'll upload qt4 from kubuntu ninjas now [10:07] Lex79: why did libphonon4.symbols get generated at build? === shadeslayer is now known as shadeslayer_ [10:40] agateau: nope, that was theoretical, based on all the mono whining :P, but yeah, that sentence started off with KDE ;) [10:41] Riddell, nixternal: only caffeine and reading a couple of days worth of planet ubuntu was involved [10:41] apachelogger: I thought it was a reference to the creation of GNOME, being free-er than KDE which was built on non-free Qt [10:42] apachelogger: what did you smoke when you wrote that blog? It's utterly confusing... [10:42] agateau: yeah, but then again that would make those people that do not understand what opportunistic programming is claim that gnome is opportunistic software [10:43] just imagine the amount of blog posts I would have to read about that... [10:43] :) [10:43] opportunistic gnome here, opportunistic gnome there, <3 gnome... [10:44] Mamarok: it is just very insidish [10:44] well, then it should not be on planetkde.org, nobody understands it [10:45] it makes people think you are really confused :) [10:45] and you managed to confuse Jono :) === shadeslayer_ is now known as shadeslayer [10:46] must write a disclaimr then [10:47] "madness due to ubuntu, must go to debian, ktxhbai" [10:47] that shoudl also be short enough so markey gets it ^^ [10:47] though I must agree, I should get rss feeds of tags to the planets [10:48] yep, that might be a good diea :) [10:48] idea even [10:50] first I must explain that opportunistic blog post though, and confuse jono even more :/ [10:50] anyone working already on it: karmic 4.3 -> 4.4: a) existing use with nepomuk data: akonadi does not start. b) New user: akonadi starts buts warns: nepomuk could not be enabled. Nepomuk errmsg: There is no configuration file .ini [10:52] nepomuk will need virtuosoconverter [10:52] I haven't put that in main though [10:54] Riddell: virtuosoconverter was installed and sucessful. But a new created user should not need converter. So deeper problem is: the no .ini file I get for the freshly created user [10:58] "Everything we ship in Ubuntu is free software." [10:59] *cough* nvidia *cough* radeon [11:01] Riddell: well, one needs to invoke the converter manually, so I wonder about its use [11:03] allee-m: do you have a .cache directory? [11:04] apachelogger: it should get run by nepomuk, we patched it to do so [11:04] oh [11:04] in that case I wonder why upstream does not do that [11:04] well the patch came from upstream [11:05] Riddell: new created user: no I checked with find $HOME . -iname .cache [11:05] allee-m: you're using the karmic 4.4 packages? [11:05] Riddell: that is getting more and more confusing ^^ [11:06] apachelogger: I think trueg doesn't want to support virtuosoconverter officially because there was never a stable KDE release using virtuoso 5 and it's a bit hackey (contains a full copy of virtuoso5 sources) [11:06] Riddell: yes, including yesterdays? 4.4.0 ... karmic1~ppa3 [11:07] soprano's kubuntu_01_config_path.diff patch needs updated in PPA then [11:08] that virtuoso for an user that used 4.3 may fail, not good but with a 4.4 an a newly created user that's no good as it should affect many new users/installations [11:11] Riddell: bzr path to kubuntu_01_config_path.diff ? [11:12] allee-m: it's not in bzr, it's in the soprano package in lucid, I'll upload it to the PPA in a second [11:13] * allee-m checks lucid netbook [11:15] uploaded [11:17] thx I'll check if this fixes the problem for new created user. Then I'll try to find what goes wrong after virtusoconverter did run on existing nepomuk installations [11:25] JontheEchidna: ping === kubotu_ is now known as kubotu [12:14] markey: ok if I add the kstatusnotifieritem patch to our package in lucid? http://gitorious.org/amarok/amarok/merge_requests/130 [12:14] Riddell: sure, but could maybe wait until we have tested it? [12:14] cause, we haven't tested it at all yet [12:15] want to make sure it works properly... [12:15] that said, I tend to trust Aurelien [12:15] it's probably good :) [12:16] markey: I'd rather do it now because UI freeze is next week [12:17] Riddell: ah ok, then no problem, if it works OK for you :) [12:17] yes assuming my testing works, still compiling here [12:17] Weird bug : Plymouth doesnt launch via lucid alpha 3 [12:18] and i cant virtualize the iso via kvm either :) [12:18] shadeslayer: does for me, maybe it doesn't like your graphics card [12:18] Riddell: probably... i have a nvidia card [12:18] but virtualization should work right? [12:18] yes [12:18] doesnt... [12:19] Boot failed : could not read bootdisk :P [12:20] Riddell: http://imagebin.ca/view/SV3xUt.html [12:21] folks in #ubuntu-testing might know more, I rarely use virtualisation myself [12:21] hmm.. ok [12:21] well when i write the image to a USB it works [12:35] apachelogger: pong [12:40] Riddell: apparently i was missing -cdrom :P [12:45] apachelogger: gotta go, be back later [12:58] Riddell: oh about the boot screen,should i report a bug? [13:07] http://www.h-online.com/open/news/item/Canonical-releases-Ubuntu-10-04-LTS-Alpha-3-941337.html [13:07] :D [13:10] apachelogger: ping [13:11] markey: eh? [13:12] markey: oh btw do you know how to authourize ubuntu-dev-tools to upload to a PPA? [13:12] me? [13:12] no [13:12] I'm not a kubuntu dev [13:12] I just hang around here, talking bullshit [13:13] :P [13:13] anyone know how to do the above? [13:22] shadeslayer: I guess Riddell or ScottK would know ^ [13:22] Riddell: hehe [13:22] Riddell: i hope im not bothering :) [13:23] I don't understand why ubuntu-dev-tools is needed [13:26] Riddell: apachelogger taught me earlier that we had to authorize it to upload packages to PPA's [13:37] nixternal: ping [13:39] jussi01: any ideas about PPA's? [13:40] shadeslayer: youve asked your question, just be patient, and dont ping everyone :) [13:45] jussi01: okies :) === jonathan_ is now known as jjesse === fjlacoste is now known as flacoste [14:10] shadeslayer: what PPA do you want to upload to? [14:11] Riddell: i found what i was looking for ;) [14:11] Riddell: its : manage-credentials [14:11] hit and trial :P [14:16] Hi I have a quick question if anyone knows, to enable scim to be used with qt4, which plugins I need to compile? [14:16] Hi I have a quick question if anyone knows, to enable scim to be used with qt4, which qt plugins I need to compile? [14:18] you need to install scim-bridge-client-qt4 [14:21] Riddell: ok, but if I'm compiling my own qt shall I include that one or something else? [14:23] like libqtaccessiblewidgets.so is also needed? [14:23] no that's for the accessiblity stuff not input methods [14:27] so I just need qcncodecs qjpcodecs qkrcodecs qtwcodecs and that it? inputmethods is built automatically I guess [14:28] yes [14:29] cool thanks [14:30] Riddell: and this scim-bridge-client-qt4 will work with my custom qt as well? [14:30] it should do, might need a recompile [14:30] certainly will need to be put in the plugin location for your qt build [14:31] hmm I'm compiling statically [14:31] I mean the whole binary is together with qt === skype is now known as MidMark [14:38] ScottK or anyone going to be around for the release meeting? I'm going to be out [14:38] Riddell: I should be around. [14:38] What do I need to say? [14:39] ScottK: see foot of https://wiki.kubuntu.org/DesktopTeam/ReleaseStatus [14:39] Thanks. [14:39] I'll take care of it. [14:39] super [14:41] hmm... kfi broken in karmic? [14:41] i get : http://paste.ubuntu.com/384407/ [14:44] * Riddell removes kdevelop from the archive and puts it into beta PPA [14:46] Riddell: Is koffice 2 still in Universe or did it get promoted. [14:48] ScottK: koffice is now koffice 2 and it is in universe (because upstream weren't too confident of its quality for main) [14:48] Riddell: So we'll have no koffice in Main for this cycle? [14:48] right [14:48] ok [14:49] koffice and kdevelop are the last two parts of KDE 4 transition pain [14:50] What's the plan for kdevelop? [14:50] see above, I just put it in kubuntu-ppa/beta [14:51] final release isn't until May [14:51] So it won't be in the archive at all this cycle? [14:51] right [14:51] for karmic we left in the beta release and they got all grumpy, it was removed shortly after release [14:51] But we can put it in lucid-backports right after release.... [14:51] yep [14:52] heh, they don't want users to play with their beloved toys :) [14:53] they don't want old beta versions hanging around for people to report bugs from long after they've been fixed [14:53] agateau: hehe... well the users wont poke themselves in the eye with the sharp edges of their toys :P [14:54] Riddell: ok [15:00] dpm: I'm packaging koffice-l10n-xx which will go in universe, what needs to be done to have those installed by users without hainvg to think? presumably add to something in language-selector? [15:04] Riddell, I'm not sure, sorry. I know language-selector is involved, but Arne tends to take care of the packaging side, and he does not seem to be there today. You could perhaps look at the openoffice.org-l10n-* or thunderbird-locale-* packages to see how they're doing it [15:07] <_Groo_> hi/2 all [15:47] neat: http://mail.kde.org/pipermail/rekonq/2010-February/001140.html [16:02] JontheEchidna: yay [16:15] hey guys are there any junior development tasks to do for helping the kubuntu project? I'd like to participate but don't really know where to start and the wiki doesn't contain much info on that... [16:20] Riddell: hey :) [16:20] Riddell: I was checking the status of libdbusmenu-qt build [16:21] Riddell: seems that the build servers are still broken on that point [16:21] Riddell: do you have any info on that point ? [16:21] hey jetdrone - nice to hear - Riddell, JontheEchidna and apachelogger can probably give you a good task [16:21] Riddell: libqjson is built for days now, and available... [16:24] Tonio_: hmm, good question [16:24] hi jetdrone, thanks for joining, do stay around [16:25] Riddell: afaics the packages seem to build and archives to be up to date... I don't know who to ping on that point [16:26] libqjson-dev being in universe won't help [16:26] Cool Nightrose, Riddell, just tell me some project that needs some help. I'll leave this computer for a while and login later [16:29] was a decision made on what to do about the installer updates? [16:30] Tonio_: I think qjson needs a MIR :( [16:31] Riddell: hum indeed... [16:31] ooh bug 387392 [16:31] Launchpad bug 387392 in qjson "main inclusion report for qjson" [Undecided,Fix released] https://launchpad.net/bugs/387392 [16:32] seele: no paticular resolution, I think a behaviour change would need evan convinced to do the code [16:33] Riddell: so the question is, why is qjson in universe then ? :) [16:33] probably got demoted when kopete-facebook disappeared [16:34] Riddell: yeah [16:34] promoted [16:35] Riddell: nice, I'll restart the builds when available [16:35] jussi01: pong [16:35] Tonio_: yes please retry when it gets into main [16:36] Riddell: no pb [16:44] Hello [16:44] hi Nightrose [17:28] hi ubuntu [17:28] ;-) [17:28] whoever you are [17:32] The distro of mystery [17:34] * ubuntu saves the day and vanishes into the /dev/null === yofel_ is now known as yofel [17:44] Hi, could you remove the python2.5 dependency of the python-kde4 package? python-kde4 already depends on python (>= 2.5) and python (< 2.7). This causes to have python 2.5 and 2.6 installed at the same time with the Kubuntu backports PPA repo. === Blizzzek is now known as Blizzz [18:06] JontheEchidna: I forgot what I wanted anyway :) [18:07] shadeslayer: when did I say that ubuntu-dev-tools is necessary to upload to a PPA? [18:10] apachelogger: you didnt.. [18:10] so why do you claim that I said such nonsense: P [18:10] apachelogger: i meant that ubuntu-dev-tools needed authentication [18:10] no doubt I say a lot of nonesense, but usually it is not development related ;) [18:10] i thought i was explicit on that? [18:10] shadeslayer: sounds to me like I told you that you need it to uplaod to a PPA [18:10] apachelogger: did you read that the kfritz md5 problem is fixed? :) [18:11] apachelogger: yeah i meant that [18:11] apachelogger: but apparently it was taken in some other sense [18:11] neversfelde: yep, I would have reviewied it between studying for exam on taxes, but fortunately enough business economics always drives me into deep deep sleep [18:11] apachelogger: :) [18:11] * apachelogger just slept 5 hours :D [18:12] shadeslayer: anyhow, I also told you that the tools that require authentication will tell you how to obtain that [18:12] apachelogger: and like i said i didnt sleep tight yesterday... woke up at 6 AM :D [18:12] which is manage-credentials, and when you lok at the manpage of that you will find the appropriate command to run [18:13] apachelogger: i did find it [18:13] :) [18:13] oki ^^ [18:14] apachelogger: from the logs : [13:12] markey: oh btw do you know how to authourize ubuntu-dev-tools to upload to a PPA? [18:14] just clearing the air ;) [18:17] well, no matter what it sounds bogus :P [18:17] Riddell: the new soprano pkgs fixes nepomuk service for a fresh created user. Thx. Nevertheless I wonder why use a new-introduced dot dir ~/.cache in the HOME instead of somewhere below $KDEHOME/share/apps/ [18:17] apachelogger: bogus? [18:17] ubuntu-dev-tools doesn't have anything to do with uploads [18:17] kubotu: google dict bogus [18:17] Results for dict bogus: 1. bogus - definition of bogus by the Free Online Dictionary ...: http://www.thefreedictionary.com/bogus | 2. dict.cc Wörterbuch :: bogus :: Deutsch-Englisch-Übersetzung: http://www.dict.cc/englisch-deutsch/bogus.html | 3. ftp.dict.org/bogus/TAR_FILES/usr.bin/ - FTP Browser: http://www.filewatcher.com/b/ftp/ftp.dict.org/bogus/TAR_FILES/usr.bin.0.0.html [18:17] apachelogger: i know what it means >< [18:17] in that case :P [18:17] ok well ill try to be more explicit next time [18:18] kk [18:20] * shadeslayer goes and continues playing with the debian/rules [18:46] Riddell: libphonon symbols is generated at build like the others symbol files, no need to keep symbols.in file if you build with pkg-kde-tools > 0.6, it has new feauture to create symbols (dh --with pkgkde_symbolshelper addon) [18:47] so if you keep pkgkde-symbolshelper symbolfile -p blablabla in rules, it will ftbs [19:17] ok, this is curious I have 2 nvidia drivers "activated" and jockey-says neither of them in use? its rather weird me thinks. How do I actually get this machine to use the nvidia driver? === Quintasan_ is now known as Quintasan [20:48] * Lure is a bit concerned that kdevelop4 schedule will cause similar problems as digikam/karmic did :-( [20:48] http://www.kdevelop.org/mediawiki/index.php/KDevelop_4/4.0_Release_Schedule [20:54] Lure: kdevelop is removed from Lucid for those reasons. [20:54] It'll be available in lucid-backports once it's released. === Tonio__ is now known as Tonio_ [21:10] ScottK: ok, better [21:27] allee-k: soprano isn't part of KDE so can't use .kde [21:27] ~ninjas 4.4.1 on ktown [21:27] apachelogger, JontheEchidna, Lex79, neversfelde, nhandler, Riddell, ScottK, stdin, nixternal, Quintasan and vorian ... to the Batcave! [21:28] Nice. Saves me writing a patch to fix a netbook crash. [22:00] Riddell: on an 'old' account I've also seen that other apps use ~/.cache too. So it's not a bit deal. (if it's not KDE, AFAIK .config or .local are FreeDesktop equivs to .kde/share/{config,apps} respectively) [22:01] s/bit/big/ but I assume that something to discuss with upstream. [23:22] is ubuntuone meant to work in lucid? I tried the gnome client but no success? [23:44] * ryanakca wonders from what era these KDE icons are from http://hobbit.ict.griffith.edu.au/~anthony/icons/appl/desktop/3d/Icons.html [23:48] ryanakca: They weren't in official kde, were they? [23:49] Sure not KDE 2 or 3, they had very distincted icon styles. [23:50] apachelogger: not sure... I just followed the link from http://hobbit.ict.griffith.edu.au/~anthony/icons/appl/desktop/Icons.html . [23:50] Probably weren't [23:51] 3rd party for sure :P [23:51] though from the quality I would put them in KDE 1 [23:53] * ryanakca nods [23:55] (I almost don't dar to ask, but is there a ubuntuone plan for lucid? Right now it doesn't work with the gnome client)