/srv/irclogs.ubuntu.com/2008/07/03/#ubuntu-devel.txt

slangasekogra: there are occasionally alphas being offered on the debian-alpha mailing list that are located much closer to you :)00:01
ograyeah, i'm not running after one, if i stumble over it i'll take it ...00:01
ograbut alpha is defiately one i want in the collection :)00:01
slangasekanyway, if you want one that /runs/, the one I'm using as a doorstop doesn't qualify00:03
slangasekit's my spare parts chassis00:03
liwogra, my local favorite computer store has no less than three alphas on their list... I don't know what shipping from Finland would cost, but if you want one, it might be possible to arrange it00:03
slangasekbut for fun, I could bring it with me as a checked luggage item to London00:03
slangasekthrough Heathrow00:03
slangasekno-fee computer recycling, just take it to Heathrow and let them lose it00:04
ograslangasek, i wont be in london :(00:04
slangasekoh, right00:04
slangasekwell then I could make kees take it ;)00:04
* ogra is already missing everyone00:04
keeseek.00:05
keesI bet I have suitcase big enough, it just needs to be under 50lbs00:05
slangasek:-)00:06
slangasekwhy use a suitcase, that takes all the fun out of it00:06
slangasekjust use one of the luggage-baling machines at the airport00:06
keesooh, this is reaaaly good.  intrepid chroot: quilt ok.  my intrepid host: quilt freaky00:06
ograits a hardware issue :P00:07
keesheh00:07
* TheMuso had an alpha for a while, but it died a slow death.00:10
pochudoko: ok, so let's keep with the current solution. thanks for the info00:11
slangaseksuperm1: I see that we have a pending mythbuntu-control-centre SRU that appears to account for most of the on-ISO delta between the 8.04.1 test images and the -updates pocket00:59
slangaseksuperm1: can we finalize this SRU today?00:59
slangaseksuperm1, Daviey: oh, speaking of which, those alternate images are at http://cdimage.ubuntu.com/mythbuntu/hardy/daily/current/ :)01:00
slangasekTheMuso: there are a couple of ubuntustudio-related SRUs to finish as well; #175536 and #221382, do you have time to follow up on these or is there someone else you can prod about them?01:19
slangaseksuperm1: also bug #220087, an SRU for mythplugins, needs to be closed out01:20
ubottuLaunchpad bug 220087 in mythplugins "Some mythplugins packages fail to configure if /var/lib/mythtv NFS mounted" [Undecided,Fix committed] https://launchpad.net/bugs/22008701:20
TheMusoslangasek: I'll have a look at them now.01:36
slangaseklaga: have any tests been done to confirm that the mythbuntu-control-centre in the archive fixes bug #221921?02:04
ubottuLaunchpad bug 221921 in mythbuntu-control-centre "SRU: progress bar oddities break creation of diskless clients" [Undecided,Fix committed] https://launchpad.net/bugs/22192102:04
=== macd_ is now known as macd
=== asac_ is now known as asac
=== lamont` is now known as lamont
=== pwnguin_ is now known as pwnguin
dholbachgood morning05:42
dholbachbdmurray: could you figure out which patch of thekorn fixed the problem?05:42
dholbachat http://people.ubuntu.com/~dholbach/sponsoring/ I pull from .main, but it's not working :-/05:43
ion_Hi05:44
bdmurraydholbach: what revno are you on now?05:45
dholbach10705:45
bdmurrayand with which branch does it work?05:46
dholbachI don't know - it works with the package in PPA, thekorn mentioned "intrepid.merge"05:47
dholbachI'm not on top of things in pylpbugs land05:47
bdmurraywell, we merged intrepid.merge with .main today so that's why I'm confused05:47
dholbachhmhmhm05:48
bdmurrayand printing bug.summary with rev 107 works for me05:48
dholbachok, let me try to run the script again05:49
bdmurrayokay, let me know05:49
* dholbach hugs bdmurray05:50
dholbachah, different crash05:51
bdmurraythat's interesting05:52
dholbach    for bug in BugList(link):05:52
dholbach  File "/home/dholbach/public_html/sponsoring/launchpadbugs/connector.py", line 117, in __call__05:52
dholbach    progress_hook=self.__progress_hook)05:52
dholbachTypeError: set() does not take keyword arguments05:52
dholbachmaybe it's a python2.4 vs python2.5 thing?05:54
dholbachrookery still has 2.405:54
bdmurrayoh, right05:54
bdmurrayit doesn't look like it05:55
dholbachno, I'm having the same problem with 2.5 too05:56
bdmurraywell, thats good05:57
bdmurraycan you pastebin the code again?05:57
dholbachif you  bzr branch http://people.ubuntu.com/~dholbach/sponsoring/  you have an example05:57
dholbachpython2.4 seems to have a different error than python2.5 has05:58
dholbachI can pester thekorn about it too, if you like :)05:58
bdmurrayit is late here but I'll give it a shot05:59
dholbachdon't worry - I'll pester thekorn about it06:00
* dholbach hugs bdmurray06:00
cody-somervilleCan someone please process this merge request? :)06:31
cody-somervillehttps://code.edge.launchpad.net/~xubuntu-dev/ubuntu-seeds/xubuntu.intrepid/+merge/40506:31
pittiGood morning06:53
dholbachhi pitti06:53
pittikees: libapparmor-perl> just a MIR bug is fine06:54
pittikees: oh, right, what cjwatson says; binary-only promotion is fine06:55
Hobbseehey pitti!06:57
tjaaltonhi, could someone help with sed.. I need to change 's%.*/%%' to match "until the second /", not last07:11
slangaseks%[^/]/%% ?07:12
slangaseksorry, s%[^/]*/%%07:12
pittitjaalton: [^/]*/[^/]*/07:12
slangasekoh, second one, then probably pitti's07:12
pittitjaalton: erm, without the final /, sorry07:13
pittitjaalton: anyway, [^/] means "any character except /"07:13
slangasekalso, that fails in the case that there are no / in the string, if that's an issue07:13
tjaaltonthanks! 's%[^/]*/[^/]*/%%' works07:13
pittitjaalton: if you need "at most two", you need to enclose the second one in ()?07:14
tjaaltonmesa configure.ac is buggy btw ;)07:14
tjaaltonsince I wanted to have --libdir=/usr/lib/foo, and it would use /usr/foo07:15
slangasekcurious07:15
tjaaltonok, then if I had /foo, the result should be foo07:17
dholbachthat reminds me of http://regex.info/blog/2006-09-15/247 :)07:18
=== tkamppeter_ is now known as tkamppeter
tkamppeterAny Python library expert here?07:20
tkamppeterI am packaging the new system-config-printer and it contains a Pythong library for general use now.07:21
tjaaltondholbach: indeed :)07:21
ScottKpitti: Is what I have in Bug #245096 sufficient for the removal?07:22
ubottuLaunchpad bug 245096 in amavisd-new-milter "Please remove amavisd-new-milter source package" [Medium,Confirmed] https://launchpad.net/bugs/24509607:22
tkamppeterIt puts .py files into /usr/lib/python2.5/site-packages/cupshelpers/07:22
tkamppeterSo I add a rule to the debian/rules file to execute "dh_pysupport -ppython-cupshelpers /usr/lib/python*/*/cupshelpers/"07:23
tkamppeterAnd let these files go into a package named python-cupshelpers07:24
tkamppeterProblem is now that the byte-compiler complains about07:24
tkamppeterfrom .cupshelpers import parseDeviceID07:24
tkamppeterand07:24
tkamppeterfrom . import _debugprint07:25
tkamppeterin the .py files when I install python-cupshelpers07:25
tkamppeterIt says "Syntax error" on these.07:26
tkamppeterRunning system-config-printer with these files works.07:26
dholbachhi mvo07:27
pittitkamppeter: nice, you are packaging the cupshelpers?07:28
tkamppeterpitti, I am doing so as they are part of the source tarball of system-config-printer07:28
tkamppeterSo python-cupshelpers is a binary package created from the source package s-c-p.07:29
pittitkamppeter: I had a look at it last week, works nicely07:29
pittitkamppeter: why the path for dh_pysupport?07:30
tkamppeterPerhaps Tim Waugh is not much familiar with the Python library policy of Debian07:30
pittitkamppeter: it shuold just work with no arguments07:30
pittitkamppeter: he shouldn't need to know about it07:30
tkamppeterpitti, does dh_pysupport find /usr/lib/python*/*/PACKAGE by itself? It is not documented in the man page.07:31
pittitkamppeter: it's supposed to, at least07:31
ScottKtkamppeter: Generally it does.07:31
tkamppeterpitti. Can it be that07:31
tkamppeterfrom .cupshelpers import parseDeviceID07:31
* ScottK notices the time and heads to bed.07:31
tkamppeterand07:31
ScottKGood night all.07:31
pittiI'm not sure, dh_py{centrla,support} is still somewhat black magic to me07:31
tkamppeterfrom . import _debugprint07:31
pittiScottK: looking at your bug07:31
StevenKpitti: Only somewhat?07:31
tkamppeteris something new of Python 2.5?07:32
ScottKpitti: I'll wait up then.07:32
pittiScottK: looks obvious to me07:32
ScottKpitti: OK.  It seemed so to me, but thought I'd make sure.07:32
ScottKIt's late and I'm tired, so who knows how well I'm thinking.07:32
pittiScottK: I'll remove and update the bug07:33
tkamppeterThe mentioned error mentions also Python 2.4, and the default Python under which s-c-p is running is 2.5.07:33
ScottKpitti: Thanks.  And thanks for getting libmilter promoted quickly so this particular problem could go away.07:33
tkamppeterIs there a way to run dh_pysupport with Python 2.4 excluded?07:33
ScottKtkamppeter: Yes.  If you were using pycentral you could set XS/XB-Python-Versions:current07:34
ScottKYou can do it in pysupport too, but it's not obvious. You use pyversions and set it to 2.5 there.07:35
mvodholbach: hello!07:35
ScottKOf course it's 2:35AM here, so I could be completely full of it.07:35
dholbachhi thekorn07:35
ScottKGood night.07:36
tkamppeterSo pycentral and pysupport are two different programs for the same task, like vi and emacs?07:36
thekorndholbach, hi07:36
tkamppeterScottK, How do I use "pyversions"?07:37
ScottKtkamppeter: As I said, I'm headed to bed, but it's just another file in debian.  As compat may have '5' in it, make pyverssion with '2.5' in it.07:37
* ScottK really going to bed now.07:37
slytherinany archive admins around?07:39
Hobbseeslytherin: -v07:44
Hobbseeslytherin: (there are always some here, but may not be watchnig the screen)07:44
persiaAlso, they tend to be more likely to respond when asked a specific question :)07:44
slytherinA package needs to be moved to multiverse. A bug was fixed recently which added build dep on sun jdk. bug 18912507:45
ubottuLaunchpad bug 189125 in xmlgraphics-commons "Missing classes due to building without com.sun.image.codec.jpeg.JPEGCodec" [Undecided,Fix released] https://launchpad.net/bugs/18912507:45
slytherinHobbsee: ^^07:48
Hobbseepitti: do you want to demote that without a bug, or?07:49
Hobbsee(it's fallen into depwait)07:50
pittixmlgraphics-commons?07:51
Hobbseeyes07:51
slytherinI was going to file bug. But geser suggested yesterday to just bug some archive admin. :-)07:52
pittihm, it's in Debian contrib07:53
pittimoved07:53
slytherinpitti: thanks.07:54
tjaalton... how to make autoreconf not to strip []'s from the sed script?-)07:55
=== _nightwish is now known as nightwish
slangasektjaalton: hard to say without context, but [ is a magic character in the m4 language used for autoconf preprocessing08:08
slangasektjaalton: so [[] []], I think?08:08
slangasek(or maybe just the first)08:08
tjaaltonslangasek: thanks, I'll try that08:11
tkamppeterpitti, ScottK, thank you very much, now my first Python library package works.08:15
pittitkamppeter: \o/08:16
pittitkamppeter: fun, today I was just going to ask you about packaging cupshelpers :)08:16
pittitkamppeter: (since I need it for integrating it into jockey for printer driver management)08:16
tkamppeterpitti, it is nearly ready to upload, one quick test and I will dput it08:21
tjaaltonslangasek: adding both of them worked :)08:22
slangasekcool08:22
tkamppeterpitti, "lintian python-cupshelpers*.deb" says08:25
tkamppeterW: python-cupshelpers: old-versioned-python-dependency depends: python (<< 2.6)08:25
tkamppeterbut on my up-to-date (as of yesterday) intrepid there is only Python 2.5.08:26
tkamppeterIs Debian already on 2.608:26
slangasekhaha, good one ;)08:28
slangasekwhat does lintian -i give as an explanation?08:28
tkamppeterlintian tells that if the package requires a ceratin Python version that I have to add a Python-Version control field.08:30
tkamppeterWhat is a Python-Version control field08:30
tkamppeterI have08:30
tkamppeterXS-Python-Version: current08:30
tkamppeterin debian/control.08:30
slangasekis the python (<< 2.6) written verbatim in debian/control?08:31
tkamppeterAnd in general, my package should work with any Python of version 2.5 or higher, it does not work with 2.4 or lower.08:31
tkamppeterslangasek, no, it is inserted by dh_pysupport.08:32
slangasekok, I have no idea what that lintian warning means then.08:32
dholbachbdmurray: thekorn fixed it in .main!!! :)08:41
tkamppeterslangasek, thanks, I will leave it alone for now. For Intrepid it works09:03
tkamppeterpitti, new s-c-p with python-cupshelpers is on the way to the archive...09:11
pittitkamppeter: nice, thanks! it'll land in binary NEW, I'll have a look at it09:11
cjwatsoncody-somerville: pulled, sorry for the delay09:27
MacSlowwhere's the upstream of libpam?09:32
jengelhkernel.org09:33
MacSlowjengelh, taking a look... thanks!09:34
nightwishhi! is anyone of the kernel team available? i'd like to know wether and when bug #199934 will be fixed. a working patch is already attached, and i think the icp vortex support is still critical for many people running ubuntu on servers...09:34
ubottuLaunchpad bug 199934 in linux-meta "Kernel Panic, in gdth (RAID) driver on reboot" [Undecided,Confirmed] https://launchpad.net/bugs/19993409:34
jengelhi think this got fixed in 2.6.2509:35
nightwishyes, correct. however, i doubt we'll get 2.6.25 in 8.0409:36
jengelhwhat a pity :p09:36
nightwishindeed. this means if i want to stay with lts, i will either have to build my own kernels until the next lts arrives or will have to revert back to 6.06? or is there any chance to get that patch included in the 8.04 kernel somewhen?09:39
* jengelh happily runs a distro with 2.6.25 by default.09:39
=== asac__ is now known as asac
james_wnightwish: there's a -kernel channel09:41
nightwishah09:42
nightwishok09:42
MacSlowI assume there are no plans to move to libpam 1.x fore Intrepid, right?09:42
pittiMacSlow: anything is possible in intrepid at this stage09:44
MacSlowpitti, ok... atm I've trouble getting upstream gdm compiled as it is using a struct form libpam, which is only part of the newer libpam-1.x09:45
mvopitti: I updated the package-groups-discssion document, I think its good for sending now09:46
tkamppeterpitti, I have a problem with using my new python-cupshelpers now09:49
tkamppeterAfter installing it I have09:49
ograpitti, do you know any replacement for time-admin ? seems to be the only g-s-t app we use in mobile09:49
* ogra wouldnt like to see g-s-t persist just for that09:50
seb128ogra: do you use gnome-panel there?09:50
pittiogra: the gnome panel already handles that nowadays, AFAIUI?09:50
ograseb128, we might in the future09:50
MacSlowpitti, to be more precise the new sturct was introduced with libpam-0.99.10.009:51
ogranono, we need something that sets timezone on system level and the like09:51
tkamppeterls /var/lib/python-support/python2.5/cupshelpers/09:51
tkamppetercupshelpers.py   __init__.py   openprinting.py   ppds.py09:51
tkamppetercupshelpers.pyc  __init__.pyc  openprinting.pyc  ppds.pyc09:51
ogradoes the panel go that deep down ?09:51
seb128ogra: gnome-panel uses policykit to set the system timezone09:51
ograoh, cool09:51
pittiseb128: hm, it looks like "set date/time" actually just calls time-admin?09:52
pittiyep, it does09:52
tkamppeterpitti, now I want to use functions in cupshelpers.py and in ppds.py09:52
ograin hardy for sure09:52
tkamppeterI do09:52
pittiright, on hardy09:52
* ogra doesnt have any intrepid and likely wont before the sprint09:52
pittitkamppeter: after installing the package, "import cupshelpers" should work09:52
seb128pitti: yes, we changed before hardy to use this one because the gnome-panel had no ntp sync option and quite some users complained09:52
tkamppeterimport cupshelpers09:52
seb128pitti: should be fixed this cycle09:52
pittiseb128: aah, nice09:52
tkamppeterand it does not find the functions in ppds.py09:53
tkamppeterpitti, __init__.py contains "import ppds"09:53
ograseb128, right, ntp is essential on UME09:54
pittitkamppeter: "import ppds" in __init__.py doesn't make sense09:56
pittitkamppeter: (AFAIK)09:56
pittitkamppeter: you need to explicitly "import cupshelpers.ppds"09:56
tkamppeterpitti, so there is perhaps a problem in the upstream code?09:56
pittiin the program where you want to use it09:56
pittitkamppeter: well, I might misunderstand __init__.py's special magic09:56
tkamppeter"import cupshelpers.ppds" does not work, too. Same error.09:59
tkamppeterpitti, how does a multiple-file Python library work? Is "import cupshelpers" running __init__.py in the cupshelpers directory or is it running cupshelpers.py whereever it finds a file with this name?10:01
tkamppeterpitti, I have found the solution:10:06
tkamppeter"import cupshelper" is enough, but all function calls "ppd. ..." have to be changed to "cupshelpers.ppd. ...".10:07
tkamppeterpitti, is this normal or should something need to be changed in the upstream code?10:08
=== quassel251 is now known as smarter
pittitkamppeter: this sounds pretty normal10:11
slangasekok wtf; as if thunderstorms in western oregon aren't weird enough, now we're getting hail too?10:11
pittitkamppeter: ah, so the import in __init__.py makes "import cupshelpers" suffice10:11
pittiinstead of "import cupshelpers.ppd"10:11
bigoninfinity, still not around?10:17
ograslangasek, you did a lot in grub in the past, do you have any idea if we can switch to grub2 in intrepid ?10:20
slangasekogra: the things I've done in grub don't qualify me to have an opinion on that; what I know from the Debian side is that lenny, which is due in the same timeframe, doesn't look like it will use grub2 by default10:21
ograthe mobile team is just discussing merges and there is one grub merge thats not in ubuntu .... grub2 would make that obsolete10:21
slangasek(the grub maintainers wanted this, but it doesn't appear to have coalesced yet)10:21
ograwell, i remember we discussed it pre release, but dont remember the outcome ...10:21
=== dholbach_ is now known as dholbach
slangasekI think we last discussed it at UDS Boston10:22
ograapart from that "fast-resume" sounds like a patch ubuntu might like to have as well :)10:22
ograso we could probably just merge it in general and not have it as separate mobile patch10:23
slangasekhmm?10:25
ograthere is a patch thats called fast-resume thats only used on lpia atm10:26
ograpreferably those mobile patches should go into te main ap where possible so the mobile team doesnt have to carry all that ... there are way to many custom changes in mobile so each oe that can go to the normal package counts :)10:27
=== puzzle is now known as ecanto
Keybukslangasek: are there any known 8.04.1 issues?10:40
slangasekKeybuk: care to limit the scope of that query any? :)10:40
Keybukslangasek: I'm running hardy+proposed+updates and in the last week or so, my machine is behaving very strangely10:40
Keybukrandom hangs, failing to launch apps, etc.10:40
slangasekhrm10:41
slangasekno, I haven't heard of anything like that10:41
KeybukJul  2 14:24:25 quest kernel: [68849.261370] gnome-terminal[6744] general protection rip:7fe5d7305f58 rsp:7fffe2253460 error:010:41
ograuuuh10:41
Keybukseeing lots of things like that in dmesg10:41
slangasekwell, the kernel itself hasn't been updated in the past week, that I recall10:42
slangasekonly lrm10:42
slangasekand that just to drop a pre-built driver10:43
cjwatsonKeybuk: have you attempted to rule out hardware trouble?10:43
cjwatsonparticularly if the set of things that's failing does not seem especially consistent10:43
=== asac_ is now known as asac
Keybukcjwatson: not yet, it's hard to rule out10:44
Keybukbut it strikes me as suspicious10:44
Keybukit was about  week ago I installed linux-image-2.6.24-19.3410:45
persiaKeybuk: Downgrade and see if it goes away?10:46
Keybukpersia: that's what I'm just doing10:46
cjwatsoncertainly wouldn't hurt to compare your hardware against the set of things changed in that kernel10:47
Keybukcjwatson: there were a few hits of that10:48
KeybukI'm pretty sure I saw an updated nvidia driver10:50
Keybukwhich would usually be the first thing I'd blame10:50
Keybukok, rebooting to downgrade11:00
Keybuknot for the fortieth time, I wish that session management worked properly ;)11:02
StevenKKeybuk: Four-hundredth, perhaps? :-)11:03
KeybukStevenK: I don't reboot that often11:03
Keybukwhich is why having to reboot several times this last week has been such a trauma ;)11:04
MacSlowDoes someone know if Jamie Strandboge is around here?11:05
StevenKKeybuk: Haha11:05
pittiMacSlow: jdstrand, but unlikely to be awake at this hour11:05
pittiStevenK: I certainly cursed broken session management that often :)11:06
MacSlowpitti, ah ok... well I've issues getting Linux-PAM (upstream and the 1.0.1 release compiled)11:06
StevenKNote to self: Storing a backup in /tmp and then rebooting did not work as planned.11:06
pittiStevenK: undelete /tmp/* ... oh, wait11:06
MacSlowpitti, I'm just looking for somebody who's a bit experienced with pam and related things to help me get it to compile11:06
pittiMacSlow: jdstrand and slangasek are your best bets, I think; but particularly for slangasek, you shuold rather mail him instead of IRC11:07
MacSlowpitti, btw... I also contacted one of the upstream devs, but don't know how fast they will responsd11:07
StevenKpitti: Meh, it's just a backup, I'll just wait for the cron job I wrote. :-)11:08
slangasekMacSlow: why are you trying to compile 1.0.1? :/11:12
MacSlowslangasek, oh... ehm email is just on it's way.11:14
MacSlowslangasek, well... I need it because of the new gdm11:14
slangasekum11:14
MacSlowslangasek, it uses a new struct from PAM introduced with Linux-PAM 0.99.10.011:15
MacSlowslangasek, it's the pam_xauth_data structure11:15
MacSlowslangasek, in Linux-PAM it was added december last year... in gdm the use of this new Linux-PAM feature was added just last week :/11:16
slangasekwell, merging such a critical security lib straight to the new upstream without some inspection of the changes is... imprudent11:16
slangasekI intend to get pam updated for the intrepid cycle, but yeesh at upstreams depending on non-portable features of Linux-PAM 0.99.10 and above11:17
MacSlowslangasek, I feared something like that... and always ask myself why such things have to happen to me :/11:17
* ogra wonders how that will affect remote commections again ... 11:17
ograit took me nearly a month to get xauth right for everything in ltsp ...11:17
slangasekI guess that means GNOME doesn't care so much about Solaris anymore? :)11:18
ograi hope they dont break backwards compatibility11:18
* MacSlow is so "happy" to have to show something working next week11:18
MacSlowatm my best idea to get "around" this it to revert that gdm-patch and use an older version11:18
ograbut pam is woven into many many things in the distro ... updating that ill be a major task for all teams from server to mobile11:18
Ngslangasek: does anyone? ;)11:19
* MacSlow feels that something in this universe hates him11:19
slangasekMacSlow: unless the xauth feature is relevant to what you're showing, I would strongly recommend selectively backing out that upstream change rather than fighting to build PAM and then fighting to understand why your whole authentication system has subtly changed11:19
MacSlowslangasek, ogra: well your comments are indication enough for me to not try to push for this just yet11:20
slangasekMacSlow: I mean, if you really *want* to be my guinea pig for testing the new upstream version with the Debian/Ubuntu patch set, be my guest ;)11:20
MacSlowslangasek, no way... I've far too little experience with such security-related libraries and tools to be wanting this battle11:20
slangasekogra: not to worry, I have a great martyr complex and am happy to bear the task of updating PAM on my own ;-)11:21
ograMacSlow, it doesnt need to be a bad thing .... i for one would appreciate if i could drop my xauth handling in lts *if* pam_xauth_* would handle remote auth data properly11:21
ograi just say it wont be a small transition and affect all teams :)11:21
ogra*ltsp11:22
slangasekhah, that pam_xauth thing is the thing that I objected to as being bad design when they committed it upstream, isn't it :P11:22
ograheh11:22
slangasekand unfortunately I lacked the time to follow through, so now we're saddled with unnecessary vendor divergence from the PAM spec, ohwell11:22
MacSlowslangasek, ogra: thanks for the insight sofar... I'm fine with reverting to an older gdm11:23
* slangasek waves buh-bye to east Portland as the storm knocks it off the network11:26
* ogra still waits for the announced one in germany to approach11:29
slangasekMacSlow: btw, your build failure appears to be because you're building with -DDEBUG; I don't think you want to do that anyway...11:31
MacSlowslangasek, I explicitly added --disable-debug to configure... so I'm surprised it still does define DEBUG11:32
slangasekright, well, I guess that just confirms that you don't want to be touching this without proper protective clothing :)11:33
pittioh, nice: https://code.edge.launchpad.net/~nderkach/apport/opensuse11:35
MacSlowslangasek, the cheap solution is of course to comment out that particular line11:38
cjwatsonpitti: re yesterday's conversation about libelf, demoting libelf means that bug-buddy is uninstallable in intrepid, which is pretty inconvenient. Could I promote it back and file a targeted bug instead?11:59
pitticjwatson: works for me12:01
cjwatsondone12:05
=== emgent_ is now known as emgent
lagaslangasek: i asked people to test #221921 but nobody bothered :( i'll ask again later12:50
=== davmor2 is now known as davmor2_dinner
zulmorning13:04
emgenthi zul :)13:08
zulhi emgent13:09
=== LucidFox_ is now known as LucidFox
=== evand_ is now known as evand
=== davmor2_dinner is now known as davmor2
=== sommer_ is now known as sommer
Riddellkees: what did you make of libzip?14:24
tedgRiddell: I can't imagine that kees is awake yet, it's 630 his time.14:32
tjaaltonis it valid to upload -0build1?14:44
ion_There has been a -0 uploaded?14:44
tjaaltonno14:44
tjaaltonI mean that it would then sync with -1 automatically14:45
tjaaltonmaybe I'll just do -0ubuntu1..14:45
sistpoty|worktjaalton: not right now (since past DIF), but iirc in theory yes14:45
tjaaltonsistpoty|work: right, good point14:45
gesertjaalton: are you sure that debian will contain all changes you did to the package?14:46
tjaaltongeser: there are no changes. it's the same as current -1 candidate14:47
tjaaltonso if -1 will end up with more changes it wouldn't matter14:47
geserah, then it should be ok to upload as -0build114:47
tjaaltonbut since I don't expect these to hit unstable before intrepid is close to being released it doesn't matter14:48
tjaaltonbut.. just curious :)14:49
gesertjaalton: but as you need to file a sync request either way it doesn't really matter if it's -0build1 or -0ubuntu114:49
geserin that case -0build1 will get auto-synced in intrepid+114:50
tjaaltonheck, let's see how it goes. if we need to change it the it can be renamed14:50
tjaalton*then14:51
tjaaltonthere, libdrm uploaded14:53
sistpoty|worktjaalton: does your upload mean we might get nouveau for intrepid soon? *g*15:04
tjaaltonsistpoty|work: 2.3.1 is not enough for nouveau :/15:05
sistpoty|work:(15:05
tjaaltonexperimental has drm-snapshot & nouveau15:05
ograoooh15:06
ograRiddell, switched KDE to g-p-m as well now :)15:06
Riddellogra: as an acronym, yes15:07
ogra(even though the first word seems a bit mistyped in the name there :) )15:07
BenCWould someone mind NEWing linux 2.6.26-3.9, please?15:19
jengelhnewing?15:19
BenCjengelh: processing it into the archive now that it's built15:20
jengelhwhat archive15:20
jengelhkernels come in source form generally15:20
ograBenC, is there a spec or something about the future of the different flavours that are gone now ?15:20
BenCogra: it's on the kernelteam UDS discussion wiki15:20
ograjengelh, the package archive15:20
ograBenC, gracias :)15:20
BenCjengelh: the people that can help me will know what I mean15:21
jengelhoh nuts15:21
jengelh-EWRONGCHANNEL15:21
BenChehe15:21
jengelhkinda felt like ##kernel15:21
ograyeah, thast the aura BenC carries with him15:22
Nafallojengelh: he was in the office and it felt like ##kernel ;-)15:23
Nafallothe rest of the kernel team might have influenced that though :-P15:23
miloszhey all15:27
miloszhow can i determine whether a package has a maintainer?15:27
miloszi'd like to take over maintainership (in code and maybe packaging) for an app that seems unmaintained15:27
Riddellmilosz: we don't typically have formal maintainers.  but look at the changelog and see who's been working on it15:28
miloszRiddell, the source package changelog?15:28
Riddellyes15:28
miloszor an Ubuntu-specific one?15:28
miloszah ok15:28
Riddellin debian/changelog15:28
miloszok allright15:28
miloszthere's no debian/ directory in the source tarball (which i got from packages.ubuntu.com)15:30
jengelhthese debian/ dirs seem quite obstructive15:30
ograif you have it installed look in /usr/share/doc/<packagename>/15:30
ograthere you usually got the debian changelog15:30
miloszoh yeah there it is15:30
miloszhmm the last change is from 200615:31
ogradeb packages consist of three files, not only the source tarball15:31
miloszthe dsc file and the .diff file?15:31
ograright15:32
miloszsorry i'm just really a noob at .deb packaging15:32
miloszi guess i'll ask15:32
ogra#ubuntu-motu is a good school :)15:32
miloszask a friend of mine to do the packaging, i just want to mostly take over maintainership of code15:32
miloszah15:32
pochumilosz: for code maintainership you likely want to contact/become upstream maintainer15:32
ografor the code you should contact upstream15:32
miloszyeah i was going to mail the guy anyway15:33
miloszwhat's the formal procedure?15:33
miloszwhat if i don't get any response (the website at least is gone)?15:33
miloszcan i just assume upstream maintainership in that case?15:33
ograwe're mainly doing the packaging ... only rarely changing the upstream code15:33
ograthe upstream tarball should have an AUTHORS file or some such15:34
pochumilosz: if it's open source, you likely can fork it15:34
ograand an upstream ChangeLog file as well15:34
persiamilosz: If upstream is gone, and you can't find them, you can create a new website.  In that case, you likely want to chat with the Original-Maintainer to determine where/what is good.15:34
miloszok15:34
ograeither of these files should have a mail adress in it15:34
ograto contact the last upstream maintainer15:35
persiaShouldn't all the core upstream people be listed in debian/copyright anyway?15:35
miloszthere's one person listed in the debian copyright file but it's not the upstream maintainer15:36
persiaWhich package is this?15:36
Riddellasac: I got knetworkmanager 0.7 working to the extent that it shows itself and which wifi networks it can see, but can't connect to anything15:37
Riddellasac: however that's better than nm-applet which doesn't even show itself15:37
asacRiddell: haha15:38
asacRiddell: works here ;)15:38
asacintrepid not yet done though15:38
* ogra thought there were standards for system tray implementations ... doesnt nm-applet respect them ? 15:38
ograi thought systray apps were interchangeable by design15:38
Riddellogra: yes, it seems to be a gtk issue Gtk-CRITICAL **: gtk_notebook_set_tab_label: assertion `GTK_IS_WIDGET (child)' failed15:38
ograbah15:38
Riddellasac: is intrepid being worked on?15:39
ogradoesnt find the tab to apply the label to it seems ...15:39
asacRiddell: obviously yes.15:39
asacRiddell: my main system is just stuck on hardy. ... but ill upgrade any day15:39
miloszpersia, "dlume"15:45
miloszit's a simple address book app15:45
miloszi started to u se it but the UI is terrible15:45
miloszlet's say at least it could use improvement15:45
miloszalso i want to make it use a standard format like vCard or something15:45
=== james_w_ is now known as james_w
BenCcjwatson: Do you have a moment to NEW the latest linux build?15:47
miloszthere's also contacts from openedhand but i don't see it being much better, maybe the code is15:48
persiamilosz: http://changelogs.ubuntu.com/changelogs/pool/universe/d/dlume/dlume_0.2.4-5/copyright has 5 people.  Try contacting those listed under "upstream author" if you want to significantly change the code.15:49
miloszpersia, allright, thanks15:49
cjwatsonBenC: yep, give me a sec15:49
james_wpitti: http://www.redhat.com/archives/fedora-desktop-list/2008-May/msg00006.html16:00
BenCcjwatson: thanks16:01
cjwatsonBenC: done16:02
cjwatsonjust in time for this publisher cycle too16:02
=== thekorn_ is now known as thekorn
pittijames_w: oh, nice!16:54
dholbachUbuntu Java team meeting in #ubuntu-meeting now17:00
mathiazjames_w: I've been experimenting with bzr looms with the openldap package and went through a merge from debian. I was wondering about the commit messages when doing up-thread. Here is what the recent history looks like - http://paste.ubuntu.com/24755/17:18
zulI take it proposed is open again17:19
pittizul: yep :)17:19
zulpitti: great! thanks..17:19
james_whi mathiaz17:19
james_wmathiaz: what's your "bzr show-loom"?17:19
mathiazjames_w: http://paste.ubuntu.com/24756/17:20
mathiazjames_w: I was wondering if there was a better I should use in place of "Merge down-thread."17:20
mathiazjames_w: which doesn't really carry any meaning full content17:20
james_wmathiaz: you did those commits after a "down-thread", or an "up-thread"?17:21
mathiazjames_w: up-thread17:21
mathiazjames_w: my workflow is - bzr up-thread, bzr st, bzr ci -m "Merge down-thread.", ...17:22
mathiazjames_w: So you can see that there is the debian thread at the very bottom17:22
james_wyeah, that looks sensible to me.17:22
james_wI'm not sure what to put for the commit message.17:23
mathiazjames_w: I've started there, by doing a bzr merge ../debian, where ../debian is the debian svn branch17:23
james_wI guess you could use the same message at each thread.17:23
mathiazjames_w: and then made my way up-thread up to changelog where I can do a bzr bd -S17:23
MacSlowpitti, ogra: I think I can get away without needing a new libpam for the new gdm.17:24
mathiazjames_w: right - I think it makes more sense to do that, because when I get to the changelog thread, I need to figure what has been done in order to document it correclty17:24
MacSlowpitti, ogra: so no need for discussing it on the -devel ml17:24
pittiMacSlow: nice; that's better for not blocking you17:24
mathiazjames_w: one issue I ran into was the usage of combine-thread17:25
mathiazjames_w: once I had merge the new debian revision, there were some thread that were no longer needed17:26
mathiazjames_w: so I'd arrive to such a thread after an up-thread17:26
ograMacSlow, great :)17:27
mathiazjames_w: bzr st would show a stack of merges waiting for being commited17:27
mathiazjames_w: then I would do a bzr combine-thread, since this thread is no longer needed17:27
mathiazjames_w: however, when I moved to the next up-thread, the changes would be carried over there17:28
mathiazjames_w: so I'm not sure I fully understand what combine-thread is meant for17:28
james_wthe changes from below, or including the changes from the thread you just got rid of/17:29
mathiazjames_w: changes from the thread I just got rid of17:29
mathiazjames_w: it may have been an operational error though - or something I didn't grasp in the merge process17:29
mathiazjames_w: I got bitten a couple of times whith changes that were part of a combined thread would still show up in the thread above it17:30
james_wdid you revert after the combine-thread?17:31
mathiazjames_w: hm - I'm not sure... I think that's the part I didn't get17:32
mathiazjames_w: it seems that somewhere I have to do a revert17:32
james_wI'm not sure, but that might be important.17:32
james_wI haven't spent enough time working with looms.17:33
mathiazjames_w: ok - I came to the conclusion to that combine-thread wasn't enough to get rid of a thread - you also had to do a revert somewhere along the line.17:33
mathiazjames_w: anyway - it was the first time I went through a merge from debian with a bzr loom branch17:35
james_whappy with it otherwise?17:36
mathiazjames_w: I still need to wrap my head around the whole process and tweak it - but in the end I made it17:36
mathiazjames_w: another issue I have is when I need to review if the current thread still applies to the merge17:36
mathiazjames_w: openldap bzr branch has the full source code in it17:36
mathiazjames_w: I merge a new upstream revision, so there was a lot of code changes17:37
mathiazjames_w: I haven't found a way to figure out if the current thread still applies to the pending merges17:37
james_wwhat were you using to judge that? bzr diff?17:37
james_w"bzr diff -rthread:" might be what you are after17:38
mathiazjames_w: I was using bzr diff -r thread: to figure out what was the patch about17:38
mathiazjames_w: but then bzr diff would show me a huge diff17:38
james_wyeah, that will be the diff of everything new underneath.17:38
james_wis there a way that this could be made better?17:39
mathiazjames_w: so figuring out if the thread change was still needed for the new merge was kind of difficult17:39
mathiazjames_w: well - I ended up using filterdiff and lsdiff - bzr diff -r thread: would give a list of files that are changed17:40
mathiazjames_w: then using filterdiff to extract only the changes related to the files would help a little bit17:40
james_wah, so you want the "bzr diff" output, but only for files that are part of the "bzr diff -rthread:" output?17:41
mathiazjames_w: yes - I want to know if the changes that were part of the current thread are still relevant for the code that is being merged from the down-thread17:42
mathiazjames_w: IIUC doing an up-thread will use bzr merge algorithm to try to merge the current thread changes in the new down-thread17:43
mathiazjames_w: in this  case the new down-thread has *a lot* of changes since it's an new upstream revision17:43
mathiazjames_w: so I wasn't sure which changes were related to the new down-thread and which ones where the result of the current thread applied to the new down-thread17:44
=== azeem_ is now known as azeem
james_wmathiaz: interesting. I'd advise you to bug lifeless about that ;-)17:46
mathiazjames_w: As you can see, I'm not sure I've totally understand the process to go through when merging an new upstream revision17:46
james_wmathiaz: are you in the US for the sprint?17:47
mathiazjames_w: I may miss something in the whole picture and don't take the correct approach17:47
mathiazjames_w: yes :/17:47
james_wah, shame, it would have been good to go through this with you.17:47
james_wit seems like you are doing good though.17:47
pittiasac: seems that bug 244439 is not really fixed in -proposed, it shouldn't be necessary to purge/reinstall the package17:47
ubottuLaunchpad bug 244439 in nspr "missing symlinks break binary compatibility with native upstream components" [High,Fix committed] https://launchpad.net/bugs/24443917:48
mathiazjames_w: well - I'm happy with the result - I got what I wanted17:48
=== mkrufky is now known as mkrufky-lunch
darkfilehi18:00
darkfileI just wanted to ask if you ever plan to upgrade libpurple18:00
darkfileso we can use ICQ again18:00
pittidarkfile: already in hardy-proposed18:00
darkfileah cool18:02
darkfilebut i'm using the previous version18:02
darkfile7.1018:02
darkfilehope it will be fixed as well?18:02
persiadarkfile: Quite likely, although hardy is the primary QA target, 7.10 will probably be a little later.18:04
Laneydarkfile: It's in gutsy-proposed too ;)18:05
darkfilecool, now ICQ works again18:10
darkfilebut jabber stopped working ;)18:10
darkfileSSL certificate error18:10
robertknightCan someone point me to the script that starts console-kit-daemon?18:11
ogra/etc/X11/Xsession.d/90-console-kit ?18:11
keesRiddell: it's not a trivial audit, and I'm still very busy with a bunch of stuff.  I've started poking at it.  jdstrand, have you had a chance to look at it at all?18:12
ograah, no thats not the daemon18:12
jdstrandkees: not yet, I am getting to a place where I can start. I can take it if you wish18:12
slangaseklaga: well, "later" doesn't help so much for trying to release images with 8.04.1 today :)18:12
lagaslangasek: where today is UTC?18:13
james_wrobertknight: I think it's started by dbus activation18:14
ograyeah18:14
lagaslangasek: has someone actually verified the mythbuntu images (apart from that mythbuntu-control-centre SRU)? obviously it'll be pointless to push for that SRU if 8.04.1 is not going to happen for mythbuntu.18:14
lagai'm out of the loop18:14
lagamario_limonciell: ^^18:14
ograrobertknight, /usr/share/dbus-1/system-services/org.freedesktop.ConsoleKit.service18:15
robertknightjames_w: I am looking for a memory leak in console-kit-daemon so I need to restart it under valgrind with the same arguments used to start it on startup/login18:16
james_wrobertknight: it's started the first time something tries to use it. The file ogra pointed you to shows that it gets no arguments.18:17
james_wif you launch it from a terminal, dbus probably won't try to start it for you.18:18
=== Kopfgeldjaeger2 is now known as Kopfgeldjaeger
slangaseklaga: today is US/Pacific, actually18:19
slangaseklaga: I haven't gotten any feedback on the mythbuntu images as a whole either; I can certainly hold back the mythbuntu images until someone can verify them, if that's what needs to happen...18:20
robertknightjames_w: Do you know how I can find out what other processes interact with console-kit via DBus?18:20
=== highvolt1ge is now known as highvoltage
lagaslangasek: well, they can't be released unless someone tried them. :) lets wait for mario_limonciell18:20
lagai'll ping our RM18:20
james_wrobertknight: dbus-monitor?18:20
ograrobertknight, read up about dbus-monitor18:21
ogra:)18:21
lagawhen he comes online18:21
ograrobertknight, d-.feet is also a cool tool to inspect dubs stuff (not the traffic though)18:21
ogra*d-feet18:21
Le_VertI'm looking for a cowbuilder gui. I read one planet ubuntu that someone created one but I can't remember it's name18:24
Le_Vertcould you help me ? ;)18:24
slangaseksoren: around?18:31
sorenslangasek: ish18:32
sorenpresence -> 0 for time -> in a bit18:32
slangaseksoren: we have a JeOS test case for ISO testing that didn't get covered18:32
slangaseksoren: none of the testers have access to VMWare ESX18:32
sorenAh.18:33
slangasekdo we need a separate test for that, if we have VMware server covered?18:33
sorenYes.18:33
sorenthey're wildly different beasts.18:33
sorennijaba: I don't suppose you have time/opportunity to do a ESX JeOS test?18:33
ScottKDidn't someone say earlier that nijaba was off in the south of France at a conference?18:34
sorenThat was me.18:34
soren...who said it.18:34
sorenHe's aroundish now, it seems.18:35
sorenAh, except he's away.18:35
sorenwell, I suppose he'll notice eventually.18:35
sorenOtherwise...18:35
sorentjaalton: I don't suppose you have time/opportunity to do a ESX JeOS test?18:35
sorenslangasek: Sorry, but I have to run now. The only two people I know who can do ESX testing are tjaalton and nijaba.18:38
Riddellasac: if you approve my membership of ~network-manager I'll look to upload packages18:40
slangasektjaalton: hmm, do you have time to test JeOS on ESX?18:41
\shsoren: what needs to be done?18:42
* \sh can still grab a coffee and work with his ESX 3.5 here...18:43
* \sh 's gone now18:48
jdstrandkees: eek, I'm not as close to being able to review that as I'd hoped18:49
jdstrand(libzip)18:49
jdstrandcjwatson: hi! I seem to remember you saying that you could no longer boot your kvm intrepid guests. is this with a hardy host?18:53
=== mkrufky-lunch is now known as mkrufky
=== blueyed__ is now known as blueyed
luisbgslangasek: ping19:18
slangasekluisbg: hi19:18
luisbghi19:18
luisbgdid the ubuntu studio cd got built for hardy.1?19:18
slangasekluisbg: there are ubuntustudio images being vetted for .1, yes19:20
luisbgslangasek: awesome, thanks! :)19:26
=== mkrufky is now known as mkrufky-away
tm512What's the chance that a suggestion for the devlopment of Ubuntu would be listened to?19:38
=== mkrufky-away is now known as mkrufky
stdin!brainstorm19:41
ubottuPost your ideas for ubuntu at http://brainstorm.ubuntu.com and vote for the ones you like!19:41
stdintm512: post it there ^19:41
macdAny file browse selection dialog takes forever to come up regardless of application triggering it, ideas?19:50
slangasekluisbg, TheMuso: we still have an UbuntuStudio SRU that no one's been able to verify yet, and I can't figure out how to even get a test case out of this... genpo, bug #22151819:50
ubottuLaunchpad bug 221518 in genpo "broken .menu file" [Medium,Fix committed] https://launchpad.net/bugs/22151819:50
slangasekluisbg, TheMuso: do you want to try to verify this fix, or should I re-roll the image dropping this package from -proposed?19:51
persiaslangasek: I'll test it now: I've genpo installed on hardy.19:52
slangasekpersia: well, I can't figure out where to even find the Debian menu in hardy after installing the 'menu' package :/19:52
persiaslangasek: Did you install menu-xdg?19:53
slangasekno, the test case didn't say to do that19:53
persiaYeah, the test case is bad, but menu alone doesn't generate a menu for GNOME: one needs menu-xdg19:53
slangasekpersia: but if you can verify this, that'd be awesome19:53
persiaslangasek: I can't verify the behavioural issue, as my menu works, but I can verify that the .menu file is malformed.  checking for regression and validation of fix only.19:54
slangasekyour Debian menu works, and shows other items that are after genpo in the list?19:55
persiaIt did before and after the update.  Applying the SRU gave genpo an icon, and genpo still runs (although I only tried one note)19:55
persiaIs this sufficient validation of the bug for a comment and validation, or is maybe the bug questionable?19:56
luisbgthanks persia19:57
ograslangasek, you need to enable it in alacarte19:58
ograits disabled by default .... then it will show up in your gnome menu19:58
slangasekpersia: is it possible that the problem is specifically if you try to install another package, its menu entry won't show up?19:58
slangasekogra: no, I did that19:58
ograhmm19:58
ograweird19:58
slangasekogra: it's almost certainly the menu-xdg package19:58
persiaslangasek: Except that I've had genpo installed for months, and installed bunches of other stuff that show in my Debian menu.19:59
slangasekpersia: sigh19:59
slangasekpersia: ok, please comment your findings to the bug, and I'll copy it over since it doesn't regress, trusting that the submitter wasn't just blowing smoke20:00
persiaslangasek: weaselly comment committed.20:01
slangasekright :)20:02
infinityMeh.20:07
infinityDo we want mingw32 in main, or do we want to mangle gzip to not build gzip-win32 on Ubuntu?20:07
keesdoko: what behavior exactly did you want for the "nohardening" stuff?20:20
slangaseklaga: how about the fix for bug #220087?  Anyone tested this one?20:32
ubottuLaunchpad bug 220087 in mythplugins "Some mythplugins packages fail to configure if /var/lib/mythtv NFS mounted" [Undecided,Fix committed] https://launchpad.net/bugs/22008720:32
sorenjdstrand: Intrepid guests on hardy hosts will probably not work. I know what's wrong, and I'll fix it real soon.20:37
jdstrandsoren: well, if it helps any, they used to work until I updated the guest20:38
jdstrandsoren: right now, I have an updated amd64 guest, and it's broken. I have an i386 guest I haven't updated, and it still works fine20:39
sorenjdstrand: That's.. odd. Could I please see the kernel config for the i386 guest?20:40
jdstrandsoren: hold on...20:40
* soren holds on20:40
jdstrandsoren: linux-image-2.6.24-16-38620:43
jdstrandsoren: (and I'm getting the config now)20:43
sorenjdstrand: Oh.20:43
sorenjdstrand: Yeah, that would work.20:43
jdstrandsoren: so you don't need the config?20:43
sorenjdstrand: The problem is in >2.6.2420:43
sorenNope.20:43
sorenthanks anyway.20:43
jdstrandsure20:44
sorenI expected it to be a working 2.6.26, which would have surprised me greatly.20:44
=== devfil_ is now known as devfil
lagaslangasek: i guess not if nobody answered on the bug report.21:34
lagaslangasek: i'm not being very helpful, i know, just somewhat busy right now.21:35
lagai'll take a look at the forum thread in a minute21:35
slangaseklaga, mario_limonciell: ok; since these two SRUs account for a significant portion of mythbuntu proper and haven't completed SRU verification yet, and I need to move forward with .1 today, I think the best option is to hold back the mythbuntu images for the moment and push them out a little later21:47
lagaslangasek: thank you.21:48
lagai'll go bug some people to test the SRU bugs21:49
lagano replies in the forum thread either. so yeah, we need to wait.21:50
mkrufkymario_limonciell: ping?21:51
mkrufky...or anybody else --  anybody know anything about packaging xine?21:51
mkrufkyi just did debuild, got 12 debs21:52
mkrufkydunno which one does what :-/21:52
mkrufkyim sorry -- i mean libxine21:53
lagawhat debs did you get?21:53
mkrufkythese: http://rafb.net/p/rLwI7n28.html21:53
mkrufkybasically...  i did a patch to make the xine engine more forgiveable to loss of signal lock, or stream errors21:54
mkrufky...so that it can recover a broken DVB stream rather than dropping it all on the floor21:54
mkrufky...but this is just a test, ive no idea if it will work.  i dont know which package of the above needs to be installed21:54
lagawell, use dpkg -l libxine* do find out what you have installed currently.21:55
lagaand then install those21:55
mkrufkyah, that's great -- thanks21:55
lagainstalled packages will have 'ii' at the beginning of the line21:55
mkrufkyok, it *seems* like this is the one:21:56
mkrufkylibxine1_1.1.11.1-1ubuntu3_i386.deb21:56
mkrufkyi'll try it21:56
ScottKWow.  An actual lawyer commenting on a legal related discussion.  I don't think I've ever seen that happen before.21:57
calc"BTW is there any chance that you can call the next release or so of21:59
calcUBUNTU "The Dog's Bollocks?" - I assume you are in the States but just21:59
calcin case you think I'm being abusive - the Dog's is Northern English21:59
calcslang for the best thing since sliced bread - why, I don't know... as21:59
calcEdmund Hillary should perhaps have said "Because they're there"?"21:59
calclol21:59
bdmurraycalc: hehe22:15
=== ember_ is now known as ember
=== max762 is now known as _max_
cjwatsonjdstrand: yes, intrepid guest on hardy host23:06
cjwatsoninfinity: I remember taking mingw32 out from syslinux, so I assume it should be ripped out of gzip too23:07
tjaaltonslangasek: is it too late to test?23:16
slangasektjaalton: it sounds like we got the case covered, thanks though23:17
tjaaltonslangasek: cool23:17
anthonyslangasek: Meaning that testing's done or that enough people are working on it already?23:21
slangasekanthony: testing is done23:21
anthonyslangasek: Oh, sweet!  No e-mail yet though - must be waiting for mirror syncing as usual I take it?23:29
slangasekanthony: correct23:29
=== awalton_1 is now known as awalton__
TheMusoI hope to verify that SRU this morning, unless there is a deadline here.23:37

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