=== m0rphx [n=morph@p83.129.168.212.tisdip.tiscali.de] has joined #ubuntu-devel [12:03] mem ? [12:03] should work [12:03] ogra, what soc thing are you mentoring? [12:03] I need a linux distro that'll run on this [12:03] http://www.dsl-ltd.co.uk/products/6070spec.htm [12:03] Burgundavia, the above :) [12:04] ogra, ubuntu-lite? [12:05] Burgundavia, and graphical config tools... which is a bit odd for a bounty since all thing listed on the spec are already done fine upstream.... so the SoC student had not many options... but he made the best out of it :) [12:05] Burgundavia, yep [12:05] ogra, yes. I was wondering the same thing. But the ndisgui thing is worth it [12:07] you already saw it ? [12:07] yes [12:07] poofyhairgui on the forums found it and posted it about it [12:08] heh [12:08] it'll be in universe soon ... [12:08] you can even download debs for it [12:08] i know [12:08] i reviewed them [12:09] daniels: please make xserver-xorg stop prompting me for questions in triplicate every time I upgrade it [12:10] lamont: libgl1-xorg-dev should be happier now === ogra thinks one very odd thing about ltsp is, that if its run on a amd64 client from a x86 server powermanagement seems not to exist at all... my knees are melting under 2ghz amd64 power... === Nafallo grumbles * [12:12] users want to add breezy to install valknut :-P [12:13] I'm trying to explain to them why it is a bad idea ;-) [12:15] ogra: got any link for the ubuntu light project === Burgundavia [n=corey@S0106000000cc07fc.gv.shawcable.net] has joined #ubuntu-devel [12:17] currently not... im on a thin clinet here [12:17] but something like www.ubuntulite.org ... [12:17] gah === Burgundavia is stress testing ubuntu and his harddrive by kicking the power cable out [12:18] Burgundavia, which SoC project is it? [12:18] paolo, which one? [12:18] Burgundavia, the one you were talking about some lines ago. [12:18] paolo, ubuntu lite is LIghtweightDesktop or something [12:18] GraphicalConfigTools [12:19] Mez, http://ubuntulite.org/wiki/index.php/Main_Page === Arrogance [n=aks@ottawa-hs-64-26-167-219.d-ip.magma.ca] has joined #ubuntu-devel [12:20] ogra, any idea why most of the ubuntulite project has been done outside the official channels? [12:20] Nice :-) I'm a SoC-er too (but not for ubuntu) [12:20] Burgundavia, because they were already existent and nearly done with their version 1 wher the SoC started [12:21] ah [12:21] paolo, what are you doing? [12:21] Burgundavia, Haskell bindings for Cairo, and integration in the Haskell Gtk+ bindings [12:21] hmm === thoreauputic_ [n=prospero@wolax8-005.dialup.optusnet.com.au] has joined #ubuntu-devel [12:23] ogra: it'd be nice to see these people working in the existing development community [12:23] ajmitch, yes... but you cant force people [12:24] I know [12:24] ogra: and I guess you tried recruiting them as MOTUs :) [12:25] heh.... after they finished their projects... let them focus on their work now ;) [12:25] I think that people see Ubuntu has this giant monlithic entitiy [12:25] and they think it is hard to get involved [12:25] Burgundavia: but they see it as that because it works [12:26] I spend a lot of words/time on the forums telling people to join the official efforts (motu, doc team, etc.) [12:26] a whole lot of software that generally works well and together appears every six months [12:26] they see the developers as far above the ordinary users? [12:27] yes [12:27] and Ubuntu is one of the easiest distros to get involved in [12:27] I'd say [12:27] thats because we have a split community.... forum people vs. mailing list people === ajmitch rarely reads the forums === ogra neither [12:28] most developers rarely read the forums [12:28] I rarely read either [12:28] and i dont know any devs that do it [12:28] if you took all my posts on the forums, probably over half are "file a bug, devs won't read it here" [12:28] if it wasnt for you, the bug would sit there forever [12:29] the forums need to be more bidirectionally gated, to unite the communities [12:29] Do you know which xorg packages defines "string literal" colors (if any) ? [12:29] and people would get bitter because no one cared about their "bug report" [12:29] azeem, they are [12:29] there is talk about extending launchpad login to the forums [12:29] but they use non-free software [12:30] heh [12:30] the current forums seems to want me to sign up every time i click my mouse [12:32] seb128: still here? [12:33] yep [12:33] seb128: I pinpointed the bug on amd64, but it's nontrivial to solve [12:33] seb128: is there any gdk function to determine the work area? [12:33] oh, what is it? [12:34] seb128: i. e. the screen size minus panels etc. [12:34] seb128: it calls XGetWindowProperty to determine the desktop work area size [12:35] seb128: on i386 this returns 32 bit ints, on amd64 it returns 64 bit numbers [12:35] (in an array) [12:35] so the coordinates are totally off on amd64 and you can't see the window [12:35] there is no gdk function for that afaik [12:35] but instead of brutally fixing that, I'd rather use a gdk function to determine the desktop size === WaterSevenUb [n=WaterSev@bl5-222-170.dsl.telepac.pt] has joined #ubuntu-devel [12:35] seb128: darn [12:36] seb128: it almost seems that XGetWindowProperty has a bug... [12:37] nautilus seems to do [12:37] XGetWindowProperty (display, RootWindow (display, screen_num), [12:37] XInternAtom (display, "ESETROOT_PMAP_ID", False), [12:37] 0L, 1L, False, XA_PIXMAP, [12:37] &type, &format, &nitems, &bytes_after, [12:37] &data_esetroot); [12:37] and I would feel bad if I just worked around that [12:37] I think the problem is that xorg misses some packages other than the ones listed in the mail pitti pointed me before. [12:37] retval = XGetWindowProperty (GDK_DISPLAY (), GDK_ROOT_WINDOW (), [12:37] window_id_atom, 0, 1, False, XA_WINDOW, [12:37] &actual_type, &actual_format, &nitems, [12:37] &bytes_after, &data); [12:37] int result = XGetWindowProperty(GDK_DISPLAY(), win, workarea, 0, [12:37] max_len, False, AnyPropertyType, [12:37] &type, &format, &num, [12:37] &leftovers, &ret_workarea); [12:38] seb128: format is 32 on amd64, although it returns 64 bit ints [12:38] so [12:38] Could you tell me in which package is "showrgb" ? [12:38] guint32 *workareas = (guint32 *)ret_workarea; [12:38] rect.x = workareas[disp_screen * 4] ; [12:38] rect.y = workareas[disp_screen * 4 + 1] ; [12:38] breaks [12:38] why dont you use GDK_ROOT_WINDOW () instead ? [12:39] ogra: and determine its size? [12:39] yup [12:39] there are various others to use: http://developer.gnome.org/doc/API/2.0/gdk/gdk-X-Window-System-Interaction.html === m0rphx [n=morph@p83.129.168.212.tisdip.tiscali.de] has joined #ubuntu-devel [12:41] ogra: cool, do you know how to query the size? [12:41] nope, never did that.... [12:42] this GetProperty thingy fails, so using it to determine the size of it leads to the same proble [12:43] Sob. In hoary showrgb is in xutils, but there isn't in breezy. === otavio[off] [n=otavio@201.10.58.28] has joined #ubuntu-devel [12:46] Seveas, do you know if there is an online search for this kind of things? Like "file -> package" [12:47] pitti, gdk_window_get_geometry () [12:47] paolo: http://packages.ubuntu.com/; but (a) it may be out of date and (b) showrgb is probably just missing at the moment, due to the in-progress xutils reorg [12:47] pitti, http://developer.gnome.org/doc/API/2.0/gdk/gdk-Windows.html#gdk-window-get-geometry [12:48] Kamion, I was searching for that because of this error running emacs: 'Undefined color: "black"'. And #freedesktop guys told me that string literals are defined in some file belonging to showrgb or something. [12:48] ogra: doesn't fit, take a penalty card :-) [12:49] heh [12:49] ogra: that's only for gdk windows, not for X window IDs [12:50] and a GDK_ROOT_WINDOW () isnt a gdk window ? [12:51] no, an X window id [12:52] XGetWindowAttributes() - let's try that [12:52] yeah [12:52] hanst X a GetGeometry too ? [12:52] hasnt even [12:54] mjg59: whaaaaa [12:54] mjg59: I want my graphical boot now [12:54] luis_: I'm hacking on it [12:55] Stuff is being mean to me [12:55] mjg59, are lappys expected to be shipped this week? [12:55] Burgundavia: Yes [12:55] ok === thierry [n=thierry@modemcable094.69-131-66.mc.videotron.ca] has joined #ubuntu-devel [12:55] ooh nice [12:56] you're all getting new lappys? [12:56] lamont: a give-back of nautilus/i386 once the buildd chroots have been repaired would be very much appreciated [12:57] (it sorta breaks the world through out-of-date nautilus-data_all.deb [12:57] ) [12:57] Kamion: ok... [12:59] pitti, http://seth.positivism.org/man.cgi/3/XGetWAttr [01:00] ogra: that's what I'm trying right now :-) [01:00] :) [01:02] Zquit [01:02] Oops ;) [01:03] mjg59, I have placated the ravaging hordes at the forums with the news that Usplash is being worked on [01:03] Kamion: pardon me while I rampage through all of main :0)( [01:04] Burgundavia: Hurrah! [01:04] lamont: fair enough :) [01:05] lol [01:05] mjg59, you could become ubuntu DPL (if we hadnt already a dictator) after finishing usplash... it will make you paparazzi-popular ;) [01:06] Haha [01:06] hihihi [01:06] I also got to include the whinging of luis_ in there too ;) [01:06] haha [01:06] lol [01:06] I'm not whinging, I'm trying to improve the livecd. ;) [01:06] what happens if i apt-get usplash atm? [01:06] <- master of subtle differences [01:07] Burgundavia: laptops soon? great, means I might see it in 2 months :) [01:07] tseng, you get a package installed ? [01:07] ogra: what does that package do? :) [01:07] ogra: good one. [01:07] ogra: naah, that's apt-get install :-) [01:07] tseng, err, actually you get an error :) [01:07] I installed usplash [01:07] tseng: I belive it will tell you that usplash isn't a valid command :-) [01:07] meh [01:08] heh [01:08] you guys are tools [01:08] Burgundavia: and what did it do? :) [01:08] hehehe [01:08] Burgundavia: Yeah, it might work soon [01:08] after my hardware testing by kicking power cord out, nothing happened [01:08] that's a shame [01:08] power cord testing isn't the most reliable though [01:09] no [01:09] but the ext3 journal recovered fine [01:09] especially if you were installing something at the time [01:09] it had finished installing, luckily [01:10] Burgundavia: It won't do anything without initramfs [01:10] (and at the moment that won't quite work properly - give me a few minutes and there'll be a new upload) [01:10] ok [01:10] Total 5917 package(s) in state Installed. [01:10] Total 442 package(s) in state Needs-Build. [01:11] Kamion: ^^^ have a nice day [01:11] lamont: You need a w-b state "B0rked" [01:11] heh [01:12] mind you, most of those 442 packages will fail again === r0bby [n=wakawaka@cpe-204-210-133-115.hvc.res.rr.com] has joined #ubuntu-devel [01:13] ogra: darn, that works, but gives the complete root window, not the workspace [01:13] there must something similar for the workspace [01:14] sorry phone... [01:16] src/common/gst-package.c:64: undefined reference to `_' [01:16] collect2: ld returned 1 exit status [01:16] grumpf [01:17] hey, wait... [01:17] heh [01:18] YAY, YAY, YAY === pitti does the victory dance [01:18] pitti \o/ [01:18] whats new pitti? [01:18] ajmitch: I'm expecting to pick one up tomorrow [01:18] seb128: how stupid... [01:19] "If the returned format is 32, the returned data is represented [01:19] as a long array" [01:19] seb128: i. e. even if format is 32, I have to use a long (64 bit) [01:19] so if that is the spec, fine :-) === sklp [n=sklp@81-226-252-142-no19.tbcn.telia.com] has joined #ubuntu-devel [01:20] pitti: why does it return 32 if the format is 64 ?! [01:21] seb128: other way round === lamont -> home [01:21] ask the X authors [01:21] bah [01:21] kick daniels? :) [01:22] sladen: living in NZ has it's disadvantages [01:39] tell me, is there any reason why the gnome weather applet can't get the location from the timezone as a default === nickrud [n=aias@adsl-69-153-16-33.dsl.snantx.swbell.net] has joined #ubuntu-devel [01:39] it does [01:40] since recently? [01:40] Is there a way to see if a package is in the build queue? [01:40] it's defaulted to pennsylvania always for me [01:40] which is a long way from melbourne [01:40] what locale do you use? [01:40] maybe it uses the locale [01:40] en_AU [01:41] the timezone is a bit more specific though [01:41] yes, because weather here in boston is just like the weather in miami! [01:41] if it should try to guess at all, it should be from the address in about me [01:42] still in the right continent though [01:42] guessing from timezone is basically useless unless you live in hawaii [01:42] it picks Paris here [01:42] Your current time zone is set to Australia/Melbourne [01:42] well on ubuntu you usually set a location at the start [01:42] do other distros do similar? [01:42] that's precisely where I am [01:42] you're in a small minority then [01:43] i set mine to where i am too, heh [01:43] Australia/Perth [01:43] luis_: well, for the small minority it would be correct === luis_ tests building spanish livecd [01:43] and the the majority it would be in the right area at least [01:44] good night everybody [01:44] luis_: You need usplash-0.1-2 (which will hit the archive shortly) and the latest initramfs-tools, then mkinitramfs -o /boot/initrd-foo [01:45] coolio [01:45] HrdwrBoB: they use the translation to set the default [01:45] thanks, dude [01:45] luis_: But be warned that it's very ugly right now [01:45] And doesn't really do anything useful === robertj [n=robertj@66-188-77-153.dhcp.athn.ga.charter.com] has joined #ubuntu-devel [01:46] good night [01:46] if it can hide the text behind an arbitrary image which contains the string 'please wait', then it is a step up for me [01:49] luis_: Well, sort of [01:49] You'd need a couple of hacks for that [01:50] nickrud: you look in http://people.ubuntu.com/~lamont/buildLogs/Lists/, but you might want to get somebody who knows how to interpret those [01:50] Kamion, thanks, I'll see what I can see [01:50] mjg59: anyway, I'll play with it [01:51] luis_: Basic idea is: splash appears. Scripts call command that writes stuff to splash. Splash vanishes after timeout. [01:52] There's still a tiny bit of work needed to get it to work on both sides of the root filesystem being mounted, but you could just up the timeout === carl2 [n=carl@217-162-189-134.dclient.hispeed.ch] has joined #ubuntu-devel === zenrox [n=zenrox@71.115.219.166] has joined #ubuntu-devel === robertj pops off an email to ubuntu-devel to see if anyone else thinks its time the workspace-switcher applet find its way to /dev/null [01:55] (what I really mean is that it probably shouldn't be on the panel by default) === SloMo [n=slomo@p5487FADC.dip.t-dialin.net] has joined #ubuntu-devel === _d4vid [n=xxx@tor/session/x-53cd313207c88fbb] has joined #ubuntu-devel [02:23] Kamion, most of it is self explanatory (at the level I needed:), thanks === bddebian [n=bddebian@pcp08717033pcs.phnixv01.pa.comcast.net] has joined #ubuntu-devel === GmanAFK is now known as Gman_ === _d4vid [n=xxx@tor/session/x-8c8bd29751045521] has joined #ubuntu-devel === infinito [n=infinito@75.Red-80-59-227.pooles.rima-tde.net] has joined #ubuntu-devel === marcin [n=user@www.e-dev.tele2.pl] has joined #ubuntu-devel === tepsipak1i [n=tjaalton@replicant.hut.fi] has joined #ubuntu-devel === marcin [n=user@www.e-dev.tele2.pl] has joined #ubuntu-devel === Traxer|off [i=traxer@shell6.powershells.de] has joined #ubuntu-devel === Robot101 [i=robot101@light.bluelinux.co.uk] has joined #ubuntu-devel === Nafallo [i=nafallo@c-459571d5.07-44-73746f50.cust.bredbandsbolaget.se] has joined #ubuntu-devel === whiprush [n=jorge@64.62.190.212] has joined #ubuntu-devel === mdke [n=matt@unaffiliated/mdke] has joined #ubuntu-devel === moquist [n=moquist@pool-68-237-137-146.man.east.verizon.net] has joined #ubuntu-devel === comadreja [n=comadrej@68.Red-81-44-212.pooles.rima-tde.net] has joined #ubuntu-devel === lifeless [n=robertc@dsl-211.17.240.220.rns02-kent-syd.dsl.comindico.com.au] has joined #ubuntu-devel === [SemTeX] [n=luc@26.223-136-217.adsl.skynet.be] has joined #ubuntu-devel === mitsuhiko [n=mitsuhik@80.122.201.98] has joined #ubuntu-devel === Amaranth [N=travis@unaffiliated/amaranth] has joined #ubuntu-devel === infinity [N=adconrad@loki.0c3.net] has joined #ubuntu-devel === Xof [N=mas01cr@158.223.59.22] has joined #ubuntu-devel === Nafallo [I=nafallo@unaffiliated/nafallo] has joined #ubuntu-devel === Nafallo_ [i=nafallo@c-459571d5.07-44-73746f50.cust.bredbandsbolaget.se] has joined #ubuntu-devel === sjoerd [I=sjoerd@fire.ipv6.luon.net] has joined #ubuntu-devel === infinity [n=adconrad@loki.0c3.net] has joined #ubuntu-devel === Xoff [n=mas01cr@gibbons.doc.gold.ac.uk] has joined #ubuntu-devel === lee [I=lee@i.loathe.ms] has joined #ubuntu-devel === r0bby [n=wakawaka@unaffiliated/r0bby] has joined #ubuntu-devel [03:15] mdz, anyone else: where would it be best to discuss the liveCD? ubuntu-devel? === uniq_ [i=charlie@3ffe:80ee:31fe:0:0:0:0:33] has joined #ubuntu-devel === sjoerd [i=sjoerd@fire.ipv6.luon.net] has joined #ubuntu-devel === luis_ has some questions about the breezy stuff, not sure if they are bugs, things that have merely changed since hoary, or what === Am|NickTaken [n=travis@ip68-96-129-148.om.om.cox.net] has joined #ubuntu-devel === Am|NickTaken [n=travis@ip68-96-129-148.om.om.cox.net] has joined #ubuntu-devel === Amaranth [N=travis@unaffiliated/amaranth] has joined #ubuntu-devel === lee [I=lee@i.loathe.ms] has left #ubuntu-devel [] === niran [n=niran@cpe-67-10-213-51.houston.res.rr.com] has joined #ubuntu-devel === Am|NickTaken [n=travis@ip68-96-129-148.om.om.cox.net] has joined #ubuntu-devel === Am|NickTaken [n=travis@ip68-96-129-148.om.om.cox.net] has joined #ubuntu-devel [03:52] Kamion: worksforme [03:55] daniels: I've seen it to [03:55] o [04:06] hi all [04:06] I got a propably simple question... but I cannot find an answer myself [04:07] how you guys build packages in this way that they got *-ubuntu[somebuildversion] suffix? [04:07] marcin: It comes from the changelog [04:07] mjg59: it used to happen in the pre-hoary days, and I don't see what could've changed to make it come back. of course, neither can I remember what I changed to fix it, exactly ... === shaya [n=spotter@user-0ccembr.cable.mindspring.com] has joined #ubuntu-devel === shaya pokes mdz [04:09] daniels: I still get that, it came back recently [04:09] bddebian: so for example: wget (1.9.1-10ubuntu2.1) in changelog does this trick? [04:09] bddebian: and in fact - I know that 1.9.1 is version [04:09] headdesk [04:09] bddebian: but what 10 and 2.1 is? [04:10] bddebian: (in 10ubuntu2.1 suffix) [04:10] Hmm, I haven't seen a suffix like 2.1 [04:10] bddebian: well is is in ubuntu hoary - wget package - for example [04:11] marcin: generally because there had already been a -10ubuntu3 in breezy but a security fix to -10ubuntu2 needed to happen in hoary [04:11] (guessing) [04:11] Kamion and they didn't want to go -10unbuntu2hoary1 :) [04:11] shaya: that would be really rather redundant and unhelpful, if you think about it [04:12] it was a joke :) [04:12] anyways [04:12] is there a libgl-xorg-dev package anywhere? [04:12] codenames like "hoary" don't sort well [04:12] shaya: libgl1-xorg-dev [04:12] Kamion: so this thing after 'ubuntu' is something like build version in rpms? [04:12] Kamion: aptitude is giving me serious issues [04:13] marcin: no [04:13] shaya: it's fixed, may still be propagating to your mirror [04:13] Kamion: hmm any naming convention guide? [04:13] hmm [04:13] marcin: everything after the - is the package revision (as opposed to the upstream version number) [04:13] I use archive.ubuntu.com [04:14] marcin: "ubuntu" is an indicator that we have made substantive changes in Ubuntu so we shouldn't automatically sync new versions from Debian, and instead must merge them [04:14] marcin: the bit before "ubuntu" is generally the revision of the corresponding package in Debian [04:15] normally speaking, the bit after "ubuntu" is just an integer. Don't mess about with extra 2.1 bits unless you know what you're doing and absolutely have to [04:16] so typically, Debian has 2.3.1-1, first Ubuntu revision against that is 2.3.1-1ubuntu1, second is 2.3.1-1ubuntu2, etc.; if Debian release 2.3.1-2, then the merged version would be 2.3.1-2ubuntu1, etc. === lexhider [n=lexhider@dsl-220-235-198-125.nsw.westnet.com.au] has joined #ubuntu-devel [04:21] Kamion: hmmm [04:21] Kamion: ok then when we need to change from 1ubuntu to 2ubuntu? [04:23] Kamion: ahh I think I get it - first digit is _Debian_ build indicator and last number after 'ubuntu' thing is _Ubuntu_ build indicator [04:23] Kamion: right? [04:25] mjg59: are you interested in hearing about usplash not working? [04:25] luis_: ubuntu-devel, yes [04:26] Lathiat: yes, in what case? [04:26] sladen: on my laptop, boots, screen goes blank, no hard disk activity, alt+sysrq+b works, capslock doesnt [04:27] hrm i just realised i have a vga=771 [04:27] maybe tahts interfering [04:28] Lathiat: it can't cope with vesa modes [04:28] also [04:28] it should respect nosplash [04:28] Lathiat: it should probably check for, and ignore modes [04:28] marcin: right [04:28] or not havign 'splash' [04:28] Lathiat: from reading the code about an hour ago, it /should/ do that [04:28] (because i had to boot a livecd to uninstall and reinstall the kernel to be able to boot again) [04:29] marcin: don't touch the bit before "ubuntu" unless you're merging new code from upstream or from Debian (which you generally shouldn't be doing at this stage of the release process without getting prior approval, anyway) [04:29] i tried recovery mode and changing splash to nosplash [04:29] Treenaks: hmm, I read some documentation a bit more carefully, I think that hotplug thing is actually a busybox sed bug [04:29] ill try without vga= and see what happens === BIGBRUNO [n=biglinux@200.196.122.39] has joined #ubuntu-devel [04:31] Kamion: and what about new packages that doesn't exist in Debian repository? [04:31] marcin: they get -0ubuntu1, etc [04:31] marcin: either versioned as if they were Debian packages, or as ajmitch says [04:31] Lathiat: 'splash' is not set for recovert mode. nothing knows about 'nosplash' it is 'splash' or '' [04:32] sladen: well if i set nosplash [04:32] sladen: thered be no splash [04:32] sladen: nor did it work in recovery mode [04:32] I tend to use Debian-style versioning for new development, and -0ubuntu1 versioning for cases where we're temporarily running ahead of Debian [04:32] bbs [04:32] Kamion: ok [04:32] i saved the old initrd this time :) [04:33] wtf, why does gmail-notify depend on straw (rss reader) [04:33] Kamion: we mandate -0ubuntu1 for universe new packages [04:34] Lathiat: nothing should happen at all in recovery mode. Is that what you see in your case? [04:35] ajmitch: for universe that's reasonably sensible I guess, since much of that should be expecting similar packaging to show up in Debian as -1 [04:35] ajmitch: however, I refer you to e.g. the recent usplash uploads [04:36] sladen: nope, it still screwed up, however i just found out that i want the second version that was uploaded as without vga=771 i saw a kernel panic after some random foo [04:36] (cus init died) [04:37] right, I mainly deal with packages that MOTUs review for universe === Am|NickTaken is now known as Amaranth [04:37] where it's easiest just to have a consistent scheme, and try &get it into debian [04:37] Lathiat: okay, so a kernel panic. can you replicate it and record what the kernel paniced over? [04:37] Kamion: btw you want always follow debian repositories? [04:37] sladen: it had errors about the usplash_something-init, i saw a changelog entry about -s in the variables, so i'll get that new version and try it first [04:38] Kamion: or is this possible to create some really _different_ packages for ubuntu? [04:38] Kamion: (different - I mean different than in debian) [04:39] marcin: we can and we have [04:39] marcin: but try to limit it [04:39] should i uninstall usplash? :) [04:39] marcin: the fewer *unnecessary* diffs we have versus Debian, the less work we have to do [04:40] Amaranth: is it giving you problems? [04:40] sometimes the diffs are necessary, but don't do it just for the sake of it [04:40] sladen: I'm not comfortable booting up to a live cd to 'uninstall' my kernel to fix any potential problems :P [04:41] Amaranth: 'sok, backup your old initrd first ;p [04:41] (then use the power of grub ;p) [04:41] too late [04:41] Amaranth: nah just reinstall your kernel image [04:41] copy it [04:41] and then run mkinitramfs again [04:41] Kamion: ok anyway I want to package some software not much important for ubuntu [04:41] Kamion: and I think that I create these packages mainly for myself [04:41] Lathiat: ok, but if i just uninstall usplash and reinstall my kernel it should be fine, right? :) [04:42] Amaranth: i guess? [04:42] Kamion: especially while I want to break some debian rules (so propably no chance to adopt my package to debian) === poningru [n=poningru@pool-70-110-71-222.tampfl.fios.verizon.net] has joined #ubuntu-devel [04:43] marcin: the Debian policy is not there just for fun; it's a collection of good practice that's evolved over time. If you insist on breaking it you should be very sure of your reasons [04:44] Kamion: I think I'm sure - especially while some packages adopted by ubuntu from debian are not installable [04:44] I would expect the universe folks to require Debian policy from new packages by default except where they've explicitly decided to do otherwise for good reasons, I think [04:45] dude, uninstallability's just about dependencies, it's not generally policy [04:45] we do require policy compliance [04:45] Kamion: but it is only one reason [04:45] what reason is that? [04:45] Amaranth: can you boot using the recovery-mode ? [04:45] sladen: i haven't tried to reboot at all [04:46] Kamion: and another is that some things are installed with packages but not available for user due to screwed up config files [04:46] argh [04:46] mjg59: sessreg comes from the xdm source [04:47] marcin: and you think Debian rules include "must be broken"? [04:47] Kamion: anyway I'm too tired now to explain all of this it's too late (4:47 here) [04:47] marcin: some packages in Debian are buggy; that doesn't mean that fixing them involves breaking Debian rules [04:47] Kamion: well maybe not all debian rules [04:47] Kamion: to be more specific [04:48] Kamion: the thing I want to do is a bunch of packages for Emacs [04:48] Kamion: and debian policy for emacs is pretty good [04:48] Kamion: (overcomplicated - but good) [04:49] Kamion: but there is a lot of broken packages - broken in different ways [04:50] how does any of this justify breaking policy? [04:50] Kamion: dependencies (for example: jde), broken config files (for example: dired-x - available in package but user needs to configure this by hand in .emacs file) [04:51] so far it sounds like you're just saying "I need to fix stuff that's broken", which is fine [04:51] have you filed bugs in debian for these? [04:52] the thing I'm boggling at is purely "can't fix without breaking [unspecified] Debian rules" [04:52] at least for the issues that come from debian [04:52] that does happen, but it's rare, and I'd like to hear exactly what rules you think you have to break so that people can review that decision [04:52] ajmitch: not yet because I know that they will give me a million of reasons why their policy is the best one and they will tell me to shut up ;) [04:53] so, your complaint is "Debian Emacs Policy section $blah is buggy"? [04:53] ajmitch: btw there are things that propably are ok in debian but not in ubuntu - like jde package - non installable in ubuntu due to problems with java [04:54] Ubuntu's founded to a large extent on Debian policy; if you think the policy is broken, you need to explain *why* [04:54] so that it can be fixed wherever's appropriate [04:55] (and fixing it will usually involve getting it fixed in Debian, also) [04:57] hrm [04:57] xnest installs into /usr/X11R6/bin/ [04:57] Amaranth: I'm lost. Are you wanting to uninstall because you're worried by other people's reports [04:57] sladen: yeah [04:57] sladen: doesn't matter though, i can't even make gdm work anymore :) [04:57] time to see if usplash cuts [05:00] marcin: jde is uninstallable because bsh failed to build from source, which in turn is because kaffe is uninstallable; see http://people.ubuntu.com/~lamont/buildLogs/b/bsh/1.3.0-3/ [05:01] Kamion: I know that and I said that this is dependency problem [05:01] marcin: in turn, kaffe looks like it simply needs to be rebuilt for the C++ transition [05:01] I'll take care of that now [05:01] Kamion: anyway the thing is that I don't want to broke all debian rules for emacs [05:02] Kamion: I just want things to "just work" [05:02] Kamion: and the problem is that there is really a lot of things in debian packages for emacs [05:02] Kamion: that doesn't work at all - regarding if installed or not [05:03] Kamion: kaffe is on a list to be synced, I don't think the current version was building [05:03] ajmitch: the current version *has* built [05:03] Kamion: because propably maintainters think that emacs users are advanced one and they don't provide almost any config settings for emacs [05:04] marcin: so it sounds like you're attributing all sorts of awful motives to people that in all probability aren't there [05:04] marcin: so, submit a patch for a sane default config [05:04] Kamion: and in this way every emacs user needs to spend a lot of time hacking .emacs file [05:04] Kamion: sorry, I was going by what other MOTUs had said [05:04] you'll never find out if you don't talk to the maintainer who did it that way. :) [05:05] we try to cooperate with Debian where possible, not just work around them :-) [05:05] Kamion: to make things _just work_ while it is common procedure in emacs world ( ;) ) I don't thing it is good for ubuntu image [05:06] I have no objection to things just working - all I'm saying is that you seem to be being unduly pessimistic [05:09] Kamion: well it is pretty hard to work with debian maintainers while propably their packages are maintained in simmilar way to their debian-emacsen mailing list [05:10] Kamion: which is full of 'penis enlargement' spam stuff instead of real discussion [05:11] problems with the lists have very little to do with quality of maintenance === Amaranth [n=travis@ip68-96-129-148.om.om.cox.net] has joined #ubuntu-devel [05:12] well, i'm still here, i guess that's good :) [05:12] what i supposed to see any difference? [05:12] err, was [05:12] anyway you should feel free to sort things out in Ubuntu; I'm just trying to encourage you not to give up on cooperating [05:13] Kamion: now I work on some build scripts that will create really huge amount of packages based on single *.el files [05:14] Kamion: (something simmilar to garnome scripts but my scripts will create *.debs with emacs things automatically) [05:14] Kamion: and these *.el libraries aren't packaged for debian yet [05:15] Kamion: so I'll try to follow debian policy this time [05:15] Kamion: but when I'll finish these packages I'm going to try some more difficult packages [05:16] Kamion: and then we'll see [05:16] Kamion: and now I need to go to bed, I'm too tired to talk logically [05:16] Kamion: and my english sucks more and more in every minute ;) [05:19] please don't automatically create .debs === uniq_ [i=charlie@3ffe:80ee:31fe:0:0:0:0:33] has joined #ubuntu-devel [05:24] is xorg -45 safe? === OddAbe19 [n=OddAbe19@pcp02542642pcs.lncstr01.pa.comcast.net] has joined #ubuntu-devel [05:24] (yeah, I know 44 works but I feel like I have to ask ;) ) === bddebian hugs daniels [05:24] OddAbe19: Are you in Lancaster? [05:25] TerminX: yeah, -45 is marginally safer than -44, and -46 will be safer again [05:25] latest version is actaully installable, that's a plus [05:26] okay, thanks.. wanted to make sure there wasn't any weird breakage upgrading from 44 to 45 as there was with, say, 36 to 44 [05:27] nah. but if you don't have any problems with 44, 45 won't give you anything useful. [05:27] 46 will fix xnest and a couple of other small things. [05:28] yay xnest [05:28] lamont-away: please dep-wait bsh on kaffe (>= 2:1.1.5-4); MOTU will need to sync to that to fix it, I think [05:29] ajmitch: you were right, it does need to be synced; 2:1.1.5-3 has some silly hardcoded dependencies (debian/shlibs.local) that were removed in later versions [05:31] although, um, the server looks a little special on amd64 [05:31] so I guess it's kind of lucky that it's waiting on binary NEW [05:32] or that it's totally FTBFS [05:32] ARGH [05:32] new's empty ... [05:32] seriously, I must have run rm *amd64* at some stage [05:32] headdesk [05:34] whoops === ogra [n=ogra@p5089E38B.dip.t-dialin.net] has joined #ubuntu-devel [05:37] ok, has usplash worked sucessfully for anyone here? [05:37] heh [05:37] you want the new version [05:37] that isnt in the archives yet [05:38] is there some way to get mail when things move into the archives? [05:38] not for binaries, no [05:38] damn [05:40] no i386 buildd has taken it yet; I assume they're still chasing up main backlog following the libgl1-xorg-dev fix [05:42] lamont-away: a lot of stuff seems to have failed due to lack of 'apt-get update' in the buildd chroot or similar ... [05:43] if -46 builds on i386 and amd64, I'm going to upload it [05:43] so it shouldn't be too far away [05:43] (libosmesa being fixed also) [05:43] bddebian, yeah, why? [05:43] hrm, cellrenderertext and mozilla don't agree on how to render this mix of ltr and rtl languages [05:44] Kamion : The apt sources are refreshed before each build.. [05:44] Kamion : Example failure? === lakin [n=lakin@dsl-hill-66-18-228-60-cgy.nucleus.com] has joined #ubuntu-devel [05:49] infinity: nautilus_2.11.91-0ubuntu1_20050810-0236-i386-failed.gz, oem-config_0.5_20050810-0236-i386-failed.gz, others [05:51] i wonder if I can blame xorg's utter failure on amd64 on this [05:53] The nautilus failures look more like dirty chroots to me. Or something else hideously whacky. I'll poke after I attack my lunch. [05:56] Kamion : Of course, those kinds of failures also result in automatic give-backs, so if it is a transient archive issue, it'll sort itself. [05:56] I'll still have a look at all the chroots in a few minutes though. :) [05:57] Kamion: i assume the libgl1-xorg-dev thing was just causing problems for germinate? === luis_ is now known as lu|sleep [05:58] daniels: no, it seemed to be causing a bunch of weirdly fucked-up buildd chroots after failed builds [05:59] or at least a lot of stuff was failing to build with cryptic messages from apt, may not have been screwed chroots [05:59] The weirdly-fucked-up chroots were being caused by the dpkg segv, afaict. [05:59] Which is unrelated. [05:59] Unless your change managed to work around dpkg hating itself. [05:59] ah. I thought that was related to the uninstallability, though [05:59] because the segv was consistently on libglu1-mesa-dev, which is intimately related to libgl-dev providers [06:00] and it started happening at pretty much the same time [06:00] mesag-dev, actually, but yes, those packages are a nasty incestuous group. [06:00] oh, it was libglu1-mesa-dev for me [06:00] Oh, interesting. [06:00] Well, I'll retry my testcase with the changes you've made and see if the dpkg segv is gone for me. [06:00] did you manage to save a tar of /var/lib/dpkg/info and the .deb it was trying to install? [06:01] would be nice not to lose the dpkg segv testcase [06:01] Installing one deb never did it for me. I had to install a massive set of packages in one rnu. [06:01] I was having trouble reproducing it consistently without re-debootstrapping [06:01] s/rnu/run/ [06:01] elmo may or may not have taken a snapshot of the archive last night when we were disussing the issue. I'm hoping he did, if it's not magically fixed. [06:01] well, we can always extract xorg -44 later at leisure [06:02] right. scott's fault. :) [06:02] and appropriate matching mesa [06:02] I tweaked libglu1-mesa-dev's libgl-dev alternatives, which will probably have helped matters too [06:02] Kamion: i keep a source morgue of every xorg upload since hoary (except a couple of the weird-shit random uploads in the week I was at LinuxTag, since they disappeared before I got back and caught up), so we can rebuild at will. [06:02] but it's all uncomfortably debugging-by-voodoo [06:03] I've been going around trying to get stuff updated to the newer package names so that we can demote-to-universe/remove the old ones [06:03] which should also help consistency of hoary->breezy upgrades [06:04] if there's any name changes that are affecting universe, notification would be good [06:04] as I'm not sure if we're needing to rebuild packages with new build-deps yet or not [06:05] Kamion: the hillarious part of all your mesa changes is that libgl1-xorg* will cearse to exist before breezy's out [06:06] replaced by ... libgl1-mesa* [06:06] Kamion : The only way to get upgrade consistency will be if sometihng directly depends on libglu1-mes (etc), since everything that depends on libgl/libglu depends on virtual packages. [06:06] daniels: yeah, I know, but in the meantime I really want to deconfuse germinate [06:06] it was doing shit like pulling in mesag3 because it was the primary alternative from libglu1-mesa or something like that [06:07] and that makes it hard to demote the old packages from main, which in turn means people are more likely to upload new stuff (build-)depending on the old names [06:08] hm [06:09] it should be letting the dependency be satisfied by the alternative anyway [06:09] Yay, my dpkg segv is still there. [06:09] yeah, it wasn't though, I think because it looked at libglu1-mesa before looking at anything that depended directly on libgl1-xorg [06:10] huh [06:10] can't we all just use portage or something? [06:10] germinate's ordering-dependent in some cases; we have a couple of seed workarounds for it, but the right answer is to make primary alternatives consistent in main at least [06:10] Kamion : Your mucking with package relations did nothing to help dpkg stop littering chroots. [06:10] (glad it helped germinate though) [06:10] ah well [06:11] grr [06:11] daniels: please make libgl1-xorg.shlibs mention libgl1-xorg not xlibmesa-gl kthxbye [06:11] Kamion: *cough* === Gman_ is now known as GmanAFK [06:12] Kamion : Has libgl1-mesa already been promoted to main? [06:12] anyway, *my* primary alternative is to go to bed rather than poking at dependencies ... [06:13] Kamion : If so, it's more future proof for us to just change those shlibs to be "libgl1-mesa | libgl1" [06:13] (Since that's what we want in the end) [06:13] infinity: no [06:13] Err, there is no libgl1-mesa. It's mesag3... And it needs love. [06:13] But, yeah. I should go hump mesa's leg for a bit or something. [06:14] yeah, if that's going to take some complicated mesa/xorg interaction then I think I prefer the multi-step approach [06:14] while taking the point about having to go back and do it all over again later, at least we only end up with one layer of old packages lying around in breezy if we don't get it done in time, rather than two [06:15] ;) [06:15] and I really don't feel good about germinate sucking in stuff that's NBS from xorg :) [06:15] surely it should follow provides where the package is a pure virtual with only one provider [06:15] No arguments on that one. [06:16] daniels: yes - such as? [06:16] Kamion: ... xlibmes-agl? [06:16] xlibmesa-gl | 6.8.2-43 | breezy | amd64, hppa, i386, ia64, powerpc, sparc [06:16] not pure virtual [06:16] oh, argh [06:17] can we please cull xlibmesa* from the archive? [06:17] that's what I'm trying to arrange [06:17] If you drop xlibmesa completely, then the "xlibmesa-gl | libgl1" dep becomes a pure virtual. [06:17] don't [06:17] hmm [06:17] it's not showing up in rene [06:17] which means something's still claiming to build it [06:17] pls fix that first [06:17] elmo : Not yet built on amd64, I assume that's the only issue. [06:17] (the new source, that is) [06:17] no, that doesn't matter [06:18] rene looks at the source, which is always the latest [06:18] bah, don't make me wake up [06:18] o 6.8.2-43 [ia64, i386, sparc, amd64, powerpc] : libfs-dev, libfs6, libfs6-dbg, xfs, xlibmesa-dri, xlibmesa-dri-dbg, xlibmesa-gl, xlibmesa-gl-dbg, xlibmesa-gl-dev, xlibosmesa-dev, xlibosmesa4, xlibosmesa4-dbg [06:18] (rene's partial NBS list) - hppa maybe? [06:18] daniels@ephemera:~/canonical/brainfreeze/xorg/monolith% grep xlibmesa-gl old/xorg_6.8.2-44_source.changes [06:18] + xlibmesa-gl* -> libgl1-xorg, libgl1-xorg-dev, libgl1-xorg-dbg [06:18] (that's the changelog entry) [06:19] elmo : Did you snapshot the archive last night so we can reproduce that dpkg segv? (now would be fine too, I can still reproduce it as of right now) [06:19] it's not in xorg -44.dsc [06:19] xfree86 [06:19] ! [06:19] claims to build it [06:19] infinity: no, sorry, I didn't think of a cunning way to do it and forgot/got distracted by terranova [06:19] heh [06:19] elmo: i don't see how this is problematic [06:19] And why do we still have xf86 source packages at all? [06:20] daniels: because if you remove stuff a source package claims to build the buildds think it needs to be built? [06:20] xfree86 may have sneaked back in when I spethialed the sync blacklist a while back [06:20] elmo: right. so that's why we remove the source package that claims to build it. [06:22] daniels: sure - I was more objecting to the principle of forcibly removing stuff in rene's partial NBS list [06:22] elmo: yeah, fair enough [06:22] Objection duely noted. xfree86 source removal would be nice. :0 [06:22] if we could nuke xfree86, that would simplify a lot of things [06:22] oh, argh, speaking of partial NBS [06:22] (probably would have been nice about a month ago...) [06:22] libxft1 | 4.3.0.dfsg.1-6ubuntu25 | amd64, i386, ia64, powerpc [06:22] tseng: please stop mcs building mono-assemblies-arch, I didn't spot that [06:22] there's a lot of shit that's atrophied since hoary that would still be claimed by xfree86 [06:22] I take it we don't need that? [06:22] yeah [06:22] ok, removed, re-blacklisted [06:23] elmo: we don't need anything that xorg doesn't build today [06:23] Kamion: mcs source should be removed, it's all in the mono source package now [06:23] ------------------- Reason ------------------- [06:23] [rene] out damn spot, out [06:23] ;) [06:23] elmo: including libxp6, libxp-dev, libxaw8, libxaw8-dev, xmh, xdm (cough), xfs, etc [06:23] Man, Lady MacBeth was so mean to that dog. [06:23] elmo: heh [06:24] daniels: once xfree86 disappears, rene will do her thing and someone who's awake and with katie privs can kill the rest [06:24] elmo: awesome, cheers [06:25] elmo: do I have to know anything special to remove mcs? just melanie in the obvious way? [06:25] oh, sync blacklist, hmmmmmm === Kamion runs away [06:25] it just a file dude [06:25] it's like the least katie part [06:26] mcs source isn't in sid either, from what I can see [06:26] good point [06:26] kamion: but yeah, melanie just works, you might want to prefix the removal with '[rene] ' to avoid silly fascism checks [06:26] how do we keep track of stuff removed from Debian? [06:26] I have something that parses removals.txt [06:27] I wrote it as punishment for logging the removals in such an incredibly unparseable format [06:27] I haven't run it since UVF tho === Kamion reads geri's head comment and giggles [06:27] as tracking removals when we're not syncing new stuff gets insane fast === burner [n=Danniell@c-67-173-243-73.hsd1.co.comcast.net] has joined #ubuntu-devel === burner [n=Danniell@c-67-173-243-73.hsd1.co.comcast.net] has left #ubuntu-devel [] [06:32] i think lamont should write more katie tools [06:32] that would be awesome [06:32] elmo: btw, did I ever ask you, how do you NEW stuff straight into universe the way you seem to do? [06:32] Kamion: yeah, and I think I dodged the question, it's a disgusting hack [06:32] kamion: basically, the problem is the override-source's-idea-of-componet stuff is an old-school warthogs-era hack,and only exists in jennifer [06:32] lisa doesn't know how to do it [06:33] so my straight to unvierse stuff, adds the overrides semi-by-hand, then moves the upload from new back into unchecked === jsgotangco [n=jgotangc@202.57.71.236] has joined #ubuntu-devel [06:33] [yes, I rock. I'm here all week. thank you.] [06:33] ah, right, I had wondered if it was something like that since I noticed lisa really didn't like the whole idea [06:34] after trying the obvious-looking thing in lisa and then having to unfuck the overrides [06:34] c.f. 'new_universe' alias the katie user has [06:34] for the 'semi-byhand' bit [06:34] oh it's a script in ~/bin/ actually [06:35] niiiice [06:35] :> [06:35] yeah, not proud [06:36] I guess that has trouble with contrib/ and non-free/ stuff from Debian too [06:36] one day... I'll fix lisa [06:36] kamion: or anything that mentions universe or multiverse, yes [06:37] i swear elmo and lamont are one and the same person [06:37] because I was actually joking about lamont writing bits of katie [06:37] now I'm not so sure [06:37] dude, katie's obsolete for us [06:38] elegant solutions are WAB [06:38] wab? === infinity laughs. === Ocelot11185 [i=TerraHac@ACD0E651.ipt.aol.com] has joined #ubuntu-devel === Xyc0 [n=Xyc0@ip70-179-1-7.sd.sd.cox.net] has joined #ubuntu-devel === raphaelpereira [n=raphael@200.146.76.223.adsl.gvt.net.br] has joined #ubuntu-devel [06:40] hi [06:40] hello? [06:40] i found a bug [06:41] and have a patch [06:41] is this the right place? [06:41] raphaelpereira: What is it for? [06:41] bugzilla is probably the right place to document the bug/patch. [06:41] which is the addres??? [06:42] it's simple [06:42] and corrects all problems (i hope) related to hibernation on errors of "scheduling while atomic" [06:42] upon resume [06:43] http://bugzilla.ubuntu.com [06:43] ok [06:43] do you wanna know or i just go there and report? [06:43] I wanna know [06:43] its best to bugzilla though === ogra [n=ogra@p5089E38B.dip.t-dialin.net] has joined #ubuntu-devel === winkle [N=winkle@lgh3814234.vittran.norrnod.se] has joined #ubuntu-devel === bob2 [N=rob@crumbs.ertius.org] has joined #ubuntu-devel [06:44] ok [06:44] Xyc0, simple [06:44] schedule while atomic problems probably is kernel bug [06:44] i'm no kernel hacker [06:44] file the bug, then point him at it [06:44] so, i workaround it [06:44] ok [06:44] sorry [06:44] no need to rehash it here [06:45] That works [06:45] feel free to discuss pending issues with the patch here, though === robitaille [n=daniel@d154-5-117-228.bchsia.telus.net] has joined #ubuntu-devel [06:56] ummmmmmmmmmmm [06:56] this is more special [06:57] the only explanation I can come up with is that I did find ./ -name \*amd64\* | xargs rm -f [06:57] 'cause debian/patches/600_amd64_support.diff was missing, so everything went into /usr/X11R6/lib64 === daniels boggles. [06:57] umm [06:57] how the hell did you manage that [06:57] who needs amd64? [06:57] haha Amaranth [06:58] you can get amd64 laptops for like $1100, maybe i should save up for a play [06:58] with 2 hours of battery life, yay [06:58] heh yeh [07:00] Lap tops can get more then 2 hours?!? [07:00] http://bugzilla.ubuntu.com/show_bug.cgi?id=11824 [07:00] sorry for the long time [07:00] i didn't have an account [07:01] no worries [07:01] i have just noticed [07:01] my time is wrong [07:02] Xyc0, mine is last [07:02] rgr [07:04] raphaelpereira: Ill have to test this, bbl [07:04] bbl? === Xyc0 [n=Xyc0@ip70-179-1-7.sd.sd.cox.net] has left #ubuntu-devel [] [07:05] uau [07:05] does someone knows what is the meaning of bbl? [07:05] ok [07:05] be back later [07:05] be back later [07:05] i figured... [07:05] can we PLEASE try to keep this channel to discussion of Ubuntu development? [07:06] sorry mr daniels === raphaelpereira [n=raphael@200.146.76.223.adsl.gvt.net.br] has left #ubuntu-devel ["Fui] === raphaelpereira [n=raphael@200.146.76.223.adsl.gvt.net.br] has joined #ubuntu-devel === poningru_ [n=poningru@pool-70-110-68-214.tampfl.fios.verizon.net] has joined #ubuntu-devel === poningru_ is now known as poningru_sleep [07:37] Kamion: ping [07:41] Kamion : Have all the old xfree/xorg binaries been removed from the archive by now? [07:41] Kamion : Or are we still waiting on a cron.something to run? === r0bby [n=wakawaka@unaffiliated/r0bby] has joined #ubuntu-devel [07:42] Kamion : I'm cleaning up all the buildd chroots right now, and would like to do a mass give-back to see if anything's slightly happier with the new world order once the old junk is gone. [07:47] infinity: what happened to the chroots? [07:47] dpkg keeps segfaulting [07:47] dpkg segfaults [07:47] ah [07:47] what version of dpkg? === fabbione didn't notice here === JaneW [n=JaneW@196.36.161.235] has joined #ubuntu-devel [07:48] Anything in the last month? [07:48] It's been going on for ages. [07:48] Try "apt-get install libqt3-mt-dev mesag-dev" in a clean buildd chroot. [07:48] (make sure it's clean first) [07:49] create-chroot test [07:49] argh.. EWINDOW [07:51] Package mesag-dev is not available, but is referred to by another package. [07:51] However the following packages replace it: [07:51] x11proto-gl-dev [07:51] E: Package mesag-dev has no installation candidate [07:51] You need universe on. [07:51] infinity: so what else can i test? [07:51] ok [07:52] infinity: nada.. latest mesa didn't build on sparc yet [07:53] any other test? [07:53] That's the only "easily" repoducble testcase I have, though I know there are other killer package combinations too. [07:53] (I just would have to look through build logs to find them) [07:53] ok.... === raphaelpereira [n=Raphael@200.146.76.223.adsl.gvt.net.br] has joined #ubuntu-devel === poningru_ [n=poningru@pool-70-110-66-120.tampfl.fios.verizon.net] has joined #ubuntu-devel [08:07] jdub, red hat is already working with MIT with that $100 laptop. Looks like your vision of gnome on that laptop might become a reality [08:07] jdub, http://laptop.media.mit.edu/ === `anthony [n=anthony@220-253-25-196.VIC.netspace.net.au] has joined #ubuntu-devel [08:10] morning all === vedran [n=vedran@195.130.52.250] has joined #ubuntu-devel [08:17] 'morning [08:23] hi === MagnusR [n=magru@85.194.14.142] has joined #ubuntu-devel [08:26] daniels: you've _stolen_ my precious norwegian characters! [08:26] Mithrandir: no I haven't. [08:26] they work just fine. [08:26] no, they don't [08:27] if you're having problems, follow my howto on -devel [08:27] but bear in mind that -46, which I just uploaded, was the first sensible version to build on amd64 [08:29] if it still persists, I need a more sensible bug report [08:30] is your keyboard layout set right? does it try to set it and bomb out? does setxkbmap -print look right? does setxkbmap -print | xkbcomp - :0 help? does setxkbmap -model pc105 -layout no help? [08:30] but it's lunchtime === Burgundavia [n=corey@S0106000000cc07fc.gv.shawcable.net] has joined #ubuntu-devel === GheRivero [n=ghe@193.146.157.2] has joined #ubuntu-devel [08:37] yes, no, yes, yes, restarting X seems to have fixed it. [08:37] good morning [08:38] Mithrandir: s nw you cn d weird Norwegian stuff again? :) [08:38] ! [08:38] we need a single code point for \o/ [08:40] indeed, we do. [08:41] Do we, provided we have the interrobang [08:42] paolo: Unicode has a code point for the interrobang, so we have the interrobang. === vedran [n=vedran@195.130.52.250] has joined #ubuntu-devel [08:56] whom should I talk with to get my bugzilla ID changed? === Natja [n=Natja@218.158-201-80.adsl.skynet.be] has joined #ubuntu-devel [08:58] Mithrandir: if you mean your email address, you can do it yourself [08:58] Mithrandir : Yeah, just set it yourself, there's a 4 day delay or some such, then it switches over. [08:58] Mithrandir : I did the same thing a couple months back. [08:59] inded I can. [08:59] indeed, even === highvoltage [n=Jono@wblv-146-211-106.telkomadsl.co.za] has joined #ubuntu-devel === pvanhoof [n=pvanhoof@cvs.maia-scientific.com] has joined #ubuntu-devel === pvanhoof [n=pvanhoof@cvs.maia-scientific.com] has joined #ubuntu-devel === jsgotangco [n=jgotangc@202.57.71.236] has joined #ubuntu-devel === \sh_away is now known as \sh [09:18] kamion: I can't preseed locales, is it known not to work? even if I set the default locale to be None, it is set as "en", and the locales that I want aren't generated [09:18] this is with both hoary and latest breezy-netboot === tepsipak1i is now known as tepsipakki [09:19] damn typo === marilize [n=marilize@196.36.161.235] has joined #ubuntu-devel === mvo [n=egon@ip181.135.1511I-CUD12K-01.ish.de] has joined #ubuntu-devel [09:21] <\sh> Kamion: Kick my butt for what I done yesterday..it wasn't my purpose to upload this package without asking... === pitti [n=pitti@195.227.105.180] has joined #ubuntu-devel [09:22] hi pitti [09:22] Good mor*yawn*ing [09:24] 'morning :-) [09:26] <\sh> morning pitti [09:28] morning [09:28] hi pitti [09:29] moring pitti [09:30] s/moring/morning/ [09:30] Hi ajmitch, hi sivang === herzi [n=herzi@d014246.adsl.hansenet.de] has joined #ubuntu-devel === marilize_ [n=marilize@196.36.161.235] has joined #ubuntu-devel === mischa [n=mischa@195.73.64.203] has joined #ubuntu-devel === chmj [n=chmj@196.36.161.235] has joined #ubuntu-devel [09:43] hi chmj === terrex [n=terrex@84-122-73-155.onocable.ono.com] has joined #ubuntu-devel [09:45] who is in charge of UbuntuExpress? [09:46] hi ajmitch [09:50] hi chmj === Xoff is now known as Xof [09:50] ok, ooo2 working on amd64 with gtk looks. === mitsuhiko [n=mitsuhik@80.122.201.98] has joined #ubuntu-devel [09:54] pitti: my firefox has become crashy as well [09:54] Mithrandir: yay! [09:54] mdz: same for mozilla [09:55] mdz: and only on amd64, right? [09:55] mdz, what are the specific plans for the hoary-->breezy updater? [09:55] mdz, would it be possible for it to show the same screenshot tour as UbuntuExpress? [09:55] mdz: there is an mozilla-ooo and ooo-evolution, I guess you are fine with me not providing those on amd64? [09:56] pitti: no, on i386 [09:56] Burgundavia: screenshot tour? [09:56] mdz, apparently UbuntuExpress will be able to show images while installing [09:57] Burgundavia: nicely spotted [09:57] mdz: hm, my i386 installation is not yet updated to the latest packages (libraries, not ffox itself) [09:57] jdub, now we just need Ubuntu on them... [09:58] mdz: I'll upgrade, check if it becomes unstable and will try to single out the lib that caused that [10:00] mdz: and -kde is not even started yet. :-/ === GheRivero [n=ghe@193.146.157.2] has joined #ubuntu-devel [10:00] mdz: I'll finish up the gnome version before starting on ia32-libs-kde, I think [10:01] Burgundavia: I would be much happier if UE could not display screenshots, but could in fact install Ubuntu [10:01] jdub, the doc team (myself and jsgotangco mostly) have been working on a new quickguide, ala the original spec. Rough draft at https://wiki.ubuntu.com/QuickTourDraft [10:01] Mithrandir: do mozilla and evolution require more ia32 libs? [10:01] YAY ORIGINAL SPEC! === jdub checks it out [10:01] jamesh: I get this when running ./autogen: [10:02] mdz: I _think_ they require mozilla and evo as 32 bit programs. [10:02] Anybody uses emacs to develop on ubuntu-breezy? heh :-) [10:03] i do docbook stuff on emacs [10:03] psgml mode [10:03] Mithrandir: you think multiarch is doable/sensible for breezy+1 [10:04] jsgotangco, do you know this error: Undefined color: "black" ? I get this with every emacs I tried (emacs21, emacs-snapshot) - I think it's probably because of Xorg issues. [10:04] jamesh: http://paste.uni.cc/7567 [10:04] Burgundavia: couple of comments [10:04] jdub, shoot [10:04] Burgundavia: could do with a bit more copy where useful [10:04] jdub: yes. [10:05] also, really got to zoom in on user-benefit features [10:05] about-me, for instance, isn't a user-interesting feature [10:05] sivang: those are warnings you should ignore [10:05] jdub, what do you see those as? [10:05] jamesh: ok, what is the source for them? [10:05] so *some* breezy goals are user-interesting [10:05] sivang: they can only be fixed by updating the packages owning each of those .m4 files [10:05] such as built in LTSP [10:05] easier to use file manager [10:05] jdub: it's going to require some concentrated effort, though [10:06] jdub, file manager is somewhat mentioned, but could be tied together more [10:06] sivang: automake checks to make sure that autoconf macro definitions are of the form AC_DEFUN([NAME] , ...) rather than AC_DEFUN(NAME, ...) [10:06] Mithrandir: elite [10:06] jamesh: ah, I see [10:06] built in LTSP sounds good but quite advanced [10:06] Burgundavia: yeah, bundle those micro-feature grains into user-benefit blobs :-) [10:06] sivang: since M4 is a macro expansion language, the AC_DEFUN(NAME, ...) form is dangerous if the macro gets defined multiple times [10:06] jsgotangco: it can be explained pretty simply [10:07] can just point to more information [10:07] Which lisp is going to be builtin? [10:07] those who know what LTSP means will be excited [10:07] sivang: "AC_DEFUN(foo, bar)AC_DEFUN(foo, baz)" would define two macros: foo -> bar and bar -> baz === seb128 [n=seb128@ANancy-151-1-49-149.w83-196.abo.wanadoo.fr] has joined #ubuntu-devel [10:07] those who don't will ignore it [10:07] rights its a quick tour anyways === _mvo_ [n=egon@ip181.135.1511I-CUD12K-01.ish.de] has joined #ubuntu-devel [10:07] sivang: proper quoting would give just a single macro [10:07] jdub, anything else? like the style? anything you would remove? [10:07] Burgundavia, jsgotangco: i'll pop over to -doc :) === _koke [n=koke@169.Red-217-127-113.pooles.rima-tde.net] has joined #ubuntu-devel === karlheg [n=karlheg@host-250-237.resnet.pdx.edu] has joined #ubuntu-devel === Natja_ [n=Natja@116-210.240.81.adsl.skynet.be] has joined #ubuntu-devel [10:18] Idea; please implement (RFI): A package that sets the system up for source level debugging of packaged software. Perhaps if each package had an automatically generated companion package that contains the debugging symbols that have been stripped from the normal binary; GDB supports this. I think it would be better than having separate debugging versions of libraries. A gdb wrapper script should be able to set up the environment so [10:18] that gdb picks up those symbols when it's run, right? (I will look for a place in the UDU Wiki to place this idea) [10:19] morning [10:19] jamesh: ok, noted. pkg is here: http://muse.19inch.net/~sivan/lpint/lpint-bonnobo-0.0.tar.gz [10:19] fabbione: around? === tvo [n=tobi@5354EA9B.cable.casema.nl] has joined #ubuntu-devel [10:22] karlheg : the udu wiki is merged with the normal wiki now AFAIK? === torkel_ [i=torkel@shaka.acc.umu.se] has joined #ubuntu-devel === pitti [n=pitti@195.227.105.180] has joined #ubuntu-devel === ogra [n=ogra@p5089E38B.dip.t-dialin.net] has joined #ubuntu-devel === winkle [N=winkle@lgh3814234.vittran.norrnod.se] has joined #ubuntu-devel === bob2 [N=rob@crumbs.ertius.org] has joined #ubuntu-devel === torkel_ is now known as torkel [10:24] mdz: would you be ok with putting ia32-libs-gtk 4 into hoary? It fixes printing for people using ooo-amd64 [10:25] Mithrandir: hoary-updates, you mean? [10:25] Mithrandir: it depends on what the changes are [10:25] mdz: it wraps spadmin in the pango preload hack similar to what is done to ooo [10:25] it's been in breezy since may, but you wanted it to have a little time there to see that it didn't break anything before putting it into -updates [10:26] jamesh: I've kept the way the patch is done, as evident from http://muse.19inch.net/~sivan/lpint/01_lpint_bonobo_src.patch [10:26] ah, so it's not my fault that my ooo/amd64 cannot print? If I may help testing, tell me where I can download the packages to test ;) === bob2 [n=rob@crumbs.ertius.org] has joined #ubuntu-devel [10:26] siretart: from breezy [10:27] oh. ok === winkle [n=winkle@lgh3814234.vittran.norrnod.se] has joined #ubuntu-devel [10:27] http://archive.ubuntu.com/ubuntu/pool/main/i/ia32-libs-gtk/ia32-libs-gtk_4_amd64.deb === vedran [n=vedran@secondary.energodata.ba] has joined #ubuntu-devel === pitti [n=pitti@195.227.105.180] has joined #ubuntu-devel [10:34] sivang: cool. I'll take a look at it. [10:34] sivang: if you want to manage your changes, a bazaar branch might be easier === ogra [n=ogra@p5089E38B.dip.t-dialin.net] has joined #ubuntu-devel [10:35] jamesh: I will crete one today :) [10:35] jbailey: still around? [10:35] jdub: Yup [10:35] jamesh: it pretty cool using it in that ditributed format, and it's not as hard as it seemed first place (to operate baz, that is) [10:35] 'sup? === carlos [n=carlos@243.Red-83-47-24.pooles.rima-tde.net] has joined #ubuntu-devel [10:37] mdz, Kamion: we are targetting a stable desktop this week to run a colony CD? [10:37] seb128: yes [10:37] k, here is the issue [10:38] Hi carlos [10:38] cairo has changed its soname ... they were moving the API from some time with .so.1 on purpose, and the API is declared stable now so they bumped it to .so.2 [10:38] morning [10:39] seb128 : Oh joy. [10:39] but GTK using it, around ~70 main packages (200 packages) rdepends on libcairo1 [10:39] seb128 : API-compatible?... Cause a mass rebuild with no source changes isn't really tough. [10:39] yep, API compatible with the current version [10:39] seb128: can't we do that after the next colony? [10:39] infinity: is NM going to happen or no? [10:39] pitti: mdz, Kamion: we are targetting a stable desktop this week to run a colony CD? [10:40] pitti: that's why I ask ... [10:40] it's been too long since the last milestone; we need one as soon as possible [10:40] yes, this was planned for the feature freeze [10:40] k [10:40] mdz : Are you okay with reverting the resolvconf attempt and going with bind9?... If so, then yes, I think I'm in a position to say "it'll be ready well before breezy" [10:40] I'll delay the cairo change for after the next colony [10:40] infinity: the relevant deadline is feature freeze, rather than breezy release [10:40] mdz : Dropping bind9 loses functionality (like bind views for VPNs), as well as making things not quite work optimally. [10:40] GTK 2.8 should be out this week too, I'll do both updates after colony [10:41] infinity: the issues with bind9 were resource consumption and security policy [10:41] mdz : Well, it won't be perfect for feature freeze, but I can get it "pretty good" in a day. [10:41] Resource consumption shouldn't be an issue, what's the security worry? [10:41] infinity: we can choke a bit on resource consumption; security needs to be addressed [10:41] infinity: no open ports in desktop [10:41] If we're only binding to localhost, it should be okay. [10:41] well, we weren't binding to localhost [10:41] Well, that's easily fixed, then. [10:42] mdz: it was but [10:42] I'm not convinced of that [10:42] another copy was running standard [10:42] but I hope so [10:42] from the init scfript [10:42] not sure how you can address that without breaking everyones bind9 installs by not starting it by default [10:42] mdz : Well, it's a tradeoff, cause allowing NM to depend on bind9 and rnu its own instance that only bindt o localhost means we need to ship a bind9 package that's DOA. [10:43] mdz : Then again, we shipped postfix DOA with the last release, so I suppose it's something we're used to. [10:43] infinity: I don't see why [10:43] I thought NM already supplied its own config to bind [10:43] mdz : Well, if I depend on bind9, it'll get installed, it'll by default run a cacheing nameserver on *:53 (and NM will also run its own instance on localhost:53) [10:44] infinity: that's currently the case, yes. but that's not what we want [10:44] that's one of the things that needs to be fixed in order to integrate network manager [10:44] mdz : Right, hence why I said we'd need to deliver bind9 DOA. [10:44] mdz : Or ship two bind9 binary packages, one just for NM. (ick) [10:44] infinity: that is not the right solution [10:44] split bind9 into bind9 and bind9-config where bind9-config is the set of current config files? [10:44] mdz : I'm flailing for a solution that isn't one of those two. [10:45] infinity: Mithrandir just mentioned one. another would be to suppress the default bind9 startup if NM is active === jstr [i=jstr@dsl-58-6-0-236.wa.westnet.com.au] has joined #ubuntu-devel [10:45] Mithrandir : That still delivers bind9 DOA, unless the admin knows to install bind9-config. (unless you're suggesting NM provides it as a metapackage, but those packages coulnt'c onflict, cause it's perfectly reasonable to run two bind9 instances) [10:45] or bind9-daemon is just the daemon and bind9 is the config files + a dependency on bind9-daemon [10:46] mdz : There's no reason not to run bind9 /and/ NM (though it's an odd setup, sure) [10:46] mdz: so like an /etc/default/bind9 DONT_START_IF_NETWORKMANAGER_IS_INSTALLED or something? [10:46] the important use cases are: desktop user gets NM + caching nameserver, server user gets "apt-get install bind9" [10:46] Mithrandir : That's more workable, yes. [10:46] infinity: it'd be a silly deafult [10:46] default [10:46] hello people. I would like to help Ubuntu by coding. Is there anyone here that I can talk to get started? [10:46] jstr: yes [10:47] mdz : How about the suggestion to split the damon binary into a seperate package, as above?.. That's very little effort on the packaging front, and would seem to solve the problem. [10:47] infinity: it is one option [10:47] it means moving conffiles, but that's doable, just ugly. [10:47] Mithrandir : No it doesn't, the conffiles would stay in bind9. [10:48] Mithrandir: why? the conffiles can stay in bind9 [10:48] Mithrandir : And just move the binary itself to bind9-bin. [10:48] Mithrandir : That's the path of least reistance so far. [10:48] hm, true. [10:48] infinity: what about interaction between NM and ifupdown? is that all sorted? [10:49] In that ifupdown has absolutely no clue about NM-managed interfaces? No. === paolo [n=paolo@adsl-ull-216-235.42-151.net24.it] has joined #ubuntu-devel [10:49] I think that the reverse is rather the problem [10:49] infinity: itd be nice if you could stop network-manager, and then start it and have it work again [10:49] or just have it not eat my interfaces if i play with them [10:50] infinity: so thom and i were talking about making ifupdown understand n-m [10:50] sweet. Well I am a comp sci student in australia. I would like to do some open source work before I graduate so I have a nice looking resume. I like using C, and have done a unit on C in UNIX, but i have also done units in C++, java, and heeps of boring things like UML and project management.... I plan to give at least a year of commitment to a project. [10:50] jdub : Do you have logs of this? [10:50] jdub: I don't think it should [10:50] Lathiat: Hm. It needs 0.1-2, which doesn't seem to have hit the archive yet [10:50] jdub : I hate reinventing wheels. [10:50] infinity: such as having static/dhcp/managed in interfaces, stuff like that [10:50] jdub: I think NM should stay the hell out of the way if ifupdown is managing an interface === [morph] [n=morph@p83.129.177.217.tisdip.tiscali.de] has joined #ubuntu-devel [10:50] infinity: i wish i did - i'll ping thom about it [10:50] what group should i join? [10:50] mdz: yeah, exactly, that's the idea [10:50] mjg59: usplash? [10:51] jdub: how does that equate to ifupdown understanding n-m? [10:51] mjg59: i think the buildds were a little hosed last check [10:51] jstr: help the MOTU: https://wiki.ubuntu.com/MOTU [10:51] mdz : Well, the design goal of NM was to have it manage things independently of other system tools like ifupdown. OTOH, if they can be made to not hate each other, I'm not opposed to the concept. [10:51] well ifup/down marks if it has brough tan interface up or down [10:51] thank you [10:51] n-m could look at that, and not touch the interface if its been brought up [10:51] infinity: to rephrase, NM is broken if it interferes with existing ifupdown configurations [10:51] infinity: that is a showstopper bug [10:51] mdz : What if I bring the iface up with ifupdown, but then I want to fiddle with it (say, associate with another WAP) with NM? [10:52] infinity: the real problem right now is that if you bring an interface up, it screws with it immediately, not if you click on something or whatever [10:52] infinity: for a given interface, you should either use NM xor ifupdown [10:52] Mithrandir: could you use openoffice.org2_1.9.121-1ubuntu7 as a base for the amd64 packages? [10:52] jsgotangco: is there a channel for MOTU? [10:52] jstr: #ubuntu-motu [10:53] jstr: #ubuntu-motu [10:53] jstr: http://wiki.ubuntu.com/MOTU [10:53] thank you [10:53] mdz: so the basic idea was configuring an interface as a managed interface [10:53] infinity: thom should hve logs at home [10:53] jstr: it's one of the first things on http://wiki.ubuntu.com/MOTU [10:53] jdub: what we need is the "by tomorrow" solution [10:54] which lets us get NM into desktop and start testing it [10:54] otherwise it's not going to make breezy [10:54] jdub : "iface eth0 managed", and then ifupdown doesn't own it, and "grep -v managed iface" are the interfaces NM should stay the hell away from? [10:54] doko: I'm using whatever is in breezy === HiddenWolf [n=hidden@136.196.dynamic.phpg.net] has joined #ubuntu-devel [10:54] Mithrandir: just freshly built. [10:54] the day of reckoning is upon us [10:55] jdub : That would require exactly 0 changes to ifupdown (since it'll just ignore those stanzas anyway), and could be hackable into NM.. [10:55] infinity: yeah, at least that's one of the ideas i started with - the conversation went from there (thom is looking for logs now) [10:55] infinity: i like to dabble in simplicity 8) [10:56] jdub : But how do you cover the "I just plugges a new USB wifi interface in that I didn't have before" use case?... Does NM just toss it into /etc/network/interfaces, so users don't have to set it to managed on their own? === haggai [n=halls@i-83-67-59-194.freedom2surf.net] has joined #ubuntu-devel [10:56] infinity: unconfigured in interfaces means it's up for grabs [10:56] Having to update a config file to declare something as "managed" sounds kinda dodgy, I guess. [10:56] infinity: interfaces which are configured in interfaces(5) should be left alone by NM. others should be managed by NM. [10:56] it's backwards [10:57] yes [10:57] there's no need to add new syntax either [10:57] jdub : Ahh, then there's no need to declare something "managed" at all. [10:57] thom's found the logs [10:57] Gimme. [10:57] :) === jdub half remembers the conversation going this way [10:58] hey jdub [10:59] yo seb128 [10:59] infinity: http://planetarytramp.net/nm-interfaces === jdub pastes it unread ;) [11:01] oh, hey, i made more sense then than i do now === nomed^ [i=daniele@host166-57.pool8252.interbusiness.it] has joined #ubuntu-devel === alberto [n=alberto@85-53-91-3.mad1.adsl.uni2.es] has joined #ubuntu-devel [11:03] pitti: are you buying the "system bus restart means reboot time" stuff? [11:03] hi [11:03] someone in powerpc? ibook? [11:03] I installed ubuntu in a iBook 12" G3 [11:03] jdub: we had this discussion on the utopia list [11:03] pitti: yeah, saw it [11:03] and sound in speakers is very low, when I play something it first sound a bit and after is ultra low [11:03] alberto: This is a development channel for discussion of ubuntu devleopment, please goto #ubuntu for user support [11:04] Lathiat: is a bug [11:04] jdub: the argument is not bad, I didn't finally made up my mind about this yet [11:04] alsaconf is not in alsa-utils [11:04] that is a bug [11:04] I'm sure [11:04] alberto: it isn't a bug, and this isn't the place to report bugs [11:04] alsaconf was intentionally removed [11:04] alberto: please open the mixer and push up the DRC range (or disable DRC) [11:05] jdub: we have reconnection patches for update-notifier and g-v-m, it is certainly possible for the battery applet, too [11:05] jdub: if we can make it work with reconnection, I'd prefer that [11:05] pitti: yeah [11:05] jdub: what do you think? [11:05] mdz: why was removed? [11:06] alberto: it is obsolete [11:06] pitti: i'd like to think we were not absolutely lame, but sometimes i wonder about the rh guys ;) [11:06] ok [11:06] alberto: you should never need to use alsaconf; if it isn't configured automatically out of the box, then that is a bug === janimo [n=jani@iv.ro] has joined #ubuntu-devel [11:07] mdz: I am debian user since years ago, and I used to do all manually [11:07] I thought that could be a bug, sorry [11:08] jdub : Okay, you guys were talking a level of complexity beyond what we were just talking about here. [11:09] jdub : And something that's not realistic for "can I have it done in a day? (or a few, if mdz cuts NM some slack)" === jsgotangco [n=user@202.57.71.236] has joined #ubuntu-devel [11:10] jdub, pitti: we should probably drop on the "restart dbus on update". I've talked with walters on #gnome-hacker yesterday. Upstream/Redhat/Suse are not going this way, and dbus is going to be used by a lot of stuff, that will require some good patching all over the place and probably create some bugs ... [11:10] infinity: well, if you ignore the mandatory settings stuff, it's exactly what we've just described === infinity has to go bootstrap jbailey's biarch glibc/gcc stuff... [11:10] infinity: n-m to own what interfaces doesn't [11:11] infinity: (which, in effect, leaves interfaces as the mandatory settings layer for the time being) [11:11] jdub : Yeah, and the crazy "ifupdown should talk to NM via dbus" stuff. :) [11:11] alberto: does the DRC setting help? [11:11] oh, that was early in the conversation [11:11] much crack [11:11] pitti: for sure [11:11] I am happy XD [11:11] :D [11:11] jdub : Still, there was the valid point raised about "how the heck do I get a network when I boot in reocovery mode?" [11:11] yeah [11:11] hi all .. just a question .. i sow that debian is workin on a script: xserver-xorg.init .. "http://necrotic.deadbeast.net/svn/xorg-x11/trunk/debian/changelog" is ubuntu planing something similar? [11:11] why is disabled drc channel by default? [11:12] jdub : If an interface can't be configured in /etc/n/i for NM to manage it, then you've got a catch-22 there. === jinty [n=jinty@205.134.224.215] has joined #ubuntu-devel [11:12] jdub : No network until the GUI comes up for the normal use case means recovery is much more difficult for the clueless. [11:12] nomed^: no; we already solved this problem in a simpler way, but Petter wanted to do it differently [11:12] infinity: in that case, our first run having a slight negative impact on recovery mode is probably something we can handle [11:12] alberto: that's fixed in breezy btw === paolo [n=paolo@adsl-ull-216-235.42-151.net24.it] has joined #ubuntu-devel [11:13] infinity: won't the NM daemon do something sensible before the GUI is up? [11:13] mdz, could you give me a link or more infos about this .. ? [11:14] nomed^: for the live CD, it is done by casper, for thin clients, it is done by ltsp [11:14] jdub : Oh, yes, in runlevel 2 it will, but DBUS doesn't even run in runlevel 1. === mjg59 [n=mjg59@cavan.codon.org.uk] has joined #ubuntu-devel [11:14] mdz, ok thanks [11:14] infinity: so i don't think we need to worry about recovery mode [11:14] jdub : So, we should get a network when DBUS kicks in in rc2. === _mvo_ [n=Michael@suprimo-154.ping.de] has joined #ubuntu-devel [11:14] Lathiat: Hngk. === _mvo_ curses at his network [11:15] Lathiat: Yes, usplash. Looks like it's the buildds [11:15] jdub : I dunno. It makes it much harder to do user-to-user support, if you have to tell someone how to manually configure their network interface before they can "ifup eth0 ; wget some_random_file ; perform fix" [11:15] mjg59: indeed === slomo [n=slomo@p5487FADC.dip.t-dialin.net] has joined #ubuntu-devel [11:15] jdub : I'm not sure if losing that is really worth the shininess of NM being shoved in prematurely. [11:16] infinity: "dhclient eth0" fills that use case nicely [11:16] Oh, fair enough. [11:16] infinity: it's not that hard, in the simple case, you should just be able to dhclient [11:16] perhaps in recovery dhcp could be attempted on all interfaces or something [11:16] infinity: and the non-simple case involves configuring interfaces ;) [11:16] Alright, objection withdrawn then. We can go with the simplest "if it ain't in interface, NM owns it" path, then. [11:17] Lathiat : "recovery mode" isn't really a "mode" at all, it's just runlevel 1. [11:17] paolo: undefined colour: black means that X is missing its RGB database, which is actually sort of somewhat true for new installs ... [11:17] Lathiat : We don't do anything special in that mode, we just stop booting half way. [11:17] infinity: you could add a grub flag tho [11:17] but true [11:17] Well, yes. [11:17] The following extra packages will be installed: [11:17] libslang2-dev [11:17] The following packages will be REMOVED: [11:17] aalib1-dev libxine-dev slang1-dev [11:17] The following NEW packages will be installed: [11:17] libslang2-dev [11:17] We can parse /proc/cmdline and do something spiffy, but I'm not sure how worth it that is. [11:18] The following packages will be upgraded: [11:18] libcaca-dev [11:18] daniels, indeed. I replaced the 4 lines long rgb.txt that comes with the default install with the 700+ lines long xorg one. Now Emacs start correctly. Should I file a bug? [11:18] [11:18] seb128: know about that ^ ? [11:18] "run ifup eth0" and "run dhclient eth0" are pretty much equivalent from a "I have no idea what either of those commands mean because I like mice" perspective. [11:19] infinity: figlet in base -> "WELCOME TO RECOVERY MODE, THIS IS YOUR SHELL" :) [11:19] having to use recovery mode is bad to start with [11:19] Hm. No exciting DCC announcements? [11:19] thanks pitti and mdz [11:19] not cowsay? [11:20] mjg59: dude, the booth was EMPTY today [11:20] paolo: no, I already have it in hand [11:20] mjg59: HA HA HA [11:20] pitti: my firefox crash is at 0xb7e9304d in nsCOMPtr_base::begin_assignment () [11:20] jdub : Agred, single user is not something we should ever have to dump anyone into. [11:20] daniels, ok great. It is also missing the binary "showrgb". [11:20] paolo: yes [11:20] jdub: No Userlinux either? [11:21] "Jim Zemlin, executive director of the Free Standards Group, the organization behind the LSB, will be speaking at the DCCA's launch Tuesday at LinuxWorld." [11:21] jdub: what are you trying to install? [11:21] mdz : Alright, if we're agreed on the single user use case being irelevant, and that "not in interfaces means NM owns it", then I think we're good to go. [11:21] seb128: libcaca-dev === Simira [n=rpGirl@150.84-48-74.nextgentel.com] has joined #ubuntu-devel [11:21] mdz : Assuming the bind9/bind9-bin split is acceptable for the other glaring issue. [11:21] infinity: yes [11:21] mjg59: saw bruce around [11:21] jdub: I'm not maintainer for that :p [11:22] seb128: cheeky :) [11:22] jdub: xine is the one broken here [11:22] yeah [11:22] should depend on slang2 [11:22] mdz : Given that the current packages are in rather poor shape and poorly tested, I assume there's no argument with updating to a more recent CVS snapshot? It's a bit less broken in general upstream, it seems. [11:22] jdub: I'll fix that [11:23] seb128: want me to turn it around for you? [11:23] feel free :) === jinty [n=jinty@205.134.224.215] has joined #ubuntu-devel [11:23] dum-de-dum :-) [11:24] morning, jdub [11:24] What's the deal with DCC anyhow? Looks like they're infighting even before launch, and everyone has a different idea about what it should/will be. === Amaranth [n=travis@ip68-96-129-148.om.om.cox.net] has joined #ubuntu-devel [11:24] HiddenWolf: falling apart before they can even announce. [11:24] whats that the debian commercial thing? === terrex [n=terrex@84-122-73-155.onocable.ono.com] has joined #ubuntu-devel [11:25] jdub: how so? [11:25] HiddenWolf: sun wah and others bailing out [11:26] jdub: omg. I'm not sure what I should think of that. [11:27] how about, "oh, already?" [11:27] jdub: Sun Wah bailing out? [11:27] sun wah? === mvo [n=egon@ip181.135.1511I-CUD12K-01.ish.de] has joined #ubuntu-devel [11:27] I knew VA had [11:27] not funny [11:27] mjg59: was written up in eweek [11:27] jdub: I'm doubting between "sucks to be debian" or just plain "sucks" === shackan [n=shackan@host150-106.pool8257.interbusiness.it] has joined #ubuntu-devel [11:27] HiddenWolf: note that DCCA is *not* debian [11:28] xutils and xbase-clients are showing as obsolete in synaptic but lots of things use them :P [11:28] jdub: Eweek wrote about VA - Sun Wah still seemed positive [11:28] jdub: yeah, I know. But they'll need some focus in order to get a grip, and this could have been just the thing. [11:28] Amaranth: that'd be 'cause they don't exist in the archive in any version at the moment. wait 'till the next pulse kicks. [11:28] $ dpkg -L libxine1c2 | grep so$ | while read i; do ldd $i; done | grep slang [11:28] libslang.so.1 => /lib/libslang.so.1 (0xb7ef9000) [11:28] libslang.so.2 => /lib/libslang.so.2 (0xb7cd1000) [11:28] oh! [11:28] libslang.so.1 => /lib/libslang.so.1 (0xb7eb2000) [11:28] ouch [11:28] ^ ha ha [11:29] HiddenWolf: If it had actually involved Debian in any way, it's possible that it would have led to good things [11:29] jdub: omg?! [11:29] xine links against both at once? [11:29] er, even worse [11:30] /usr/lib/xine/plugins/1.0.1/xineplug_vo_out_aa.so links against both at once [11:30] mjg59: well, yeah, perhaps. if you give debian a say tho, you have to reach a concencus among thousands of devesl rather than a few CEO/CTO's - it'd be braindead rather than falling apart === terrex [n=terrex@84-122-73-155.onocable.ono.com] has joined #ubuntu-devel [11:31] HiddenWolf: Debian developers are never going to do anything to benefit a set of companies that aren't working with Debian [11:31] it'l make good flamewords on ddl tho [11:31] daniels, you do probably know it too, but I wanted to make sure: the xbase-clients package do install more or less nothing. [11:31] mjg59: and there you have a reason for going outside of debian. :) [11:32] HiddenWolf: Right. Which probably means you shouldn't use their trademark... [11:32] paolo: that's a feature, not a bug [11:32] Amaranth, cool. Do you know where to find everything missing there? (e.g. xfontsel) [11:33] they've gone to a better place [11:33] hrm, daniels is rubbing off on me [11:33] mjg59: depends on how you do things. Perhaps the plan was to build a corporate debian deriviate. === _vedran [n=vedran@secondary.energodata.ba] has joined #ubuntu-devel [11:33] Amaranth: do we want to know? ;) [11:33] HiddenWolf: Which would still be a violation of the trademark [11:33] HiddenWolf: which shouldn't use the trademark... [11:34] mjg59, jdub, I never said they where smart, did I? [11:34] hey, i thought ubuntu was the corporate debian derivitive ;) [11:34] corporate == workstation [11:34] Amaranth: ubuntu has debian and others wetting their pants, really. [11:34] Not so much Debian [11:34] paolo: this is fixed in -46 [11:35] paolo: which is probably waiting in NEW [11:35] More the people whose revenue streams depend on people buying their distribution [11:35] daniels: oh, xbase-clients has stuff in it again in -46? [11:35] Amaranth: ubuntu is not a desktop/workstation OS [11:35] HiddenWolf: Ubuntu relies on Debian. [11:35] Amaranth: 'stuff in it' -> 'dependencies' [11:35] mjg59: no, debian is just grinding its teeth. [11:35] ah [11:35] HiddenWolf: if Debian has to wet its pants, then Ubuntu has to too. [11:35] daniels, great - thank you for the informations. [11:36] HiddenWolf: Uh. No. [11:36] mdz: Ive signed up for doing some work with MOTU. Im just wondering if there is also some coding work that i can get involved with? [11:37] highvoltage: I doubt it. If ubuntu gets things done, and debian does not, devels might choose to upload here rather than at debian. The projects rely on eachother, but if debian messes up, ubuntu might just be the bigger brother eventually. [11:37] Amaranth: it will be excellent as a server too ;-) === hawk_78 [n=hawk@host55-222.pool8175.interbusiness.it] has joined #ubuntu-devel [11:38] HiddenWolf: and we try & get things back into debian that we put into ubuntu [11:38] HiddenWolf: the way we do things in universe would never scale to the level of developers debian has [11:39] HiddenWolf: long term, perhaps, but short/medium term, not really [11:39] Amaranth: I know, but organisations and methods change. as do goals. my piont was: Ubuntu is a wake-up call for debian, and they have to do it right, or they'll lose users first, then developers. [11:39] jdub: notice the eventually === SloMoSnail [n=slomo@p5487FADC.dip.t-dialin.net] has joined #ubuntu-devel [11:40] i don't think that ubuntu will ever function as a centre of more generalised development in such a way that it surpasses debian [11:40] Amaranth: judging from that is going on now in debian, and this DCC thingy, Debian is not awake yet. [11:40] daniels, is there a place where I can find this kind of informations by myself instead of begging here? [11:40] we do two sorts of things: big, big things (gnome, xorg, nm, whatever) that get back, and small cool usability tweaks [11:40] paolo: the xorg changelogs on breezy-changes [11:41] HiddenWolf: i don't think DCC is any serious challenge. it's not like any of those vendors (progeny, va, sun wah, linspire, xandros), have ever made any constructive effort to engage with debian anyway. === zeedo [n=zeedo@www.reboot-robot.net] has joined #ubuntu-devel [11:42] daniels: let us hope we don't have to, but let's face it, ubuntu gets stuff done, debian, dcc or what they'll think of next, probably won't. That is hurting debian and it's reputation. [11:42] wtf is sun wah [11:42] ive never heard of it === infinity runs off to bootstrap jbailey's biarch glibc/gcc changes. [11:42] HiddenWolf: i think Debian does a lot more than you give it credit for. [11:42] Lathiat: chinese commercialised debian [11:42] jdub: ah [11:42] HiddenWolf: Standing on the shoulders of giants. [11:43] Amaranth: don't be rude [11:43] ? [11:43] HiddenWolf: debian gets our packages done... please don't take that for granted [11:43] HiddenWolf: try scaling motu to 10,000 packages. say what you like about debian, but it has a massive field of maintainer who generally care deeply about their packages, which we just cannot replicate unless we scale to the same degree. [11:43] jdub: How was that rude? [11:44] Amaranth: it was not originally said as a positive statement :) [11:44] i was wondering that [11:44] daniels: I know they're great, and I hope they stay great. I just don't see them moving forward. but let's drop it. only time can tell any way. [11:44] jdub: It just means what you said. [11:44] Amaranth: might want to check the history of it :) [11:44] jdub: Ubuntu gets the cool things done because of what debian gives us. === marilize [n=marilize@196.36.161.235] has joined #ubuntu-devel [11:45] Amaranth: The "Standing on the shoulders of giants" thing referred to a short person [11:46] <\sh> yes...a new ejabberd version [11:46] jstr: it's too late to develop new features for the 5.10 release, but you can start working on something for 6.04 [11:47] thats fine. is there a group that needs members? [11:48] doko: [Java framework] sunjavaplugin.so could not load Java runtime library: [11:48] file:///usr/lib/libgcj.so.6. [11:48] mjg59: a giant can stand on another giant [11:49] heh [11:49] i think i took it the way amaranth did [11:50] jdub: mm friday, avahi 0.1, :) [11:50] altho ross thinks its not a 0.1 because it has documentation and man pages [11:51] Lathiat: yay === _vedran is now known as vedran === Danten [n=danten@h19n1c1o1049.bredband.skanova.com] has joined #Ubuntu-devel [11:55] /usr/bin/ld: /tmp/ccVIzjHe.o: relocation R_X86_64_32 against `a local symbol' can not be used when making a shared object; recompile with -fPIC [11:55] /tmp/ccVIzjHe.o: could not read symbols: Bad value [11:55] meh??? [11:55] nice [11:57] i like `a local symbol' [11:57] anyway, -fPIC helped [11:57] heh [11:58] Kamion: better to just drop mcs completely. [11:58] Kamion: i will mail elmo. [12:00] Mithrandir: hmm, can you try lib32gcj6 ? [12:00] doko: it's installed [12:04] doko: apart from that, ooo2-amd64 is there [12:04] (missing -kde, still) [12:08] yep, sunjavaplugin.so wants that ... don't know yet how to fix that. maybe edit sunjavaplugin.so and point it to the correct location? [12:09] seb128: http://people.ubuntu.com/~jdub/xine-lib.diff [12:09] I would seriously want not to run sed on random .so-s :-P [12:09] s,/lib/libgcj.so.6,/lib32/libj.so.6, [12:10] well, the applications should work, as long as you don't touch the java things ... === enrico [n=enrico@debian/developer/enrico] has joined #ubuntu-devel === infinito [n=infinito@75.Red-80-59-227.pooles.rima-tde.net] has joined #ubuntu-devel [12:13] Mithrandir: and if you go this way, libofficebean.so is the other one to edit ... === _d4vid [i=[U2FsdGV@tor/session/x-9250f64c99040a68] has joined #ubuntu-devel [12:13] tseng: no need, I already removed it [12:13] jdub: pong [12:13] infinity: sorry, I crashed, I'll have a look now === seb128_ [n=seb128@ANancy-151-1-29-175.w83-194.abo.wanadoo.fr] has joined #ubuntu-devel [12:14] gdb Kamion core [12:14] (gdb) bt [12:14] Kamion: hey, um, really sorry to lump you with this, [12:14] Kamion: but we have a late goal we need to integrate for breezy [12:15] doko: I've nuked the openoffice2-officebean [12:15] Kamion: think you may be able to manage this one quickly [12:15] Kamion: reference document here -> http://forums.gentoo.org/viewtopic-t-365647.html [12:15] doko: problem is ooo2-base is mostly unusable without the java stuff. [12:15] Kamion: need it to work out of the box on ppc [12:16] jdub: haha thats interesting [12:16] jdub: not a hope. I cannot take extra goals right now, I'm sorry [12:16] Mithrandir: yes, that's known. although it's ugly, I chan check, if the hex-editing would help. The OOo2 build expects a JAVA_HOME, I cannot change that easily [12:17] I have two days to deal with everything I have to do for feature freeze, and three days to organise a wedding === jdub chuckles [12:17] Kamion: *love* :-) [12:17] jdub: that's utter crack. === jdub dries his eyes ;-) [12:17] and also, that's ... what Mithrandir said. :-) [12:17] I hadn't even looked at the URL before refusing :) === martink [n=martin@p54B391E1.dip0.t-ipconnect.de] has joined #ubuntu-devel === AndyFitz [n=andy@220-245-97-227-qld-pppoe.tpgi.com.au] has joined #ubuntu-devel [12:18] wow, that's totally insane [12:18] it's _bad_ and utter crack. :-) [12:18] :-) [12:18] jdub: OH MY GOD, DUDE [12:18] thought you'd enjoy that one :) [12:18] I'm really impressed that shit works at all [12:18] jdub: you need to lower your dose of bad drugs. [12:19] not impressed enough to actually use it, but ... ;) [12:19] OUT OF THE BOX! :) [12:19] can we kill xlibs-dev before feature freeze? [12:20] doko: I would rather ship an ooo2 without -base on amd64, really. [12:21] jdub: xine-lib 1.0.1 has issues with GCC-4.0 ... there are a new 1.0.2 and a 1.1 upstream [12:21] doko: boh! [12:21] infinity: looks like elmo removed all that stuff though [12:21] Mithrandir: it's not just -base, you find the java stuff in other places as well. i.e. most wizards, docbook-save in oowriter [12:22] seb128_: oops, wrong url anyway: http://people.ubuntu.com/~jdub/random/xine-lib.diff [12:23] doko: ew [12:24] doko: i thought it all worked with free java stuff now? (or is it a stuff in main issue?) [12:24] Kamion: ok. [12:24] Lathiat: it does [12:25] jdub: thanks :) [12:25] doko: can you provide me with something that ooo will find when looking for JREs? === hmrocha [n=hrocha@87-196-75-179.net.novis.pt] has joined #ubuntu-devel [12:25] seb128_: you approve? [12:25] seb128_: if that's okay, i'll try upping to 1.0.2 [12:26] Mithrandir: ? [12:27] doko: I refuse to sed random shared objects to mangle paths, can't it have a search path or something? === Gandalfar [n=gandalf@BSN-77-186-194.dsl.siol.net] has joined #ubuntu-devel [12:29] jdub: do you need to Build-Depends on libslang2-dev ? [12:29] jdub: no you don't, libaa1-dev Depends on it [12:30] daniels: where should the /etc/X11/X symlink point ? Mine is currently a broken link to /usr/bin/X11/Xorg [12:30] can anyone point me to more documentation about 'casper'? [12:31] seb128: indeed - much of the point of the aalib transition was to remove explicit slang dependencies [12:31] seb128: ok, ta [12:31] unless you're actually using slang directly of course === Mithrandir prods doko [12:31] nah, that was my add [12:31] is it ok to build-conflict with slang1-dev tho? [12:32] otherwise it can (and did) build against both [12:32] pretty unnecessary if you build-dep on libaa1-dev [12:32] given that there's never been a version of libaa1-dev (as opposed to aalib1-dev) that depends on slang1 [12:32] but I guess it's ok [12:32] Mithrandir: not before feature freeze ... [12:32] crispin: /usr/bin/X11/Xorg should point to /usr/X11R6/bin/Xorg [12:32] Kamion: well, that's changed in this patch too, so i may as well not === retrix [n=sam@ppp231-3.lns3.adl2.internode.on.net] has joined #ubuntu-devel === WaterSevenUb [n=WaterSev@bl5-49-46.dsl.telepac.pt] has joined #ubuntu-devel [12:33] doko: ok, any other good ideas? [12:33] daniels: yay dbus patch works [12:33] daniels: oh! Xorg is a symlink to ../X11R6/bin/Xorg === xeax [n=x@adsl-215-41-46.mia.bellsouth.net] has joined #ubuntu-devel [12:34] daniels: can't do that, it's going to have to be an absolute symlink, considering that /usr/bin/X11 -> . [12:34] ... or not, it seems to work anyway, hmm [12:34] Mithrandir: please can you check out, if the java stuff actually works with the hack, I don't want to waste time adding a search path, and then it doesn't work anyway ... [12:34] daniels: it points to /usr/bin/X11/Xorg too here [12:34] yes [12:35] /usr/bin/X11 -> /usr/bin, /usr/bin/Xorg -> /usr/X11R6/bin/Xorg [12:35] and there is no /usr/bin/X11/Xorg [12:35] evidently the kernel is cleverer than I thought [12:35] Kamion: I need approval for a update-manager upload (bugfix only) [12:35] mvo: what's in it? [12:36] Kamion: more carefull mirror preserve and updates so that breezy source lines are created by default [12:36] seb128: there's no /usr/bin/X11/anything [12:36] hardly any code changes (~5 lines) === paolo_ [n=paolo@adsl-ull-216-235.42-151.net24.it] has joined #ubuntu-devel [12:37] daniels: thanks, that fixed it, although I notice now non-root can run X, is that intentional ? [12:37] Kamion: I can do you a debdiff if you want [12:37] doko: segfault; the strings aren't the same length. [12:38] s,/lib/libgcj.so.6,/lib32/libj.so.6, [12:38] they are. === marilize [n=marilize@196.36.161.235] has joined #ubuntu-devel [12:38] mvo: that's fine [12:39] crispin: 'can' or 'can't'? [12:40] daniels: after a purge/reinstall /etc/X11/X point to /usr/bin/X11/Xorg here ... [12:41] daniels: 'can' [12:41] seb128: yes. that's intentional. [12:41] Kamion: thanks [12:41] Guys, why isn't there a pointer to the national ubuntu channels in the topic of #ubuntu? [12:42] because there are buttloads of them ;) [12:42] daniels: it's intentional to point to something not here? [12:42] HiddenWolf: you could make/find an appropriate wiki page to link? === Gandalfar [n=gandalf@BSN-77-186-194.dsl.siol.net] has left #ubuntu-devel ["."] [12:43] doko: so, updating to 1.0.2 is beyond my meagre skills :) [12:43] seb128: if x-common isn't installed already, install it [12:43] seb128: if it is, then something went badly wrong [12:43] daniels: it's installed [12:43] tseng, I might [12:43] ii x-common 1.05 common files for X implementations [12:43] seb128: 'then something went badly wrong' [12:43] grumpf, k [12:43] seb128: /usr/bin/X11 should point to /usr/bin [12:44] daniels: there's a batch of xorg uninstallables on http://people.ubuntu.com/~cjwatson/testing/breezy_probs.html still; have you looked into them yet, or shall I? [12:44] daniels: [12:44] $ ll /usr/bin | grep X11 [12:44] lrwxrwxrwx 1 root root 14 2005-08-06 13:56 X -> ../X11R6/bin/X [12:44] drwxr-xr-x 2 root root 4096 2005-07-27 20:23 X11 [12:44] lrwxrwxrwx 1 root root 17 2005-08-06 13:56 Xorg -> ../X11R6/bin/Xorg === pitti [n=pitti@195.227.105.180] has joined #ubuntu-devel === john6000 [n=john6000@dsl-80-43-198-60.access.as9105.com] has joined #ubuntu-devel [12:45] Kamion: let me get some sugar to prop myself up and sort it out, 'k [12:45] (the bed in this hotel is *extremely* comfortable) [12:45] can you make a update which changes grub? (if its not too hard) [12:45] :-) [12:45] jdub: yep, maybe that can be done after feature freeze as a bug fix ... [12:45] ok [12:45] ty [12:45] hi === john6000 [n=john6000@dsl-80-43-198-60.access.as9105.com] has left #ubuntu-devel [] [12:46] oh [12:46] breezy has some problems with keyboard mappings === chz [n=holler@cpe-66-69-101-208.satx.res.rr.com] has joined #ubuntu-devel [12:46] after the upgrade, i've some characters [12:46] i'm using a pt layout [12:46] Kamion: i suspect that xb-c and xutils are uninstallable because they're still in NEW, maybe? x-w-s-c depends on them [12:46] and i can type braces or brackets for example [12:46] Kamion: failing that, I suppose more complete output would be nice [12:47] jdub, try not to snore to loud into the channel please :) [12:47] hello [12:47] doko: hm, sed-ing seemed to work [12:48] never knew bout this channel, got referred by hmrocha from #ubuntu...having issues with breezy upgrade and understand that X is still very buggy....true..? [12:48] daniels: sorry, nothing in NEW [12:48] chz: this isn't a help channel, I'm afraid [12:49] Kamion: o...ok [12:49] does anyone know if there's some effort from the Ubuntu folks to fix all the bugs in VEra and maybe get them release a new version? [12:49] daniels: xbase-clients Depends: xprop, xutils Depends: sessreg [12:50] daniels: xprop's in universe, I'll fix that now === ..[topic/#ubuntu-devel:daniels] : Ubuntu Development (not support, even with breezy) | #ubuntu for support and general discussion | #ubuntu-motu for getting involved in development | http://www.ubuntulinux.org/wiki/DeveloperResources | If you have unexpectedly lost editbugs privileges, talk to mdz/ogra/kiko | i386,powerpc live CD builds restored: http://cdimage.ubuntu.com/daily-live/current/ [12:50] sessreg is nowhere [12:50] Mithrandir: ok, let's put this on a list, however that won't make it for feature freeze [12:50] Kamion: thanks. i'm working on sessreg now, just got to sort out a couple of fun political issues. [12:50] doko: ok, I'll just upload ooo-amd64 for now [12:50] Kamion: curious..what is this channel for ? [12:50] daniels: is it today/tomorrow kind of material [12:50] chz: development [12:51] s/material/material?/ [12:51] daniels: if debconf priority is set to low, I'm ask for the xserver settings three times on an upgrade [12:51] Kamion: i set it as a 'if you guys can't come up with anything compelling within the next couple of hours, I'm going to do it anyway' [12:51] chz: i.e. coordination among developers, discussion of bug-fixes and code for new features, etc. [12:51] daniels: cool [12:51] doko: lies. lies and deceit. [12:52] Kamion: any compelling objections, of course [12:52] doko: s/low/low or medium/ [12:52] and which settings? [12:52] Kamion: towards Ubuntu distro...or applications? [12:52] i want to know which versions you're upgrading from and to [12:52] and which templates are getting asked [12:52] chz: mostly distro, but whatever's necessary [12:52] is it easy to fix the keyboard issues? [12:52] daniels: for me it happens on every single upgrade; e.g. both -44 to -45 and -45 to -46 [12:53] maybe there is some misconfiguration in some keyboard package [12:53] I get the PCI bus id question at least, afraid I can't remember the exact list [12:53] Kamion: low [12:53] Kamion: interesting...thanks. i noticed the topic and am interested in helping with development. i will goto #ubuntu-motu as i see you are all busy...thank you anyway... =) [12:54] Kamion: if you can trigger it again and find the exact questions, that would be good [12:54] Kamion: because I cannot reproduce it here [12:54] hmrocha: as kamion says, this is not a support channel [12:55] doko: ok, I'll look at -kde then upload ooo2 in the current state. It's mostly usable [12:55] daniels: I see the questions about pci id, & asking if I want to use kernel framebuffer [12:55] daniels, i'm trying to work on a development issue here [12:55] ajmitch: thanks [12:55] daniels, since hoary was working [12:56] hmrocha: it's not a development issue, it's a user support issue that happens to be with the development *tree*. the two ideas are fundamentally different. [12:56] daniels: /Select the desired X server driver/Enter an identifier for your video card/Please enter the video card's bus identifier/RAM size of graphics card/Use Frambuffer?/ [12:56] daniels: hmm, just a thought though, you might try in LANG=de_DE.UTF-8 [12:56] doko: thankyou [12:57] i suspect they need some auto_answer akshun [12:57] hmrocha: daniels posted recently to ubuntu-devel@lists explaining certain things you needed to install [12:57] did I mention that I hate the steaming pile of crap that we inherited in terms of xserver-xorg debconfiscation? and the fact that we made it even worse ... [12:57] Kamion: in german? [12:58] that was what I happened to be in when it just happened to me, and I'm guessing it's doko's locale, that's all [12:58] daniels: was one of the metapackages supposed to depend on xkeyboard-config? [12:58] Kamion: well, I've seen it once in a while in nb_NO.UTF8, fwiw [12:59] daniels, I got asked 3 times as well using default locale === niran [n=niran@cpe-67-10-213-51.houston.res.rr.com] has joined #ubuntu-devel [12:59] Kamion: x-w-s-c depends on it, xserver-xorg recommends it, and it should also be in the desktop seed === pitti has to reboot === Mez [n=Mez@cpc2-lich4-3-0-cust115.brhm.cable.ntl.com] has joined #ubuntu-devel [01:01] daniels: yeah, was wondering if x-w-s-c was low-level enough; that functionality used to be in xlibs-data or something, didn't it? [01:01] Kamion: xlibs, yeah [01:01] could xlibs depend on it for the upgrade? [01:01] somehow xinit is missing here in my test installs.... is that intentional ? [01:02] Kamion: the reason xlibs didn't eepend on it is because xk-c was pre-depending on xlibs for a while [01:02] it seems not to get pulled in by x-w-s-c [01:02] ogra: no, and it will be fixed when a cd build contains xbase-clients -46 [01:02] or any of its deps [01:02] ogra: should be fixed in about fifteen minutes [01:02] ah, great [01:02] on the archive, anyway [01:03] I'll wait for a CD rebuild until we have sessreg, then I can do the whole lot at once [01:03] yeah === pitti [n=pitti@195.227.105.180] has joined #ubuntu-devel === _koke [n=koke@169.Red-217-127-113.pooles.rima-tde.net] has joined #ubuntu-devel [01:04] Kamion, daniels: I've only LANGUAGE=de_DE:de:en_GB:en , no LANG, no LC_* [01:04] $ sudo -u katie ./alicia.new slang1a-utf8 optional [01:04] I: Will change priority from required to optional [01:04] hooray [01:04] pitti, main inclusion reports are only done for source packages, right ? [01:05] ogra: yes; if not all debs are requested for main, this should be mentioned in the report [01:05] sigh.... === ogra strikes half of the edubuntu main inclusion reports .... all kdeedu.... === carstenh [n=carstenh@mkfw.fh-trier.de] has joined #ubuntu-devel === pitti completes the AudioInfrastructure spec [01:09] jdub: cool, if I'm reading this right, that xine-lib upload should be enough to chuck slang1 out of main entirely [01:09] right, so xbase-clients and xutils are now entirely installable here [01:09] daniels: the xserver-xorg/amd64 one seems to be depending on -driver-atimisc when it isn't built [01:10] oh, -ati provides it [01:10] I'll reboot into an amd64 system and test === bskahan [n=bskahan@dsl254-074-249.nyc1.dsl.speakeasy.net] has joined #ubuntu-devel [01:12] you're right that it probably shouldn't dep -atimisc though, just -ati [01:13] seb128: gnome-menus has a python SyntaxWarning [01:13] doko: I've noticed thankis [01:15] Kamion: YAY! === chz [n=holler@cpe-66-69-101-208.satx.res.rr.com] has left #ubuntu-devel [] [01:17] anyone seen Keybuk? [01:17] Mithrandir: 12893 and 13196 are still present with the new ia32-libs [01:18] Kamion: Uploading via ftp sessreg_0.99.0-1_source.changes: done. [01:18] Successfully uploaded packages. [01:18] Not running dinstall. [01:18] pitti: yay libnotify! [01:19] jdub: ;-) just uploaded g-v-m that actually uses it now [01:19] mvo wants to use it too [01:19] doko: which version of the fglrx driver? [01:19] daniels: hooray [01:19] (or, I made him want to :-) ) [01:20] Mithrandir: 6.8.0-8.14.14-0ubuntu3 [01:22] pitti: yeah, reacting to upload :) [01:23] Kamion: (now watch it get rejected because I'm a complete meathead and screwed something up) [01:25] daniels: xserver-xorg wants xserver-xorg-driver-v4l that is not installable on amd64 (-46). [01:25] Nafallo: that's because it's waiting in binary NEW. either that or I'm a meathead and screwed something up. [01:26] when writing maininclusion wiki pages does every source package need a separate page or can they be put together if they are part of a larger meta? [01:26] i'll take 'i'm a meathead and screwed something up' for $20, dennis [01:26] I am thinking of xfce - same packager, same security record, same upstream [01:26] daniels: hehe, oki. great job anyway! :-) [01:26] I see it's done that way with koffice === Mithrandir grumbles at whoever wrote the divert code for xorg-driver-fglrx [01:26] daniels: source looked fine to me anyway, processed [01:26] janimo: koffice is a single source package [01:27] daniels: you can't end up with just one binary from a source package in NEW, it's all or nothing ... [01:27] Mithrandir: the dude who did it for debian ... flavio? [01:27] I see it depends on kivio & co [01:27] aren't those implicitely requested by that page? [01:27] doko: can you remove the xorg-driver-fglrx then add it again and see if it solves the problem? [01:27] what is with kde and big fat source packages === carl [n=carl@217-162-189-134.dclient.hispeed.ch] has joined #ubuntu-devel [01:28] kivio,kword,krita,kspread are all built from same source?hmm, ok [01:28] yes [01:29] so returning to my question separate pages for separate source pkgs? (about a dozen) === hmrocha [n=hrocha@87-196-75-179.net.novis.pt] has joined #ubuntu-devel [01:30] daniels, i upgraded to the last breezy, my keyboard is working again [01:30] Kamion: thanks for shoving it through. i'm going to go pass out on the couch or some shit. === daniels [N=daniels@amnesiac.heapspace.net] has left #ubuntu-devel [] [01:30] daniels, btw are there already known screenblack issues with libvgahw or should I file a bug? Using trident [01:30] Riddell: if you want to have ia32-libs-kde you need to have a kde which doesn't fall over if you look at it. :-/ [01:30] I saw debian had some miscompilation problem on that module a while back [01:31] <_d4vid> play Sido - Fuffies Im Club.mp3 === carlos [n=carlos@243.Red-83-47-24.pooles.rima-tde.net] has joined #ubuntu-devel [01:33] Mithrandir: no, only if I deinstall the driver, make the ia32-libs update, and then reinstall the driver [01:33] doko: ok, that's right. The driver is broken and should be fixed, then. [01:34] doko: I can do that, but it looked right from the first skim === terrex [n=terrex@84-122-73-155.onocable.ono.com] has joined #ubuntu-devel [01:37] Mithrandir: ok, not that important, doesn't effect the buildds === paolo [n=paolo@adsl-ull-216-235.42-151.net24.it] has joined #ubuntu-devel === DanielN [n=daniel@162.23.4.126] has joined #ubuntu-devel [01:43] Riddell: ping? [01:43] seb128, ping === AndyFitz [n=andy@220-245-97-227-qld-pppoe.tpgi.com.au] has left #ubuntu-devel [] === marilize [n=marilize@196.36.161.235] has joined #ubuntu-devel [01:45] DanielN: pong === _d4vid [n=xxx@tor/session/x-4d7e7ed3c93c972a] has joined #ubuntu-devel [01:48] did you tried the published patch on gnome bugzilla? (the keyboard thing) [01:50] nop [01:50] what bug is that? the crasher when adding new layout? [01:51] *boggle* [01:51] python2.4-apt build-deps on python2.3 and python2.3-dev [01:52] lol [01:52] seb128, yes tat one [01:52] it doesn't crash here [01:52] so no point to try a patch [01:52] and the patch don't work... it says that only garbage is in the input file :) [01:52] so i can't test it too === seb128 [n=seb128@ANancy-151-1-29-175.w83-194.abo.wanadoo.fr] has joined #ubuntu-devel [02:00] pitti: you still around? [02:00] Mez: yes [02:00] Mez: it's only 2pm here :-) [02:00] pitti: I'm having lots and lots of problems with thunderbird and enigmail - It's crashing all over the place [02:01] pitti: yeah, but you could have gone the pub for lunch or somehting [02:01] Mez: no, I haven't done guifications yet. [02:01] Mithrandir, that's ok :D [02:01] Kamion: there is a new upstream microrelease for notification-daemon (still universe, but scheduled for main); it incorporates my patches and fixes two other smal bugs; I reviewed the complete diff (not much). Permission to breaUVF? [02:02] Mithrandir: hi [02:02] Mez: me too, ffox and moz crash, too since recently [02:02] any way to tell apt-cache to only provide info about latest packages, not also on the ones installed [02:02] pitti: I just realised I should be talking to infinity not you :D [02:02] pitti, my FF is working fine, just my thunderbird sint [02:02] Riddell: hi, there you are. It appears that the style loader in KDE becomes slightly unhappy when mixing 32 and 64 bit stuff. [02:03] Mez: so far we don't have an official moz maintainer [02:03] pitti: fair enough :D but we need one... cause thunderbird is getting ridiculous [02:03] agreed [02:03] It's crashing neaar enough every time I try and send an email [02:04] pitti: asac doesnt want to jump on the ubuntu train I presume? [02:04] no idea [02:05] pitti: I'm gonna try building 1.06-3 from debian [02:05] see if that works any better [02:06] would be interesting to compare the patches [02:06] tbird has a proper patch system which makes this easy [02:06] Mithrandir: hmm, not sure what to say to that. style loader can get very tempremental about having been compiled with exact same version of gcc as qt, it should default back to a win95 style though [02:07] pitti do you know if building a non-gnome enabled ff package would be troublesome? [02:07] pitti: be interesting to see if the damn thing WORKS [02:07] janimo: no, sorry [02:07] Riddell: ok, and you're fine with that, if ooo2-amd64 looks win95 style? === aigarius [n=aigarius@159.148.239.80] has joined #ubuntu-devel [02:09] Mithrandir: what is 32 bit and what is 64 bit here? [02:09] Riddell: ooo2 is 32 bit, rest of the system is 64 bit. [02:09] that is ooo2 and any libs it needs. [02:10] Mithrandir: so qt and kdelibs are 32 bit? [02:10] they exist in both 32 and 64 bit versions, yes [02:10] elmo: please nuke the ia32-libs-kde 1 upload, it broke. === mbreit [n=mo@p54876847.dip.t-dialin.net] has joined #ubuntu-devel [02:11] Mithrandir: which style are you set to use? [02:12] Riddell: no idea, I just installed kubuntu-desktop, made a test user and logged in in "KDE" through gdm. [02:12] pitti: libnotify is main now? [02:12] seb128: I added inclusion reports and g-v-m depends on it [02:12] Mithrandir: you need a version of qt, kdelibs and kde-style-lipstik all compiled with the same gcc version (and presumably all 32 bit) [02:12] seb128: gnome-power and update-notifer want it, too [02:13] pitti: k, so I can make gnome-applets using it now? [02:13] yes [02:13] cool, you rock === seb128 hugs pitti [02:13] hehe :-) [02:13] seb128: upstream fixed n-d upstream now [02:13] Riddell: ok, and if I put anything kde-style-lipstik needs in /usr/lib32 instead of /usr/lib, it'll work? [02:14] Mithrandir: in theory, yes [02:14] elmo, please sync ecosconfig has the correct wx2.4 depends in debian, thanks [02:15] Riddell: ok, let's see if we can make this pig fly, then. === pef [n=loic@lns-vlq-39f-81-56-130-224.adsl.proxad.net] has joined #ubuntu-devel [02:21] hello [02:26] pitti: yes, that's fine [02:29] can anybody try what keycode he gets for "volume down" with the gnome keyboard stuff? === majlo [n=mario@213.215.74.3] has joined #ubuntu-devel [02:29] and for "media" [02:30] 0xae here [02:30] thanks [02:30] same here [02:30] dell inspiron laptop [02:30] seb128, how do you bind them? [02:30] mjg59: is "volume_down 0xa3" a typo? Seems to be 0xae [02:30] theres a list of some on the wiki [02:31] seb128: its hardware dependant.. [02:31] Lathiat: https://bugzilla.ubuntu.com/show_bug.cgi?id=13050 [02:31] Lathiat: are you sure? [02:31] seb128: yes, while many may share similarities, it varies wildly [02:32] look at one of th ekeyboard packages [02:32] Lathiat: so it doesn't make sense to put defaults? [02:32] seb128: you could try and find the "most common" [02:32] how? [02:32] get a list of various keycodes [02:32] Riddell: that was a theory. It didn't appear to hold. [02:32] try find similarities [02:32] best way to do that [02:33] Lathiat: very funny [02:33] is to get one of the other shortcut packages [02:33] which have definitions for lots of keyboards [02:33] im trying to find one [02:33] lieankd, hotkeys [02:33] *lineakd, hotkeys [02:34] fortunately mine matches that list apart from 0xa3 [02:35] same here [02:36] i can tell you what my two normal keyboards have later this week [02:36] seb128: Looks like it, yes === _linesca_ [n=kvirc@62.121.30.236] has joined #ubuntu-devel [02:36] Sorry, my mistake [02:36] np, don't worry [02:36] it'd rock if the volume buttons worked in gdm. :) [02:36] or there was a mute button, or something [02:36] for like, logging in in a lecture [02:37] Lathiat: The idea is to use hotkey-setup to map other keyboards to the "standard" (read "Microsoft") mappings === _linesca_ [n=kvirc@62.121.30.236] has left #ubuntu-devel ["Ooh,] [02:37] mjg59: ah cool [02:38] mjg59: what key is "music"? [02:38] Here 0xae matches volum down. === rob^^^ [n=rcaskey@cai17.music.uga.edu] has joined #ubuntu-devel [02:39] I've a "media" key "0xed" here [02:39] seb128: Hrm. Probably launch music player. [02:39] mjg59: no, but the key .. is that a different of "media"? [02:40] my keyboard has few multimedia keys [02:40] seb128: Unsure [02:40] that reminds me, Ive got a couple of keys that aren't recognized for binding purposes on my keyboard [02:40] in the config utility, if I press it, it just sits there waiting for me to press a key [02:40] mjg59: k, let's say the media is different from music [02:41] I think calculator, logoff, and sleep but im in OS X for now... [02:41] Mithrandir: what does this give you `strings /usr/lib/kde3/plugins/styles/lipstik.so | grep -i build` [02:41] s/lib/lib32/ presumably === shackan [n=shackan@host150-106.pool8257.interbusiness.it] has joined #ubuntu-devel [02:42] my keyboard does have both "My Music" and "Media" keys [02:43] mjg59: k, I'm uploading the package [02:43] seb128: Rock, thanks [02:43] rob^^^: is music "0xbc"? [02:43] mjg59: np, thank you for the list [02:44] seb: I can check, but I'd need to reboot. Is that okay? [02:44] rob^^^: don't bother [02:45] "Microsoft Wireless === pitti [n=pitti@195.227.105.180] has joined #ubuntu-devel [02:45] rob^^^: the value is probably fine, I've uploaded with it ... we can fix it with an another version if somebody notice an issue [02:45] err "Microsoft Wireless Natural MultiMedia Keyboard" (accidentally hit enter turning it over) [02:46] (btw, it's a good keyboard) [02:46] ugh those natural stupid pos [02:46] I'v been toying about trying to hack up to cheap ergonomic keyboards to create to independent bluetooth keyboard halfs [02:47] Natural is good. I'm mad they don't make a USB natural anymore though [02:47] also you can get em for <$20, so thats a plus [02:47] http://www.win.tue.nl/~aeb/linux/kbd/scancodes-5.html and http://www.nirvani.net/docs/Microsoft_natural_multimedia_keyboard_scancodes.html === bskahan [n=bskahan@dsl254-074-249.nyc1.dsl.speakeasy.net] has joined #ubuntu-devel [02:48] why were sleep and friends not being assigned then? Are those in a reserved range or something? === _d4v_d [n=xxx@tor/session/x-817b510d47013c17] has joined #ubuntu-devel === gbon121 [n=chatzill@bohr.pisa.iol.it] has joined #ubuntu-devel [02:51] btw, there are a bunch of xml files in /System/Library/Keyboard\ Layouts on 10.4 that might prove helpful to someone [02:52] can't assign those keys in OS X either [02:53] http://developer.apple.com/technotes/tn2002/tn2056.html has more info [02:54] yeh lineakd has similar [02:54] and hotkeys === thierry [n=thierry@modemcable094.69-131-66.mc.videotron.ca] has joined #ubuntu-devel === pitti_ [n=pitti@195.227.105.180] has joined #ubuntu-devel === du2br [n=dudu@unaffiliated/du2br] has joined #ubuntu-devel === _koke is now known as koke [03:18] oh, bugger [03:19] libdps1 was only built from xfree86, and is now removed [03:19] but libmagick6 depends on it [03:19] could someone approve my non-member post to ubuntu-devel@ from last night? [03:20] seb128: could you please rebuild gnome-applets and gnome-system-monitor against libwnck18? === infinito [n=infinito@75.Red-80-59-227.pooles.rima-tde.net] has joined #ubuntu-devel [03:21] lu|sleep, try to wake up jdub or get mako to do it [03:22] they are the only two moderators? OK. === lu|sleep kicks mako === lu|sleep kicks jdub, even though it is 6:22 AM where he is [03:23] mako should be awake, he has no excuse ;) [03:24] heh [03:24] some of these mails from -devel are rather sad "if we remove the workspace switcher app from the default panel there will be no reason for anyone to use Ubuntu! It will be Windows!" [03:24] jdub is still on the west coast? [03:25] Kamion: sure [03:25] Amaranth: LWE DF [03:25] s/DF/SF? [03:25] s/DF/SF/ [03:25] whatever you just said [03:25] he is at linux world expo san francisco === sklp [n=sklp@81-226-252-142-no19.tbcn.telia.com] has joined #ubuntu-devel [03:26] lu|sleep: hey === TWD [n=chatzill@APoitiers-103-2-1-52.w193-252.abo.wanadoo.fr] has joined #ubuntu-devel [03:26] lu|sleep: i am awake.. but still pre-coffee [03:27] mako: I have a perfect task for someone not yet sentient [03:27] mako: I emailed ubuntu-devel last night,but am not subscribed; could you pull my email out of the queue? [03:27] lu|sleep: sure.. what's your email? [03:27] luis.villa@gmail.com [03:28] lu|sleep: cool [03:28] subject 'breezy liveCD issues' I believe [03:28] lu|sleep: i'll approve all future email from you too [03:29] lu|sleep: why don't you subscribe [03:29] lu|sleep: you know you can subscribe and then select to not recieve mail === haggai [n=halls@i-83-67-59-194.freedom2surf.net] has joined #ubuntu-devel === mako looks puzzled [03:29] oh, hrm, had forgotten about that option [03:29] well, it's a bit, er, counterintuitive === lu|sleep generally needs to be on less *-devel* lists [03:29] that tends to be a smart option [03:29] ubuntu-devel is better than most [03:29] i've not followed debian-devel actively in a long time [03:30] it still looks pretty high traffic, though admittedly traffic I'm curious about === sklp [n=sklp@81-226-252-142-no19.tbcn.telia.com] has joined #ubuntu-devel [03:31] lu: I dont have a problem with it, the key is to have your filters set up right to et it out of your inbox [03:31] I still haven't changed my subscription mode to devel from digest though [03:31] rob^^^: I won't read it, and I don't like being on lists I don't read [03:32] no matter how well filtered it is [03:32] seb128: thanks. that's two of the three ubuntu-desktop uninstallables, and I'm fixing the other one now [03:32] (and I don't really believe in filters, either, except for bugmail, since it again leads to lists that don't get read) [03:32] hrm [03:32] i filter things [03:32] makes it easy to look for specific things [03:32] i dont really care to read all mail to the lists im on [03:33] if you need filtering to look for specific things, that means your mail software has poor searching :) [03:33] i just pick things out that look relevant or interesting, and if someone mentions something i can pull it up later [03:33] lu|sleep: no it means i already have all my lists split out, no need to setup a bunch of views or searches or whatever and then i can easily, on either mutt or evolution or thunderbird or webmail read through what i want [03:33] (i read my mail with imap) === terrex [n=terrex@84-122-73-155.onocable.ono.com] has joined #ubuntu-devel === terrex [n=terrex@84-122-73-155.onocable.ono.com] has joined #ubuntu-devel [03:39] lu|sleep: cool, message approved [03:42] Riddell: buildkey=i686 Linux g++-4.* full-config [03:43] mako: thanks [03:43] Mithrandir: and `strings /usr/lib32/libqt-mt.so | grep i686` [03:43] Riddell: i686 Linux g++-4.* full-config [03:43] Riddell: that's not the problem, it doesn't complain, but it doesn't work either. [03:43] Riddell: it complained before === Natja [n=Natja@116-210.240.81.adsl.skynet.be] has joined #ubuntu-devel [03:45] Mithrandir: so its still defaulting to win95 style? [03:45] Riddell: yes [03:46] Mithrandir: try rm -r ~/.kde ~/.kderc ~/.qt and then launching openoffice [03:46] how secure would it be if I upgrade my breezy today? will xserver still work? :) [03:47] or is the xserver packager dude still not finished with his changes? [03:47] and/or how "unfinished" is it? [03:47] -- if I can get it working without having to recompile an X11 server/implementation, it's okay -- [03:48] a few things are uninstallable and are being worked on, but it's mostly fine === Traxer|off [i=traxer@shell6.powershells.de] has joined #ubuntu-devel [03:48] Kamion, aha ok. But it's not "important" things today? === azeem [n=mbanck@proxy-out.lrz-muenchen.de] has joined #ubuntu-devel [03:49] so I'll get my X environment up and running? [03:49] Riddell: it's a fresh user. [03:49] A few weeks ago I first had to fix a few xfonts problems .. I can manage such problems :p [03:49] but if the x package this time removes all bins in my /usr/bin/X11 :) [03:49] pvanhoof: nothing big, no [03:49] that wouldn't be cool [03:50] ok [03:50] Mithrandir: if you start kcontrol in appearance and themes->styles what is available? [03:50] going to upgrade the x-* packages tomorrow then .. [03:50] :) [03:50] pvanhoof: you might have to do a second install pass to cope with a small file overwrite bug in xserver-xorg / xserver-xorg-core === j^ [n=j@195.169.149.104] has joined #ubuntu-devel [03:50] Kamion, doable : [03:50] :) [03:50] but that's just "run apt-get dist-upgrade twice" [03:51] I'm atm installing some of the trivial upgrades .. like the gstreamer ones etcetera :) [03:51] you guys have been working hard for the last three/four weeks :) [03:51] lol [03:51] Riddell: loads, lipstik is the chosen one. [03:52] Riddell: and, it appears it doesn't open anything matching lib32, but it's kinda hard to see because strace is icky === _d4v_ [n=xxx@tor/session/x-719b61ea57df8348] has joined #ubuntu-devel === ogra [n=ogra@p5089E38B.dip.t-dialin.net] has joined #ubuntu-devel [03:54] Mithrandir: try setting to plastik and see if openoffice loads with that === terrex [n=terrex@84-122-73-155.onocable.ono.com] has joined #ubuntu-devel === pitti_ [n=pitti@195.227.105.180] has joined #ubuntu-devel === infinity sobs quietly into his hands after watching glibc build forever, fail and making a 1-line change to fix it. === mpt [n=mpt@200-171-140-32.dsl.telesp.net.br] has joined #ubuntu-devel [03:58] Riddell: hmm, it did then just complain about the buildstring. [03:58] Riddell: I'll hack around it. [03:58] seb128: do you know which part of gnome starts esd with the session? [03:58] seb128: I would like to change esd to autospawn by default, but the esd started by gnome session does not time out automatically [03:58] Mithrandir: what sort of hack? [03:59] Riddell: override open, I think. [03:59] similar to the pangohack in -gtk [04:00] pitti_: gnome-session starts it [04:01] pitti_: have you changed the autospawn key for /etc/esound/esd.conf ? [04:02] seb128: yes, and if I kill esd, then the following spawned esds work fine [04:02] seb128: the manpage says that autospawn is not recommended for sound events [04:02] seb128: but without autospawn I have a dilemma === bskahan [n=bskahan@dsl254-074-249.nyc1.dsl.speakeasy.net] has joined #ubuntu-devel [04:03] seb128: if I remove the default device, esd still has an open connection to it, and thus the module is not unloaded and I don't get a hotplug notification [04:03] seb128: after I kill esd, then the modules are freed, and the device disappears [04:04] seb128: but I can't react to a removed device wihtout any hotplug notification [04:04] seb128: polypaudio solves this, but it's too late for breezy === mgalvin [n=mgalvin@host-66-202-95-170.spr.choiceone.net] has joined #ubuntu-devel [04:05] seb128: ah, I think I know what to change, nevermind === markoni [n=markotas@krt.tmd.ns.ac.yu] has joined #ubuntu-devel === otavio[off] is now known as otavio === poningru [n=poningru@pool-71-243-237-24.tampfl.fios.verizon.net] has joined #ubuntu-devel [04:12] pitti_: what was it? [04:12] jamesh: any news about the lib? [04:12] sivang: did you send it? I didn't get the mail [04:24] infinity: Eh? What happened? === skora [n=skora@24-50-193-209.clvdoh.adelphia.net] has joined #ubuntu-devel === wasabi_ [n=wasabi@207.55.180.100] has joined #ubuntu-devel === BenC [N=bcollins@206.246.247.150] has joined #ubuntu-devel === LinuxJones [n=willy@blk-222-221-81.eastlink.ca] has joined #ubuntu-devel === LJ [n=willy@blk-222-221-81.eastlink.ca] has joined #ubuntu-devel === LJ is now known as LinuxJones === LJ [n=willy@blk-222-221-81.eastlink.ca] has joined #ubuntu-devel === pitti [n=pitti@195.227.105.180] has joined #ubuntu-devel [04:45] anyone know how to get back the ctrl+alt+Fn behavior in breezy's X? [04:45] doesn't let me switch back to a vt like it should === \sh is now known as \sh_away [04:47] you need to sort out your xkb probably === thoreauputic [n=prospero@wolax6-069.dialup.optusnet.com.au] has joined #ubuntu-devel [04:48] see this thread: http://lists.ubuntu.com/archives/ubuntu-devel/2005-August/009421.html [04:48] thanks [04:49] BenC: a dist-upgrade should sort it out, too [04:50] as of the last couple of hours [04:50] ok === kent [i=kent@82.145.135.26] has joined #ubuntu-devel === ogra [n=ogra@p5089CC44.dip.t-dialin.net] has joined #ubuntu-devel [04:57] yeah, that works now === john6000 [n=john6000@dsl-80-43-198-60.access.as9105.com] has joined #ubuntu-devel [04:58] hello i have a suggestion [04:58] in the install can you have a choice of either GRUB or lilo [04:58] it would help everyone a lot [04:58] the average user doesn't know or care === nidd [N=nidd@69.55.233.8] has joined #ubuntu-devel [04:59] but think of the advantages not disadvantages === nidd [N=nidd@69.55.233.8] has left #ubuntu-devel [] [04:59] you have to think of both [04:59] ok maybe you do [05:00] you stick with your 0.8 grub even thow version 1 was out well before ubuntu 5.04 so why didnt you just use that? === marcin [n=user@www.e-dev.tele2.pl] has joined #ubuntu-devel === john6000 [n=john6000@dsl-80-43-198-60.access.as9105.com] has left #ubuntu-devel [] === Makako [n=mwerner@p549999F7.dip0.t-ipconnect.de] has joined #ubuntu-devel [05:07] I've sorted out john6000 in /query === elmo [n=james@83-216-156-21.jamest747.adsl.metronet.co.uk] has joined #ubuntu-devel [05:15] nice. [05:16] now he's trying to give out incorrect info in the main channel === skora sighs [05:18] shackan, ping === mvo [n=egon@ip181.135.1511I-CUD12K-01.ish.de] has joined #ubuntu-devel [05:21] chmj, boing [05:25] have to leave early today, cu tomorrow! === shackan [n=shackan@host150-106.pool8257.interbusiness.it] has joined #ubuntu-devel === bddebian [n=bddebian@user216-178-65-218.netcarrier.net] has joined #ubuntu-devel [05:29] Heya === \sh_away is now known as \sh [05:36] jbailey: any idea why I seem unable to override libc functions in an LD_PRELOADed object? === carl [n=carl@217-162-189-134.dclient.hispeed.ch] has joined #ubuntu-devel [05:41] ouch, dpkg segfaults on the amd64 buildd as well ... [05:43] <\sh> doko: yes...but this is an old symptom...I reported that last week? === HiddenWolf [n=hidden@136.196.dynamic.phpg.net] has joined #ubuntu-devel === \sh is now known as \sh_away [05:59] is anyone here using firestarter? I need to confirm a bug... in outbound connection events tab, click with the right button of the mouse. In my case, appears the same options as in an inbound event. [06:01] at least using a translated firestarter.. not sure if the same happens in pure english. In other words, select "outbound event" - "select with right button of the mouse" , compare the options with those of an "inbound event" [06:01] oops.. breezy is universe... === Keybuk [n=scott@syndicate.netsplit.com] has joined #ubuntu-devel === janimo [n=pet@Home03207.cluj.astral.ro] has joined #ubuntu-devel [06:09] WaterSevenUb: LC_MESSAGES=C firestarter should start it in english === Amaranth [i=travis@unaffiliated/amaranth] has joined #ubuntu-devel === janimo [n=pet@Home03207.cluj.astral.ro] has left #ubuntu-devel [] === terrex [n=terrex@84-122-73-155.onocable.ono.com] has joined #ubuntu-devel === Mez [n=Mez@cpc2-lich4-3-0-cust115.brhm.cable.ntl.com] has joined #ubuntu-devel === janimo [n=pet@Home03207.cluj.astral.ro] has joined #ubuntu-devel === Keybuk [n=scott@syndicate.netsplit.com] has joined #ubuntu-devel [06:26] seb128: do you know notification-daemon upstream? are they available on irc? === robtaylor [n=robtaylo@dyn1.sesnet.co.uk] has joined #ubuntu-devel === camilotelles [n=Camilo@200.128.80.254] has joined #ubuntu-devel [06:29] mvo: isn't it #galago? or it's another different thing? [06:30] koke: I think that's it, thanks [06:32] damn, dpkg segfaults on the amd64 buildd are going to make my partman->partman-base transition painful === OculusAquilae [n=bastian@p548D0054.dip0.t-ipconnect.de] has joined #ubuntu-devel === JaneW [n=JaneW@wbs-146-157-188.telkomadsl.co.za] has joined #ubuntu-devel === mgalvin is now known as mgalvin_lunch === smurfix [n=smurf@debian/developer/smurf] has joined #ubuntu-devel === paolo is now known as xerox === xerox is now known as paolo [06:46] jbailey: does initramfs-tools 0.17 fix the install problem I reported? [06:46] jbailey: I need to make base-installer deal with initramfs-tools all of a sudden, so I need to be able to install it from scratch ;-) [06:48] Kamion: Dunno. Where's the report? [06:48] =) [06:48] Sorry, I'm not up on all my email atm. [06:48] #13334 [06:49] (also #13335, less important) [06:49] 13334 is fixed, yes. [06:50] ah, you ship initramfs.conf but the sed hit mkinitramfs.conf [06:50] I assume initramfs.conf is right [06:50] Yup. =) [06:50] Fixed in 0.17 [06:50] 13335 isn't, but I hadn't hit that one. Hmm [06:50] ok, will hack up something in base-installer for that [06:50] I usually drop a blank modules file in at upgrade time, but I suppose the user could delete it. [06:51] Kamion: Thanks! =) [06:51] jbailey: is there any equivalent of initrd-tools' DELAY in initramfs-tools [06:51] ? [06:51] Kamion: No. If you want to break, just add 'break' to the kernel command line. [06:52] Kamion: Do you need a delay setting? [06:52] no, it's just that base-installer was setting DELAY=0 in mkinitrd.conf and I wanted to check the equivalent [06:52] Ah, makes sense. [06:52] it also sets ROOT= [06:52] should I omit that too? [06:52] Hmm [06:53] I wonder if it's ever the right thing to have it in the initramfs instead of the kernel command line. [06:53] Mithrandir: OOo2 1ubuntu8 should look in /usr/lib32 first [06:53] mvo: ChipX86 on #gnome-hackers on the GNOME IRC ... why ? [06:53] d-i arranges for it to be on the kernel command line too; if that's enough, that's fine [06:55] To the person mantaining Xorg: http://paste.ubuntulinux.nl/1111 === terrex [n=terrex@84-122-73-155.onocable.ono.com] has joined #ubuntu-devel [06:56] paolo: I'm guessing daniels has gone to bed [06:56] ogra: if you're having problems with the ldm password thing and using echo fixes it, you're encountering a unionfs bug [06:56] ogra: the latest ltsp should worka round it [06:57] great === mayco [n=mayco@143.83-200-80.adsl.skynet.be] has joined #ubuntu-devel [06:57] Kamion, ouch! This is gonna be a problem, I think. === mgalvin_lunch is now known as mgalvin [06:57] paolo: I'm checking now, if it's easy I'll release a quick bugfix [06:58] Kamion, you rock. [06:58] mdz, i have a themed version of ldm running over here... and fixed the cursors a bit last night... building a mousetrap for the window will get a bit trickier... [06:58] mdz: did you see James Blackwell's post to the deity list? [06:58] madduck: no [06:59] mdz: if you have a minute... === WaterSevenUb [n=WaterSev@bl5-49-46.dsl.telepac.pt] has left #ubuntu-devel ["Fui] [06:59] madduck: I am working [06:59] mdz: it's not irrelevant. but take your time... [06:59] http://lists.debian.org/deity/2005/08/msg00087.html [06:59] the new xorg package gives an erro when installing: internal error: auto_answer() called with wrong number of arguments: db_input low xserver-xorg/config/write_files_section === robitaille [n=daniel@d154-5-117-228.bchsia.telus.net] has joined #ubuntu-devel [06:59] should I file a bug? [07:00] mdz: i am just not sure that this is in accordance with bzr and hct plans. [07:00] mayco: paolo just mentioned the same thing, I'm investigating now [07:00] okay [07:01] madduck: James Blackwell is a Canonical employee; it seems unlikely that it would be wildly out of step [07:01] ok. i did not know. excellent. [07:01] madduck: Bazaar 2 = bzr [07:01] so now there is bzr, baz2, and hct. how the heck to make sense out of all those? :) [07:01] mdz: then it's curious why James didn't just say so. [07:01] baz is converging with bzr [07:02] that's what i thought. [07:02] madduck: that would be a question for jblack, or #bazaar, or a bazaar mailing list === Amaranth [n=travis@unaffiliated/amaranth] has joined #ubuntu-devel [07:04] hey guys [07:04] enjoy the last days without me :) === fabbione will be back soon to break the bones out of your computers === Amaranth gets the gun [07:05] hey fabbione, a question: [07:05] is providing vmlinux (no full debug) possible for breezy kernel images? [07:06] needed for oprofile [07:06] janimo: i am in vac.. don't trust my answers.. my brain is fuly disconnected :) [07:06] it's not the 150M scary package that's been rumored [07:06] janimo: if i will remember.. i might.. [07:06] I am not trusting them ;) [07:06] cool, if I can I'll help [07:07] have a good vac [07:07] janimo: you might want to look into kernel package. it's the one creating the .debs for the -images- [07:07] ok I will, I just wanted to know if it would be ok or was there a decision against it [07:08] it shouldn't be an issue... [07:08] I see the bug on debian requesting vmlinux ended unconclusively [07:08] but if you can gimme a patch, it will be faster [07:08] ok then I put it on my TODO ;) [07:11] thanks [07:12] mako is IT? :) === mxpxpod [n=BryanFor@unaffiliated/mxpxpod] has joined #ubuntu-devel [07:15] "the and a mako it mako"? === terrex [n=terrex@84-122-73-155.onocable.ono.com] has joined #ubuntu-devel [07:16] robitaille: watch planet in like 10 minutes .. you'll see [07:20] mako: Quick, everyone ddos mako's blog with the refresh button. =) === mattyJ [n=matt@oh-clevelandheights-cdnt1-bg2c-224.clvdoh.adelphia.net] has joined #ubuntu-devel [07:21] jbailey: it won't take all of you :) [07:22] so [07:22] lamont-away,infinity: livefs build on terranova seems busted (stale lockfile?) [07:22] how long do old releases stay in the archive? [07:23] im trying to size out new disks for a machine to move our mirror over to [07:23] is mono currently broken in breezy (just want to make sure its not my setup) [07:25] is there any way to make a pkg depend on another source pkg to build? [07:26] infinito: no [07:26] fabbione: ummm, latest mail-notification needs evolution sources to compile an evo plugin... [07:28] infinito: are you sure you are not looking for something like evolution-dev ? [07:28] Kamion: any news from the sysfs/grep/sed front? [07:29] elmo: could you confirm that no live build is running on terranova, and upon confirmation, rm -f /home/buildd/buildLiveCD.lock ? [07:29] fabbione: i think so... while compiling it looks for some .h files which seems not to be included on evolution-dev === carl [n=carl@217-162-189-134.dclient.hispeed.ch] has joined #ubuntu-devel === terrex [n=terrex@84-122-73-155.onocable.ono.com] has joined #ubuntu-devel [07:31] Kamion, what do you suggest? If I power off the laptop, will xorg be broken when I turn it up again? I mean, should I wait for the fix or it is not crucial? === terrex [n=terrex@84-122-73-155.onocable.ono.com] has joined #ubuntu-devel [07:32] infinito: it depends what it is looking for.. the includes might a) not shipped b) not be there anymore c) in other -dev packages [07:33] fabbione: i've looked for the files on packages.ubuntu.com search and they seem not to be included in any pkg [07:34] infinito: than the best thing to do is to talk with the evo maintainer and see why they are not included. Are you 100% sure they come from evo source? === sivang -> back [07:34] lol [07:35] paolo: quick fix: edit /var/lib/dpkg/info/xserver-xorg.config as root, go to the very end, look for the pair of 'auto_answer db_input' lines, change '||' into 'true ||' on each of those two lines, and run 'dpkg --configure -a' [07:35] fabbione: the files are evolution-2.2.1.1/mail/em-event.h and 3 more in this folder of evo source [07:35] infinito: than talk to the evo maintainer. [07:36] these files might not be shipped because they are not supposed to expose private evo interfaces === tritium [n=tritium@69.49.164.146.swcp.com] has joined #ubuntu-devel [07:36] xorg fix uploading, anyway [07:37] infinito: packages.ubuntu.com isn't always up to date (not its fault, we only generate the Contents files it needs a bit irregularly) [07:37] Kamion, do you mean the "true" part of this? auto_answer db_input "$(priority_ceil $PRIORITY)" xserver-xorg/autodetect_video_card "true" [07:37] paolo: wrong line [07:37] paolo: you're looking for xserver-xorg/config/write_files_section and xserver-xorg/config/write_dri_section [07:37] but "true" in that position, yes [07:37] Kamion: is there any way to look for a file between packages other than this? [07:38] infinito: not really [07:42] auto_answer db_input "$(priority_ceil $PRIORITY)" xserver-xorg/autodetect_keyboard "$AUTODETECT_KB" || debug_echo "db_input xserver-xorg/autodetect_keyboard" ? [07:42] Kamion, I think line numbers would be better :-) [07:43] paolo: yeah but deriving those from the source was tricky, and I was in a hurry :) [07:43] paolo: it's *right* at the end === tritium [n=tritium@69.49.164.146.swcp.com] has left #ubuntu-devel [] [07:43] paolo: lines 2048 and 2049 [07:44] 2048 is empty, 2049 is #vim:set ai et sts=2 sw=2 tw=80 [07:46] Kamion: permission to upload notification-daemon? it fixes a bug in the arrow placement when the target x-coordinate is set to the far right corner [07:51] mdz: done [07:51] mvo: yes [07:51] Kamion, how is the fix going to reach local apt? [07:52] paolo: meh, it might be somewhere else while partially configured. I've uploaded a fix, it's building === blueyed [n=daniel@i5387151E.versanet.de] has joined #ubuntu-devel [07:58] elmo: thanks much === Seveas [n=seveas@seveas.demon.nl] has joined #ubuntu-devel [08:00] Kamion, the mail hit breezy-change, good! [08:00] changes, even [08:04] bye ! [08:04] !bye [08:06] To anybody on breezy - does xfont-terminus work for you? [08:07] mako... now your nick-changing act makes sense :) === zeedo [n=zeedo@www.reboot-robot.net] has joined #ubuntu-devel [08:10] robitaille: it all makes sense eventually === shackan [n=shackan@host152-101.pool8259.interbusiness.it] has joined #ubuntu-devel [08:14] Kamion: thanks for the xorg fix; just noticed that it broke the livefs build === hmrocha [n=hrocha@87-196-75-179.net.novis.pt] has joined #ubuntu-devel [08:43] if $FANCYTTY; then [08:43] that isn't valid posix sh, is it? [08:43] where $FANCYTTY is 1 or 0 [08:43] no; if $FANCYTTY were : or false, it would be === carl [n=carl@217-162-189-134.dclient.hispeed.ch] has joined #ubuntu-devel [08:44] (idiom for doing booleans in shell without having to fork [) === shaya [n=spotter@dyn-160-39-243-187.dyn.columbia.edu] has joined #ubuntu-devel [08:46] /usr/include/evolution-2.4/mail/mail-component.h:31:28: error: Evolution-Mail.h: No such file or directory === Mez [n=Mez@cpc2-lich4-3-0-cust115.brhm.cable.ntl.com] has joined #ubuntu-devel [08:46] seems to be a bug in evolution-dev package === allee [N=ach@allee.exgal.mpe.mpg.de] has left #ubuntu-devel ["Konversation] [08:53] mdz: for the purposes of UE review, does the installer team consist of more than me? :) [08:53] I'm just worried about being a blocker, considering my busyness level right now === martinhj [n=martinhj@host-81-191-103-214.bluecom.no] has joined #ubuntu-devel [08:55] Kamion: that shell snippet was from the new lsb in experimental which attempts to merge our changes [08:55] but as far as I can tell it has no chance of working at all in its current form === kent [n=Kent@82.145.135.26] has joined #ubuntu-devel === bskahan [n=bskahan@dsl254-074-249.nyc1.dsl.speakeasy.net] has joined #ubuntu-devel [08:57] mdz: didn't lsb in unstable take our lsb-base ages ago? [08:58] Kamion: hmm, so it did. though we still have a diff relative to unstable, and experimental makes other changes [08:59] oh, the version in experimental is older than unstable [08:59] unstable seems to fix the syntax [09:01] indeed, should be NVIU'ed === Natja [n=Natja@116-210.240.81.adsl.skynet.be] has joined #ubuntu-devel [09:04] lamont-away,infinity: please give-back partman-base once the chroot is fixed; that's a somewhat delicate transition there and I want to get it through [09:04] lamont-away,infinity: er, on amd64, that is === mvo [n=egon@ip181.135.1511I-CUD12K-01.ish.de] has joined #ubuntu-devel [09:13] doko: ok, is it uploaded? === ploum [n=Ploum@150-169.247.81.adsl.skynet.be] has joined #ubuntu-devel === skora [n=skora@24-50-193-209.clvdoh.adelphia.net] has joined #ubuntu-devel [09:15] jbailey: just as a thought, would it be worth attempting to fetch RESUME from mkinitrd.conf in initramfs-tools' postinst? [09:15] migration, and all that [09:16] hi all [09:16] I got a question about general packaging procedure [09:16] do you guys got some tools to build packages recursively? [09:17] Oh no, he's back :-) [09:17] bddebian: hi :D [09:17] packages don't contain other packages, so there's no concept of recursion involved [09:17] Mithrandir: uploaded, but the build did fail ... the uno bridge now fails to build ... [09:18] Kamion: right but I mean something to build a bunch of packages at once [09:18] you could try pbuilder [09:18] we use wanna-build/buildd/sbuild, but it's much more effort to set up; pbuilder is more designed for personal use [09:18] doko: ok, can you prod me once a working version is in the archive? [09:18] I need to build a lot (about 400) packages with simmilar content [09:18] normally such things would all be built from a single source package [09:19] elmo: can you nuke the b0rked ia32-libs-kde upload for me, please? [09:19] if that is not possible, you're mostly on your own because that's quite an unusual thing to do [09:19] Mithrandir: I've done so [09:20] assuming you meant the orphaned .dsc in queue/unchecked/ [09:20] Kamion: yes, thanks. [09:20] Kamion: hmmm and how you guys synchronize your packages with debian repositories? [09:21] Kamion: you do all 'manually' ? [09:21] marcin: no, it's usually done automatically, if we don't have any changes wrt the debian version [09:22] if we do have changes, there's a tool called merge-o-matic that files bugs against the packages for us with suggested merge output [09:22] Mithrandir: you got some scripts or specific tools to perform this synchronization? [09:22] developers then review that output, tweak as necessary (or sometimes redo from scratch) and upload [09:23] but it's not rocket science, it's just three-way diff and patch application [09:23] marcin: yes, there's a tool which compares. I don't think it's available, but it should be fairly trivial to write one which does the same. Note that the merge-o-matic is another piece of machinery which is more complicated. [09:23] Kamion: and some attempts at extraction of different parts, AIUI [09:25] Mithrandir: hmmm what machinery? [09:25] marcin: merge-o-matic, as Kamion just described [09:26] merge output publication, bugzilla interaction, that sort of thing [09:26] it's all fairly boring scriptage I think [09:29] http://paste.ubuntulinux.nl/1115 do you know what it could be? (I'm on an USB2 external drive breezy installation, I use initrd to load the usb modules) [09:31] paolo: the kernel just switched from initrd to initramfs, and base-installer doesn't support that yet. I'm working on it at this very moment. [09:32] but it will take me some hours [09:32] Kamion, nice. I can't reboot yet, so :-) [09:33] paolo: oh, is this in the middle of a fresh installation, or are you upgrading? [09:33] The former. I'm keeping it upgraded to the bleeding edge because I need this terminus font and I hope for xorg eating it at some point. [09:34] you're keeping it upgraded by repeatedly reinstalling? :) [09:34] no no :-D update/upgrade/dist-upgrade [09:34] so then you mean "the latter", not "the former" [09:35] Sorry I misunderstood previously - I mean it's not an upgrade from hoary or something. [09:35] right, I'm asking whether you're actually in the installer right now [09:35] Nope, the system is installed and I have rebooted it before this last xorg upgrades. [09:35] ok, disregard what I said, then [09:35] is initramfs-tools installed? [09:36] Nope. [09:37] Hah, somebody forgot to update linux-image-*'s dependencies. [09:37] I like being helpful :-) [09:37] jbailey: ^-- linux-image-*'s depends needs to change from initrd-tools to initramfs-tools [09:38] Kamion, is there any doc about it? I have found some HOWTO on ubuntuforums about how to make this external USB2 harddrive installation work. [09:38] But it only talked about mkinitrd. [09:38] Kamion: didn't it? [09:39] oh, it didn't [09:39] I had it installed already [09:39] paolo: it's very new, and I haven't even had time to look at it much myself yet [09:39] Kamion: why should base-installer need to care, if the dependencies are correct? [09:39] mdz: because base-installer needs to put the resume partition into initramfs.conf [09:39] ah [09:40] mdz: in order to do that, it first has to install mkinitramfs-tools [09:40] (so that the template config file is there) [09:40] I thought initramfs-tools did that itself [09:40] it tries, but it doesn't have as much information [09:41] well, theoretically at least. in practice the code is similar at the moment, but I can easily imagine partman hooks to let the user identify the resume partition [09:41] perhaps in automatic installs [09:42] base-installer's fiddling is more relevant for initrd-tools really, but at the very least I'd have to disable it [09:42] and while I'm there anyway, it's not very difficult to make it do the analogous initramfs things === shackan [n=shackan@host152-101.pool8259.interbusiness.it] has joined #ubuntu-devel [09:43] for some reason I thought /etc/exports wasn't a conffile, but it is. I'll need to do something about that for ltsp === azeem [n=mbanck@proxy-out.lrz-muenchen.de] has joined #ubuntu-devel === mdz wonders how evil /etc/exports.d would be considered === carlos [n=carlos@243.Red-83-47-24.pooles.rima-tde.net] has joined #ubuntu-devel [09:52] Simira, nice work on the Tshirts :D [09:53] argh, livefs builds still broken [09:53] Setting up ubuntu-artwork (0.2.24-1) ... [09:53] update-alternatives: unable to make /usr/X11R6/lib/X11/icons/default/index.theme.dpkg-tmp a symlink to /etc/alternatives/x-cursor-theme: No such file or directory === carl [n=carl@217-162-189-134.dclient.hispeed.ch] has joined #ubuntu-devel [09:56] Kamion, is there a specific reason because there is no "xfontsel" in every xorg released today? === mbreit [n=mo@p54876847.dip.t-dialin.net] has joined #ubuntu-devel [09:57] paolo: probably still being modularised; the answer is the same for most missing binaries from xorg [09:58] mdke: thanks :) [09:59] Kamion, do you know how can I safely switch to the previous kernel? So that I could reboot without messing with initramfs. [09:59] paolo: you can just install the initramfs-tools package and the kernel should then configure cleanly [10:00] The following NEW packages will be installed: [10:00] busybox-cvs-initramfs initramfs-tools klibc-utils libklibc [10:00] OK... [10:00] yes [10:00] Simira, do you envisage the thing becoming a fundraising initiative for Ubuntu? === luis_ [n=louie@c-66-31-46-131.hsd1.ma.comcast.net] has joined #ubuntu-devel [10:02] Kamion, http://paste.ubuntulinux.nl/1116 any clues about what it did? [10:02] mdz: looks like I should replace initrd-tools in the minimal seed with initramfs-tools, and bump initrd-tools out to supported? [10:02] Kamion: why was initrd-tools seeded anyway? [10:03] Kamion: I'm about to change the deps in l-s-2.6.12 unless you've already done it... [10:03] mdz: no, I haven't; possibly because we explicitly avoid considering the kernel packages in debootstrap, so it avoids confusion to seed their deps [10:03] paolo: interesting [10:04] mjg59, around? [10:04] mdke : I haven't really thought about it yet. I just provide t-shirts :p [10:04] paolo: that will stop happening once the kernel image properly depends on initramfs-tools, because apt won't try to configure the kernel image while initramfs-tools is only unpacked as opposed to configured [10:05] paolo: nevertheless, it appears to have recovered successfully [10:05] paolo: (as I would expect) [10:05] Simira, ok, but you must have thought about how much to charge right? [10:05] Kamion, good - so are you saying it kept my configuration about initrd? [10:05] paolo: no, it's built an initramfs [10:06] Kaloz, which I need to configure? [10:06] congratulations, you're a tester :) [10:06] I'm very pleased to help - I hope it compensates the begging I did here :-) [10:07] Furthermore I need the newer Gtk for my summer of code project, so messing with the bleeding edge was expected :-) [10:07] might want to check that your grub configuration refers to it properly [10:07] mdke: sure. I take as little as possible, so it's mostly the cost of printing them and shipping. A little revenue goes to further t-shirt orders. If I'd make a webshop of it in time, a part will go back to Ubuntu. [10:08] actually, it should be fine [10:08] initrd /boot/initrd.img-2.6.12-6-386 [10:08] I'm just rebooting my own test system now [10:08] yeah, that's actually an initramfs despite the name [10:08] Simira, yeah, i reckon if Ubuntu was interested, you could charge a little more [10:08] Cool. [10:08] Simira, anyway, thanks a bunch for doing it [10:09] :) [10:09] I get a ton of "sed: Unsupported comand I" on boot, but otherwise it seems fine [10:09] What's wrong with sed. [10:11] By the way, it's a good news. [10:11] nothing's wrong with sed [10:11] Kamion, do you use any initrd customized options? [10:11] no [10:11] OK. [10:11] udev is trying to use a GNU sed feature, which doesn't work with busybox [10:12] but it's only in cdsymlinks.sh, so it's cosmetic at that stage [10:12] Hmm, udev here does strange things, too [10:12] For example it does not create some devices like /dev/hda* and /dev/hdc* which are respectively the harddrive and the dvddrive of my laptop. === eazel7 [n=eazel7@adsl221-teco.via-net-works.net.ar] has joined #ubuntu-devel [10:16] hi [10:16] is sessmgr package missing? === tseng [n=tseng@tseng2.ath.cx] has joined #ubuntu-devel [10:16] mjg59: I whipped up an lsb init-functions which talks to usplash, but it looks like the fifo isn't there yet (on the real root) [10:17] eazel7, I've all updated and it seems to not be there, is it a xorg one? [10:17] paolo yes [10:17] I updated at home and it was there everything was nice [10:17] eazel7, it could be because of the modularization in act these days. [10:17] but now it's missing in the space again [10:17] lost in the space [10:17] yup... too modularized :-P [10:18] Something is leaking, it will come. [10:19] paolo stop saying things like that [10:19] I think on sexual jokes :-P [10:19] Missing? :-) [10:19] eazel7: sessmgr? do you mean sessreg? [10:19] sessreg is there. [10:19] Kamion let me see [10:20] yup [10:20] sessreg [10:20] not here =( [10:20] sessreg is definitely there, I processed it this morning [10:20] if you're using a mirror other than archive.ubuntu.com, it may not have reached it yet [10:20] I've seen it at home [10:20] but now I'm at work and it disappeared =( [10:20] eazel7, update, it's version 0.99.0-1 [10:21] Kamion I was using ar.arch... when I got it, now I changed to archive.ubuntu.com and it disappeared in both [10:21] I've update a sec ago [10:21] $ ssh jackass sudo -u katie madison sessreg [10:21] sessreg | 0.99.0-1 | breezy | source, i386, ia64, powerpc [10:21] it's most definitely there. [10:21] don't know how to get it... [10:21] through the web page [10:22] it's a way, isn't it? [10:22] we've determined that it is not missing, so there's no development issue involved; please take the rest to #ubuntu [10:22] nope, it isn't === eazel7 [n=eazel7@adsl221-teco.via-net-works.net.ar] has left #ubuntu-devel [] === Natja [n=Natja@116-210.240.81.adsl.skynet.be] has joined #ubuntu-devel === doko_ [n=doko___@dsl-084-059-073-021.arcor-ip.net] has joined #ubuntu-devel [10:37] * Update hardcoded initrd-tools dependencies to initramfs-tools [10:37] paolo-changes? === paolo changes [10:38] Would you like a service like that?! === Valandil [n=chrys@dsl-084-056-103-255.arcor-ip.net] has joined #ubuntu-devel [10:40] I'm fixing that udev warning spewage now; it's easily worked around [10:40] Cool. === Dantis [n=danten@h87n8c1o1049.bredband.skanova.com] has joined #Ubuntu-devel [10:48] during the install guide, my wifi network was brought up and worked perfectly, but it didn't give me a choice of various AP's around here, just plumped straight for mine. how did it know, and how come I didn't get given a choice? [10:48] s/install guide/install process [10:48] mdke, pure black magic === mdke nods [10:48] it probably looked for the strongest signal [10:48] that's what I figured, i just wanted to check [10:48] or luck [10:49] it tries to do DHCP after association, to check [10:49] yeah I saw that [10:49] and yeah, it just tries the blank essid [10:50] so probably strongest signal [10:50] ah k [10:50] I'd like to improve that (bug #1242); but netcfg is a pig to work on [10:51] and I have no wireless cards that support scanning, annoyingly enough [10:51] and only one local AP for that matter [10:53] well I only have one too, but there are a few closed networks around, i was just curious === HiddenWolf is now known as AwayWolf [10:54] clearlooks is shipped by gnome-themes/gtk2-engines packages now, what is the correct way to make that ... just a Replaces on the previous package? [10:54] or a Conflicts/Provides too? [10:54] seb128, did you see the cairo issue we pointed out on #cairo with cworth? [10:55] paolo: devhelp API? [10:55] seb128, yup, the devhelp thing. [10:55] I'm reading it atm [10:55] Cool, thank you. [10:56] paolo: what is basically the issue? We don't have libcairo-doc package? === Burgundavia [n=corey@S0106000000cc07fc.gv.shawcable.net] has joined #ubuntu-devel === macgyver2 [n=eric@unaffiliated/macgyver2] has joined #ubuntu-devel [10:58] seb128, yes, no documentation is installed with libcairo1, nor with libcairo1-dev [10:58] right [10:58] Debian package has a -doc [10:58] I've planned to sync with it but didn't come here yet [10:58] seb128, also the cairo doc doesn't have a title, I don't know if the debian guys fixed it. [10:59] not sure but that would be an upstream issue [10:59] Yup, I notified them. [10:59] I don't know how it goes for this kind of issues. [11:01] seb128, if I could ask: it passed the announce for rhythmbox-0.9.0 but it isn't on the repos, is there a particular reason? [11:02] mkdir .libs [11:02] libtool: link: cannot find the library `/usr/lib/libdbus-1.la' [11:02] [11:02] daniels !!!!! [11:02] he keeps doing that [11:02] dropping .la files and breaking other packages [11:03] Argh :-) [11:04] is somebody going to upload a hal package for that or should I do it? === Mez [n=Mez@cpc2-lich4-3-0-cust115.brhm.cable.ntl.com] has joined #ubuntu-devel [11:06] * Remove *.la files from installation. [11:06] + Gross hack to remove dbus_bindings.{a,la} from python2.4-dbus. [11:06] WTF [11:07] Kamion, mdz: what is the right fix here? Changing dbus to install libdbus-1.la or doing a rebuild of other stuff to drop the .la mention? === Kamion has no idea, I'm afraid [11:09] k, all the stuff using hal are FTBFSing now [11:09] thanks daniels [11:09] seb128: dude, you are getting more bitter by the day [11:10] I think soon you might wrap around, and become all happy and positive again ;P [11:10] ah ah [11:10] I'm not bitter :p [11:10] I've just enough to do without having daniels making half of GNOME FTBFSing every week === camilotelles [n=Camilo@201.32.223.192] has joined #ubuntu-devel === zwnj [n=behnam@81.31.160.199] has joined #ubuntu-devel === robertj [n=robertj@66-188-77-153.dhcp.athn.ga.charter.com] has joined #ubuntu-devel [11:18] seb128: the .la file is supposed to be in a -dev package, right? === mvo [n=egon@ip181.135.1511I-CUD12K-01.ish.de] has joined #ubuntu-devel [11:19] mdz: the dbus upload has [11:19] * Remove *.la files from installation. [11:19] + Gross hack to remove dbus_bindings.{a,la} from python2.4-dbus. [11:19] mdz: and the dropped the .la from the -dev too [11:19] phew... [11:20] but libhal.la mention it by example, which breaks the builds === robertj [n=robertj@66-188-77-153.dhcp.athn.ga.charter.com] has left #ubuntu-devel ["Leaving"] === robertj [n=robertj@66-188-77-153.dhcp.athn.ga.charter.com] has joined #ubuntu-devel [11:20] mdz: I guess the correct fix is to only drop the .la from the python dbus package? === thierry [n=thierry@modemcable094.69-131-66.mc.videotron.ca] has joined #ubuntu-devel [11:21] Kamion: Yeah, that might work. Right now I had been doing the same autodetection that the installer would do. [11:21] seb128: I can understand removing it from the python package; that doesn't make sense. but surely it should be in -dev [11:21] mdz: k, I'm going to fix dbus then, thanks [11:21] jbailey: I think doing both would make sense [11:22] Yup [11:22] ok, udev upload fixing those warnings done, so re-mkinitramfs with that and all should be happy === shaya [n=spotter@dyn-160-39-243-187.dyn.columbia.edu] has joined #ubuntu-devel [11:22] is anyone having a problem w/ initrd creation and new linux kernel? [11:23] shaya: install initramfs-tools === jbailey looks to see where he missed specifying initramfs-tools [11:23] jbailey: mdz fixed it already [11:23] missing dependecy? [11:23] Kamion, mdz: thanks. [11:23] it should be building about now [11:23] shaya: right; there's a new kernel on its way [11:23] -6.10 [11:23] would my old initrd have owrked? [11:23] yes [11:23] or would I have had to reboot to .10? [11:23] ah [11:24] so not hte biggest deal [11:24] shaya: do you think it's at all feasible that the other change from http://www.fsl.cs.sunysb.edu/pipermail/unionfs-cvs/2005-August/000260.html broke things for me? [11:24] it's either that, or some non-unionfs difference between our configurations, if you can't reproduce my bug [11:24] shaya: if you had the new linux-image-* unpacked, then configuring linux-image-* will fail initially, but then apt will retry after configuring initramfs-tools and all should be happy [11:24] mdz: I made one line change and it worked [11:24] yes [11:24] everything's happy [11:25] mdz: I guess it's possible the dentry.c change made some problems for you [11:25] mdz: stick a printk() in that code to see if you're hitting it [11:25] as it sort of would make sense [11:26] as d_unhashed means unlinked [11:26] and that's what bash is doing, unlinked file [11:26] shaya: I'm going to try reverting to the same code you're using and see if that helps [11:26] mdz: did you see my lowly post about whether workspace-switcher applet should remain on the default panel? [11:27] mdz: in this case, it's not really the unionfs guys fault, this dentry revalidation is black magic, I've been looking for documentation about what it means, and havent found any [11:27] robertj: no [11:27] mdz: well err, that's pretty much the post...I've seen a few people lose apps on various virtual workspaces [11:27] anyone here read long: ? [11:27] login: that is [11:28] mdz: basically I figure the people who need them can find them but the people who don't might not know how/be afraid to remove them [11:29] robertj: as far as I'm concerned, that's a desktop team decision [11:29] robertj: ->seb128 [11:29] oky [11:30] I've not strong opinion on the topic but imho that's fine this way [11:30] there is no real point to have an empty panel and it's quite useful [11:30] it is useful but its bad if you don't know what your doing and manage to "lose your icons" [11:31] next you will ask to configure with 1 desktop by default? [11:31] yup [11:31] there is other way than the applet to change desktop [11:31] the real fix would be to set the number of desktop to 1 [11:32] Which automake/autoconf version do you suggest to install? And why do you provide so many versions? [11:32] because upstream provide those version [11:32] yeah, I think I forgot to include that in my email, but yes, I'd think that would be needed as well [11:32] robertj: that's not going to happen imho [11:33] W: GPG error: http://bazaar.canonical.com ./ Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY A817561ED2DFA262 [11:33] robertj: what you want is a linux with 0 feature so you are you sure users don't use something they may not know :) [11:33] how do I get the pub key for bazaar release? === stratus [n=stratus@cronopio.rits.org.br] has joined #ubuntu-devel [11:34] seb128: I think the interface should be very plain by default [11:34] paolo: I've 1.9 as default automake versionhere, works fine for GNOME [11:34] that's why i'm against My Documents, My Music, My Whatever. [11:34] robertj: you will not get any consensus on a such discussion imho [11:35] that's basically why I've not replied to the thread [11:35] Yeah, probably not. But it's a better way of doing things than having every application want to have itself on your panel and such. [11:35] seb128, thanks. OK works seamlessy for me too. [11:35] you can try to go upstream, they will probably close it and maybe ping usability before [11:36] seb128, about cairo "--enable-gtk-doc use gtk-doc to build documentation default=no" that's probably the reason for the lack of documentation. [11:37] paolo: I know why it lack it and the Debian package has a binary package for it, I just need to sync ... I'll do that after the colony CD from this week when uploading 0.9 and GTK 2.8 [11:37] paolo: thanks anyway :) [11:38] shaya: still broken for me using 1.0.13 + the one-character fix [11:38] hmm [11:38] seb128, ok sorry. Thank you, instead :-) [11:38] weird [11:38] paolo: no need to be sorry, don't worry :) [11:38] shaya: are you using delete=whiteout? [11:39] hmm [11:39] no [11:39] BenC: it's /home/warthogs/archives/pqm@canonical.com.pub on chinstrap [11:39] or not specifying [11:39] let me see [11:39] hmm [11:39] this is funny [11:40] mdz: sometime since I sent that message unionfs oopsed on me :) [11:40] hit an assertion === grover [n=grover@216-99-218-29.dsl.aracnet.com] has joined #ubuntu-devel [11:42] hmm, why are perl and perl5.8.7 hardlinks to each other? [11:42] why is a hardlink better than a symlink (ala gcc) [11:43] seb128: thanks for your suggestion. I sent it upstream at # 313167 [11:43] robertj: np === bskahan [n=bskahan@dsl254-074-249.nyc1.dsl.speakeasy.net] has joined #ubuntu-devel [11:46] shaya: makes no particular difference in that case [11:49] kamion: confused? [11:49] oh [11:49] perl [11:49] sorry, lost focus === Mez [n=Mez@cpc2-lich4-3-0-cust115.brhm.cable.ntl.com] has joined #ubuntu-devel === kwa [n=kyle@dialup-4.246.244.181.Dial1.SanJose1.Level3.net] has joined #ubuntu-devel [11:56] join #ubuntu-motu === kwa [n=kyle@dialup-4.246.244.181.Dial1.SanJose1.Level3.net] has left #ubuntu-devel [] [11:58] seb128: did you hear from jamesh re lpint-bonobo ? (I sent him a link so he can review) [11:58] no [11:58] but you were supposed to send a mail to me and jamesh today no? [11:59] I posted it on my web corner, and did it here, so I figured you'd notice (all the discussions were in this channel) [12:00] nop, was quite busy and my IRC is not running when I'm not around [12:00] I read some discussion === sto [n=sto@debian/developer/sto] has joined #ubuntu-devel [12:00] but not pointer to a patch [12:00] 10:19 < sivang> jamesh: ok, noted. pkg is here: http://muse.19inch.net/~sivan/lpint/lpint-bonnobo-0.0.tar.gz