=== binaryBlob [n=CoreTex@64-142-95-29.dsl.dynamic.sonic.net] has joined #ubuntu-devel === rob [i=RobertSt@freenode/staff/rob] has joined #ubuntu-devel === Gman_ [n=gman@169.222.9.235] has joined #ubuntu-devel === bronson [n=bronson@adsl-75-36-145-166.dsl.pltn13.sbcglobal.net] has joined #ubuntu-devel === finalbeta [n=finalbet@d5152A68A.access.telenet.be] has joined #ubuntu-devel === __keybuk [n=scott@169.222.10.235] has joined #ubuntu-devel === bronson_ [n=bronson@c-24-5-71-119.hsd1.ca.comcast.net] has joined #ubuntu-devel === wasabi [n=jhaltom@ubuntu/member/wasabi] has joined #ubuntu-devel === jwaddell [n=jwaddell@chi.spunge.org] has joined #ubuntu-devel [12:44] how can I grep through a bunch of files for a string ("String X") and replace each occurrence of it with another one ("String Y")? [12:45] uhm, sed? [12:45] sed -i yourfile -e "s/StringA/StringB/g" [12:46] <_ion> in zsh, for f in foo bar quux; sed -i -e 's/String X/String Y/g' "$f" [12:46] be sure to escape anything fishy [12:46] in your strings [12:46] <_ion> In other shells, add 'do' and '; done' around the sed expression. [12:46] bhale: they are urls, so have / symbols, are those fishy? [12:47] also - and . [12:47] <_ion> s#foo#bar# and escape . with \ [12:47] <_ion> (In the regex, not in the replacement) [12:48] I need it a bit more spoonfed than that, can you add that into bhale's expression? [12:49] sed -i foo -e "s#http:\/\/youurl.com#http:\/\/yoururl2.com#g" [12:49] whoosh [12:49] escape the . also [12:49] with \ [12:49] bhale: No. You don't have to escape the slahes when you separate with #. [12:49] hm yeah [12:49] duh [12:49] sed -i yourfile -e "s#StringA#StringB#g" [12:50] here's an example url, does anything need to be changed from shawarma's expression, or can I plug that into StringA? http://www.debian.org/releases/edgy/example-preseed.tx [12:50] (+t) [12:50] escape all .'s [12:50] sed -i yourfile -e "s#http://www.ubuntulinux.org/#http://www.ubuntu.com/#g" [12:50] debian\.org [12:50] bhale: Oh, right. [12:51] Well, it's unlikely to cause trouble if he doesn't do it. [12:51] <_ion> Never count on that. :-) [12:51] ok, I'll compile an expression and check it with you guys [12:51] yeah its a regex for "any character" [12:51] worth escaping [12:51] mdke: the thing is that dots are wild, so wwwadebianborg would match, too. [12:51] oh, ok [12:52] and don't i need grep in there too? [12:52] mdke: Nope. [12:52] it's a bunch of files in a few directories [12:52] any sort of pattern in the filenames? [12:52] Like */*.html ? [12:53] yep [12:53] Ok, then: [12:53] for file in */*.html; do sed -i "$file" -s 'yourexpressionfrombefore' ; done [12:53] er.. [12:53] shawarma: that looks into subdirectories? [12:53] for file in */*.html; do sed -i "$file" -e 'yourexpressionfrombefore' ; done [12:53] mdke: Not recursively. Only one level down. [12:53] one is enough [12:53] thanks [12:54] Any time. [12:54] Grab a backup of the files first. Just in case. [12:54] <_ion> shawarma: -i.backup [12:54] yes, I have those [12:55] _ion: Really? then sed -i.backup -e 'asdfasdfasdf' */*.html should work too. [12:56] <_ion> Ah, true, it indeed does accept multiple file parameters. [12:56] _ion: I'd expect it to if the -i is just a general parameter. [12:56] _ion: I just always treated it as an 'apply the magic to the next argument' sort of option. :-) [12:57] <_ion> For recursive search, you could say **/*.html in zsh. In bash, you'd probably need find -name '*.html' -print0 | xargs -0r sed blahblah === theCore [n=alex@ubuntu/member/theCore] has joined #ubuntu-devel [12:58] ok, here's my creation [12:58] or rather, you guys' creation [12:58] for file in */*.html; do sed -i "$file" -e "s#http://www\.debian\.org/releases/edgy/example-preseed\.txt#https://help\.ubuntu\.com/6\.10/ubuntu/installation-guide/example-preseed\.txt#g" [12:58] whoops, forgot the done [12:58] Looks sensible. [12:59] <_ion> Don't escape the dots in the replacement, only in the regexp. [12:59] Doesn't matter. [12:59] oh [12:59] let's get this right :) [12:59] <_ion> shawarma: Usually you shouldn't feed programs erroneous input just because they happen to ignore it. :-) === bronson_ [n=bronson@adsl-75-36-145-166.dsl.pltn13.sbcglobal.net] has joined #ubuntu-devel [01:00] seems to have gone alright [01:00] thanks again bhale, shawarma, _ion [01:01] np [01:01] _ion: I wouldn't exactly call it erroneous. superfluous, perhaps. [01:02] _ion: I'm just escaping a character in no need of escaping. === __keybuk [n=scott@169.222.10.235] has joined #ubuntu-devel === `anthony [n=anthony@169.222.9.112] has joined #ubuntu-devel === jono [n=jono@169.222.10.219] has joined #ubuntu-devel === bytee_ [n=byte@fedora/byte] has left #ubuntu-devel [] === lifeless [n=robertc@ppp245-86.static.internode.on.net] has joined #ubuntu-devel === apokryphos- [n=francis@87-194-86-227.bethere.co.uk] has joined #ubuntu-devel === concept10 [n=concept1@ppp-70-247-171-48.dsl.rcsntx.swbell.net] has joined #ubuntu-devel [01:27] does every gtk app use a .gtkrc ? === doko [n=doko@dslb-088-073-082-079.pools.arcor-ip.net] has joined #ubuntu-devel === j_ack [n=rudi@p508D8149.dip0.t-ipconnect.de] has joined #ubuntu-devel === mruiz [n=mruiz@ubuntu/member/mruiz] has joined #ubuntu-devel === freeflying [i=flyingfr@205.196.222.12] has joined #ubuntu-devel === Gman [n=gman@169.222.9.235] has joined #ubuntu-devel [01:56] isn't acpi-support in bzr somewhere? === jono [n=jono@169.222.10.219] has joined #ubuntu-devel [02:22] mdz: http://people.ubuntu.com/~thom/bzr/acpi-support/ , but that's ancient :D === sgithens [n=sgithens@c-71-201-56-4.hsd1.il.comcast.net] has joined #ubuntu-devel === bddebian [n=bdefrees@c-71-224-172-103.hsd1.pa.comcast.net] has joined #ubuntu-devel [02:53] Heya [02:55] hello [02:56] Hello jwaddell [02:56] anything exciting going on? [02:57] Not here, I'm just a schlub :_) [02:57] what, schlub's can have excitement too? [03:00] Probably, but not this one :-) [03:05] I'll just asume that you prefer it htat way then ;) [03:06] heh === zul [n=chuck@CPE0006258ec6c1-CM000a73655d0e.cpe.net.cable.rogers.com] has joined #ubuntu-devel === fernando [n=fernando@unaffiliated/musb] has joined #ubuntu-devel === cr3 [n=marc@pdpc/supporter/bronze/cr3] has joined #ubuntu-devel === malex [n=malex@pdpc/supporter/student/malex] has joined #ubuntu-devel === Keybuk [n=scott@169.222.10.235] has joined #ubuntu-devel === jamesh [n=james@169.222.11.234] has joined #ubuntu-devel [03:24] Hello. I wonder what could be wrong with the dapper archive since the debootstrap from edgy cannot create a pbuilder chroot for the dapper. It attempts to install a dependency from universe (libdb1-compat) and an unknown package (slang1a-utf8) and fails when it cannot find them in the main archive. Pleas help. I need a dapper pbuilder chroot to build a package for ubuntu users as a courtesy. [03:24] edgy pbuilder chroot gets created without problems and functions just fine by the way. [03:27] libdb1-compat has no rdepends [03:29] Mez: Which makes it problematic. I wonder what could be broken - bootstrep's dapper script, ubuntu dapper archive, something else? [03:30] I'd like to paste 4 lines of the output if that's ok. [03:30] I: Resolving dependencies of base packages... [03:30] I: Found additional required dependencies: belocs-locales-bin binutils cpio cpp cpp-4.0 dpkg-dev g++ g++-4.0 gcc gcc-4.0 libc6-dev libdb4.3 libgdbm3 libpam-foreground libselinux1 libsepol1 libslang2 libstdc++6-4.0-dev linux-kernel-headers locales make patch perl perl-modules [03:30] I: Checking component main on http://archive.ubuntu.com/ubuntu... [03:30] E: Couldn't find these debs: libdb1-compat slang1a-utf8 [03:30] !pastebin | malex [03:31] the bot is dead? [03:32] Mez: http://pastebin.ca/319174 [03:32] it's not in here [03:32] what system are you using to make that / [03:33] (aka what is the pbuild-dapper script) [03:33] s/pbuild/pbuilder === sgithens [n=sgithens@71.201.56.4] has joined #ubuntu-devel === j_ack [n=rudi@p508D8149.dip0.t-ipconnect.de] has joined #ubuntu-devel === quail [n=quail@unaffiliated/quaillinux/x-000001] has joined #ubuntu-devel [03:51] Mez: pbuilder-dapper script I use http://pastebin.ca/319183. I use the debootstrap from edgy. My system is Debian/sid. === sharms [n=sharms@ubuntu/member/sharms] has joined #ubuntu-devel === sevrin [n=sevrin@202.75.186.154] has joined #ubuntu-devel === jack_wyt [n=jack@211.154.174.45] has joined #ubuntu-devel === jono_ [n=jono@169.222.10.219] has joined #ubuntu-devel === freeflying [i=flyingfr@gobstopper.dreamhost.com] has joined #ubuntu-devel === LaserJock [n=mantha@ubuntu/member/laserjock] has joined #ubuntu-devel [04:27] do we have a source CD iso? [04:29] dont thinkso [04:29] I don't think so [04:29] bah, always late [04:29] jono_: AFAIK no. Though there is a promise on the back of the CD cover that you could order a one-off special [04:29] there is a source cd [04:29] http://cdimage.ubuntu.com/daily/current/source/ [04:29] jono_: ^ [04:30] by 'cd' I mean DVD === sladen is impressed with the speed lifeless hax0red LP to generate one [04:30] http://www.google.com/search?q=site%3Acdimage.ubuntu.com+source&ie=utf-8&oe=utf-8&rls=com.ubuntu:en-US:official&client=firefox-a [04:32] lifeless: cheers dude [04:33] jono_: np [04:33] digging through my huge inbox [04:33] ugh, that sounds rather disgusting [04:33] jono_, you're lucky - I've not been able to access my mail since December [04:33] but my Mailserver messed up and started bouncing everything [04:34] unsubscribing me from all my lists :D [04:34] Mez: ugh [04:34] I have hundreds to reply to [04:34] gonna do them this afternoon [04:34] only just fixed it and sent a massive "re-subscribe" message === Mez sends jono_ another to reply to [04:41] Got a similar chroot creation problem for breezy: "E: Couldn't find these debs: slang1a-utf8". So, no more breezy and dapper packages. Oh well. Mez, thanks for trying to help me. [04:42] malex, it worked fine for me - I dont know where your issue is [04:42] possibly something to do with using debian as the main distro (shouldnt be but might be) === BenC [n=bcollins@debian/developer/bcollins] has joined #ubuntu-devel [04:47] malex: try using ubuntu debootstrap ? [04:50] lifeless: I am using edgy debootstrap - 0.3.3.1ubuntu1 [04:51] Mez: So, why does edgy chroot gets created without problems if the reason for the failure is in Debian tools? [04:51] malex: I've no clue... [04:51] I cant really try it other than using edgy [04:51] and it works for me in edgy === jono [n=jono@ubuntu/member/jono] has joined #ubuntu-devel [04:52] Mez: So, you can create both breezy and dapper chroots? [04:53] er, I could last time I tried [04:53] lemme see === raphink [n=raphink@ubuntu/member/raphink] has joined #ubuntu-devel === mruiz [n=mruiz@ubuntu/member/mruiz] has joined #ubuntu-devel [05:01] bbiaw === Gman [n=gman@169.222.9.235] has joined #ubuntu-devel === alex-weej [n=alex@halls-129-31-82-59.hor.ic.ac.uk] has joined #ubuntu-devel [05:04] malex, http://rafb.net/p/2QlwZC40.html === coreyt [n=corey@pool-71-244-26-210.dllstx.fios.verizon.net] has joined #ubuntu-devel === coreyt [n=corey@pool-71-244-26-210.dllstx.fios.verizon.net] has left #ubuntu-devel ["Leaving"] === mruiz [n=mruiz@ubuntu/member/mruiz] has joined #ubuntu-devel [05:42] Mez: It looks like the difference is that it finds "I: Found additional required dependencies: belocs-locales-bin binutils cpio cpp cpp-4.0 dpkg-dev g++ g++-4.0 gcc gcc-4.0 libc6-dev libdb4.3 libgdbm3 libpam-foreground libselinux1 libsepol1 libslang2 libstdc++6-4.0-dev linux-kernel-headers locales make patch perl perl-modules" on my system. [05:42] If I figure that out - it should work then. [05:43] pastebin your pbuilderrc [05:45] Mez: http://rafb.net/p/gwABr116.html === nags [n=nags@125.16.129.16] has joined #ubuntu-devel === jamesh [n=james@169.222.11.234] has joined #ubuntu-devel [05:49] malex, /etc/pbuilder/pbuilderrc ? [05:49] also, mine is here [05:49] http://rafb.net/p/AbvtY840.html [05:49] theres a few differences [05:50] (I prefer to use command line switches dfor distro/targz locations [05:55] Mez: I tried going all manual, too. [05:55] yeah *shrugs* [05:55] try it after replacing with my config [05:55] mine works [05:55] Mez: I just purged and reinstalled debootstrap (ubuntu) and pbuilder + deps. [05:56] didn't help === jdong [n=jdong@ubuntu/member/jdong] has joined #ubuntu-devel === jamesh [n=james@169.222.11.234] has joined #ubuntu-devel [06:00] *shrugs* [06:00] prob some weird thing to do with debian and ubuntu incompatibility [06:00] or [06:01] wait [06:01] do you have it install a sources.list ? === johanbr [n=j@blk-137-114-65.eastlink.ca] has joined #ubuntu-devel [06:02] Mez: I'm not sure how that can be done (sources.list). Please elaborate. [06:03] APTCONFDIR [06:03] https://wiki.ubuntu.com/PbuilderHowto === quail [n=quail@unaffiliated/quaillinux/x-000001] has joined #ubuntu-devel [06:05] Mez: It's going, the chroot is being built. [06:06] malex: what you do ? [06:08] Mez: I've used your pbuilderrc and only changed the paths from /var to my /chroot partition. Also I used your basetgz name, not dapper-base.tgz I used before. That's all. [06:08] *shrugs* [06:08] weird [06:09] more info - base.tgz name doesn't matter. So, it's some setting in the rc file. [06:10] lmao I just got email addressed to "mdz@ubuntu.com" [06:10] malex, more than likely [06:10] BUILDSOURCEROOTCMD="fakeroot" [06:10] lol [06:10] I had buildd [06:11] Maybe it had some weird deps. === Gman [n=gman@169.222.9.235] has joined #ubuntu-devel === j_ack [n=rudi@p508D8149.dip0.t-ipconnect.de] has joined #ubuntu-devel === jdong [n=jdong@ubuntu/member/jdong] has joined #ubuntu-devel [06:18] morning === stub [n=stub@ppp-58.8.11.181.revip2.asianet.co.th] has joined #ubuntu-devel === shackan [n=shackan@85-18-14-13.fastres.net] has joined #ubuntu-devel === persia [n=persia@p3159-ipbf1401marunouchi.tokyo.ocn.ne.jp] has left #ubuntu-devel [] === shackan [n=shackan@85-18-14-13.fastres.net] has joined #ubuntu-devel === mruiz [n=mruiz@ubuntu/member/mruiz] has joined #ubuntu-devel === Keybuk [n=scott@169.222.10.235] has joined #ubuntu-devel [07:05] Where are the backports for dapper? I can see at http://lwn.net/Articles/212655/ that there is cmake-2.4.3 built for dapper, but where is it? It's not in the dapper or dapper-updates archives. === viviersf [n=cain@196.44.1.98] has joined #ubuntu-devel [07:07] malex: dapper-backports [07:08] malex: https://launchpad.net/ubuntu/+source/cmake shows 2.4.3-1ubuntu1~dapper1 [07:09] LaserJock: Thanks! That's it. === Starting logfile irclogs/ubuntu-devel.log === ubuntulog [i=ubuntulo@ubuntu/bot/ubuntulog] has joined #ubuntu-devel === Topic for #ubuntu-devel: Development of Ubuntu (not support, even with feisty) | #ubuntu for support and general discussion | #ubuntu-motu for getting involved in development | http://wiki.ubuntu.com/DeveloperResources | See #ubuntu-bugs for http://wiki.ubuntu.com/HelpingWithBugs | Herd 2 released === Topic (#ubuntu-devel): set by Mithrandir at Fri Jan 12 10:54:19 2007 === robitaille [n=daniel@ubuntu/member/robitaille] has joined #ubuntu-devel === mruiz [n=mruiz@ubuntu/member/mruiz] has left #ubuntu-devel ["Bye!"] [07:27] Everything works now. Thank you people! Best wishes from ubuntu packaging suport underground. === malex [n=malex@pdpc/supporter/student/malex] has left #ubuntu-devel [] === raphink [n=raphink@ubuntu/member/raphink] has joined #ubuntu-devel === infinity_ [n=adconrad@cerberus.0c3.net] has joined #ubuntu-devel === Gman [n=gman@169.222.9.235] has joined #ubuntu-devel === jonibo [n=jonas@213.212.2.215] has left #ubuntu-devel [] === jonib1 [n=jonas@213.212.2.215] has joined #ubuntu-devel === Lure [n=lure@external-7.hermes.si] has joined #ubuntu-devel === Zdra [n=zdra@97.169-247-81.adsl-dyn.isp.belgacom.be] has joined #ubuntu-devel === Gman is now known as GmanAFK === bronson_ [n=bronson@adsl-75-36-145-166.dsl.pltn13.sbcglobal.net] has joined #ubuntu-devel === jamesh [n=james@169.222.11.234] has joined #ubuntu-devel === Amaranth [n=amaranth@70.85.29.100] has joined #ubuntu-devel [08:52] good morning === mpt [n=mpt@121-72-135-240.dsl.telstraclear.net] has joined #ubuntu-devel [09:01] morning dogmatism [09:01] doko * === hunger [n=tobias@pd95b0676.dip0.t-ipconnect.de] has joined #ubuntu-devel === Lure [n=lure@external-7.hermes.si] has joined #ubuntu-devel === hunger [n=tobias@pd95b0676.dip0.t-ipconnect.de] has joined #ubuntu-devel === Hobbsee [n=Hobbsee@ubuntu/member/hobbsee] has joined #ubuntu-devel === sabdfl [n=sabdfl@ubuntu/member/pdpc.silver.sabdfl] has joined #ubuntu-devel === tkamppeter [n=till@bl8-114-220.dsl.telepac.pt] has joined #ubuntu-devel === blackskad [n=blackska@d54C0B7A4.access.telenet.be] has joined #ubuntu-devel === mvo [n=egon@p54A6721C.dip.t-dialin.net] has joined #ubuntu-devel === phanatic [n=phanatic@ubuntu/member/phanatic] has joined #ubuntu-devel === carlos [n=carlos@154.Red-83-40-82.dynamicIP.rima-tde.net] has joined #ubuntu-devel === TerminX [i=d19f07d9@adsl-68-121-160-124.dsl.pltn13.pacbell.net] has joined #ubuntu-devel === seb128 [n=seb128@ubuntu/member/seb128] has joined #ubuntu-devel === Spads [n=spacehob@217.205.109.249] has joined #ubuntu-devel === phanatic [n=phanatic@ubuntu/member/phanatic] has joined #ubuntu-devel === sfllaw [i=sfllaw@debian/developer/coleSLAW] has joined #ubuntu-devel === kaptengu [n=kaptengu@c213-100-60-132.swipnet.se] has joined #ubuntu-devel === dholbach [n=daniel@i59F708F2.versanet.de] has joined #ubuntu-devel [10:09] good morning [10:09] dholbach: morgen! [10:10] <_ion> Hi [10:10] hiya mneptok, hi _ion === heno [n=henrik@ubuntu/member/heno] has joined #ubuntu-devel === KaiL [n=KaiL@p548F54B3.dip.t-dialin.net] has joined #ubuntu-devel === silwol [n=silwol@193.170.133.240] has joined #ubuntu-devel === jinty [n=jinty@196.207.32.235] has joined #ubuntu-devel === concept10 [n=concept1@ppp-70-247-171-48.dsl.rcsntx.swbell.net] has left #ubuntu-devel ["Ex-Chat"] === blackskad [n=blackska@d54C0B7A4.access.telenet.be] has left #ubuntu-devel [] === herzi [n=herzi@kiwi.mediascape.de] has joined #ubuntu-devel [10:47] Mithrandir: is there a bug for hw-detect hanging for several minutes in herd 2? [10:48] I know it was in the release notes === stub [n=stub@ppp-58.8.13.78.revip2.asianet.co.th] has joined #ubuntu-devel === finalbeta [n=finalbet@d5152A68A.access.telenet.be] has joined #ubuntu-devel [10:54] shawarma: ping ? [10:54] cjwatson: yes, I filed one, just a minute I'll find it [10:57] it's basically udev spinning, repeatedly trying to modprobe -Q i82365 [10:57] I can't find the bug now, though. :-/ [10:58] a sec === thekorn [n=markus@a89-182-21-232.net-htp.de] has joined #ubuntu-devel [10:59] https://launchpad.net/ubuntu/+source/hw-detect/+bug/78785 [10:59] Malone bug 78785 in hw-detect "tries to modprobe i82365 a gazillion times (dup-of: 76341)" [Undecided,Unconfirmed] [10:59] Malone bug 76341 in linux-source-2.6.20 "[Feisty] Linux 2.6.20 spams 'Intel ISA PCIC probe: not found.' all over /var/log/messages" [High,Confirmed] [10:59] hmm can anyone tell me how to make a change so that when I plugin a USB device, I can read the /dev/input/event* for it (chmod a+r) whenever it's re-plugged in [11:00] it's certainly not hw-detect's fault per se [11:00] or point me in the right direction === mvo_ [n=egon@p54A6674C.dip.t-dialin.net] has joined #ubuntu-devel === Seeker` [n=Seeker@195-112-32-168.dyn.gotadsl.co.uk] has joined #ubuntu-devel [11:03] Mithrandir: could you have a look on libgimme-codec from NEW today, it's needed for EasyCodecInstallation [11:04] seb128: no need to prod me about archive admin stuff, it just raises my stress level. === WaterSevenUb [n=WaterSev@azevedo.astro.up.pt] has joined #ubuntu-devel [11:04] Mithrandir: well, you are blocking my work, so how do I unblock it, just wait? [11:05] Mithrandir: fine, I'll not ping you again and note that the spec is blocked on you [11:05] seb128: it was actually a comment about a sync request from last night, but in general noting that a spec is blocked on something getting out of NEW is fine. [11:07] well, I don't prod for syncs usually, that ping was just because the package is broken for now and I was not sure if that was better to ask for a sync now or wait for the next round which can usually take some days [11:07] noted :) [11:07] and given that the oldest item in NEW is less than 48 hours old, I don't think NEW processing is proceeding at an unreasonable rate. [11:07] no, not at all [11:07] that's just I would like to get moving on the spec [11:07] I'm trying to get some of my own specs done too, which is bloody hard when we're down to just one active archive team member. [11:07] right [11:08] sorry for that :/ [11:08] np, not your fault. [11:08] we can blame mdz for making 2/3 of the archive team managers. ;-P [11:08] :) [11:09] seriously though, we need at least one other person to help out, since it's taking me more or less all my time atm. [11:09] and while doing it for a while is fine, I' [11:09] m going to implode if I have to do it full-time for years. === dholbach hugs Mithrandir [11:10] right, having only one person to manage the admin tasks is not enough === seb128 hugs Mithrandir too === mvo_ hugs Mithrandir [11:11] stop hugging and volunteer for archive administration instead. :-P [11:11] hahaha :) === mneptok lets a little air out of the overinflated Mithrandir [11:12] no popping. [11:12] well, I would be fine helping on sync requests [11:12] its the bonoboo way of fixing problems. lots of hugging! [11:12] I don't want to do NEW though because I'm not comfortable enough reviewing copyright problems, etc === seb128 slaps mvo_, no bonobo, we use dbus now :p [11:13] seb128: doing the easy ones would be doable though. Some I pass on or ask for advice on from elmo (who has loads of experience reviewing) [11:14] Mithrandir: let's not that on the list of things to talk about next week [11:14] s/not/note [11:14] yup [11:16] <\sh> who is approving NEW binary packages? :) boson has new binary packages which are replacing the old ones ;) === trickie [n=nick@basesoft.demon.nl] has joined #ubuntu-devel [11:16] \sh: I am. [11:17] \sh: which are only 15 hours old in the queue; relax [11:20] and generally, I don't process new binary packages before all arches are in, which happened 1.5 hours ago. === trickie [n=nick@basesoft.demon.nl] has left #ubuntu-devel [] [11:20] anyone got any experience with udev rules? === Yagisan [n=Yagisan@doomsday/developer/Yagisan] has joined #ubuntu-devel [11:24] saispo: Yes? [11:29] <\sh> Mithrandir: thx...I wondered if we should write a ticket or bug report about those changes [11:30] \sh: I have no idea what you are talking about. === Mez [n=Mez@ubuntu/member/mez] has joined #ubuntu-devel [11:37] \sh: no, you should not === Mez [n=Mez@ubuntu/member/mez] has joined #ubuntu-devel [11:42] doko: https://launchpad.net/ubuntu/+source/python2.5/+bug/79619 seems to be caused by a pickle incompatibility between python 2.4/2.5 [11:42] Malone bug 79619 in gnome-app-install "Add/Remove programs crashed on Feisty" [Undecided,Confirmed] [11:44] hmm, perhaps I can work around the i82365 brokenness in pcmciautils' udev rules [11:44] so wrong, but ... === ivoks [n=ivoks@backup.grad.hr] has joined #ubuntu-devel === Tonio_ [n=tonio@30.8.100-84.rev.gaoland.net] has joined #ubuntu-devel === infinity3 [n=adconrad@cerberus.0c3.net] has joined #ubuntu-devel [11:51] cjwatson, I want to be able to add the default user (1000) to the "games" group on the install of a package, [11:51] what's the best way ? [11:52] I don't think that's appropriate at all [11:52] cjwatson, why not ? [11:52] the games group is meant to be for private data used by setgid games programs that users can't get at [11:52] cjwatson, ok, maybe not the "games" group [11:53] but a custom group === silwol [n=silwol@193.170.133.240] has joined #ubuntu-devel [11:53] (which have access to a device that is setup to allow that group to have access through udev) [11:53] Mez: why? this should normally not be necessary; the only thing that adds the first user to a group is supposed to be the installer [11:53] use the plugdev group, if it's pluggable, or something else established === ciscosurfer [n=magic@216-80-124-12.snb-bsr1.chi-snb.il.cable.rcn.com] has joined #ubuntu-devel [11:54] cjwatson, cool... didnt think of the plugdev group [11:54] cheers [11:57] shawarma: excuse me === hunger_ [n=tobias@pd95b0676.dip0.t-ipconnect.de] has joined #ubuntu-devel [11:58] i investigate about gnome-pty-helper because i have a system which doesn't want to run g-t. I get an error about creatin process child === ciscosurfer [n=magic@216-80-124-12.snb-bsr1.chi-snb.il.cable.rcn.com] has left #ubuntu-devel ["Leaving"] === Mez growls === heno [n=henrik@ubuntu/member/heno] has joined #ubuntu-devel === ivoks [n=ivoks@backup.grad.hr] has joined #ubuntu-devel === fernando [n=fernando@unaffiliated/musb] has joined #ubuntu-devel [12:09] iwj: I merged your g-a-i--codecs branch and plan to upload it today. is that ok with you? === Hobbsee [n=Hobbsee@ubuntu/member/hobbsee] has joined #ubuntu-devel [12:12] potentially a big problem (translations wise) in 6.06 - bug #79682 [12:12] Malone bug 79682 in Ubuntu "Bug in the new language update on 16/01/2007" [Undecided,Confirmed] https://launchpad.net/bugs/79682 [12:12] http://www.canis.no/nettbutikk/omtale.php?id=Dtb766 LOL! [12:12] rename needed? [12:13] mvo: That's great, thanks. [12:13] hey simira [12:13] iwj: it seems like we do not yet have Codec data in the archive though, but IIRC seb uploaded the modified debs only yesterday [12:14] hi Hobbsee. Not coming up for the distro sprint, eh? ;) [12:14] simira: nope - you? === Hobbsee didnt know about it, in truth [12:15] mvo: the codec data for (from what i see) all gstreamer packages is already there [12:17] Hobbsee: it's not really any official info on it, I think. But as it is in my neighbourhood, and Tollef is going, I'll probably show up a day or two. [12:18] mvo: I agree with slomo; where did you look ? [12:18] anyone besides pitti who can debug the language pack problem? if it's possible to prevent missing translations on at least some of ubuntu 6.06 installations, it would be good to try to be quick === Lure [n=lure@external-7.hermes.si] has joined #ubuntu-devel [12:20] simira: fun :) === infinity_ [n=adconrad@cerberus.0c3.net] has joined #ubuntu-devel [12:21] iwj: I run the extraction script and looked at the output, no Codec in there. I will investiagte [12:22] mvo: how come we don't have Codec data in the archive? [12:22] mvo: ls /usr/share/gstreamer-0.10/plugin-info ? === Hobbsee [n=Hobbsee@ubuntu/member/hobbsee] has joined #ubuntu-devel [12:23] mvo: I did update almost all the packages yesterday afternoon and they built correctly [12:23] seb128: it was not extraced at least, I will check [12:23] ok, let me know [12:24] seb128: the extraction script runs on rookery, it may just take a bit until it is mirroed there [12:24] mvo: Hmm. In the tests I did I basically had to `by hand' point the extraction script at my `special' .debs. [12:24] Oh, yes, if it was just yesterday afternoon it may just be lag. [12:26] seb128: can you give me one packagename/version number of a updated codec package? [12:26] <\sh> Mithrandir: sorry to bother you again, but any clue how to resolve this issue: http://librarian.launchpad.net/5774155/buildlog_ubuntu-feisty-amd64.core%2B%2B_1.7-6ubuntu1_FAILEDTOBUILD.txt.gz (in pbuilder on amd64 it works) [12:27] gstreamer0.10-plugins-ugly_0.10.5-0ubuntu2_i386.deb [12:27] mvo: ii gstreamer0.10-plugins-go 0.10.5-1ubuntu2 GStreamer plugins from the "good" set [12:27] grah [12:27] that's gstreamer0.10-plugins-good [12:27] that's the first one I've updated [12:27] I think you want to use -ugly because iirc only -ugly has a .desktop file (in g-a-i/menu-data-additional). === xerxas [n=r67894@AGrenoble-257-1-5-121.w86-193.abo.wanadoo.fr] has joined #ubuntu-devel [12:28] \sh: /bin/sh: latex: command not found === infinity4 [n=adconrad@cerberus.0c3.net] has joined #ubuntu-devel [12:29] \sh: You need to build-depend on tetex-bin [12:30] is the gnome control center an upsream thing? [12:30] or an ubuntu thing? [12:31] StevenK: move the build-dep on tetex-bin to build-depends, not build-depends-index (or make it not call latex when you build with -B) [12:32] Mithrandir: I think you mean \sh [12:32] Lathiat: upstream [12:32] Lathiat: upstream, I think. Or what do you mean? gnome-control-center? [12:32] Lathiat: why? [12:32] seb128: just wondering [12:32] thanks [12:33] ('sok, i haven't come to flame ;) [12:33] <\sh> Mithrandir:thx :) [12:34] StevenK: indeed, I do. I have forgotten to load irssi's psychic module. [12:34] some people believe that this suse/opensuse related gnome control center is upstream thing === jamesh [n=james@169.222.11.234] has joined #ubuntu-devel [12:34] I think it's pretty awful :P [12:35] Mithrandir: :-P === mvo re-runs the data extraction === freeflying [i=flyingfr@gobstopper.dreamhost.com] has joined #ubuntu-devel [12:40] coyctecm: it's upstream now [12:49] Mithrandir: Do you mind if I look at your uswsusp merge? [12:53] StevenK: please feel free. [12:53] Mithrandir: Thanks [12:54] StevenK: note that you need usplash from bzr to build it. === sahin_h [n=ezaz@dsl5402ABEA.pool.t-online.hu] has joined #ubuntu-devel [12:59] <\sh> guys, I have a very interesting question: src package bidiui resulsts in a binary package icedove-bidiui...should we rename it to mozilla-thunderbird-bidiui? [01:00] <\sh> I'm asking because if we do, to match our mozilla-* packaging scheme, we would never get any mom output on the original package [01:01] saispo: For what? [01:01] \sh: rename the source? [01:02] <\sh> Amaranth: binary package is named icedov-bidiui ... the src package name is just bidiui [01:02] changing the binary package makes mom ignore it? [01:02] <\sh> Amaranth: I don't know... [01:03] i would hope it looked at source packages === geser [n=michael@ubuntu/member/geser] has joined #ubuntu-devel [01:05] mom only cares about source packages. [01:07] Mithrandir: could you please give-back wxwidgets2.6 on amd64? thanks === rideout [n=rideout@71-215-81-103.hlrn.qwest.net] has joined #ubuntu-devel [01:09] iwj: what do you think about changing the codec extraction so that it auto-generates a desktop file for them? [01:13] <\sh> Mithrandir: so it's ok to rename the resulting binary-package to mozilla-thunderbird-bidiui [01:14] \sh: correct. [01:14] geser: given-back [01:21] mvo: I did think about that but it seems that the descriptions in the desktop files aren't quite the same as the ones in package control files. === cprov [n=cprov@monga.dorianet.com.br] has joined #ubuntu-devel [01:21] mvo: And it didn't seem like too much of a problem to have to explicitly write a desktop file in menu-data-additional for packages we want automatically offered for installation. [01:22] mvo: I wasn't sure even whether it was right to cause programs to appear in g-a-i that didn't previously. [01:22] (I see that gstreamer0.10-ffmpeg has one in m-d-a too.) [01:25] iwj: right. I will probably just add something that warns about codec packages that are not in menu-data-additional [01:26] \sh: "thunderbird-bidiui" would be typical, I thought, not mozilla-* [01:26] <\sh> cjwatson: hmmm..our tbird package is named mozilla-thunderbird [01:27] mvo: Oh, you mean, when you invent a .desktop file, put a warning in it ? === Tonio_ [n=tonio@30.8.100-84.rev.gaoland.net] has joined #ubuntu-devel === TeTeT [n=spindler@modemcable178.77-70-69.static.videotron.ca] has joined #ubuntu-devel === twilight [n=twilight@ubuntu/member/twilight] has joined #ubuntu-devel [01:29] <\sh> cjwatson: I just could need a decision how we name those packages..so it matches our binary package naming scheme for mozilla-* apps ,) [01:29] iwj: no, just put a line in the log that there are codec packages that are not yet available via g-a-i. so that we know whats missing [01:30] OIC. Right. [01:30] Shall I add that feature ? [01:31] \sh: oh, match the existing naming scheme then [01:31] iwj: I'm looking at it right now to see why the extraction is not working. I will probably just add it along the way [01:32] <\sh> cjwatson: k will do [01:32] OK. [01:32] It seems odd that it's not working. Is it getting the right .debs ? [01:33] Do you want me to have a poke around in the relevant bit of rookery ? === silwol [n=silwol@193.170.133.240] has joined #ubuntu-devel [01:33] iwj: I figured it out, it was a problem in the fnmatch.fnmatch() line apparently [01:33] Maybe I broke it somehow between my final test and the checkin/push. === fernando__ [n=fernando@189.0.132.137] has joined #ubuntu-devel [01:33] mvo: Err, really ? What problem ? === freeflying_ [i=flyingfr@gobstopper.dreamhost.com] has joined #ubuntu-devel [01:35] Oh, don't tell me that some of them have filenames of the form ./whatever ? [01:35] iwj: fnmatch() matches from the start and the tarfile starts with "./" (e.g. "./usr/share .."). I commited a fix as rev 435 [01:35] I wonder why it worked for me. Are these packages built in a different way to my test packages ? Well. [01:35] mvo: soyuz had the same problem [01:36] iwj: are the file names by any chance quite long (say, >100 characters or so)? [01:36] iwj: the packages come from the buildds, I don't know [01:36] cjwatson: No. [01:36] ok, we ran into a problem of that form with d-i uploads [01:36] mvo: Remind me of your branch URL ? I don't seem to have it lying around here. [01:36] it manifested once part of a version number changed from 9 to 10. :-/ [01:36] Lovely. [01:37] iwj: http://bazaar.launchpad.net/~ubuntu-core-dev/gnome-app-install/main/ [01:38] mvo: Err, I think you have to try both because obviously some .debs have it without the ./ [01:38] if filename.startswith('./'): filename = filename[2:] [01:39] IJLTS $filename =~ s,^\./,,; [01:39] iwj: that is strange, where does this inconsitency comes from? [01:40] I recall some debs contain just './' [01:40] very old .debs used to not have the ./ [01:40] nowadays I'm pretty sure they all do. Unless you constructed test packages using ar and tar directly or something? [01:40] cjwatson: directly> No, but I'm not entirely sure what dpkg-deb versions I will have been using. Nothing very old. === chrisle [n=chris@p54BE4117.dip0.t-ipconnect.de] has joined #ubuntu-devel [01:41] I wish there were a way to tell tar not to do that. [01:41] oh, by very old I think I mean pre-potato or at least pre-woody [01:41] No, nothing that old near any of this. [01:41] I think it's due to find invocation [01:42] Oh, probably someone helpfully changed it to work with broken (non-GNU) find. === jrib [n=jasonr@upstream/dev/jrib] has joined #ubuntu-devel [01:42] It doesn't seem implausible that the ./ will go away again. [01:43] iwj: fair enough, I changed it in my local tree again [01:43] mvo: Right. [01:44] Thanks for debugging it. [01:44] shawarma: for fixing my gnome-term ) [01:45] saispo: Er... Ok. :-) [01:45] i don't understand why i get this message... [01:45] have you an idea ? [01:47] StevenK: most do [01:47] they've got to reference /, after all ... [01:48] oh, you mean just ./ and no other entries? udebs do that quite often, if they only have maintainer scripts. Policy-compliant .debs can't really manage it. === AlinuxOS [n=AlinuxOS@87.7.123.56] has joined #ubuntu-devel === AlinuxOS [n=AlinuxOS@host56-123-dynamic.7-87-r.retail.telecomitalia.it] has joined #ubuntu-devel [01:53] cjwatson: Uh ? Old .debs have ./ as the first entry but the other entries do not start with ./, they just start with the first actual path component. [01:54] I don't think I disagreed with that? === pecisk [n=pecisk@purvc-44-54.maksinets.lv] has joined #ubuntu-devel [01:57] fridge editors: there is a typo in the events page: "Fiesty Developer Sprint" [01:57] cjwatson: Oh, I see, sorry, I was just misunderstanding you. === LongPointyStick [n=user@ubuntu/member/hobbsee] has left #ubuntu-devel [] [02:02] iwj: I updated it now and re-run the data-extraction. hopefully all is fine now === seb128 [n=seb128@ubuntu/member/seb128] has joined #ubuntu-devel === pvanhoof [n=pvanhoof@d54C0EE14.access.telenet.be] has joined #ubuntu-devel [02:07] enrico: what happened to apt-front-watcher in libept? === cr3 [n=marc@modemcable178.77-70-69.static.videotron.ca] has joined #ubuntu-devel === rodarvus [n=rodarvus@ubuntu/member/rodarvus] has joined #ubuntu-devel === ivoks [n=ivoks@backup.grad.hr] has joined #ubuntu-devel === shackan [n=shackan@85-18-14-13.fastres.net] has joined #ubuntu-devel [02:22] mvo: Good, thanks a lot. [02:26] mvo: did you get the gstreamer index files now? [02:26] iwj: cheers [02:27] seb128: yes, some small tweaks to the extraction script did the trick === zul [n=chuck@CPE0006258ec6c1-CM000a73655d0e.cpe.net.cable.rogers.com] has joined #ubuntu-devel [02:27] mvo: ok, good === dsas [n=dean@cpc3-stok6-0-0-cust253.bagu.cable.ntl.com] has joined #ubuntu-devel === lotusleaf [n=lotuslea@kernel-panic/member/carne.asada.burrito] has joined #ubuntu-devel === AlinuxOS [n=AlinuxOS@87.7.123.56] has joined #ubuntu-devel === sgithens [n=sgithens@c-71-201-56-4.hsd1.il.comcast.net] has joined #ubuntu-devel === ivoks [n=ivoks@backup.grad.hr] has joined #ubuntu-devel [02:47] MIthrwhat is the general procedure when builds are failing because .la files cannot be found? [02:48] iwj: rocking! (re bug #76749) [02:48] Malone bug 76749 in gs-esp "[SPARC/feisty] gs-esp BUS ERROR" [High,Fix released] https://launchpad.net/bugs/76749 === phanatic [n=phanatic@ubuntu/member/phanatic] has joined #ubuntu-devel [02:53] pitti: in the scipy build log for powerpc, dh_strip ignores files which it cannot recognize, but the -dbgsym creator exits with an error. [02:57] where can you find the ub untu NEW queue ? [03:01] Mez: I've added a link to http://wiki.ubuntu.com/DeveloperResources, under "Package archive" [03:02] cheers cjwatson === apokryphos- [n=francis@87-194-86-227.bethere.co.uk] has joined #ubuntu-devel === ivoks [n=ivoks@backup.grad.hr] has joined #ubuntu-devel === infinity_ [n=adconrad@cerberus.0c3.net] has joined #ubuntu-devel === afflux [i=discoflu@gateway/tor/x-b1f7635a80ce7e31] has joined #ubuntu-devel === rob [i=RobertSt@freenode/staff/rob] has joined #ubuntu-devel [03:23] fabbione: NP === abattoir [n=abattoir@cm15.omega18.maxonline.com.sg] has joined #ubuntu-devel === jsgotangco [n=jsg123@ubuntu/member/jsgotangco] has joined #ubuntu-devel === jono [n=jono@ubuntu/member/jono] has joined #ubuntu-devel [03:31] /win 2 [03:37] Mithrandir, can you promote pulse and friends please ? its on anastacia now === sgithens_ [n=sgithens@vpn161102.vpn.northwestern.edu] has joined #ubuntu-devel === dogmatism [n=josh@24.115.218.54.res-cmts.sth.ptd.net] has left #ubuntu-devel ["Leaving"] [03:45] ogra: yay :) are you going to use pulse-alsa or gst-pulse for edubuntu? [03:45] ogra: if it's on anastacia, I'll get to it when I do archive admin stuff. === titfortat [n=josh@24.115.218.54.res-cmts.sth.ptd.net] has joined #ubuntu-devel === ogra_ [n=ogra@p548AF27A.dip.t-dialin.net] has joined #ubuntu-devel [03:50] Mithrandir, ok, thanks === shackan [n=shackan@85-18-14-13.fastres.net] has joined #ubuntu-devel [03:51] slomo, likely pulse-alsa to support volume control on thin clients [03:51] slomo, crimsun is working on a libasound2 split to get it to main without jack dependency [03:52] s/libasound2/libasound2-plugins/ === Fjodor [n=sune@0x55510b65.adsl.cybercity.dk] has joined #ubuntu-devel === `anthony [n=anthony@169.222.9.112] has joined #ubuntu-devel === sbalneav [n=sbalneav@mail.legalaid.mb.ca] has joined #ubuntu-devel === titfortat [n=josh@24.115.218.54.res-cmts.sth.ptd.net] has joined #ubuntu-devel === sabdfl [n=sabdfl@ubuntu/member/pdpc.silver.sabdfl] has joined #ubuntu-devel === j_ack [n=rudi@p508DB9AF.dip0.t-ipconnect.de] has joined #ubuntu-devel [04:32] argh, pitti is on holiday [04:32] Mithrandir: do you think pitti would scream if I promoted the refit source package just for gptsync-udeb? === KaSto [n=Herthane@p54BD17AC.dip0.t-ipconnect.de] has joined #ubuntu-devel [04:33] it's a violation of process, but otherwise I can't progress with intel-mac-support until after the sprint === Huahua [n=hua_@122.0.231.80] has joined #ubuntu-devel [04:35] Mithrandir: please give-back gnuradio on all archs. thanks === bddebian [n=bdefrees@63.81.56.182] has joined #ubuntu-devel === poningru [n=poningru@n128-227-104-101.xlate.ufl.edu] has joined #ubuntu-devel === Xemanth [n=xemanth@dsl-hkigw7-fe1af900-42.dhcp.inet.fi] has joined #Ubuntu-devel === TreMobyl [n=solarion@cruftix.physics.uiowa.edu] has joined #ubuntu-devel === poningru [n=poningru@n128-227-104-101.xlate.ufl.edu] has joined #ubuntu-devel === milli [n=milli@famfrit.acmeps.com] has joined #ubuntu-devel [05:02] bug #79109 [05:02] Malone bug 79109 in base-installer "feisty-alternate-i386 for herd-2 cannot install kernel from CDROM" [High,Confirmed] https://launchpad.net/bugs/79109 [05:05] cjwatson: I just noticed your upload of partman-efi. Lots of commednts about "Intel Macs". I hava a 64bit Xeon EFI system here I've had no end of trouble getting booting right... does all this work benefit that as well? [05:05] wasabi_: I'm not sure how the non-Mac i386 EFI stuff works [05:06] Well, I know, at least, that elilo doesn't work right. [05:06] wasabi_: does /sys/firmware/efi exist? [05:06] and how does elilo fail? [05:06] Let me check. Got to SSH through a few layers. [05:06] I don't remember. I set it up almost 4 months now. It's still got the CD with GRUB on it that I use to boot in the drive. ;0 [05:06] wasabi_: my change should improve partman for you by avoiding mounting the EFI system partition, which I believe confuses elilo [05:07] but if that's not the problem elilo is having, it probably won't help [05:07] * Automatically use existing EFI system partitions on Intel Macs as EFI [05:07] boot partitions (LP: #38225). [05:07] No /sys/firmware/efi [05:07] that was a slightly unhelpful changelog, actually, because that's done regardless of platform [05:08] This system can also boot with regular DOS partitions... [05:08] But, I got it all set up with shiney new GPT partitions... [05:08] And then realized grub broke on those. [05:08] although on Intel Macs, the EFI system partition showed up in a new format (fat32) that partman-efi hitherto hadn't recognised [05:08] And spent 3 days trying to get elilo working before I gave up. [05:08] grub breaks if you don't run gptsync [05:08] gptsync? [05:08] that syncs the GPT partition table to MBR for the benefit of legacy software [05:08] Oh that makes MBR? [05:09] it's not really within the EFI spec, but in practice I believe nothing should care [05:09] I got it to a EFI boot prompt thing... [05:09] Figured out how to navigate to the disk... [05:09] gptsync's in the refit package [05:09] But elilo.exe or whatever it was just wouldn't run properly. I'll give it another try later. [05:09] No refit package.... [05:09] I've been running entirely in BIOS compat mode on this intel mac so far [05:10] amd64 arch? [05:10] it's in universe [05:10] oh, not for amd64 yet [05:10] Ahh. [05:10] there's a Debian bug about that - needs some gnu-efi patch I haven't got my hands on yet [05:10] Also, I have no elilo package. [05:10] same reason, probably [05:10] I remember now. Couldn't find a 64 bit version. ;) [05:10] I'll be able to work on that once I get the gnu-efi patch [05:11] well, theoretically, anyway. this mac should be amd64-capable [05:12] Guess nobody's just run a mac on 64 bit mode, eh? [05:13] cjwatson: should be fine, I guess. [05:14] wasabi_: I'm sure they have - in fact I can probably give it a try shortly with a live CD [05:14] Oh, works fine with a livecd. Just nt with EFI. :) [05:14] Off a GPT partition. [05:15] (Other than the unrelated problem of the LiveCD's X server hard locking this system, and having no way to disable the X server) [05:15] it's all a bit raw [05:15] Yeah. I got that. :) [05:20] I am actually sort of amazed how the x86_64 platform has such a large number of problems still. Would have thought vendors would have given a shit by this point. Guess not. =( [05:22] By vendors I don't mean ya'll. I mean like, the dudes selling the servers. === lmanul [n=manu@dan75-4-82-239-58-38.fbx.proxad.net] has joined #ubuntu-devel === dsas [n=dean@cpc3-stok6-0-0-cust253.bagu.cable.ntl.com] has joined #ubuntu-devel === somerville32 [n=somervil@ubuntu/member/somerville32] has joined #ubuntu-devel [05:31] Riddell: it's finally gone! libept is now smart enough to build the index in ~/.debtags if it cannot write to /var/lib/debtags [05:31] Riddell: and if it figures out that the index in /var/lib/debtags is up to date, it deletes the one in the home [05:31] Riddell: no need for that horrid hack [05:32] Riddell: we how have a much better horrid hack! :) [05:32] :) === stratus [n=stratus@cronopio.rits.org.br] has joined #ubuntu-devel [05:32] ok, thanks === pradeep [n=pradeep@59.92.51.43] has joined #ubuntu-devel === cypher1 [n=cypher1@59.92.130.190] has joined #ubuntu-devel [05:48] gpocentek: please subscribe ubuntu-sru or motu-sru (as appropriate) to SRU bugs rather than me+mdz individually [05:48] cjwatson: ok [05:49] Mithrandir: finding an archive admin solution is on the sprint agenda next week === Gerrath [n=Shane_@unaffiliated/gerrath] has joined #ubuntu-devel === poningru_ [n=poningru@n128-227-104-101.xlate.ufl.edu] has joined #ubuntu-devel === poningru_ [n=poningru@n128-227-104-101.xlate.ufl.edu] has joined #ubuntu-devel === robepisc [n=robepisc@217-133-31-136.b2b.tiscali.it] has joined #ubuntu-devel [06:14] cjwatson: is one ack enough to upload to -proposed [06:14] ? [06:14] yes [06:15] ok, thanks [06:15] c.f. https://wiki.ubuntu.com/StableReleaseUpdates [06:15] I need to read it again === glatzor [n=sebi@ppp-62-245-160-173.dynamic.mnet-online.de] has joined #ubuntu-devel [06:16] Would it be possible for Xubuntu to be added to releases.ubuntu.com? [06:17] It is currently on cdimages.ubuntu.com but not releases.ubuntu.com [06:18] that would require Canonical supporting Xubuntu directly ... [06:18] I can put in an informational link, but I'm afraid we aren't going to actually distribute it from releases.u.c === phanatic_ [n=phanatic@ubuntu/member/phanatic] has joined #ubuntu-devel [06:22] somerville32: link added [06:22] cjwatson: Thanks. [06:23] Mithrandir: please give-back libapache-mod-jk on all arch. thanks. [06:25] cjwatson, [13:24] somerville32 : I think cjwatson is talking about a URL link pointing to Xubntu on http://releases.ubuntu.com/, not a link to help with launchpad. [06:25] cjwatson, We're trying to set things up so that we can use the mirror prober on launchpad for Xubuntu mirrors. [06:25] oh === holycow [n=a@mail.wjsgroup.com] has joined #ubuntu-devel [06:26] erm, that will have to be resolved some other way - releases.u.c has a lot of mirrors with disk space constraints and I can't just arbitrarily add another flavour to it [06:26] cjwatson, Who should I chat with? [06:27] somebody on #launchpad, maybe salgado === Burgwork [n=corey@ubuntu/member/burgundavia] has joined #ubuntu-devel === Viper550 [n=Viper550@d57-121-167.home.cgocable.net] has joined #ubuntu-devel === phanatic_ is now known as phanatic [06:52] I saw that new Windows based Ubuntu installer thing, that is just AWESOME! [06:58] (and unsupported) [06:58] Hnngg, the state of Xen in Feisty is pretty appalling. [06:58] (i.e. the result of using that installer is unsupported [06:58] ) [06:58] so don't ask for help here === Viper550 [n=Viper550@d57-121-167.home.cgocable.net] has left #ubuntu-devel ["Leaving"] [06:59] Yes; I welcome the effort, but installer bugs have required workarounds in the distro in the past so we need to be clear about its status === thekorn [n=markus@a89-182-5-239.net-htp.de] has joined #ubuntu-devel === Spads [n=spacehob@host-87-74-18-132.bulldogdsl.com] has joined #ubuntu-devel === tkamppeter [n=till@bl8-127-73.dsl.telepac.pt] has joined #ubuntu-devel [07:03] Was acroread killed before or after January 11th? [07:14] somerville32: 2007-01-12 11:03:17 CET Removed feisty Release multiverse text 7.0.9-0.0.ubuntu1 [07:15] geser: thanks [07:17] why was it nuked? [07:17] license [07:17] nasty [07:18] I thought it was distributable [07:18] no, it's always been dubious === MagnusR [n=magru@c83-252-237-96.bredband.comhem.se] has joined #ubuntu-devel [07:18] it was removed from Debian years and years ago - I believe our import came from Marillat [07:21] Do I have to do some magic to get a feisty daily to install from a USB cd-rom drive? === Adri2000 [n=adri2000@ubuntu/member/adri2000] has joined #ubuntu-devel === frafu [n=frafu@85.93.207.22] has joined #ubuntu-devel === tincan_30 [n=jim@ip68-13-233-167.ok.ok.cox.net] has joined #ubuntu-devel [07:31] How can I find out who the package maintainer for mod-mono is? [07:32] tincan_30: folks in https://launchpad.net/~mono may be able to helpl [07:32] help === afflux [i=discoflu@gateway/tor/x-2184dafadebcd8e4] has joined #ubuntu-devel [07:33] cjwatson, Thanks...I'll take a look, edgy needs some package lovin. [07:34] edgy won't get further changes except where absolutely necessary; most development takes place in feisty [07:35] tincan_30: If you are curious about a package, who maintains it etc, open up a shell, and type in: apt-cache show mod-mono [07:36] libapache2-mod-mono, as it happens [07:36] hmm...mod-mono has dependency issues, they are fixed in debian(stable and stabe) not sure why this wouldn't be fixed. [07:36] that just gives you MOTU in this case though, since it's synced from Debian [07:36] if it's uninstallable, that would be cause for a stable release update; contact the mono group [07:36] unstable* [07:37] cjwatson, that is correct..I'm on it. Thanks for the info. === Czubek [n=Damian@azt234.neoplus.adsl.tpnet.pl] has joined #ubuntu-devel [07:39] https://launchpad.net/ubuntu/+source/mod-mono/+bug/65454 and https://launchpad.net/ubuntu/+source/mod-mono/+bug/72912 (possibly duplicates) [07:39] Malone bug 65454 in mod-mono "[UNMETDEPS] mod-mono has unmet dependencies" [Undecided,Confirmed] === nixternal_ [n=nixterna@ubuntu/member/nixternal] has joined #ubuntu-devel [07:40] cjwatson, that is it...I talked to the sid maintainer, he was willing to help but did not know who to contact. === r0bby_ [n=wakawaka@guifications/user/r0bby] has joined #ubuntu-devel === alex-weej [n=alex@halls-129-31-82-59.hor.ic.ac.uk] has joined #ubuntu-devel === tincan_30 [n=jim@ip68-13-233-167.ok.ok.cox.net] has left #ubuntu-devel ["Leaving"] === LaserJock [n=mantha@ubuntu/member/laserjock] has joined #ubuntu-devel === netjoined: irc.freenode.net -> anthony.freenode.net === TheMuso [n=luke@ubuntu/member/themuso] has joined #ubuntu-devel === Gerrath [n=Shane_@unaffiliated/gerrath] has joined #ubuntu-devel === seb128 [n=seb128@ubuntu/member/seb128] has joined #ubuntu-devel === seb128 [n=seb128@ubuntu/member/seb128] has joined #ubuntu-devel === geser [n=michael@ubuntu/member/geser] has joined #ubuntu-devel === slomo [n=slomo@ubuntu/member/slomo] has joined #ubuntu-devel === jdub [n=jdub@home.waugh.id.au] has joined #ubuntu-devel === slomo [n=slomo@ubuntu/member/slomo] has joined #ubuntu-devel === jono [n=jono@ubuntu/member/jono] has joined #ubuntu-devel === mc44 [n=mc44@unaffiliated/mc44] has joined #ubuntu-devel === niktaris [n=niktaris@ppp176-231.adsl.forthnet.gr] has joined #ubuntu-devel === jinty [n=jinty@196.207.32.235] has joined #ubuntu-devel === coyctecm [n=niko@a84-231-77-150.elisa-laajakaista.fi] has joined #ubuntu-devel === dholbach_ [n=daniel@i59F76A91.versanet.de] has joined #ubuntu-devel === cassidy [n=cassidy@host-213-189-171-21.brutele.be] has joined #ubuntu-devel === frafu [n=frafu@85.93.207.22] has joined #ubuntu-devel [08:42] Hello, can anybody please tell me where I can find informations about the Feisty dev sprint scheduled for next week? [08:43] http://fridge.ubuntu.com/event [08:44] http://fridge.ubuntu.com/node/714 === gicmo [n=gicmo@p5491C8A9.dip.t-dialin.net] has joined #ubuntu-devel [08:45] frafu: It's a week long event where the core ubuntu developers get together for hacking. [08:46] will there be any reports about what they have talked? [08:47] Are there some wiki pages with a plan about what they will talk about? [08:47] frafu: Probably, it's not much of a talking meeting though. More of a "getting hands dirty and hacking" [08:48] So it's not like the summit at Google a few months ago? [08:48] frafu: nope. === TerminX [i=d186e6a5@adsl-68-122-6-66.dsl.pltn13.pacbell.net] has joined #ubuntu-devel [08:51] Are there some webpages about what they will work on? [08:52] cjwatson: btw: bughelper now does and/or nested statements in xml and has a bugxml -sa <..> (simple add of 'clues') === tkamppeter_ [n=till@bl8-120-223.dsl.telepac.pt] has joined #ubuntu-devel === jinty_ [n=jinty@196.207.32.236] has joined #ubuntu-devel === fsmw [n=Fernando@200.72.33.75] has joined #ubuntu-devel [08:58] dsas: As far as I understand your reply there is not much information available about the sprint. More broadly, is there any information available on what the core developer are working on? Or does their work mainly consist in importing the debian and adjusting it for Feisty? [08:59] frafu: I'm not a core-dev I don't know what's planned or even if much is planned in advance. [09:01] frafu: the core devs do do that, also administer the archive, package somethings directly (e.g. kernel) or push on ahead of debian (e.g. gnome packaging or python2.5 transition I think), they write the installer, monitor security updates [09:01] frafu: we'll work on the specs targetted for feisty release and discuss them, work on them together [09:02] frafu: There's lots of things I guess. maybe some of the interviews on http://behindubuntu.org/ will give some insight. [09:03] dsas: I did not know that website, thanks === BenC [n=bcollins@debian/developer/bcollins] has joined #ubuntu-devel [09:07] dholbach: So I suppose you will mostly work on these https://blueprints.launchpad.net/ubuntu/+specs [09:08] those of the list targeted for Feisty [09:08] ? === mpt [n=mpt@121-72-135-240.dsl.telstraclear.net] has joined #ubuntu-devel === johanbr [n=j@JBrannlund.MathStat.Dal.Ca] has joined #ubuntu-devel [09:08] frafu: https://blueprints.launchpad.net/ubuntu/feisty - yep [09:09] dsas, dholbach: thanks for the informations [09:10] frafu: anytime === j_ack [n=rudi@p508D8BAA.dip0.t-ipconnect.de] has joined #ubuntu-devel === kaptengu [n=kaptengu@c213-100-60-132.swipnet.se] has joined #ubuntu-devel === cassidy [n=cassidy@host-213-189-171-21.brutele.be] has joined #ubuntu-devel === iankesterhaney [n=chatzill@cpe-24-27-109-235.houston.res.rr.com] has joined #ubuntu-devel [09:17] hello, i am having trouble with dpkg --debug=200, it says * options should be piped to less. when piped to less it shows the same message === iankesterhaney [n=chatzill@cpe-24-27-109-235.houston.res.rr.com] has left #ubuntu-devel [] === silwol [n=silwol@193.170.134.167] has joined #ubuntu-devel === vamo [n=vamo@r5by25.net.upc.cz] has joined #ubuntu-devel === vamo [n=vamo@r5by25.net.upc.cz] has left #ubuntu-devel [] [09:29] dholbach: do we build metacity with the compositor flag? [09:29] mdke: afaik we do [09:29] dholbach: thanks. I'll give it a go [09:30] no we don't [09:30] ah, i was wondering why the gconf key had no effect :) [09:31] seb128: is it any good? [09:31] it adds a Depends on libcm and there was no tarball and there is no ABI compatibility for that lib [09:31] ah [09:31] I've just uploaded libcm 0.1.1 [09:31] we might reconsider that for the next upload === mdke nods [09:31] hint for dholbach who will do the update tomorrow :) [09:31] poor dholbach :) [09:31] i'll just upload [09:31] you guys will figure ou the rest ;) [09:32] :) [09:32] just kidding :) [09:32] I wonder if it will be a realistic alternative for us to provide instead of the other options [09:32] I'll probably upload compiz 0.3.6 tomorrow [09:33] with a new keybinding compat plugin for GNOME [09:33] and the number of workspaces adapted [09:33] ok see you tomorrow [09:33] night [09:33] nightiw [09:33] nightie === mdke lifts up dholbach's nightie [09:33] which means it should behave in a better way out of the box === Burgwork hugs seb128 [09:35] geser: given-back. [09:35] mdz: sounds good. [09:37] seb128: are we going to be testing beryl as well? [09:37] Burgwork: I'm not for sure [09:37] ok, just wondering [09:37] dunno what other people are doing [09:37] I've already too much to do [09:38] and I would prefer to use compiz than beryl [09:38] if you are doing compiz 0.3.6, I will poke the compiz bugs once that hits the repos [09:38] thank you for that [09:38] no worries === Lure [n=lure@clj46-234.dial-up.arnes.si] has joined #ubuntu-devel [09:41] <_ion> I still wish compiz had the state plugin. You can define rules such as "put firefox windows to desk 1 by default", "view mplayer brighter than other windows" etc. === lotusleaf [n=lotuslea@kernel-panic/member/carne.asada.burrito] has left #ubuntu-devel ["trombone"] [09:44] _ion: well, it should not be too hard to adapt to compiz and go upstream if there is a version for beryl done [09:45] Burgwork: nobody has uploaded packages which are suitable for the archive yet. [09:45] (for beryl) [09:45] there was an upload which I had to reject due to licence problems. [09:45] Mithrandir: ah. Which doesn't speak highly for installing it by default [09:46] well, it was mostly stuff like not shipping the real source. [09:46] and there are some problematic plugins [09:46] those'd need to go to multiverse since there's no free shader fragment compiler. [09:48] ah, ouch === Gman [n=gman@169.222.9.235] has joined #ubuntu-devel === ivoks [n=ivoks@17-81.dsl.iskon.hr] has joined #ubuntu-devel === sgithens [n=sgithens@che116228.chem.northwestern.edu] has joined #ubuntu-devel === allee [n=ach@allee.mpe.mpg.de] has joined #ubuntu-devel === hopf [n=timon@dyndsl-091-096-004-199.ewe-ip-backbone.de] has joined #ubuntu-devel === hopf [n=timon@dyndsl-091-096-004-199.ewe-ip-backbone.de] has left #ubuntu-devel ["Kopete] === licio [n=licio@ubuntu/member/licio] has joined #ubuntu-devel === Gman [n=gman@169.222.9.235] has joined #ubuntu-devel === geser [n=michael@ubuntu/member/geser] has joined #ubuntu-devel === jdub [n=jdub@home.waugh.id.au] has joined #ubuntu-devel === jdub [n=jdub@home.waugh.id.au] has joined #ubuntu-devel === mdke hugs ogra [11:08] mdke, thanks, thats needed [11:09] ogra: that was a proper hug, not one of those bugday ones :) [11:09] i know :') === mvo hugs ogra [11:11] thanks === allee [n=ach@allee.mpe.mpg.de] has left #ubuntu-devel ["Konversation] === Keybuk [n=scott@169.222.10.235] has joined #ubuntu-devel === raphink [n=raphink@ubuntu/member/raphink] has joined #ubuntu-devel === zul_ [n=chuck@CPE0006258ec6c1-CM000a73655d0e.cpe.net.cable.rogers.com] has joined #ubuntu-devel === johanbr [n=j@JBrannlund.MathStat.Dal.Ca] has joined #ubuntu-devel === chrisle [n=chris@p54BE4117.dip0.t-ipconnect.de] has joined #ubuntu-devel === marsu_ [n=user@c83-252-78-72.bredband.comhem.se] has joined #ubuntu-devel === marsu_ [n=user@c83-252-78-72.bredband.comhem.se] has left #ubuntu-devel [] === mruiz [n=mruiz@ubuntu/member/mruiz] has joined #ubuntu-devel === wasabi_ [n=wasabi@ubuntu/member/wasabi] has joined #ubuntu-devel === Tonio_ [n=tonio@30.8.100-84.rev.gaoland.net] has joined #ubuntu-devel === lmanul [n=manu@dan75-4-82-239-58-38.fbx.proxad.net] has joined #ubuntu-devel === hipertracker [n=hipertra@83.147.135.10] has joined #ubuntu-devel === Commander-Crowe [n=Robert@unaffiliated/Commander-Crowe] has joined #ubuntu-devel [11:53] My Ubuntu 6.10 cannot recognize my network, sata disks, even processor is not displayed (athl64x2 4200+). Motherboard is GigaByte K8N Ultra9. There is no drivers for Linux on GigaByte site. What to do? === segfault [i=segfault@2001:5c0:80ac:1:0:0:0:2] has joined #ubuntu-devel [11:58] hipertracker: not ask here to start? [11:58] this is not a support channel === boggle [n=spindler@modemcable096.205-82-70.mc.videotron.ca] has joined #ubuntu-devel [11:59] where to ask? === jono [n=jono@ubuntu/member/jono] has joined #ubuntu-devel === wasabi_ [n=wasabi@ubuntu/member/wasabi] has joined #ubuntu-devel [12:07] hipertracker: you might find some help in #ubuntu [12:07] hipertracker: or other support resources, see http://www.ubuntu.com/support/ [12:07] Chipzz: please be a bit nicer to people who are struggling with Ubuntu === mc44 [n=mc44@unaffiliated/mc44] has left #ubuntu-devel ["Exit,] [12:08] mdke: hrrrrm === Commander-Crowe [n=Robert@unaffiliated/Commander-Crowe] has left #ubuntu-devel ["Leaving"] [12:09] hipertracker: #ubuntu (and if you don't get an answer there the forums may be a good start; otherwise (I'm not sure about this) certain mailinglists may be a good alternative) [12:10] hipertracker: but please DO pay attention to the rules; === Chipzz points at the topic [12:11] but the fact remains that not getting an anser elsewhere still doesn't make this the right place to ask [12:11] mdke: polite enough this way? :) [12:12] mdke: I tried usind #ubuntu. no response at all. ok, i will stay with winxp if i have no choice. :( [12:12] hipertracker: like I pointed out to you, try the forums