[06:56] Mithrandir: I was >< close with modest when tinymail fell on a sword. [06:57] as in? [06:57] Mithrandir: libtinymailui-mozembed links against firefox's gtkmozembed, which is fine, it works. Modest tries the same trick and blows up because useful stuff like searching text or setting the zoom level isn't available in that gtkmozembed [06:58] wonderful. [06:58] Those useful things are in xulrunner-1.9, which tinymail can't link against since there's no pkgconfig file [06:58] that was your complaining to asac about the missing pkg-config file for xulrunner-1.9? [06:58] Right [06:58] could you just hack one together from the firefox one? [06:58] ENOIDEA about pkgconfig [06:58] (it's spelt pkg-config. :-P) [06:58] See? :-P [06:59] So I dumped modest/libtinymail in disgust and moved back to h-i-m and I can get nowhere with it, either. [07:00] All in all, I'm feeling useless today. [07:00] you've seen http://live.gnome.org/Hildon/HildonInputMethod? [07:00] Which tells me basically nothing? [07:01] where are you stuck, then? [07:01] If I knew that, I'd know where to start digging. [07:02] I've got it starting hildon-input-method on startup, and the module appears in gtk-query-immodule-2.0, but doesn't appear in the dropdown for Input Methods [07:07] and just poking at a gtk text field doesn't give you anything? [07:07] is it even being loaded? [07:09] No, poking at a GTK text field gives me nothing [07:09] How can I tell if it's loaded? [07:10] make it log to syslog in the initialisation function? [07:12] Hrm [07:12] if (g_ascii_strcasecmp(context_id, HILDON_IM_CONTEXT_ID) == 0) [07:14] StevenK: xulrunner in gutsy ships .pc files all right, but you probably want libxul-embedding-1.9 [07:15] xulrunner-1.9 didn't, when I looked [07:16] > dpkg -L xulrunner-1.9-dev |grep -c \\.pc$ [07:16] 6 [07:16] Hold on, bouncing into a Hardy chroot [07:20] The problem is, it looks for a specific .pc file, which isn't shipped [07:21] which one? [07:21] It wants either gtkmozembed.pc or mozilla-gtkmozembed.pc [07:21] Those two are from memory [07:22] try to make it want libxul-embedding-1.9.pc instead, then? [07:23] The problem is I context switched over two hours ago :_) [07:23] sure, so do those things when you switch back or tomorrow or whenever, then? [07:23] * StevenK nods [07:28] good morning [07:38] hi Daniel [07:42] hey Tollef :) [08:54] morning [09:55] StevenK: use libxul-embedding-1.9.pc ... thats the new way of doing things. the old one isn't supported anymore. [09:57] StevenK: hi, how could i get updates on discussions about the hildon input method framework in ubuntu mobile, and eventually participate ? [10:40] Mithrandir: to follow up on StevenK's issues .... do you have a list of mobile apps that need porting to new xul? midbrowser, mobile-basic-flash, tinymail ... anything else? [10:41] asac: tinymail I'll be doing tomorrow [10:42] possibly modest too; StevenK would know about that. [10:42] modest will get fixed by tinymail [10:42] ok [10:42] apart from that, I think we're ok [10:42] Well, modest and tinymail should link against the same gtkmozembed [10:44] ok ... just remember to come back to me when you start ... otherwise you _will_ run into issues :) [10:45] I hope that i have a document to outline the needed changes by tomorrow ... so probably a good test to do it then :) [10:45] Yeah, but my tomorrow is about ten hours before yours. :-) [10:45] where are you based? [10:47] Sydney, .au [10:48] oh ... then maybe we can start tonight ;) [10:54] asac: If I drag in libxul-embedding-1.9.pc, does that also give me the gtkmozembed2 functions? [11:00] StevenK: which function do you refer to? [11:01] gtk_moz_embed_set_zoom_level and co [11:01] you should get those in: /usr/include/xulrunner-1.9b1/unstable/gtkmozembed.h [11:01] * StevenK nods [11:01] so yes [11:02] Just about to try and drag tinymail off of firefox-dev onto xulrunner-1.9-dev [11:03] ok [11:03] does it use m4/gecko.m4 ? [11:03] StevenK: ^^ ? [11:03] How do I check? [11:03] does that file exist in your source tree :) [11:04] search for gecko.m4 [11:04] No, it doesn't exist [11:04] ok ... then just take care that you use [11:04] pkg-config --define-variable=includetype=unstable --cflags libxul-embedding === cprov-out is now known as cprov [11:05] one idea is to add that to the cflags you found through PKG_CHECK_MODULES [11:05] I'm not sure how to set arguments for pkg-config. [11:05] I'm just installing Build-Depends in a chroot, so I'll dig in a sec [11:06] pkg.m4 doesn't provide a way to do that, so you need to do something like: [11:06] Or should I just drag in gecko.m4? [11:06] how could i get updates on discussions about the hildon input method framework in ubuntu mobile, and eventually participate ? could someone please give me hints ? [11:06] StevenK: if you use PKG_CHECK_MODULES then just extend the CFLAGS like above: [11:07] e.g. XXX_CFLAGS="$XXX_CFLAGS `pkg-config ...`" [11:07] if PKG_CHECK_EXISTS([libxul-embedding]); then MOZ_CFLAGS=$($PKG_CONFIG --define-variable=includetype=unstable --cflags libxul-embedding) ; fi [11:07] right ;) [11:08] untested, of course. [11:08] Mithrandir: looks good [11:08] Ah ha. gtkmozembed mozilla-gtkmozembed firefox-gtkmozembed xulrunner-gtkmozembed microb-engine-gtkembedmoz gtkembedmoz [11:08] That's the list you wanted [11:08] StevenK: ok ... then you have to use something like: http://people.debian.org/~asac/gecko_1.9_load_glue.cpp to initialize gecko [11:09] Sigh. gluck, it's a text file! [11:09] yeah :) [11:09] is people.ubuntu.com better? [11:09] lets see [11:09] It's fine, I got it [11:10] nope [11:10] ok and to make things worse you need to #include to get access to the legacy gtkmozembed symbols :/ [11:11] after that you can try :) [11:11] #include on .cpp files is.. ick. [11:11] :-P [11:11] yeah ... the symbols are now hidden ... its a hack to support legacy embedders [11:11] new ones should use real XPCOM ... like nsIBrowser et al [11:11] * StevenK is just trying to figure out how the configure.ac -> configure stuff falls out [11:12] Actually, I might be just evil and set LIBTINYMAILUI_MOZEMBED_CFLAGS [11:13] configure: error: "You need Mozilla's XPCOM" [11:13] Sigh [11:14] StevenK: do they try to compile something to test? [11:14] No, they check include files [11:14] mozilla_gtkmozembed_pcs="gtkmozembed mozilla-gtkmozembed firefox-gtkmozembed xulrunner-gtkmozembed microb-engine-gtkembedmoz gtkembedmoz" [11:15] add libxul-embedding there [11:15] They want one of those things, I'm just unsure of where that list lives in configure.ac [11:15] StevenK: i still think there is an .m4 file somewhere [11:15] is there a m4/ directory ? [11:15] Yup [11:15] whats in there? [11:15] m4/moz.m4 [11:15] * StevenK just did a grep [11:16] can you paste it somewhere? [11:16] Sure, a sec [11:17] asac: http://paste.ubuntu.com/2317/ [11:19] ok add libxul-embedding there and [11:19] use mozilla_xpcom_includedir="`$PKG_CONFIG --variable=includedir $mozilla_xpcom`/unstable" ... if that directory exists [11:20] I'm adding libxul-embedding to line 43, or everywhere? [11:20] i think that should be fine [11:22] if test -d $mozilla_xpcom_includedir/unstable; then [11:22] mozilla_xpcom_includedir="$mozilla_xpcom_includedir/unstable" [11:22] fi [11:22] asac: ^ [11:23] StevenK: yes ... and "else ... (keep the old one)" [11:24] I need an explicit yes? [11:24] Er, explicit else [11:24] oh right [11:24] not needed then i guess [11:24] Just re-running autoconf [11:24] i guess aclocal you need as well [11:26] StevenK: oh i see that you need to add something similar to the -xpcom test (line 29+) [11:26] Yeah, it failed after autoconf, I just ran aclocal as well [11:27] Yup, added [11:28] StevenK: one final thing i see (because of mozilla_home) ... they probably use -rpath ... you have to drop that if mozilla_home is empty [11:28] * StevenK sighs at autoconf [11:28] asac: They don't use rpath, I had to hack that in myself [11:28] whatfor do they use mozilla_home ? [11:29] No clue [11:29] ok they set the _path hard coded [11:29] in _preferences.cpp [11:29] ok does configure now run? [11:30] I've autoconf blow up in my face, hold on [11:36] I get the same result [11:36] needs xpcom? [11:37] xulrunner doesn't throw that into the mix? [11:37] it does ... your m4/moz.m4 most likely isn't right [11:38] can you post the XPCOM section? [11:38] http://pastebin.mozilla.org/250750 [11:38] something like that? [11:39] http://paste.ubuntu.com/2318/ [11:39] no in m4/moz.m4 ... if you still get the output complaining about XPCOM missing [11:40] mozilla_xpcom_pcs="xpcom mozilla-xpcom firefox-xpcom xulrunner-xpcom microb-engine-xpcom libxul-embedding" [11:40] That's what I have [11:42] http://paste.ubuntu.com/2319/ [11:42] That's the full file [11:43] config.log ? what does it complain about? [11:44] configure:26325: checking Mozilla xpcom engine version [11:44] configure:26374: result: 1.8 [11:44] configure:26409: error: "You need Mozilla's XPCOM" [11:44] (But it's not 1.8) [11:45] StevenK: i have just the diff above ... now it complains about missing GtkMozEmbed not XPCOM anymore [11:45] maybe run sh autogen.sh === war10ck is now known as theseinfeld [11:46] There's no autogen.sh [11:46] http://paste.ubuntu.com/2320/ [11:46] that works for me [11:47] hu? [11:47] i have: URL: https://svn.tinymail.org/svn/tinymail/trunk [11:47] Hum [11:47] for i in xpcom mozilla-xpcom firefox-xpcom xulrunner-xpcom microb-engine-xpcom libxul-embedding ; do if pkg-config --exists $i ; then echo $i ; fi ; done [11:48] doesn't work? [11:48] do you have xulrunner-1.9-dev installed? [11:49] It prints nothing [11:49] Yup [11:49] $ if pkg-config --exists libxul-embedding; then echo test; fi [11:49] test [11:49] that works for me [11:49] StevenK: oh maybe you don't have latest xulrunner-1.9? [11:50] which version do you have? [11:50] (hardy)root@liquified:/libtinymail-0.0.5# if pkg-config --exists libxul-embedding; then echo test; fi [11:50] (hardy)root@liquified:/libtinymail-0.0.5# if pkg-config --exists libxul-embedding-1.9; then echo test; fi [11:50] test [11:50] 1.9~b1~rc3+nobinonly-0ubuntu1 [11:50] ok ... thats the previous package then [11:50] just 1.9~b1+nobin is the right one [11:53] Tracking down new packages [12:00] Still broken with the new xulrunner-1.9 [12:02] http://pastebin.mozilla.org/250753 [12:02] try just that patch ... it works for me [12:02] (at least for configure) [12:03] StevenK: does pkg-config now work at least? [12:04] asac: No, it's still broken. [12:04] Setting up xulrunner-1.9-dev (1.9~b1+nobinonly-0ubuntu1) ... [12:04] (hardy)root@liquified:/# if pkg-config --exists libxul-embedding; then echo test; fi [12:04] [12:04] StevenK: ok sorry for the mess [12:04] you have to use -1.9 for now [12:05] it was pulled from somewhere else for me [12:05] That's okay, but why does it work for you? [12:05] Ah [12:05] i have plenty of places where all kind of xul variants live :) [12:05] Haha [12:05] Along with grues? :-P [12:06] grues? cannot translate that ;) [12:07] http://en.wikipedia.org/wiki/Grue_%28monster%29 [12:09] Oh grah [12:10] Never mind, I'm a bozo [12:10] ah [12:10] If I'm going to run configure by hand, I should apply patches first [12:10] i will remember that StevenK :) [12:10] Hah [12:11] I'll get you, asac :-) [12:11] StevenK: patch it then i run [12:11] sh autogen.sh --with-html-component=mozembed [12:11] if you don't have autogen.sh aclocal + autoconf should be enough i guess [12:12] Yeah, it's working [12:12] I'm just about to see if it builds and links [12:12] StevenK: ok ... then add the snippet to mozilla_preferences.cpp (the init function) [12:12] and add a [12:12] #ifdef XPCOM_GLUE [12:12] #include [12:12] #endif [12:12] Which mozilla_preferences.cpp? [12:13] libtinymailui-mozembed/mozilla-preferences.cpp [12:13] Oh, it's a dash not underscore [12:14] yeah [12:14] wait a second ... i think i already have it :) [12:15] http://paste.ubuntu.com/2321/ [12:15] i think the "2" in version constraint should be 1.9.* [12:15] You're writing patches for me, this is great. [12:15] :-) [12:16] StevenK: please do the same for mobile-flash :) [12:16] Oh no [12:16] i am still learning as well ... so every port helps me :) [12:16] I'm not touching that [12:16] yeah ... but you can answer questions to intel then :) [12:16] hehe [12:17] how is the binary called? [12:17] how can i test? [12:17] There's a demoui, but if the thing links, you're pretty much okay [12:18] StevenK: i wouldn't bet on that :) [12:18] point is we now load the libs during startup (in the snippet) ... if that is too late you will crash :) [12:18] Awww [12:18] StevenK: the demoui starts :) [12:18] how can i see html? [12:19] Next question? I never managed to get much out of that demoui [12:19] oh ... [12:19] (tny-demoui:23335): camel-lite-WARNING **: Could not open camel provider directory (/usr/local/lib/camel-lite-1.2/camel-providers): No such file or directory [12:19] Segmentation fault (core dumped) [12:19] camel provider? [12:19] whats that? [12:19] It didn't segfault last time I tried it [12:19] that happens if you klick on "kill account" [12:19] starting works [12:20] but then i cannot get anything going [12:20] asac: Hang on, waiting for it to build. :-) [12:21] let me know if there are any regressions ... do you have a firefox build as well (to compare)? [12:21] In file included from tny-moz-embed-html-mime-part-view.c:36: [12:21] ./tny-moz-embed-html-mime-part-view.h:28:25: error: gtkmozembed.h: No such file or directory [12:21] 0.0.5-0ubuntu1 in the archive is a firefox build [12:22] StevenK: you have forgotten the configure.ac patch? [12:22] Ah, I missed a bit [12:23] I think [12:23] http://paste.ubuntu.com/2322/ [12:23] Ah, thanks [12:23] I think I missed the pkg-config flags bit [12:23] yeah ... its unstable :) [12:25] StevenK: is tinymail lpia only? [12:25] (package-wise) [12:26] Nope, it's built everywhere [12:26] strange [12:27] ah its just a lib [12:27] ok ... then let me know what happens :) [12:28] Just patched configure.ac, just kicking off another build === dholbach_ is now known as dholbach [13:42] Sigh [13:42] modest-tny-local-folders-account.c:243: warning: implicit declaration of functi [13:42] on 'tny_merge_folder_new_with_ui_locker' [13:44] hey [13:44] anyone managed to insatll the moblin-media package? [13:44] from moblin [13:46] the 0.21 [13:46] it has a dependency issue on moko which is virtual [13:46] anyone? [13:52] apt-get update then dist-upgrade just told me "moblin-media" has been kept back [13:53] exactly [13:54] because of dependency problem with moko [13:57] join #realxtend [13:58] if you try apt-get -t gaston update; apt-get -t gaston dist-upgrade it still sais that thing [13:58] that moblin-media depend moko but moko is not installable [13:58] i remember something was on the list about moko [13:59] anyone with better idea?/memory :) [14:04] StevenK: where do you get that error? [14:05] doesn't look like xul related though [14:05] asac: It isn't. :-) [14:06] modest wants SVN features of tinymail [14:08] StevenK: That's looking weird. Why would tinymail have svn features? [14:09] StevenK: Oh, you meant features from the svn version... sorry. [14:09] Right. :-) [14:09] * agoliveira needs coffee [14:09] * StevenK needs sleep [14:10] StevenK: Try my coffee and you will see that sleep is overrated :) [14:10] Hah [14:11] * StevenK doesn't like the taste of coffee [14:12] * lool wishes for some Brazilian coffee [14:12] StevenK: Now you're going to tell me you don't like beer either. If so, I'll personally kick your head until some decent vices get into it! [14:12] I like beer fine, thanks :-) [14:12] lool: I can swap for some french wine ;) [14:13] StevenK: Thank God. The day I see an australian who does not like beer I'll believe the end of days is afoot. [14:13] agoliveira: We should do this! [14:14] lool: I'll be glad to do it [14:15] agoliveira: :-) [14:15] lool: I'm just not sure about bringing coffee to US. I guess beans are out of question. [14:15] agoliveira: I would need to be provided with your preferences in matters of wine [14:16] * StevenK is pondering bringing Vegemite [14:16] agoliveira: Even in the suitcase? [14:16] StevenK: You should definitely bring back some flowers, animals, and illnesses back to Australia when you travel! [14:16] Hah [14:17] "Immigrant quanrantined for two years" [14:17] lool: Yes, customs can be very anal-retentive about any kind of organic stuff. I'll check it out. [14:17] sam once brought me some coffee from south america, not sure where he bought it; perhaps in duty free [14:18] lool: I want to get some special stuff one can't find on duty free. [14:18] * agoliveira has a problem with in/on/at [14:19] Anyway wine shouldn't be a problem [14:20] agoliveira, I suspect if the coffee is processed and packaged you can bring it in, but if it's lose raw beans you will have "issues" [14:20] Can be beans or ground but not raw would be my guess. === davidm_ is now known as davidm [14:21] davidm: I guess you are right. I should be able to bring toasted beans. I really don't want to grind it before as it looses it's smell and flavor quite quickly. [14:22] StevenK: please don't bring anyone vegemite for any reason [14:23] Very true I generally keep beans at home for just that reason, when I travel I bring ground since I don't want to carry a grinder. [14:23] But I drink up the coffee before it can lose flavor ;-) [14:23] QUESTION: how do you install the moblin lpia packages in the image-creator chroot [14:24] * agoliveira googles for vegemite... [14:24] have to go [14:24] cheer. [14:24] s... [14:24] Hey StevenK, bring some. I like to try different stuff. [14:25] agoliveira: no, no you don't. Not this stuff anyway. It's made from rat feces. [14:25] Even if I find it nasty as it looks like after see the google results [14:26] agoliveira: vegimite==marmite which is the english version (black, tracle like substance spread on toast normally) [14:26] "Folks, this is not something that I would rush out to buy. Nor, were I in Australia's position, would I list it among my national and/or secret treasures. If it's a secret, it would be best left in the closet" :D [14:27] There's a link I found written by a brazilian guy living in Australia and he says "I don't know a brazilian who likes it (vegemite), one can't like it, it's simply awful." [14:27] * agoliveira really want's to try it now :-D [14:29] * lool is amazed by what Australians do wiht vegemite http://www.youtube.com/watch?v=v_HPvAhnG_w [14:30] I like Vegemite on toast with butter [14:31] liar [14:31] I am not! [14:31] :) [14:31] I want to see if anyone can eat a tablespoon of vegemite without gagging. :-D [14:37] Well, I usually introduce visiting people to feijoada (a dish I love) and sometimes people just can't look at it. [15:39] elmo: do you have a minute? [16:09] Fenario: wrong channel :) === sabotage_afk is now known as sabotage [16:14] dholbach: sorry, you are the best [16:15] np, I just happened to see it :) [16:23] * agoliveira is back === tonyespy_ is now known as awe === awe is now known as tonyespy [18:07] asac: U there? [18:08] raji: yes [18:09] asac: How do I get source for wpasupplicant? [18:10] hostap git iirc [18:10] or : apt-get source wpasupplicant :) [18:11] asac: I talked to you about nm-applet having trouble connecting to WEP enabled network, I think the problem is in wpasupplicant. [18:11] asac, I ran wpasupplicant manually, association has failed. Are u owner of that package? [18:12] asac, apt-get source wpasupplicant did not work for me. I tried that. [18:13] thats strange .... do you have the deb-src lines in sources.list? [18:13] asac, do you know what version of wpasupplicant networkmanager 0.6.5 uses? [18:13] 0.5.8 [18:16] asac, It looks like I have to set up .config file for compiling the source files. Is there somewhere on the ubuntu site, I get .config file that they use? [18:17] in debian/patches there is a patch that patches the default [18:17] you need to use apt-get source wpasupplicant to get that ... or download the parts from launchpad [18:19] asac, Can you look at the wpasupplicant.conf file and tell me if that is correct or anything else needs to be added. [18:22] yes i can. [18:23] asac:http://ubuntu.pastebin.com/m3af840f [18:23] asac, that wpasupplicant.conf file is for wep64 [18:28] asac, I pasted the debug output from wpasupplicant at http://ubuntu.pastebin.com/m29d30e57 , can you please take a look at this log ,if problem is obvious. [18:33] asac, did you find anything wrong in the conf file? [18:33] let me see [18:34] http://ubuntu.pastebin.com/m22d3b719 [18:35] thats the example from the package [18:38] asac, my file looks like the example from package except dont have key in quotes. Not sure if that makes any difference. [18:39] asac, can you please look at the debug from wpasupplicant also, you may spot obvious error. [18:40] key in quota is important if you use the ctrl interface ... give it a try [18:42] asac , any other words of wisdom about rootcausing this? [18:45] raji: maybe look if "Driver did not support SIOCSIWENCODEEXT" is something fatal for wpasupp [18:52] asac, It is not fatal for wpasupp, because it tries SIOCSIWENCODE . Comments in the code says they try this other option, but I havent debug the code in action though [18:53] asac, By the way key in quotes didnt help either. wpasupp behaviour is same, still failing. [18:57] asac, another question. in the src file nm-device-802-11-wireless.c, strcpy is used instead of safe string cmp, and on moblin, that was crashing, I changed all those things . Do you want to apply these changes to ubuntu source? Should I send it as a patch to you or you dont care? [18:59] raji: try to ensure that driver_wext.c:1523 gets the right errno ... otherwise ENCODE is not even tried i guess [19:00] raji: i always care for patches ... please submit a backtrace of the issue it fixes as well [19:02] asac, I am sorry, I am all new to this, how do I create patch? [19:03] in what kind of tree did you develop the changes? [19:03] in the package? [19:03] we have git repository [19:04] we cloned it from ubuntu src repository [19:07] raji: looking at wpasupp source ... supplicant doesn't try to use ENCODE alone for you ... the output would read "... SIOCSIWENCODEEXT, trying SIOCSIWENCODE" [19:08] raji: cloned a bzr branch? [19:09] so the errno from the ioctl is neither EOPNOTSUPP nor ENODEV - both would trigger the SIOCSIWENCODE attempt [19:09] asac, Yes, I think. ToddBrandt knows answer to this. I will find out about that, will talk about patch tomorrow. [19:10] asac, So you think, errno from ioctl is wrong? [19:10] yes ... the driver is wrong [19:10] give it a try ...output the errno you get at the line mentioned above [19:11] asac, ok. I will try that. === Inuka__ is now known as Inuka === cprov is now known as cprov-out [20:45] lool: ping [21:17] smagoun_: pong [21:17] lool: I noticed that cheese 0.2.2 is the latest for LPIA in gutsy [21:18] 0.2.3 is in gutsy, but it FTBFS on lpia [21:18] (a hildon header file's not being picked up by the compiler) [21:19] https://edge.launchpad.net/ubuntu/+source/cheese/0.2.3-0ubuntu1/+build/382477 [21:19] smagoun_: Do you reproduce the problem? [21:20] If I give you a patch, could you update the PPA? [21:20] lool: yup [21:20] smagoun_: Sure; does it affect hardy? [21:20] lool: yup [21:20] smagoun_: Ok; I'll fix it in hardy and then update the gutsy ppa [21:21] 0.2.4 is in hardy, but didn't build [21:21] ok [21:22] lool: In the meantime I assume I should I file a bug against cheese? [21:22] smagoun_: It only failed on lpia for hardy as well [21:22] lool: that's correct, sorry [21:22] smagoun_: You don't strictly need to file a bug; it's a tool [21:22] smagoun_: No need to be sorry, you didn't say anything contradictory :) [21:22] lool: I don't follow - cheese is a tool? [21:23] I just checked https://edge.launchpad.net/ubuntu/+builds?build_text=cheese&build_state=all and saw it's only an issue for lpia so that I know whether we need to fix other stuff etc. [21:23] smagoun_: I mean the bug report is a tool [21:23] smagoun_: We don't require a bug to update stuff; it just helps us around talking about an issue / regrouping information tec. [21:23] gotcha, thanks [21:23] But for a "SRU" we *require* a bug [21:23] SRU? [21:23] (Stable Release Update) [21:23] * smagoun_ is still new here :) [21:24] ok, good to know [21:24] It's described in details on the wiki.u.c [21:24] But it's a /lot/ of work, so if it's only for UME and for gutsy's UME, I wont prepare a SRU [21:24] https://wiki.ubuntu.com/StableReleaseUpdates [21:25] ok. The bug is hildon-specific, so only UME is affected [21:25] See the "How" for how much pain it is :) This is to prevent accidents [21:25] wow, that section has a lot of words [21:25] Right, it's only lpia and cheese is probably not widely used outside of UME anyway [21:25] smagoun_: So you have a patch or an explanation of the fix? [21:26] smagoun_: I'll take this as an occasion to update cheese to 0.2.4 in the ppa [21:27] lool: not yet, working on it now [21:30] i'm a bit puzzled at how it would ever have built?! [21:33] It would build if -I/usr/include/hildon-1 is in CFLAGS [21:34] ....but that seems to be the case already, and it still doesn't work [21:34] smagoun_: Yeah, the .make stuff with includes seems to not work properly [21:34] yeah. what's this toc2 thing? [21:34] Looks like a custom build system; sigh [21:35] Ok, included by src/toc2.make: toc2.makefile.config_vars = $(toc2.top_srcdir)/toc2.$(package.name).configure.make [21:37] smagoun_: It looks like HILDON_CFLAGS is never added to CFLAGS [21:37] lool: yup [21:38] smagoun_: Adding them fixes the build :) [21:38] right, but src/Makefile is generated (right?) [21:39] smagoun_: It's patched by debian/patches/hildon [21:39] smagoun_: Is it generated as well? [21:39] hmmm, maybe that's all that's happening [21:41] smagoun_: Can I hand you .deb for lpia to test? [21:41] sure [21:41] (I never used cheese) [21:41] * smagoun_ doesn't have the hang of editing patches yet [21:43] smagoun_: In this case, I "cleaned" just to bring me in a clean state before editing, then cdbs-edit-patch hildon [21:43] Did the changes, typed ^D, and that was it [21:44] By cleaning, I mean running debclean or fakeroot debian/rules clean [21:45] smagoun_: http://people.ubuntu.com/~lool/packages/cheese/0.2.4-0ubuntu2/hardy-lpia-pbuilder/ [21:47] ok, got the cdbs-edit-patch to work. neat. Thanks for the help, I know how frustrating it can be to walk new employees through every little thing. [21:47] lool: trying it now [21:49] smagoun_: Oh it's not frustrating at all; I understand I probably did more packaging on my side, but I was mighty impressed by what the Lexington team did in a previous life^Wcompany [21:49] So I'm sure I'll learn tons from you guys as well; I already do :) [21:50] I can impress my wife saying that the screen is resistive, not capacitive, so it has no chance to support multi touch [21:51] :) [21:52] that deb installed on my Q1 but didn't configure - it complains about version mismatches with llbebook, libedataserver, and others [21:52] smagoun_: Are it's a hardy deb [21:52] smagoun_: Are you using gutsy? [21:52] yup [21:53] is there an easy way to force dpkg to configure it? [21:53] It wouldn't work [21:53] (is the config step really necessary in this case?) [21:53] The reason for the mismatches is that package were renamed for e.g. the new evolution-data-server; libs have changed SONAME, so the binaries wont work [21:53] To match such changes, we rename lib packages and rebuild all depending packages against the new lib [21:54] You are supposed to build binaries against your target dist; I'm building against gutsy now; I would have had to prepare the backport anyway [21:55] smagoun_: http://people.ubuntu.com/~lool/packages/cheese/0.2.4-0ubuntu3~710um1/gutsy-lpia-pbuilder/ [21:58] lool: the gutsy version installs + runs fine - thanks! [22:02] smagoun_: Both uploaded; hopefully sound installed and built [22:02] lool: one more question. RedHat has 'debuginfo' packages that contain symbol tables, etc for debugging crashes. Is there an equivalent in Debian/Ubuntu? [22:02] lool: thanks! [22:02] smagoun_: Yes; we have two things actually [22:02] Debian creates manually some extra packages where "detached debug symbols" are shipped [22:03] dh_strip can help with that; you tell him that it should strip the binaries in the .debs, and put the symbols in another [22:03] And Ubuntu has a buildd-side system where the buildd copy debugging information in some ddeb packages which are kept in the archive [22:04] You can then use apport when you get a crash to match a core dump with the ddebs and produce a backtrace with debugging symbols [22:05] Neat. [22:13] Cool http://googlemobile.blogspot.com/2007/11/new-magical-blue-circle-on-your-map.html === asac_ is now known as asac [23:12] ToddBrandt: Are you coming to meeting? Everyone looking for you. [23:13] what's the bridge number? [23:13] I was going to call in [23:14] raji: I try calling the conference room and it's busy , so I know there's probably a bridge [23:15] ToddBrandt: Yes. there. Let me get the number for you [23:16] raji: thanks [23:16] ToddBrandt: 1-8781441 === Margie__ is now known as Margie === Margie__ is now known as Margie