/srv/irclogs.ubuntu.com/2010/11/24/#ubuntu-devel.txt

Riddellikonia: pong00:12
=== bjf is now known as bjf[afk]
=== cam is now known as Guest49096
micahgcan we still upload SRUs to maverick-proposed on the assumption they will be copied to natty if maverick_version = natty_version?02:45
hallyndoesn't an sru require fix committed in natty first?02:46
micahghallyn: well, normally yes, but I seem to recall a discussion about a script that auto copies stuff from maverick-updates to natty if maverick_version = natty_version02:47
hallynmicahg: <shrug>  could well be, just doesn't match my understanding of the process.  my being wrong is by no means unlikely :)02:54
ebrodermicahg: My understanding was that that automated process was only for SRUs uploaded before the natty archive opened.02:58
ebroderWas there a change made to plymouth between lucid and maverick that affects when the graphical vs. text splash screen is used?03:27
ebroderOn lucid I would ~always see a graphical splash, and if KMS wasn't working it would just be low res and low color. On maverick I seem to get a text splash if KMS doesn't work03:28
RAOFebroder: Yeah.  We turned off vga16fb to stop it *breaking everything*03:33
RAOFRather, there were a number of cases where vga16fb would load, scribble over the graphics state that the kms drivers were sure wouldn't change, and hang the machine.03:34
* ajmitch prefers the text splash :)03:34
* RAOF too.03:34
psusiwhy?03:34
RAOFIt's *delightfully* geeky.03:34
lifelessit boots my hardware03:35
ebroderROAF: Where was that change made? It doesn't look from the changelog like it was done in plymouth itself?03:35
psusiI'm looking forward to grub immediately going graphic mode and staying that way03:35
lifelesswhat I'd be happiest with is something that doesn't trash progress output from non lsb scripts.03:35
psusishould be real nice if we ever get the grub gfxmenu set up by default03:35
lifelessthat would be like way retro: a readable boot console03:35
StevenKlifeless: If it boots your hardware, you're one of the 1% or so :-)03:35
lifelessStevenK: nokms boot my hardware03:36
lifelessStevenK: everything else is fail03:36
RAOFebroder: It was made in the kernel, around the time of the Prague sprint when I went in to the kernel room and asked them to kindly stop breaking graphics ;)03:36
ebroderRAOF: Ah, got it03:37
ebroderRAOF: So...probably not something I could turn on in configuration if I was interested in living dangerously03:37
RAOFYou could get vga16fb to load; you just need to do it manually.03:38
RAOFAlthough vesafb is probably a better bet; throwing a vga= on the end of your kernel command line should do it.03:39
=== tmzt_dg2root is now known as tmzt_g2root
ebroderRAOF: Can I do that by hand by passing module arguments or something?03:56
ebroderI guess I can probably just look in the source for that03:57
RAOFAdd “vga=ask” to your kernel command line in grub, after “quiet splash”03:57
RAOFThen when you boot the kernel will list the possible vesa modes, and you can select one.03:57
ebroderRAOF: Right, but I want to setup something where it'll only use vesafb if KMS doesn't work (i.e. proprietary drivers). I'd prefer to not set a mode for all boots03:58
RAOFAh, yeah.  That's more difficult.03:58
ebroderSo I'm thinking of trying to pull something evil together like an initramfs script that runs after udev and before plymouth03:58
RAOFI guess you could manually modprobe vesafb03:59
RAOF*uvesafb04:00
ebroderRAOF: Ah, that's what I was missing. I was looking at vesafb instead of uvesafb. Awesome, thanks04:00
ebroderRAOF: Actually, do you know what happens if I just load uvesafb when a KMS driver already set the mode? Is it a NOOP, or does it break things?04:05
RAOFIf uvesafb touches the graphics state it's likely that the kms driver will explode into a thousand pieces.04:05
RAOFAlternatively, it's possible that the kms driver will have changed the graphics state enough that *uvesafb* will explode in a thousand pieces :)04:06
ebroderBut either way if it's going to do something horrible, I should be able to test this and see something explode fairly obviously? It looks like passing video=uvesafb: might cause the /init-top/framebuffer script to do what I want04:07
RAOFSadly it's not guaranteed to explode immediately.  For example, when vga16fb was loaded, for most people it created /dev/fb1, which didn't get opened by anything.  But as soon as something *tried* to open /dev/fb1, graphics would hang.04:09
RAOFThere was a popular launchpad bug “Running hwinfo -C causes the screen to go green”, caused because hwinfo probed /dev/fb1.04:10
RAOFebroder: Now that I think of it, the kms drivers have code to kick off a generic driver like uvesafb.  If you could guarantee that uvesafb loaded first you'd probably only have the problems with seamless-grub that caused it to slip for Maverick :)04:17
ebroderRAOF: Ok, I can try that04:20
Sarvattvesafb loads early->plymouth loads framebuffer renderer plugin instead of drm->drmfb loads and kicks out vesafb->plymouth segfaults and your boot is screwed was the problem in maverick04:27
RAOFSarvatt: And wasn't there also one where radeon just plain died?04:28
ebroderOh, uh. Hmm...04:28
ebroderMaybe I shouldn't try that...04:28
RAOFI seem to recall that if you loaded the kms drivers into the initramfs it worked ok.04:29
Sarvattit was ok packed in the initrd but it was racy, 1 out of 10 boots or so would die here04:29
RAOFOh, that reminds me.  Time to un-framebuffer my grub so that I can actually see it.04:31
ebroderCouldn't you work around that just by doing a udevadm settle in the udev initrd script?04:31
ebroder(Doesn't it do that already...?)04:31
ebroderAh, no - just a trigger04:31
RAOFI don't think it does, as that would kill boot performance?04:32
ebroderWhat about something like trigger fb devices, settle, trigger everything else?04:32
RAOFWith a "load uvesafb if no other fb devices" bit?04:34
RAOFYou'll still lose quite a lot of boot time; i915 is pretty slow at initialising (from memory, pitti suggested it was ~2sec worth of initialisation)04:34
ebroderOuch. That's pretty bad04:35
ebroderI...think I'm suitably convinced that I should figure out how to solve my problems using the text splash :)04:38
RAOFIt's still a goal to make seamless-grub work in Natty, I think, so you could piggy-back on that effort.04:42
RAOFI don't think that's a solved problem yet, though.04:42
ebroderRAOF: Yeah, I've got the workitem to figure out how to make hardware blacklisting/whitelisting work. I'm hoping to get that sorted out during some of my Thanksgiving time off04:43
jfercan someone help me with packaging skype-call-recorder? it is my firsty package05:19
jfer*first05:19
dholbachgood morning!07:33
bilalakhtarGood morning dholbach07:42
dholbachhey bilalakhtar07:42
didrocksgood morning07:59
=== almaisan-away is now known as al-maisan
pittiGood morning08:12
RenatoSilvaanyone involved with purple-plugins-pack?08:13
micahgRenatoSilva: I use it08:14
RenatoSilvathere's a typo bug which leads to a plugin not being included08:15
micahgRenatoSilva: ok, can you file a bug and give me the bug #?08:15
RenatoSilvaI think ircmore was renamed to irc-more for some crazy reason, but the package maintainer didn't notice and package config is still outdated08:21
RenatoSilvawhat is funny is that the package was succesfully built even when trying to include a non-existing plugin08:22
micahgdebian 60476308:23
ubottuDebian bug 604763 in pidgin-plugin-pack "Missing IRC-More plugin" [Normal,Open] http://bugs.debian.org/60476308:23
micahgfiled an hour ago08:24
RenatoSilvamicahg: should still file one in Launchpad?08:24
micahgRenatoSilva: well, we don't currently have a diff, but if the change is small enough, we might be able to SRU, so yes08:25
micahgRenatoSilva: are you able to provide a debdiff for it?08:26
micahgRenatoSilva: actually, we should really move this to #ubuntu-motu08:26
sladenwhat happened to UpstreamVersionFreeze, did that get rolled into FeatureFreeze?08:27
* micahg didn't know there was an upstreamverisionfreeze :-/08:27
micahgsladen: seems to fit the definition here: https://wiki.ubuntu.com/FeatureFreeze08:28
RenatoSilvamicahg: I'm there08:29
=== al-maisan is now known as almaisan-away
=== almaisan-away is now known as al-maisan
=== hunger is now known as Guest91960
=== Guest91960 is now known as hunger|o
=== smb` is now known as smb
bilalakhtarI got this email today, even though the source package got accepted: http://paste.ubuntu.com/535806/09:04
bilalakhtarCould someone archive-admin please look at it09:05
bilalakhtarbinaries of other archs also got into the archive09:06
mr_pouitbilalakhtar: https://launchpad.net/ubuntu/+source/gcc-defaults/1.82ubuntu209:17
sorenbilalakhtar: In a nutshell, another source package has built those binary packages with a newer version.09:19
mvosoren: could you please have a look at https://code.launchpad.net/~mvo/vmbuilder/add-natty/+merge/40977 ? or alternatively give me access to trunk so that I can just merge it myself?09:21
mvo(or tell me who to nag instead ;)09:21
dholbachAmaranth, heya - who's maintaining alacarte upstream now? I was just looking at gnome bug 60822109:26
ubottuGnome bug 608221 in general "Drag-and-drop of items downwards is off by one" [Minor,Unconfirmed] http://bugzilla.gnome.org/show_bug.cgi?id=60822109:26
sorenmvo: I'm still the closest VMBuilder has to a maintainer.09:30
seb128dholbach, nobody09:37
seb128dholbach, it's not actively maintained for a while09:37
dholbachseb128, that explains it :)09:37
bilalakhtarDid someone reply to my thing?09:48
micahgbilalakhtar: gcc-defaults is building the source package, you should probably talk to doko09:49
micahgs/source/binary09:49
bilalakhtarokay, thanks, micahg09:49
micahgbilalakhtar: mr_pouit responded with that above :)09:50
bilalakhtarthanks09:50
sorenmvo: Let me take a look.09:50
bilalakhtaractually, my system went down due to processor overheat09:50
bilalakhtarand I am fed up of this laptop09:50
vishdholbach: i had spoken to Amaranth about that bug a while ago, and he mentioned we can patch it in Ubuntu.. since upstream is unmaintained..09:54
vishthe alacarte one..09:55
cjwatsonstgraber: done10:22
gauravahey all .. from yesterday .. I am struggling to setup a serial console on my ubuntu 10.10 machine ..10:47
gauravany help would be great10:47
gauravaI am basically following this article for the setup <https://help.ubuntu.com/community/SerialConsoleHowto> but no luck so far10:47
gauravaThen I simply connect the serial cable .. and trying to write on it .. by using command: $ > ehco "abcd" > /dev/ttyS010:47
gauravaI can see that interrupts assigned to /dev/ttyS0 (IRQ - 4) is increasing ..10:48
gaurava but still there is no output on the other machine ..10:48
gauravagroup ..  ny idea what is going on and how can  i troubleshoot the problem further?10:48
cjwatsonuse a proper serial console client, such as picocom, rather than writing directly to the device.  also make sure the baud rate and other settings match on both sides.10:48
gauravacjwatson, baudrate is same on both of my machines..10:51
gauravawill try with the picocom on the sender side.. already using the minicom on the receiving end10:51
cjwatsonpicocom, minicom, whatever10:52
gauravacjwatson,  can we use the picocom/minicom to send the data ?11:04
cjwatsonyes, if I'm understanding you correctly11:05
cjwatsonthis really isn't a topic for #ubuntu-devel though ...11:05
gauravaok .. in dat case can you point me to the right forum/direction..11:05
Chipzz#ubuntu or the forums11:05
gauravathanks Chipzz, since setting up serial console is the prestep to debug a kernel crash, I thought one can ask this question over here..11:07
Chipzzyou could try on #ubuntu-kernel11:07
Chipzzbut I'm not 100% sure if it's appropriate there11:07
gauravaok thanks once again .. will try my luck over there11:08
Chipzzgl getting it to work!11:08
Chipzzbtw, are you sure you're using the right cable?11:08
Chipzzand if it's working correctly?11:08
gauravaI am not sure.. i just bought these cables from the market yesterday itself ..11:09
gauravaso i guess.. they  would be fine11:09
Chipzzright, probably should be. but there are serial cables and then there are serial cables11:10
gaurava:)11:10
gauravaif there is any quick test that I can run upon or ask someone else to check if the cables are fine or not?11:10
Chipzznot sure, been a while since I messed with serial cables11:11
Chipzzbut I recall there being more than one way to wire them11:11
Chipzzanyway, try on #ubuntu-kernel ;)11:11
gauravathanks once again .. will ping over there11:11
=== sebner_ is now known as sebner
Amaranthdholbach: I didn't see much point in fixing the little bugs while the big ones were still there then the big ones required a spec change then I gave up11:41
dholbacha spec change?11:41
Amaranthdholbach: Yeah, NoDisplay has too many meanings11:42
dholbachah ok, still it might be good to fix the small bugs already :)11:43
dholbachbut I understand - a shame that nobody has the time to look after it :/11:43
=== MacSlow is now known as MacSlow|lunch
Amaranthdholbach: Once the discussion on changing the spec didn't get anywhere I decided the menu system was even more broken than I thought when I was writing alacarte11:44
* dholbach nods11:44
AmaranthSo I switched to docky and gnome-do and removed my menu11:44
AmaranthSomeone else was trying to maintain it for awhile, even made a release or two11:44
ogra_ac_cjwatson, urgh, thanks for spotting the shadow issue, i somehow only looked at the conflicts in the report on MoM11:45
dholbachthanks Amaranth11:45
* ogra_ac_ merges now11:45
Amaranthdholbach: heh, thanks for depressing you? :)11:45
dholbachno for the feedback11:46
cjwatsonogra_ac_: ok, please mark the sync bug Invalid then11:46
ogra_ac_will do11:46
dholbachit's that there's a patch in the sponsoring queue right now and it seems nobody uploaded because upstream didn't comment on it11:46
cjwatson(there's a little archive admin script that prints all the changes since the last Debian upload; I routinely use it as a quick validator for sync requests)11:46
=== ogra_ac_ is now known as ogra_ac
Amaranthdholbach: The only patches I don't agree with are ones that add UI but someone else was making releases so I don't consider myself the maintainer anymore11:47
ogra_acwell, i could have looked at the merged changelog first11:47
=== al-maisan is now known as almaisan-away
Davieyno patch pilot :(12:41
cjwatsonit's mterry's turn today, but he's probably not around yet12:44
cjwatsonfor the rest of this week there's only one pilot per day on the schedule12:45
=== apachelogger is now known as releaselogger
BlackZcjwatson: can you please retry the build of the last apr version in natty?12:48
BlackZcjwatson: on all archs..12:48
cjwatsonBlackZ: what changed since the initial attempts?12:51
BlackZcjwatson: bug #671441 got fixed in launchpad-buildd12:51
ubottuLaunchpad bug 671441 in joblib (Ubuntu) "Can't mount /dev/shm as tmpfs in the buildd" [Medium,Confirmed] https://launchpad.net/bugs/67144112:51
cjwatsonBlackZ: ok, thanks, retried12:52
=== MacSlow|lunch is now known as MacSlow
BlackZcjwatson: thank you :)12:52
=== dmart is now known as Guest16033
=== Guest16033 is now known as dmart__
freeflyingpitti, ping13:14
sebnercjwatson: thanks for the quick syncs :) Should I use syncpackage in future as it's extrawork for you? I'm not really in a hurry so I use still requestsync13:22
cjwatsonno, please don't, requestsync is very little work nowadays13:23
cjwatsonsyncs are generally processed at least daily13:23
sebnercjwatson: aye aye :)13:23
dokoScottK: no, gcc-defaults has just a symlink13:32
ScottKdoko: OK.  Thanks.13:32
=== korn_ is now known as c_korn
ScottKdoko: Another gcc issue that I think needs some investigation is in this build log.  It looks like it's trying to buid in /usr/lib64 (built fine on Debian): http://launchpadlibrarian.net/58604511/buildlog_ubuntu-natty-amd64.libclamunrar_0.96.4-1_FAILEDTOBUILD.txt.gz13:34
dokoScottK: that should be fixed in the package13:35
bdrungsebner: use requestsync - some people don't like syncpackage13:36
sebnerbdrung: I noticed =)13:36
ScottKdoko: Is gcc in Ubuntu intended to be different than in Debian about this?13:36
doko /usr/lib64 is fine, but it's a symlink13:36
doko4.4 != 4.513:36
ScottKOK.13:36
ScottKSo what 4.5 change is this?13:36
dokoI think I fixed it in the repo, but the assumption of the package is just wrong13:37
dokosame with the 4.5.x and 4.5 symlink in gcc_lib_dir13:38
mterry@pilot in13:39
=== udevbot changed the topic of #ubuntu-devel to: Archive: Open | Development of Ubuntu (not support, not app development) | #ubuntu for support and general discussion for dapper -> maverick | #ubuntu-app-devel for application development on Ubuntu | http://wiki.ubuntu.com/UbuntuDevelopment | See #ubuntu-bugs for http://wiki.ubuntu.com/HelpingWithBugs | Current Friendly Patch Pilots: mterry
* mterry waves13:39
* dholbach hugs mterry13:39
dholbachwoohoo!13:39
sebnercjwatson: ah, I just noticed your comment. Of course we are before DIF! Sorry for that. Just a habit13:40
* sebner hugs dholbach =)13:40
dholbachhey sebner13:40
cjwatsonsebner: np13:41
=== dmart__ is now known as dmart
czajkowskiShaneM: get sorted?13:51
ShaneMczajkowski: Just doing it now.13:51
czajkowskiok13:53
=== almaisan-away is now known as al-maisan
ari-tczewmterry: could you sponsor bug 663343?13:55
ubottuLaunchpad bug 663343 in cheetah (Ubuntu) "Please merge cheetah 2.4.2.1-1 (main) from Debian unstable (main)" [Undecided,Confirmed] https://launchpad.net/bugs/66334313:55
mterryari-tczew, looking at it13:56
ari-tczewmterry: IMO set as won't fix and unsubscribe sponsors ^^14:06
mterryari-tczew, well, the patch from clint looks legit.  I think I'll take advice from Barry and open a new bug for it though14:08
ari-tczewmterry: Debian has older version.14:09
=== Claudinux_ is now known as Claudinux
mterryari-tczew, agreed.  We wouldn't downgrade the version, but the Debian maintainer made some packaging changes at the same time as they updated the version.  In Ubuntu, we leapfrogged that version, but didn't make the same packaging chagnes14:10
mterryThey were good changes, so we should 'sync' up with those changes14:10
ari-tczewmterry: aha, so go ahead14:11
highvoltage14:37 < stgraber> cjwatson: Hi, could you move sabayon from the ubuntu-desktop package set to the edubuntu packageset. It's a gnome upstream project but is only shipped by edubuntu and one of the upstream developers is in edubuntu-dev.14:13
highvoltagecjwatson: did you perhaps have any chance to look at that?14:13
cjwatsonhighvoltage: 10:22 <cjwatson> stgraber: done14:14
highvoltagecjwatson: merci!14:18
=== dendrobates is now known as dendro-afk
=== dendro-afk is now known as dendrobates
mterryari-tczew, so I moved the bug and commented on the patch, but I can't actually upload to main.  But it should be all ready to go14:32
ari-tczewmterry: ah, you're not core-dev member14:33
mterrynope.  QQ14:33
bdrungmterry: are you waiting for the next sponsor request?14:39
mterrybdrung, if you have a suggestion, I'll look at it.  But I'm going through the queue otherwise14:41
bdrungmterry: my suggestion is to go to http://reports.qa.ubuntu.com/reports/sponsoring/ and start from the top.14:41
mterrybdrung, :)  OK thanks14:42
bdrungmterry: the list is sorted by time in queue. picking the one on the top would processing the list like a queue. :)14:42
bdrungmterry: do you know sponsor-patch?14:42
mterrybdrung, no, that's nice!  I do that manually.  So painful14:44
* mterry adds these notes to the patch pilot wiki14:44
smoserpitti, https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/671103 put new cloud-init into -proposed, but it brought a new binary package14:44
smoserwhich needs to be allowed into the archive14:45
* cjwatson lands >3 months of grub2 changes on Ubuntu at once and hopes that people's systems still boot14:45
smoser(grub-legacy-ec2).  Can someone allow that backport in ?14:45
bdrungmterry: i wrote sponsor-patch to make sponsoring simple. it does many checks and tries to build the package.14:45
highvoltageooh, risky updates! I'll be sure to test!14:49
AbsintheSyringeonce Ubuntu does move to rolling releases, will it be based on Debian CUT or ... ?14:49
bdrungAbsintheSyringe: i think someone over-interpreted something14:50
ogra_acwhats debian CUT ?14:50
AbsintheSyringebdrung, how come?14:50
ogra_aca new name for experimental ?14:50
AbsintheSyringeogra_ac, no no http://kitenet.net/~joey/code/debian/cut/14:51
AbsintheSyringethere was a lecture on this years debconf10, and I think this is the way to go actually14:51
bdrungAbsintheSyringe: gimme your sources14:51
ogra_acaha14:51
AbsintheSyringebdrung, http://linux.slashdot.org/story/10/11/24/1346221/Ubuntu-May-Move-To-Rolling-Releases?from=fb14:52
AbsintheSyringeI personally think Debian CUT and Ubuntu rolling releases are future towards all linux platforms should be heading to, including android14:52
AbsintheSyringeand I remember there was talk about ubutnu rolling releases before this, just can't remember where14:53
cjwatsonAbsintheSyringe: at present Ubuntu has no plans I'm aware of to move to a rolling model14:54
AbsintheSyringecjwatson, hype?14:55
cjwatsonI think overinterpreted long-term thoughts, perhaps14:55
cjwatsonI hadn't seen that comment from Mark before now14:55
bdrungAbsintheSyringe: think about the extra repository - this is the first step in the direction of more frequently updates14:55
AbsintheSyringeyea, I don't see it happening right now either, but on long term ... I think it should be done14:56
=== tkamppeter_ is now known as tkamppeter
AbsintheSyringebdrung, true ...14:56
cjwatsonI suspect what we might end up with is a model with a stable base (of about the scale of current Ubuntu) and a collection of software-center-accessible PPAs with newer versions of things so you can pick and choose; but I really don't know, as I say Mark's comment is new to me14:57
cjwatsonit's certainly too early to be making concrete predictions about what it would be based on14:57
ogra_ac"Today we have a six-month release cycle," Shuttleworth said. "In an internet-oriented world, we need to be able to release something every day."14:57
ogra_acintresting that they didnt make it "Ubuntu plans daily releases" on slashdot14:58
pittismoser: I already NEWed it yesterday14:58
smoserpitti, ... so it requires an admin now ?14:58
pittismoser: no, I already did that14:58
smoseri'm sorry for not understanding process. i just tried to verify and its not in archive14:58
cjwatsonlet me modify my previous comment: we have nothing at the moment that I know of that resembles a concrete tactical plan, rather than long-term strategy14:59
bdrunghaha, imagine someone says: "ubuntu has daily builds" and a press guy writes "Ubuntu-May-Move-To-Rolling-Releases" :)14:59
AbsintheSyringe:D14:59
pittismoser: "rmadison -s lucid-proposed -S cloud-init" says that it's in15:00
smoserat least wasnt in ec2 archive ... hmm. i dont see cloud-init either in proposed there. maybe that mirror is just beind.15:00
pittismoser: so it might be mirror lag15:00
sladencjwatson: isn't Mark's comment actually about the extras repo15:02
jussipitti: for bu #617885 - how many people do you need to test it?15:04
cjwatsonsladen: it's too short to be able to tell :)15:06
jussithats bug 61788515:06
ubottuLaunchpad bug 617885 in gparted (Ubuntu Maverick) "gparted crash at start: glibmm-ERROR **" [High,Fix committed] https://launchpad.net/bugs/61788515:06
pittijussi: usually one is enough15:06
cjwatsonspeculation filtered through news sites, what a way to go15:06
jussipitti: so all good to up it to the repo propper now?15:07
pittijussi: it needs to stay in -proposed for 7 days so that we have a chance to catch regression reports15:07
jussipitti: ahh, ok. great. please ping me if you need more testers for that (or others similar)15:08
=== al-maisan is now known as almaisan-away
=== almaisan-away is now known as al-maisan
seb128doko, bug #67738715:22
ubottuLaunchpad bug 677387 in libgnome (Ubuntu) "libgnome b-d on libcanberra, which cannot be availabe at this time" [High,Confirmed] https://launchpad.net/bugs/67738715:22
seb128not sure we can do something about that15:22
GulfstreamI am using Natty (upgraded to it last night), and the bar above the window has disappeared (the bar for the minimize, maximize, and close buttons), is there a way to get it back?15:22
seb128I guess you need to build it manually if you need to start a port15:23
seb128Gulfstream, hi, try #ubuntu for user questions15:23
jussiGulfstream: support for natty is in #ubuntu+115:23
dokothese are no build-deps, that's library incest15:23
Gulfstream#ubuntu+115:23
jussiyes15:23
Gulfstream?15:23
Gulfstreamokay15:23
Gulfstreamthanks15:24
seb128doko, well in any case it's not going to be worked15:24
seb128doko, libgnome is deprecated, we are getting ride of it at some point but not this cycle15:24
dokoseb128: but honestly, it's time for a window manager in main, which doesn't depend on the whole of gnome15:25
dokometacity has the same dependencies15:25
seb128compiz?15:25
seb128it's the default wm and it depends on nothing from GNOME15:26
ogra_acit depends on working GL15:26
epictetusit took me hours and hours to re-compile a working kernel package including the OSS emulation drivers. Pulseaudio is awful -- it solves a bunch of problems I never cared about and creates a bunch of new problems that I actually do care about.15:26
seb128ogra_ac, not really, 0.9 should fallback to 2d15:26
ogra_acsweet !15:27
* ogra_ac didnt know that15:27
seb128it might still be buggy in that regard because it's new but that should work15:27
seb128it should just turn off options that need gl15:27
dokoseb128: "it"? how?15:27
seb128doko, how what?15:28
doko<seb128> it should just turn off options that need gl15:28
dokoand works on powerpc?15:28
seb128dunno about powerpc15:28
ogra_acon ARM !15:28
seb128well that was discussed to use compiz 2d as fallback at UDS15:29
seb128they say the code is a bit young and might need work15:29
dokook, so better stay away from it. honestly, I'd rather like to use twm, which doesn't change every few weeks ...15:29
cjwatsonis the "Subscribe someone else" ajax thing on Launchpad bugs broken for anyone else?15:31
ogra_acworked this morning for me15:31
seb128cjwatson, how broken?15:31
seb128doko, nobody stop you to use twm if you want15:32
cjwatsonseb128: does nothing15:32
cjwatsonhm, maybe I should try restarting firefox15:32
dokoseb128: just needs promotion ...15:33
seb128cjwatson, works for me15:33
seb128I just tried on a bug15:33
seb128doko, you are in the mir team so just ack it ;-)15:34
pittidoko: if twm is so much easier, I don't see anything wrong with promoting it for these test cases15:34
cjwatsonseb128: might be firefox 4 specific; I filed bug 68100315:35
ubottuLaunchpad bug 681003 in Launchpad Bugs "+addsubscribers AJAX link does nothing" [Undecided,New] https://launchpad.net/bugs/68100315:35
=== al-maisan is now known as almaisan-away
dokopitti: I would prefer it, because you know that it doesn't change, and it does work15:37
pittiso, let's do that then?15:38
dokopitti: reopening the MIR. is it possible for past releases too?15:39
pittiI don't think we can change it in stables15:39
pittiwe could do a no-change upload to -proposed, but frankly for those it seems easier to just use dbus-launch metacity15:39
=== almaisan-away is now known as al-maisan
dokomaybe, at least the old versions don't depend on canberra15:41
cjwatsonis anyone working on an evolution-couchdb upload for evolution 3.32?15:43
seb128cjwatson, I'm using firefox4 there15:43
seb128cjwatson, yes, rodrigo15:44
seb128<rodrigo_> didrocks, ok, I'll release evo-couchdb, which includes the fixes to compile with 2.31/32, and package it15:44
seb128that was a bit earlier today15:44
cjwatsonkees: you made cpu-checker depend on msr-tools in universe, so it's now uninstallable; can you deal with the MIR side of that?15:45
cjwatsonok15:45
=== diwic is now known as diwic_afk
* ogra_ac sighs about shadow 15:52
=== bjf[afk] is now known as bjf
=== beuno is now known as beuno-lunch
* SpamapS curses the baby for letting him sleep until 8:30am and miss the tech talk16:41
cjwatsonit's only recently started16:41
=== ikonia_ is now known as ikonia
=== al-maisan is now known as almaisan-away
=== beuno-lunch is now known as beuno
=== njpatel is now known as njpatel|away
mterry@pilot out18:03
=== udevbot changed the topic of #ubuntu-devel to: Archive: Open | Development of Ubuntu (not support, not app development) | #ubuntu for support and general discussion for dapper -> maverick | #ubuntu-app-devel for application development on Ubuntu | http://wiki.ubuntu.com/UbuntuDevelopment | See #ubuntu-bugs for http://wiki.ubuntu.com/HelpingWithBugs | Current Friendly Patch Pilots:
=== dendrobates is now known as dendro-afk
=== dendro-afk is now known as dendrobates
zulpitti: will you accept a new SRU that has an upstart job that wasnt there before?18:26
SpamapSzul: rrwhhhzaaaa? that sounds a bit crazy. ;)18:27
pittizul: would need a really good rationale; these can potentially break the system, so nothing with complex dependencies can be added18:27
zulpitti: this is the one https://bugs.edge.launchpad.net/ubuntu/+source/tgt/+bug/574554 i was talking about18:28
zulthe upstart script is really simple and its not a widely used piece of software18:28
pittizul: http://launchpadlibrarian.net/53388867/tgt_1.0.4-1ubuntu4.debdiff ?18:29
pittizul: it would suddently start the daemon for people who have it installed, so that might be an unexpected behaviour change18:29
zulpitti: right18:29
pittibut it seems that the job is already there, but has a typo?18:29
pittipost-start is not the right place to launch the main daemon, thuogh18:30
zulpitti: i think its for lucid actually18:30
nijabazul: yep, we would need it in lucid18:30
pittiah, right, fixed in maverick already18:30
pittimy feeling is that we shouldn't do those behavioural changes a year after release; it's too unexpected18:30
pitti(in both directions)18:31
zulhmm...ok18:31
pitti-backports would be fine for me, if appropriate18:31
zulgotcha18:31
nijabapitti: hmmm... that could work for me, indeed18:31
nijabazul: so, backport?18:33
zulnijaba: yes18:34
nijabazul: I just need to find the correct way to document activating this particular package from backport in the doc.  should not be too hard18:34
zulnijaba: https://help.ubuntu.com/community/UbuntuBackports18:35
pittigood night everyoen18:36
nijabazul: pinning wilth apt-get install -t will work just great.  thanks a lot18:36
zulnijaba: no problems18:37
ScottKnijaba: What won't work with the repository pinned down is pulling depends also from backports.18:44
nijabaScottK: sure, but for that particular, we don't have that req18:44
ScottKOK.18:45
nijabaScottK: but thanks for letting me know18:45
=== releaselogger is now known as apachelogger
sladensense: re: papercuts-ninjas, I think the way that it is normally done is by subscribing the team (think ubuntu-archive and such) rather than assigning the team18:56
sladensense: assigning the team means that the team will stop getting emails when somebody /on/ the team evetually subscribes themselves and makes it  In Progress18:57
=== apachelogger is now known as bloglogger
=== diwic_afk is now known as diwic
=== zyga_ is now known as zyga
Keybukpitti: so do you think that talk was ultimately interesting or useful?19:36
KeybukI hoped that by covering some of the design history, the reason for its differences for systemd would be apparent19:37
Keybukbut I'm not sure how successful I was at pulling that off19:37
mmoyais launchpad.net down?19:41
htorquemmoya, http://downforeveryoneorjustme.com/launchpad.net ;-)19:43
htorquemmoya, or simply: "no" :-)19:43
mmoyahtorque: je, ok, didn't know that site19:44
SpamapSKeybuk: after the talk, its clear to me why upstart was written, and why Ubuntu will continue to use it. Its not clear to me why systemd was created instead of just working on the state refactor.19:46
Keybukwell indeed19:46
Keybukthat's never been clear to me19:46
Keybukeven if you assume Copyright assignment19:46
SpamapSwhich is what I assumed before, but now it doesn't seem so obvious19:47
Keybukthe upstart-socket-bridge process (if Lenny believes that's the killer feature) could have always been a separate tarball19:47
Keybukupstart-udev-bridge is separate, after all19:47
SpamapSI also don't understand why service activation in the init daemon is all that key but thats probably because I'm a server kind of guy. ;)19:47
Keybukto be honest, I simply think Lennart wants to personally write his own OS19:47
Keybukit makes some amount of sense to have a single service supervisor19:48
Keybuksomething that can start things, stop things and keep things running19:48
Keybukso you may as well make it the init daemon19:48
SpamapSI like that part, I don't know about the network sockets being passed around bit.19:49
Keybukwell, in the design of upstart (and afaik systemd too) those are just separate services started by init19:49
Keybukwhich themselves tell init to start services19:49
Keybukso they're not "in the init daemon" - it's more that the init daemon is flexible enough to support people who want to do that19:49
SpamapSThat makes more sense then.19:50
SpamapSI like the idea of having one, small file that defines the reason and method for a service starting and stopping.19:50
SpamapSinstead of it being an init.d, or in inetd.conf , or xinetd.d .. or or or..19:51
Keybukyeah, that's kinda a difference between systemd and upstart19:51
Keybukupstart is all about "one file to define everything"19:51
Keybuksystemd is "one type of file to define one type of thing => lots of files to define *something*"19:51
SpamapSso, to answer your question, I do think that the history section was helpful to many of us who have only recently arrived or were not involved in the discussions..19:52
SpamapSBut the discussion of systemd was harmed, I think, by Lenny's emotional rants.19:53
Keybukultimately Lenny doesn't understand why I think upstart's design is better19:55
Keybukand therefore he'll never see the point19:55
Keybukand I have a strong suspicion that if it suddenly clicked with him19:55
Keybukand he realised why I like upstart's design19:55
Keybukhis reaction would be to go and write something like that into systemd19:55
Keybukand come back with "there, systemd does that too, now you can use systemd?!"19:55
mneptok12:48 < Keybuk> it makes some amount of sense to have a single service supervisor   <---- are you channeling my wife?!19:56
Keybukmneptok: not only that, but she was channelling me last time you two were in bed together19:57
SpamapS=-o19:57
mneptokKeybuk: explains my greater-than-usual arousal. and her moustache.19:57
highvoltageIf I understood what you were talking about I'd probably say "TMI".19:59
KeybukTMK is probably equally valid19:59
ebroderAbsintheSyringe: Did you see rickspencer3's blog post? (http://theravingrick.blogspot.com/2010/11/ubuntu-is-not-moving-to-rolling-release.html)20:18
AbsintheSyringeebroder, I haven't, I'll write my own post, it'll appear on planet debian, why this should be done20:22
AbsintheSyringeebroder, well this post explains term "press" :)20:23
AbsintheSyringeebroder, tnx for explain btw :)20:27
AbsintheSyringeclarification that is20:27
=== sebner_ is now known as sebner
=== bloglogger is now known as apachelogger
bdrungAbsintheSyringe: i was right. yeah :D21:37
ari-tczewSpamapS: around?21:40
SpamapSari-tczew: yes, whats up?21:51
ari-tczewSpamapS: did you reconsider SRU for bug 370994?21:52
ubottuLaunchpad bug 370994 in drupal6 (Ubuntu) "more info for the users needed" [Critical,Fix released] https://launchpad.net/bugs/37099421:52
SpamapSari-tczew: AFAICT its never been accepted21:54
SpamapSari-tczew: once its accepted for Lucid (I think the other two are pretty unlikely at this point) then we can certainly backport.21:54
SpamapSari-tczew: I'll bring it up at the next server team meeting.21:55
ari-tczewok thanks for your feedback SpamapS21:55
SpamapSari-tczew: btw, since drupal6 is universe, #ubuntu-motu may be a good place to ask.21:58
ari-tczewSpamapS: sure21:58
bdrungcjwatson: you broke my natty VM22:01
SpamapSbdrung: thats like the old TV commercial.. "you sunk my battleship!"22:02
bdrungSpamapS: 8 hours ago: "cjwatson lands >3 months of grub2 changes on Ubuntu at once and hopes that people's systems still boot"22:03
bdrungcjwatson: i end up in the grub terminal. what should i do to debug the issue?22:09
sebnerbdrung: thanks you very much! Just wanted to do an update! :D :D :D22:10
* sebner hugs bdrung 22:10
bdrung:)22:10
bdrungsebner: make an backup / snapshot and then try to upgrade grub. maybe you don't hit that bug22:11
SpamapSbdrung: no time like alpha1 for grub changes. ;)22:11
* sebner hides22:12
* sebner pokes cjwatson to fix the system of poor bdrung 22:12
sebnerwahhh22:13
* sebner just installed the grub update per accident xD22:13
bdrungsebner: then don't reboot. muhaha22:15
sebnerxD22:16
sebnerbdrung: https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/65778822:16
bdrungsebner: maybe the problem was triggered by removing the old kernel22:21
AbsintheSyringebdrung, yep you were :)22:24
sebnerbdrung: hmm I think I'm too lazy to downgrade grub. so hibernate for today :D22:31
bdrungsebner: hibernate? isn't suspend the right mode?22:32
bdrungcjwatson: i have one menu entry in /boot/grub/grub.cfg: Ubuntu, with Linux 2.6.37-6-generic22:33
sebnerbdrung: hmm, I neither use suspend to ram nor hibernate so I'm always mistaking them xD22:33
bdrungsebner: i am using suspend a lot on my desktop (because the bios takes too long to boot)22:34
sebnerbdrung: /here rebooting is actually faster than suspend to ram + extra time until wlan works again22:34
bdrungsebner: my bios takes ~ 30 secs till grub and then http://overbenny.wordpress.com/2010/04/03/ubuntu-10-04-lucid-lynx-boots-fast/22:35
sebnerbdrung: that's really epic fail xD22:39
bdrungsebner: gimme 400 bucks and i will replace the mainboard with as faster bios ;)22:40
sebnerbdrung: ask canonical instead, /me is a poor student :P22:42
bdrungsebner: me too :)22:42
cjwatsonbdrung: what happens if you say 'insmod normal' and then 'normal'?22:46
cjwatsonmight get better errors that way22:46
cjwatsonsebner: doubt it's the same as bug 65778822:47
ubottuLaunchpad bug 657788 in grub2 (Ubuntu Maverick) "grub minimal bash after first Maverick update" [Critical,New] https://launchpad.net/bugs/65778822:47
cjwatsondon't confuse symptom with cause :)22:47
bdrungcjwatson: error: unknown command 'lua'.22:48
bdrungsyntax error22:48
bdrungincorrect command22:49
cjwatsonhuh, interesting22:49
* cjwatson blames ebroder :-)22:49
ebroderWait we have lua now?22:49
cjwatsonI merged your branch, like I said22:49
ebroderOh, awesome22:49
cjwatsonprobably only temporary given Robert's comments though22:49
ebroder...except for the breaking bit :)22:49
cjwatsonI don't want to carry that divergence permanently, I just want to get moving on the boot graphics stuff22:49
cjwatson/boot/grub/lua.mod exists in my natty vm22:50
ebrodercjwatson: Yeah, sure. I was planning to try and create a "hwmatch" C-based command during my Thanksgiving time off that we could carry as a distro patch while we work out the best long-term approach with upstream22:50
cjwatsonbdrung: 'ls $prefix/lua.mod'22:51
ebroderIf there are objections to turning on Lua, then having the ugly C command at least avoids opening those floodgates22:51
cjwatsonindeed22:51
bdrungcjwatson: there is no lua.mod in (hd0,1)/boot/grub/22:52
cjwatsonbdrung: tell me about your disk layout22:52
bdrungcjwatson: (hd0,1) is the root partition mounted at /22:53
ebroderbdrung: Do you have a lua.mod in (hd0,1)/usr/lib/grub/i386-pc/?22:53
cjwatsonit's definitely in the package, both i386 and amd6422:53
bdrungebroder: yes, (hd0,1)/usr/lib/grub/i386-pc/lua.mod is there (i am on amd64)22:54
cjwatsonany problems during the upgrade?22:54
cjwatsonoh, I bet you have grub-pc/install_devices set to nothing22:55
bdrungno errors, but i don't know if there were any warnings22:55
cjwatsonyou should have had a debconf warning about that, though it will only warn once22:55
cjwatson(perhaps some time ago)22:56
cjwatsonthat will mean you're running an old grub with a new configuration file22:56
bdrungcjwatson: where do i find grub-pc/install_devices?22:56
cjwatsonin the debconf database22:56
cjwatsonso, slightly tedious but you can certainly boot this22:56
ebrodercjwatson: I thought I checked that the config will fallback gracefully in that case...22:56
cjwatson'set pager=1', 'cat /boot/grub/grub.cfg', page through until you find the menuentry block you want to boot, make a note of the commands, enter them all in sequence, then type 'boot'22:57
cjwatsonebroder: well, I had to modify your patch somewhat because it was syntactically invalid in at least two ways ... :-)22:57
cjwatsonebroder: so might want to try the version in the archive22:57
cjwatsonbdrung: once you've booted, 'sudo debconf-show grub-pc | grep install_devices'22:58
ebrodercjwatson: Oh, whoops. I'll take a look22:58
cjwatsonebroder: could be that whatever version of normal.mod bdrung has doesn't deal with missing commands very gracefully22:59
bdrungcjwatson: what's the alternative to specifying an UUID?22:59
cjwatsonit would be nice to know what version is actually installed22:59
cjwatsonbdrung: 'set root=(hd0,1)'22:59
cjwatsonit's probably there already, and if it is, just leave out the 'search' command22:59
cjwatsonI think  strings /boot/grub/normal.mod | grep '^1\.9'  should tell you what version of GRUB is installed (not very reliable of course but it works here)23:00
cjwatsonmaybe I'm going to have to start recording the installed version, and implementing thresholds for popping up the debconf warning again, or something23:06
cjwatsonhttp://paste.ubuntu.com/536085/ is the warning that should have been produced at some point in the past, if this is what I think it is23:07
ebrodercjwatson: Your code doesn't look interesting different from mine. I was using "if lua ..." so that we would handle the command not being there gracefully. If that doesn't work, maybe we can do an "if insmod lua; then lua ..."23:07
cjwatsonmm, perhaps23:07
cjwatsonrevisions 2068 and 2069 were my changes23:08
ebroderOof, that's embarrassing. I *swear* I fixed that missing fi at least twice. Anyway, I can investigate if insmod'ing a non-existant module gives a useful error code later this evening23:12
cjwatsonI think we need to know what normal.mod version bdrung has first23:12
bdrungcjwatson: mounting (hd0,1) on /root failed: no such file or directory23:15
bdrungwhat did i miss?23:15
ebroderbdrung: You need to set root=(hd0,1) for grub, but pass root=/dev/sda1 or whatever to the kernel23:15
cjwatsonyou put root=(hd0,1) in the 'linux' line ... what he said23:15
bdrungi put root=(hd0,1) in the 'linux' line23:16
ebroderRight. That needs to be /dev/sda1 (or whatever)23:16
bdrungnext try...23:16
* bdrung hates the us keyboard layout23:17
sebnercjwatson: so it might be safe to reboot for me?23:17
ebrodersebner: Definitely check to see if you have a /boot/grub/lua.mod first23:17
* sebner checks23:18
ionIt’s much, *much* better than the fi(nnish) layout.23:18
ionfwiw23:18
cjwatsonsebner: 'sudo debconf-show grub-pc | grep install_devices'23:18
cjwatsonif you actually have a reasonable setting there (it should have at least one disk device in it), you should be fine23:18
cjwatsonand almost everyone should23:18
bdrungion: but not if you have a german keyboard and have to guess where "=", "/", ... etc are23:19
sebnerebroder: it's there23:19
sebnercjwatson: yeah my harddrive is listed (1 line)23:19
sebnercjwatson: http://pastebin.com/3fyPZj6p23:19
sebnerbdrung: happens to me too all the time :D23:20
bdrungsebner: but i am used to neo2 layout...23:20
ionbdrung: It doesn’t take long to store them into muscle memory. At that point, you’ll notice programming anything or using the shell or using vim or whatever is a pain in the local layout where you need to do nasty altgr combinations to get special characters.23:20
sebnerbdrung: ok that's even worse then :D23:20
bdrungebroder: third try: it's /dev/vda1 not sda123:22
cjwatsonsebner: should be fine23:22
cjwatsonah.  I think there is a known bug about virtio devices not being listed in the install_devices select list23:22
sebner:)23:24
bdrungcjwatson: http://paste2.org/p/110820523:26
bdrungthat's the result of 'sudo debconf-show grub-pc | grep install_devices'23:27
cjwatsonright, so you were warned about this in the past according to that :)23:27
bdrungnice excuse :)23:28
cjwatsoneasiest fix for now at least is probably:  echo SET grub-pc/install_devices /dev/vda | sudo debconf-communicate; sudo grub-install /dev/vda23:28
cjwatsonand bug 604335 is the rest23:28
ubottuLaunchpad bug 604335 in grub2 (Ubuntu) "grub-pc.postinst script fails to detect virtio vda disk in KVM guest" [High,Triaged] https://launchpad.net/bugs/60433523:28
bdrungcjwatson: should i apply the fix or keep that version of my VM for testing bug fixes?23:30
ebroderbdrung: Before installing the new grub, can you find out what version of normal.mod you had?23:30
ebroder(If you haven't already)23:30
cjwatsonyes, what ebroder said23:30
cjwatsonaside from that you can go ahead and apply the fix23:30
cjwatsonas I said above:  strings /boot/grub/normal.mod | grep '^1\.9'23:30
bdrungebroder: 1.98-1ubuntu123:31
ebroderLooks like pre-release Lucid23:32
cjwatsonyes23:32
cjwatsonI'm surprised it's worked this long23:32
bdrungebroder: that's my devel release testing vm23:34
ebrodercjwatson: Well, when I get a chance, I'll grab that version and test with it. If we can make the new config file compatible, there's no reason not to23:37
cjwatsonyes, although it's really just papering over a problem, upstream definitely doesn't guarantee compatibility there23:38
RAOF@pilot on23:40
udevbot(pilot (in|out)) -- Set yourself an in or out of patch pilot.23:40
RAOF@pilot in23:40
=== udevbot changed the topic of #ubuntu-devel to: Archive: Open | Development of Ubuntu (not support, not app development) | #ubuntu for support and general discussion for dapper -> maverick | #ubuntu-app-devel for application development on Ubuntu | http://wiki.ubuntu.com/UbuntuDevelopment | See #ubuntu-bugs for http://wiki.ubuntu.com/HelpingWithBugs | Current Friendly Patch Pilots: RAOF
bdrungRAOF: my suggestion is to go to http://reports.qa.ubuntu.com/reports/sponsoring/ and start from the top if you want to process the request like a queue23:41
bdrungRAOF: do you know sponsor-patch?23:42
RAOFI do not, no.23:42
RAOFIt's in ubuntu-dev-tools?23:42
bdrungyes23:42
* RAOF checks it out.23:43
* bdrung should blog about it23:43
bdrungwhom can i blame if compiz/metacity doesn't work in my second vm?23:43
RAOFI'm surprised compiz works in your *first* VM :)23:45
ebroderbdrung: the metacity fallback doesn't seem to be working, but you can run metacity by hand23:45
ebroder(compiz crashes before it realizes that it doesn't work)23:46
bdrungebroder: why does the metacity fallback work in the first vm, but not in the second?23:46
ebroder that I can't help you with23:46
bdrungsecond question: what can i do when the mouse cursor stops moving in the VM?23:47
sebnerRAOF: compiz works on my productive machine without problems (well the upgrade was painful but dpkg --force-all ftw!)23:50
bdrungsebner: compiz in natty does not work correctly on my real hardware.23:51
sebnerbdrung: what's the problem?23:52
bdrungsebner: i can't enable extra effects (no wobby windows) and it hang if i want to shutdown the computer23:53
=== barry is now known as homersimpson
=== homersimpson is now known as barry
RAOFbdrung: That's probably fallout of the lack of settings migration; if you (a) kill your existing compiz settings with gconftool-2 --recursive-unset or (b) switch to the ini backend in ~/.config/compiz-1/compizconfig/defaults it should work.23:54
sebnerbdrung: well, I only use some minimal effects so I can't tell but I have the shutdown bug too23:55
bdrungRAOF: i'll try that next time i boot into it.23:55
sebnersimple-compiz-configurator is b0rken btw, seems not to be compatible with compiz 0.9.x23:55
bdrungsebner: i'll use the 'visual effects' tab in gnome-appearance-properties23:57
sebnerbdrung: right, stays at "None" (even though I have effects enabled)23:59

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!