/srv/irclogs.ubuntu.com/2011/04/09/#ubuntu-devel.txt

Amaranthvish: compiz --replace should be ok too, afaik that's the only default option we pass if you don't do any manually00:00
cjwatsonstgraber: plymouth batches up everything it sees on the console and copies it to boot.log.  In your case, it sounds like plymouth-upstart-bridge isn't writing them to the console for some reason?00:01
cjwatsonstgraber: it might depend on when p-u-b (hey, good acronym, I never thought of that ...) gets started; it can't start until dbus is up00:02
cjwatsonstgraber: might be worth passing --verbose as a kernel parameter and looking at upstart output, though if you're doing that it might be easiest to use a serial console so that you can capture the output00:03
SpamapSUgggh.. -rw-r--r-- 1 root root 0 2011-04-07 10:01 /usr/lib/pymodules/python2.7/bzrlib/__init__.py00:32
slangasekugh?00:33
directhexslangasek: 0 bytes?00:34
SpamapSmy natty updates yesterday crashed in the middle of update-initramfs .. (ubuntuone-syncdaemon was eating RAM like the fat guy on the meaning of life)...00:34
slangasekthere are various reasons for a 0 byte __init__.py file to be used00:35
SpamapSbzr won't work.. network manager applet is borked..00:35
SpamapSthings are screwed. :-P00:35
SpamapS[ ] this close to reinstall. :(00:35
slangasekthough I don't recall /usr/lib/pymodules being a standard path00:35
slangasekand I don't have that path at all here, hmm00:35
SpamapSslangasek: thats supposed to be a symlink00:36
slangasekis it?00:36
SpamapSyes, all the other ones in those dirs are symlinks00:37
SpamapShmmm.. is python-support not cleaning up after itself?00:42
SpamapSit claims to own /usr/lib/pymodules00:42
SpamapSwhen I removed /usr/lib/pymodules/python2.7/bzrlib ... bzr started working again.00:42
SpamapSSo..00:45
SpamapSthere may be a problem when people switch modules to dh_python2 from python-support00:45
slangasekit might be related to your crash, in fact00:45
SpamapSSeems the dirs are left behind in /usr/lib/pymodules ..00:45
SpamapSbut won't be updated00:45
slangasekbecause I didn't have /usr/lib/pymodules/python2.7/bzrlib here, which is why I was wondering what you were talking about :)00:45
SpamapSslangasek: well anything that uses python-support will dump symlinks and .pyc files in there..00:46
SpamapSslangasek: I have > 100 dirs in there00:46
slangaseksure - but for me, bzrlib did *not* leave files behind when switching00:46
slangasekmost of those others are, I suspect, from packages still using python-support00:46
SpamapSdh_python2 *does* remove pycentral bits..00:47
SpamapSslangasek: yeah again.. probably related to my broken upgrade00:48
SpamapSthe prerm does make an attempt to take care of this.. haven't looked at the pre-dh_python2 prerm ..00:49
=== dendrobates is now known as dendro-afk
=== dendro-afk is now known as dendrobates
=== asac_ is now known as asac
psusicjwatson, this is so goofy.  that partman hang from those new scripts seems to be because umount is failing to unmount my windows partition.  umount fails because it looks like there is a bug in umount where it is passing the device name to the kernel umount() instead of translating it to the mount point.  It seems there are two causes of this: 1) ntfs-3g canonicalizes the /dev/mapper/ name to /dev/dm-n, and trying to umount the /dev/dm-02:46
psusin name fails as well it seems because umount is interpreting the - in some odd way as not part of the device name02:46
psusiso this looks like 3 bugs for the price of one... guess I need to file a new bug on ntfs-3g and one on mount02:48
* psusi hugs qemu-kvm02:51
ScottKSpamapS: python-support rebuilds it's symlink farm after package updates, so an interrupted upgrade could explain what you saw (design 'limitation' in python-support)04:34
dobeykees: hey, still around?04:50
dobeykees: https://code.launchpad.net/~dobey/ubuntu/natty/banshee/fix-and-amz/+merge/57041 is against 2.0.0 if you could sponsor it real quick when you see this. thanks again. i gotta go now though. cheers.04:54
=== dendrobates is now known as dendro-afk
=== debfx_ is now known as debfx
=== yofel_ is now known as yofel
mantienaHello all09:40
tjaaltonslangasek: oops, sorry about libx11 :/10:43
chrisccoulsondoko_ - thanks for the binutils upload13:09
doko_chrisccoulson: np13:17
=== dendro-afk is now known as dendrobates
abhinav-what data is indexed by mandb ?14:08
StevenKManual pages14:10
abhinav-StevenK: so it stores the whole man page or a certain portion of it ?14:12
StevenKabhinav-: It indexes it for searching.14:15
StevenKThe manual page itself is already stored on the filesystem.14:16
cjwatsonabhinav-: there's a description of what it indexes in lexgrog(1)14:20
cjwatson(the WHATIS PARSING section)14:20
cjwatsonabhinav-: why?14:21
abhinav-cjwatson: thanks. I have applied for a GSoC project for NetBSD. The task is to create a full text search tool for searching manual pages :)14:22
cjwatsonabhinav-: I didn't know NetBSD used man-db14:23
abhinav-cjwatson: no it doesn't. they have asked to look for existing tools which index man pages, and explain why I should do it from scratch14:24
cjwatsonabhinav-: I've thought about doing such a thing in man-db, but so far I've concluded it may not be worth the time investment, since on my system 'man -K' can do a brute-force search of all manual pages in under a minute14:24
cjwatson(it's implemented fairly efficiently)14:24
cjwatsonwell, efficiently as brute-force searches go14:25
abhinav-cjwatson: but it will search only the name section ?14:25
cjwatson-k searches the name section, -K searches the whole text14:25
abhinav-oh14:25
cjwatsonif anyone wants to do a full-text index in man-db, it should probably be based on an existing widely deployed engine, probably xapian14:26
cjwatsonand probably ought to put effort into things like matching rendered text rather than the groff input14:26
abhinav-yes xapian is a good choice.  they are more inclined to using sqlite's FTS module.14:27
cjwatsonman-db is GPLv3, though, so I expect NetBSD won't want it ;-)14:27
abhinav-yes :)14:27
cjwatson(and I don't want to relicense)14:27
abhinav-yes, I will just mention it as part of my case study :)14:28
cjwatsonbut, yeah, consider how much effort it's worth, given the relatively small amount of data compared to the power of even reasonably modern systems14:28
cjwatsonman-db's 'man -K' gains a lot even just from doing its own decompression and searching rather than execing external programs for that14:29
cjwatsonI'm interested in whatever you come up with, though14:30
abhinav-oh yes, that's a good insight. I did try indexing in sqlite database, and  tried some search queries, results weren't very encouraging14:30
abhinav-cjwatson: thanks :)14:30
=== c2tarun_ is now known as c2tarun
=== Claudinux_ is now known as Claudinux
=== doko_ is now known as doko
j1mchi all - it seems like unity ui changes are still landing. is that correct?17:43
debfxScottK: could you please approve bug #75566118:16
ubottuLaunchpad bug 755661 in lucid-backports "Please backport dh-autoreconf" [Undecided,New] https://launchpad.net/bugs/75566118:16
directhexyay dh-autoreconf18:17
* ScottK looks18:26
ScottKdebfx: Done.18:27
debfxthanks18:27
=== DreamThi1f is now known as DreamThief
AnAntHello, I am working on a derivative distro, is it possible to change the default session from Unity to Gnome classic ?20:00
directhexin a deriv? sure.20:00
ionyes20:00
AnAntdirecthex: how ?20:02
AnAntthrough a config file ? a gconf setting ?20:03
directhexAnAnt, presumably through a session file, pointed at by gdm20:07
AnAnt?20:10
slangasektjaalton: it's ok, it's clearly my fault for not getting the change committed to the branch :)20:20
AnAntdirecthex: could you explain further ?20:22
directhexreasonably sure just dropping a "default.desktop" symlink in /usr/share/xsessions is enough. but it's WAY out of my usual area of expertise.20:24
AnAntthanks20:29

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