[00:00] in my debian/rules, i have: http://p.caboo.se/151263, but when i run debian/rules build, I get this error: http://p.caboo.se/151269. I think it's simple, but i'm new to this. anyone can point me in the right direction? [00:00] Riddell, licensing [00:00] Riddell, its not an entirely free license on it [00:02] up_the_irons: that's bash code. [00:02] up_the_irons: That's quite crazy. [00:02] blueyed: i've seen bash code in other debian/rules files [00:02] * StevenK tries to stop his eyes bleeding [00:03] up_the_irons: The main problem is that you don't have enough ';'s, I think. [00:03] up_the_irons: And I don't believe you can use fi there. Because this is a *single* line being run by sh. [00:03] RAOF: thanks, yeah, someone in #debian just pointed that out [00:04] RAOF: i'm looking at the debian/rules for xen-linux-system-2.6.18-4-xen-686, and it indeed uses 'fi' [00:04] RAOF: as an example [00:04] Fair enough. I'm not a sh fiend by any means. [00:04] nor am i, but seems i keep running into it [00:05] up_the_irons: you need additional semicolons.. after commands, and before fi probably. [00:05] You certainly can use 'fi' in one-liners, you just need to be mindful of where you put your semicolons [00:05] Also, you should spell confirm CONFIRM, not ONFIRM :) [00:06] RAOF: yeah, it *is* $CONFIRM, but somewhere it got lost in the paste ;) [00:06] blueyed: thanks [00:07] up_the_irons: Oh, yeah. You actually want $$CONFIRM, otherwise make thinks you're referencing the variable $C [00:07] RAOF: aah [00:07] RAOF: good catch [00:08] oh man, maybe i should just make a shell script [00:09] this is getting weird [00:09] i guess in the packages i'm looking at, the if's are indeed oneliner's [00:09] up_the_irons: Your problem is that you're trying to write a shell script inside a make file. So you're fighting your tools, which is never fun. [00:09] yup, that was it [00:10] RAOF: i know, i know... i'm just not very good at makefiles; and i'm trying to learn the packaging thing at the same time. so i'm tripping over myself [00:11] For example, it looks like you could make a linux-2.6.18-xen.hg target, and make build-stamp depend on that. [00:11] RAOF: yup that's exactly what i'm typing right now ;) [00:12] i saw shell in other debian/rules files and i figured "yay, i can use shell in makefiles". i was wrong [00:12] just simple 1-liner shell [00:18] now *that's* better: [00:18] http://p.caboo.se/151279 [00:21] so question [00:22] when i run dpkg-buildpackage, and it does its thing, is that when any changes I made into the source tree get reflected in the diff.gz ? [00:22] depends on the option [00:22] I don't *think* you have to even have those shell ifs there. You should be able to declare a linux-2.6.18-xen.hg target. [00:22] up_the_irons: now you could depend on the file, instead of the if.. :) [00:22] blueyed: dood, i tried that [00:22] blueyed: it said unknown target [00:23] RAOF: yeah, i figured the same, but it said unknown target [00:23] up_the_irons: You'd need to have a "linux-2.6.18-xen.hg:" line, containing the hg clone command. [00:23] so I can merrily make changes in the source tree, and it'll automatically become part of the diff? [00:23] RAOF: oh [00:23] RAOF: ok [00:23] blueyed: Are you still looking at gnome-do? [00:24] RAOF: the last time I wrote my own makefiles from scratch was in the Turbo C++ 3.0 for DOS days ;) [00:26] RAOF: in my free time during fixing my own package, I'll try a build now and then probably advocate, looks good! [00:27] blueyed: I can upload a new candidate with the changes you've requested if you like. [00:27] But they won't affect the build, so if you just want to advocate I'll upload the changed package to universe :) [00:28] RAOF: sounds good :) [00:28] RAOF: that worked, now I have a much cleaner: http://p.caboo.se/151282 [00:28] blueyed: To the new revu upload, or the advocate-and-me-upload approach? :) [00:29] up_the_irons: Things look *much* cleaner when you don't fight your tools :) [00:30] both indeed.. but persia has also looked at my package. you might want to check out debian/copyright, but I'll have to add more headers and preambles there. [00:30] The package is jedit. [00:30] RAOF: indeed :) [00:31] blueyed: Ok. The new candidate should show on revu shortly. I'll check out jedit. [00:41] blueyed: I see why persia suggests using make variables for your get-orig-source target. It seems you could define version & uversion as make variables, and possibly split get-orig-source into get-upstream-source & repack-upstream-source targets. [00:42] Something like "version=$(shell dh_testdir && uscan --dehs | sed ..etc)" [00:43] I'm also not a big fan of the side-effect of setting version being that the tarball is downloaded. [00:46] that from the tarball? it's a check only there. [00:47] blueyed: "version=$$(uscan --force-download ...)" [00:47] RAOF: would it be ok to be called from "anywhere" then? [00:48] blueyed: With the make variables? You'd still need to cd ${DEBIAN_DIR}/.. first, yes. [00:49] I haven't worked it through, but I believe it'd end up looking cleaner. [00:49] RAOF: but still shell like? with && and on the same line? (because of e.g. the "cd") [00:50] Yeah. You'd need to have it shell-like. The difference would be that you would have a bunch of smaller, split up shell lines. [00:51] blueyed: Oh, actually, no! "version=$(shell cd ${DEBIAN_DIR}/.. & uscan --dehs | ...)" would be callable from anywhere. [00:51] wow.. there's even a version hardcoded currently. [00:51] With a single "&"? [00:51] Ahem. && :) [00:53] should I not get the version/uversion from the sourceball? Just define them at the top of the rules? [00:54] That *will* get the version/uversion from the sourceball. Make variables defined with "=" are pretty much recursive text-substitution (IIUC), so it's evaluated only where you dereference it. [00:55] IE: when you go "$(version)", make will replace that with "$(shell foo)", then evaluate $(shell foo). [00:55] in contrast to ":="? [00:56] Yes. ":=" means "evaluate right now". [00:58] heya people [00:59] ... the package finally built, now to see what are conffiles [01:01] RAOF: better? http://pastebin.com/m2c01a479 [01:02] up_the_irons: you define them in "conffiles", that are those where you're asked during upgrade when you have changed them yourself, and the maintainer, too. [01:03] blueyed: ok thanks. what do you mean by "and the maintainer, too" ? [01:04] the package maintainer: you're only asked, if the maintainer changed the default conffile, to merge your changes or take his (or keep yours). [01:04] blueyed: That doesn't actually work, does it? Sorry, I've been unclear. I was thinking of defining version=$(shell foo) just above (and outside of) the get-orig-source target, or even at the top of the file. === Martinp24 is now known as Martinp23 [01:06] And you won't need to cd ${DEBIAN_DIR} in your get-orig-source; the only reason you needed to do that is to make uscan work, yes? [01:07] blueyed: ok thanks for the info [01:10] regarding the generated diff.gz, that is the difference between the -orig.tar.gz and the build directory? [01:11] actually, looks like there is a directory that should not be represented in the diff (b/c it is downloaded by hg), is there a way to ignore it, or should that in fact remain in the diff? [01:12] * StevenK gets confused. I build gnome-games, and it has undefined references to things that are defined in the same file [01:13] mm.. and why is it trying to diff build files (like *.o).. [01:13] crap "dpkg-source: unrepresentable changes to source" [01:14] up_the_irons: clean them in your clean target. [01:14] blueyed: ok [01:14] RAOF: yes, it totally not works currently. and ${DEBIAN_DIR} does not seem to work for ./rules binary anyway?! [01:15] blueyed: but is there a way to just ignore certain directories? b/c if i clean them, the next time i build this package, say to add a single kernel module, it will want to rebuild the entire kernel [01:15] blueyed: what is the way to do this so i don't fight my tools? :) [01:17] up_the_irons: Those are restrictions of the debian-source-package format. You can use dpkg-buildpackage -nc to try to build without cleaning first, but debian/rules clean should take you back to a pristine build directory. [01:17] maybe i should just cp -a them out of the tree, and put them back when i need them. ghetto style ;) [01:17] RAOF: ok, i kinda thought so [01:18] RAOF: i could just save the build directories somewhere, and copy them back when i need them, as if they were always there. this package is for my use only, not gonna distribute it [01:18] RAOF: i just really hate to recompile the whole kernel just for a simple change [01:19] RAOF: if I *didn't* use a package syste, i could do it no problem. So I want to stay package friendly, but hopefully not lose the benefits of a build system (that only builds stuff that has changed) [01:19] *system [01:19] up_the_irons: Have you checked out the ubuntu-kernel buildy thing? That might be what you're after. [01:19] brb [01:19] RAOF: you mean build-kpkg, or something [01:19] *make-kpkg [01:20] No; there's some new infrastructure in the Ubuntu kernel source pacakages. [01:20] no i haven't tried that [01:20] but this package is from xen-3.2.0 tarball [01:20] i have a feeling it will be hard to integrate [01:20] not a vanilla kernel [01:20] what I'm aiming for is, a single .deb that contains everything I get when I do 'make install' from the Xen tarball [01:21] so far, I've gotten close [01:21] in fact, debian/xen does contain the entire built tree [01:21] now it's just a matter of packaging it [01:22] ok, been sitting down too long, brb in 10 mins [01:24] Aw, man. What with the nouveau testing I'd forgotten how awesome compiz is. [01:26] RAOF: What the? [01:27] I find I can't drag windows between viewports anymore, which is irritating me. [01:27] I've been using metacity's compositor. Changing workspaces is supremely ugly, compared to cube. [01:28] WorksForMe(tm) [01:29] I have to expose out using Super-e, drag and them go back in [01:30] Hm. You're using wall or cube? [01:30] persia: I'm fine with the watch file [01:31] StevenK: You might want to check out the various "edge flip" options in ccsm? [01:32] RAOF: gnome-do is similar to katapult, isn't it? It also does not support "f1" for help at least.. ;) [01:33] RAOF: advocated. [01:34] blueyed: I don't know, I've never used katapault. Also, correct. No f1-is-help yet :) [01:34] blueyed: Thanks. Yay! [01:35] what is the "this is a merge" heuristic [01:35] when activating it again here on kde4, it does not display, but grabs input.. [01:35] it seems like if I say the D word anywhere in the changelog it's officially a merge :) [01:35] blueyed: Don't tell me that kde4's compositor is broken, too? [01:36] RAOF: I've no desktop effects enabled.. [01:36] blueyed: I saw that behaviour on Metacity, but it's been partially fixed. It should work fine without a compositor or with xcompmgr or compiz. [01:36] blueyed: Really? Hm. [01:37] it's the same with desktop effects.. [01:37] up_the_irons: Have you checked out the ubuntu-kernel buildy thing? That might be what you're after. February 13 01:44 MOTU chalserogers@gmail.com Addressed comments from blueyed in #motu Yes [del] [remove advocating] [01:37] Frikkin touchpad! [01:37] i have to click somewhere around to get the input back.. it actually starts programs, but I can't see it before.. [01:38] blueyed: I've only seen that with broken compositors, but I haven't tried it in KDE, either. [01:38] RAOF: I know that as slammermaus, based on when I first starting using IRC. A guy was nicknamed slammer (not his actual nick), and he kept blaming his mouse for pasting large gobs of text into the channel. [01:39] I should find the irssi knob that disables pasting. It already saves me from accidentally pasting in *huge* ammounts of text.. [01:49] For those in the audience, paste_verify_line_count is the irssi variable I'm looking for. [01:52] paste_detect_keycount [01:53] RAOF: You set that to one, and it asks you for even one line? [01:56] RAOF: re-uploaded jedit (a new upload with only minor licensing indenting and re-order ("*" to top), uploaded afterwards (should appear at 2utc then) [01:56] StevenK: Yup. Just checked. [02:01] blueyed: Ok. I'll keep looking. [02:06] in the clean: target, what is the minus sign before "-$(MAKE) clean" for? [02:07] (this is in the generated template) [02:07] for generating a lintian error [02:08] slangasek: ok [02:08] up_the_irons: It means "ignore errors from this command", and what you actually *want* is [ ! -f Makefile ] || $(MAKE) clean [02:09] Which translates to "If the makefile doesn't exist, do nothing. If it does exist, run make clean" [02:13] * asantoni looks for advocate for LP #190589.... :) (any MOTU with a few spare moments?) [02:13] Launchpad bug 190589 in mixxx "New upstream release (in REVU)" [Wishlist,New] https://launchpad.net/bugs/190589 [02:14] RAOF: ah ok [03:10] ls [03:11] What, you mean that won't list all the files in #ubuntu-motu? Soft! [03:11] blueyed: jedit fails to build a source package for me - is this likely to be a build-dep lack on my part? === _stink__ is now known as _stink_ [03:12] RAOF: do you have ant installed? [03:12] It would seem the answer is "no". [03:12] RAOF: I've just uploaded a new version (and messed around quite a bit in the meantime) [03:13] blueyed: Ok. Does it really depend on java5-runtime? [03:13] RAOF: icedtea-java7-jdk, ant, ant-optional [03:14] blueyed: I mean, debian/control lists java5-runtime as a dependency of the binary package. Did you mean icedtea | java-v-m | java5-runtime? [03:15] Right. I'll check out the new, new package then :) [03:15] RAOF: yes, indeed. Should I put j-v-m last even? [03:16] isn't there a nice way to say use a virtualpackage that represents a jre? [03:16] That should surely be java-virtual-machine, no? [03:16] Or is it java-runtime? [03:17] There was a page somewhere with a non-exhaustive list of virtual packages, but I can't remember where. [03:17] i think its java-virtual-machine [03:17] yeah it is, but it doesnt list icedtea yet [03:17] unless he has a specific list of VM's he wants to try in order of preference... [03:17] it lists sun-java6, sun-java5, sun java 1.4, etc [03:18] so icedtea | java-virtual-machine should do it [03:18] superm1: but it's not really versioned, is it? Will take it as such though. [03:19] well icedtea is the only one that doesn't provide java-virtual-machine it looks like [03:19] I'm also removing the ${shlibs:Depends} which is not needed for java packages, correct? [03:19] so it should cover your bases [03:20] blueyed: If you'd like this to be backportable, you might want to drop the debhelper dependency (and compat) down to 5, unless you use any of the new behaviour. [03:20] well, e.g. ant has java-gcj-compat-dev | java-virtual-machine, java-gcj-compat | java1-runtime | java2-runtime - so it's something different?! [03:20] RAOF: yes, thanks, forgot about that.. [03:20] Fujitsu: Thanks. [03:21] ScottK: No problem. [03:21] I figured I was doing enough security work I might as well sign up for the official club. [03:21] Heh. [03:22] Which reminds me ... [03:22] jdstrand: How clamav going ... [03:23] RAOF, superm1: therefore it was correct already I think.. (icedtea-java7-jre | java-virtual-machine, java5-runtime) [03:23] yeah :) [03:25] Yeah, fair enough. All the *jre packages provide java5-runtime. [03:27] icedtea-java7-jre should provide java-virtual-machine though.. this is probably the reasond why gcj gets pulled in for the build.. [03:29] Oh, dear lord licensing sucks. [03:29] Cosmetic: you may want to put each file on a separate line, and they should be comma-delimited. [03:30] RAOF: that would make it much longer.. I've probably missed something minor, but heard that it would be ok. Only that all different licenses are important. [03:30] Also, if the files are uniquely named you don't *have* to use the full path, */name is implied. [03:31] Yes, I've copied and pasted them.. I should it could not hurt to be explicit there. [03:32] Yeah. It's really cosmetic. [03:32] RAOF: did you file that licensing bug on tomboy? [03:33] LaserJock: Yes. [03:33] bug 189953 [03:33] Launchpad bug 189953 in icedtea-java7 "Inconsistent 'Provides' for different java compilers/runtimes" [Wishlist,Triaged] https://launchpad.net/bugs/189953 [03:33] RAOF: did you happen to see mjg59's comment in -devel about it? [03:34] blueyed: But, as I understand it, it's not properly conformant to the proposed machine-readable format unless the lists are comma-delimited. That's not going to block my advocation at all though. [03:34] RAOF: I'll check that in the next round of changes. [03:36] Re-uploaded with compat and shlibs:Depends minor change. I'll have to catch some sleep now.. [03:37] dang, I may end up with way more Multiverse uploads than anything else for Hardy :/ [03:37] LaserJock: Sorry, my buildbox is thrashing thanks to jEdit. [03:38] anyone here into blog-ranting about usability related issues? [03:38] I found an amusing one from Leopard's recent update [03:38] LaserJock: No, I didn't see the comments, should I? [03:38] http://www.dslreports.com/r0/download/1274378~d987d620159d1c354525056af832b2b1/Picture%201.jpg [03:38] prizes go out to those who explain what that charge status actually means.... [03:38] jdong: That's *awesome*. [03:39] lol [03:39] RAOF_: he just basically said that in his opinion a blanket license is sufficient when it's clear, like there aren't inconsistent licenses [03:40] LaserJock: So the licensing is OK, how about copyright holders? That makes things easier, though. [03:40] not sure [03:41] but you tend to get different answers depending on which archive admin you talk to ;-) [03:41] just thought you might be interested [03:41] Oh, certainly. [03:41] It seems there's no end to the things you can learn about licensing :) [03:42] s/learn/get incredibly, horribly confused/ [03:42] Heh, amen to that [03:49] Damn you bugzilla. Why must you make me work so hard to file bugs? === ember_ is now known as ember [03:59] has anyone here tried using minicom in Gutsy? [04:01] i did [04:01] but i didn't have luck with it when i tried [04:03] yeah i had to run minicom -s [04:03] and had to change the defaults === kdu1 is now known as kdub [04:03] joejaxx: I used it sucessfully to connect to a serial console interface on a Sun T2000 [04:06] Thanks to whoever uploaded my kompozer diff - the new version just hit my mirror. (Meanwhile, I found a LP bug...) [04:06] dendrobates: NICE :D [04:06] i am trying to reset the password on a Cisco Router :P [04:06] with minicom [04:06] :P [04:07] but i got it to connect now === calc_ is now known as calc === Frogzoo_ is now known as frogzoo === asac_ is now known as asac === Hit3k_ is now known as Hit3k [05:24] hey if another motu wouldn't mind giving this a quick once over: http://revu.tauware.de/details.py?package=libnet-upnp-perl [06:10] Good morning === boomer` is now known as boomer [06:54] revu down for everyone else? === calc_ is now known as calc [07:27] if motus still have access to revu then could someone check the latest version of whysynth. it's already been advocated a few timces but i've needed to adjust the package due to licensing issues [07:27] the latest version is done according to sistypotys comments [07:27] The machine is alive, but it appears fairly sick. [07:27] * Fujitsu wonders if it's out of disk space again. [07:31] * RAOF finishes his 2 hour update-miro's-copyright stint. [07:34] Ha! I speak too soon :( [07:42] slomo, could you please comment on bug #191307? [07:42] Launchpad bug 191307 in f-spot "f-spot man page missing mono warning" [Undecided,New] https://launchpad.net/bugs/191307 [07:42] I think it's not a bug, but the submitter sternly disagrees [07:43] LucidFox: it's just that the reporter doesn't like mono? [07:43] or do i miss anything [07:44] seems so [07:44] close please [07:45] closed [07:46] thanks [08:01] good morning [08:56] Riddell: I've reuploaded wzdftpd, the diff is cleaner === \sh_away is now known as \sh === \sh is now known as \sh_away === \sh_away is now known as \sh [09:10] revu seems to be broken (timeout) [09:12] <\sh> yepp [09:12] slangasek: Are you still up and about perhaps? [09:12] \sh: Did you see my IRC comment on your Perl packages? [09:13] <\sh> ScottK, nope...revu is down somehow [09:13] OK. [09:13] \sh: It was about debian/copyright. I think it's better to redistribute on as generous of terms as possible. [09:14] morning folks and folkettes [09:14] <\sh> ScottK, you mean that I should explicitly write in debian/copyright that the upstream source could be licensed as GPL or artistic as perl does? [09:15] \sh: That's what I think would be better. [09:15] norsetto: folkettes? are you hungry? :) [09:15] <\sh> ScottK, ok...changing it...anything else? I think packaging wise is everything in order [09:15] \sh: https://launchpad.net/ubuntu/+source/libtree-perl has what I'd consider to be a good example. [09:15] DktrKranz: neah, just being politically correct (its the gender equality era....) [09:16] \sh: I only had to to review the diff, not test build so far. If you can stuff the packages somewhere and give me a .dsc link, I'll give them a final review. [09:16] norsetto: so it's better saying "morning folkettes and folks" [09:16] \sh: The debian/copyright thing we all that stood out from reviewing the diffs. [09:16] Good morning norsetto. [09:17] ScottK: congrats! [09:17] <\sh> ScottK, ok...I'll change the debian/copyright and push some packages on my webserver ... [09:17] \sh: Thanks. [09:17] DktrKranz: Thanks [09:17] ScottK: heck, what do you do here? Don't you have a bed somewhere!? [09:17] <\sh> ScottK, no thank you :) [09:18] norsetto: We're having an ice storm here and about 45 minutes ago one of our dogs was stuck out in the back yard (couldn't get up the steps to get back in) and so after a trip out in the cold rain to rescue her, I'm not able to get back to sleep. [09:19] ScottK: oh, do you know by any chance if it is so bad in minnenapolis too? [09:19] norsetto: It's February. You can generally figure it's very cold there. ;-) [09:20] norsetto: We're far enough away that it's a different weather pattern. They probably had this precipitation in the form of snow two days ago. [09:20] norsetto: You aren't coming this way to visit are you? [09:20] ScottK: My wife is headed there right now [09:21] norsetto: Ah. Excellent reason to worry. [09:21] * ScottK checks the weather. [09:24] norsetto: It's cold and snowy, but nothing unusual for Minneapolis. No severe storms. [09:24] scottk: ok, thanks, I was hoping to hear that [09:25] norsetto: What's in Minneapolis? [09:25] ScottK: a friend of her [09:26] Ah. Well they get lots of snow this time of year (I was there last December) and they generally know how to deal with it. [09:27] <\sh> scottK, please check out http://buildserver.homelinux.net/src/ there are both packages [09:27] scottk: yeah, they might, I'm not so sure about my wife though, she can hardly drive here and she absolutely wanted to rent a car, oh well.... [09:28] norsetto: One thing they are good at is plowing and salting the streets. [09:28] \sh: Will do. [09:29] \sh: If I'm satisfied with them do you want me to just upload them or do you want the pleasure? [09:29] <\sh> SCottK: well, if you are satisfied, just upload straight away :) [09:31] Will do. [09:32] <\sh> and dpkg is fixed, too ... wow [09:35] Congrats other -release members. [09:40] * ScottK looks to see if that applies to him .. [09:40] scottK, TheMuso, norsetto, hobbsee (absent), sistpoty (absent): congratulations! [09:40] dholbach: Thanks. [09:40] I'll set up the team and send out the mail in a bit [09:40] need to fix up something else before [09:41] dholbach: what for? We haven't started already :-) [09:41] norsetto: Better to be ready when the flood gates open. :p [09:41] TheMuso and norsetto: we should probably find a time to conspire on rules. [09:41] ScottK: Sounds like a plan. [09:42] * norsetto wears his frost-proof hat [09:42] ScottK: I'm surprised you are awake actually. [09:42] errr, where is that link btw? [09:42] TheMuso: Scroll back about 25 minutes for an explanation. [09:44] ScottK: Ah, that sucks. === zakame__ is now known as zakame [09:59] Any MOTU hopeful want to work on a bug fix (I'll provide guidance). There's a patch, it just needs to be packaged. [10:00] ScottK: what's the package? [10:00] isaac: https://bugs.launchpad.net/debian/+source/pdns/+bug/191506 [10:00] Launchpad bug 191506 in pdns "TXT records truncated" [Low,In progress] [10:00] not interested :P [10:00] Feel free to assign it to yourself instead of me if you want to try it. [10:01] OK [10:01] bug 125658 might be interesting to work on too - it seems to block the blender folks [10:01] Launchpad bug 125658 in openexr "please update openexr version" [Wishlist,Triaged] https://launchpad.net/bugs/125658 [10:01] (I realise that openexr is in main, but most of the rdepends that would need to go through a small transition are in universe) [10:04] hello [10:04] is there something wrong with REVU's website ? [10:07] AnAnt: Yes [10:08] ScottK2: ok [10:08] thanks [10:08] I thought something wrong with my connection [10:09] <\sh> scottK: you mean http://wiki.powerdns.com/cgi-bin/trac.fcgi/changeset?old_path=trunk%2Fpdns%2Fpdns&old=996&new_path=trunk%2Fpdns%2Fpdns&new=996 ? [10:09] there was been some discussion about sudo policies? ( i'm lookin at bug #191210) [10:09] Launchpad bug 191210 in sudo "[hardy] exit out of sudo -i doesnt really exit" [Undecided,New] https://launchpad.net/bugs/191210 [10:09] \sh: Yes. I haven't checked to see if it applies to our current version directly or needs a bit of work. [10:10] <\sh> scottK: I set it on my todo [10:10] \sh: Great. Thanks. [10:10] * ScottK is looking at your packages now. [10:10] good morning [10:11] Good morning geser. [10:11] <\sh> ScottK, reassigned the bug [10:11] OK. Thanks. \sh: I have someone who runs pdns who will test the package when it's done (if you don't). [10:12] hmmm, can anyone tell me where I can get help about makefiles ? [10:12] ScottK: Just got my first uplaods to main in, due to a spec I was working on. I felt rather nervous. :) [10:13] <\sh> scottk: cool :) I think the bug is also annoying pdns users in dapper/edgy/feisty/gutsy... [10:13] TheMuso: Congratulations. I haven't done it yet. [10:13] \sh: I'm not sure if it's SRU worthy or not, but since I'm not in motu-sru, I guess I don't need to have an opinion. [10:13] ScottK: We'll see if everybody's boot succeeds first, then congratulations are likely in order. :p [10:14] In all seriousness, I tested and re-tested my changes, so there shouldn't be a problem. [10:14] <\sh> scottk: well, backporting is always an alternative [10:15] Sure [10:17] \sh, which one? [10:18] <\sh> DktrKranz, pdns [10:19] hm, revu is down? [10:19] Yes [10:20] ff tore it apart or is it just 'closed' because of ff? [10:22] \sh, if you mean bug 191506, when you have a patch, we can discuss at it briefly, but it looks a good candidate. [10:22] Launchpad bug 191506 in pdns "TXT records truncated" [Low,In progress] https://launchpad.net/bugs/191506 [10:22] It was having hard drive troubles yesterday. [10:23] ouch [10:24] dholbach: ping ? [10:25] Tonio_: pong [10:26] dholbach: hey ;) I hope you're doing well [10:27] Tonio_: thanks, yes I am - how are you? [10:27] dholbach: my team membership for ubuntu developpers is expiring in a few days, I'm supposed to ping you to get it renewed :) [10:27] dholbach: very well :) currently working on the kde implementation of sudo for kde4, good progress so I'm a happy guy :) [10:28] Tonio_: let it expire, as long as you're in ubuntu-core-dev and/or motu all is good [10:28] Tonio_: in the end ubuntu-dev will only consist of ubuntu-core-dev and motu [10:29] dholbach: oki ;) [10:29] dholbach: true that core-dev is sufficient for everything ;) [10:40] /c/c [10:46] * pochu waves [10:47] hey pochu :) [10:47] thanks for your msg :) [10:48] Ng: anytime, thanks for the fix! [10:48] * pochu hugs Ng [10:49] I'm going to risk flames from my gf tonight and cut a release. I've fixed all the bugs I can in time, and FF is tomorrow ;) [10:51] Ng: I do it all the time ;) [10:51] hehe [10:52] speaking of which, I'd like to let the MOTU Release Team to know that I'm about to upload a new version of vdr (1.4.7 -> 1.5.13) soon [10:52] and some new plugins too [10:53] upstream decided to do a stable release before plunging in the HDTV world, so 1.6.0 should be out in a couple of weeks [10:53] dholbach i think the libdc1394 should be ready for inclussion? what do you think? [10:53] and I have upgraded my box with the new packages, works like a charm [10:53] dholbach check it here: http://revu.tauware.de/details.py?package=libdc1394-22 and the compiled PPA here: https://launchpad.net/~libdc1394-dev/+archive [10:55] tjaalton: ace :) [10:55] Ng: I should update the spec too [10:55] ugh, and I should apologise for not having been near the spec since UDS :/ [10:56] me neither, until last week ;) [10:56] we should decide the name for the meta-package :) [10:58] tjaalton: Do it before Feature Freeze and we don't need to know ;-) [10:59] ScottK2: that's what I'm aiming for ;) [11:00] so anybody on MOTU that could advocate the libdc1394-22 package inclussion? [11:00] it is ready, just needs someone to advocate it... [11:01] theseinfeld: it is a different package than in Debian unstable? [11:01] yes [11:01] as I am one of the developers, I am closer to the truth [11:01] :D [11:01] any reason for being different? [11:01] I have been working with the Debian people [11:02] Stubborness of Debian? [11:02] :D [11:02] can't we sync the package from Debian? [11:02] No [11:02] you do that and you get crap [11:02] it is missing things [11:02] it has some problems with the naming [11:03] the debian was lagging alot behind with this library [11:03] i have been trying for one year with them to get them involved and when I got their attention they wanted just to have minor changes and still using the old framework [11:04] you can sync, but you will lose some of the added features [11:05] so, geser, what shall it be [11:06] theseinfeld: I was just asking as I've seen it in Debian and we usually take packages directly from them [11:06] I know [11:06] superm1: around? [11:06] superm1: 11:48 < slomo> pochu: any other changes for -bad? btw, you could tell superm1 that the gst-plugins-bad gmyth plugin doesn't support gmyth 0.7 [11:06] superm1: 12:00 < slomo> pochu: ok, so still... you have 0.7 in hardy and upstream gmyth only works with gmyth >= 0.4 gmyth <= 0.4.99 [11:06] superm1: 12:00 < slomo> pochu: if there's a fix to work with the new version i'll be happy to get it upstream ;) [11:06] superm1: have it worked for you? :) [11:07] geser, the thing with them is that they made clear that us, the developers, should not interfere with the packaging. Something that I find outrageous [11:07] superm1: if it did work with 0.7 for you without any additional changes to what is in cvs that would be great news ;) [11:07] geser they are not on the dev lists and they don't know many of the things that should be included. Now they know, after my lobby, but still insist on some of the things that we didn't agree (like the use of both old API and new one) [11:08] geser we spent quite much effort to make this happen, and the debian just don't want to remove one damn line (conflict: libdc1394-13) :)) [11:08] superm1: oh and: 11:45 < slomo> pochu: iirc the mythtv stuff is not acceptable in Debian (license, patents, no idea) [11:08] superm1: that's bad news :( [11:08] geser, you must agree that i needed a more friendlier environment :) [11:08] pochu, superm1: ok, i tested it with 0.7 now and i get unresolved symbols [11:09] geser so, using ppa and revu was the way to put our dev ideas into packages [11:10] theseinfeld: I can understand your pain [11:10] theseinfeld: are there any packages in hardy which could use the new lib already? [11:12] geser, not yet. There is coriander, that will come soon... [11:12] thanks geser :) [11:12] I was already comforted by cprov for this :) [11:13] superm1, pochu: nevermind... builds and does not have unresolved symbols if done properly ;) [11:13] so, geser, the coriander is dependent of libdc1394-22 and once it is stable enough for a new release (couple of weeks) I will let you know [11:13] theseinfeld: as feature freeze is tomorrow (which includes also no new packages anymore) perhaps also talk to the motu-release team if they give you an exception [11:13] maybe I will do the packaging for them too [11:14] superm1, pochu: OTOH libgmyth-dev or whatever should depend on libmysqlclient-dev stuff (and gst-plugins-bad should not directly build depend on it) [11:14] theseinfeld: feature freeze also include new upstream version freeze so it would also need an exception if the new version should get included in hardy [11:14] Hrrm I would like to know why ZoneMinder package in Ubuntu is 1.22.3 (2006 release) and not 1.23.1 (2008 release) -- I suspcet I need to be asking the question in debian ...... [11:15] geser yes, but how can I ask them if so far, this package has not been revu-ed by anybody? [11:16] anyone can help me using cbds? [11:16] I did make dist on my source package [11:16] promag, what is the problem? [11:16] then I extracted it [11:16] is this the correct way? [11:17] ye [11:17] after extraction I did dh_make -b -createorig [11:17] correct again? [11:18] what are you trying to do promag? [11:18] you make dist, get the tar.gz, and then what? [11:18] well this is not relative to ubuntu packaging [11:18] because the it's a software I'm making [11:18] anyway [11:19] theseinfeld: try getting the package revued and a FF exception in parallel. [11:19] my project is using autotools [11:19] after tar zxvf I do dh_make --createorig -b [11:19] cdbs is basically a wrapper for debhelper [11:19] then I don't know what to do [11:19] geser how do you get the package reviewed? [11:20] theseinfeld: so you don't get dissappointed if you don't get an exception after putting much work into this package and people revuing know it will make it in (normally revuing slows down massively after FF). [11:20] theseinfeld: first wait till REVU is up again :) [11:20] pochu, superm1: ok, configure in gst-plugins-bad cvs is adjusted to also work with gmyth 0.7, nevermind ;) [11:21] theseinfeld: so what's next dh_make? [11:21] slomo: cool :) [11:22] slomo, superm1: would be cool to get this in Debian too :) [11:22] pochu: if gmyth is in debian i see no problem with adding it to gst-plugins-bad [11:23] norsetto, TheMuso, ScottK: First congrats for motu-release and second what's the process to get an FF exception to complete the ongoing ghc6 transition? [11:23] pochu, superm1: it seems to be possible to get it into debian... it's only mythtv that had (has) problems [11:24] slomo: that's great news [11:24] geser: Thanks. How about finish by tomorrow? [11:25] geser: I'd suggest ask for a general FF exception and list the affected packages, but of course the team hasn't had a chance to meet and discuss process yet. [11:26] ScottK: till now I've synced the packages in the correct order so they build successfully [11:27] ScottK: I could request synced the remaining packages and clear the FTBFS later but this doesn't look clean to me [11:27] geser: I'd say file one bug with the exception request that also affects the relevant packages and then ask us to look it over. I'm assuming we'll say yes, but .. [11:27] Agreed. [11:28] I was kidding about the finish by tomorrow. [11:29] promag why would you use cdbs if you just want to make dist? [11:29] Anyone feel like looking at last-minute merges? There are currently 17 universe packages with a newer upstream version listed on merges.ubuntu.com that might benefit from attention. [11:29] geser how do I contact the motu-release team? launchpad? [11:29] ScottK: what's your opinion for the clamav-data package after FF: should I ask for a general FF exception for it, ask everytime for a new exception, ask for removal from hardy or ignore it? [11:30] DktrKranz: Do you have an opinion about aolserver? I'm tempted to sync all the latest Debian updates and hope we can forget about it, but wouldn't mind your opinion on the matter. [11:30] geser qa.? [11:30] geser: Ask for a general exception. [11:30] Can someone please review http://revu.ubuntuwire.com/details.py?package=thunar-svn-plugin ? [11:30] ScottK: last question: should the bug be subscribed or assigned to motu-release? [11:30] geser: I think clamav-data we should take up until the final freeze. [11:31] theseinfeld: well I thought I would need to make dist because dh_make says "The directory name must be - for dh_make to work" in the original source directory [11:31] cody-somerville: That URL doesn't load for me. Have you tried it recently? [11:31] geser: Last time it was subscribed. I assume it'll be the same this time. [11:31] hrmph... [11:31] theseinfeld: file a bug and subscribe the motu-release team [11:31] ScottK geser so, I submit a bug to motu-release [11:31] geser ok [11:31] theseinfeld: Why? [11:31] persia: Revu is down the day before FF? [11:32] geser when does revu go up? [11:32] :D [11:32] cody-somerville: Last REVU day was 4th February, but this is a coincidental outage. [11:32] theseinfeld: for instance https://wiki.ubuntu.com/PackagingGuide/Howtos/CDBS explains how to setup the configuration/build files but doesn't mention the required steps t actually build the package [11:32] theseinfeld: it depends when the REVU admins fix it (I'm not a REVU admin) [11:32] or maybe just maybe I'm dumb [11:33] Anyone who can upload: please take a look at the sponsors queues. There are 24 bugs in the UUS queue that look like package updates: it would be good to accept or reject these today, rather than pushing for Freeze Exceptions. [11:33] I would go for the second.. :) so please give me an hint [11:33] promag you just make the debian things ok, then use dpkg-buildpackage [11:33] geser: Even REVU Admins can't fix it: needs a local admin at the hosting site :( [11:34] hi folks [11:34] promag use your Launchpad PPA to submit the source changes [11:34] like dpkg-buildpackage -S -rfakeroot -sa [11:34] * ScottK cheers the arrival of sistpoty|work. [11:34] ScottK: thanks for sending the note... /me takes a look [11:34] hi geser [11:36] Hi norsetto [11:37] theseinfeld: it's a package for course work (we thought giving a package to the teacher would be cool) [11:37] geser persia ScottK how do I submit the bug to go to MOTU-revlease team? [11:37] theseinfeld: thank you! [11:37] theseinfeld: subscription [11:37] I'll try that [11:38] persia: so, Distribution: Ubuntu, Package: my package, where does it go the motu-release team :))? [11:38] theseinfeld: For a new package it'll need to have significant justification why it can't wait for Hardy +1 [11:39] sistpoty|work: argh, I found out that the nvidia-settings that the drivers ship write all sort of crap on the xorg.conf.. so, it might be worth it bring back the old version and patch the sources to do the right thing :/ [11:39] goes around comes around [11:40] theseinfeld: Do you not have a needs-packaging bug? You'd need to follow the freeze-exception process and justify the need for your update in hardy. If it were a compatible replacement, it would be easy. As it isn't, the value is somewhat arguable. [11:40] tjaalton: with my upload (which I guess is still in new), I only disabled the nvidia-settings binary, so I guess you could simply uncomment the binary package in debian/control and have it back [11:40] tjaalton: Also, I've now two different launchers without icons :( [11:40] persia: two? how's that possible? [11:41] persia: the icon thing will be fixed.. the drivers could just ship that and Suggest nvidia-settings.. [11:41] ..which would ship the desktop file [11:41] hmm [11:41] tjaalton: nvidia-settings.desktop + NVIDIA-Settings.desktop (and no, I haven't had nvidia-settings installed for a couple releases now, and neither is a local .desktop, or I'd have an icon) [11:42] https://bugs.edge.launchpad.net/ubuntu/+bug/184834 [11:42] Launchpad bug 184834 in ubuntu "libdc1394 version 2.0.1 (new API version 2)" [Undecided,Fix committed] [11:42] persia: can you call this request for packaging? [11:42] sistpoty|work: ok, I can fix that [11:43] tjaalton: The icon can be shipped from restricted, but not from universe. nvidia-settings would need to be repromoted to use the icon (see nvidia's art licensing) [11:43] tjaalton: excellent, thanks! [11:43] persia: right, the drivers would ship it so it shouldn't be a problem [11:43] theseinfeld: I'm unable to parse the question. [11:44] tjaalton: I'm confused then. I thought you were going back to the independent nvidia-settings. [11:44] persia: the drivers should only ship the .png :) [11:45] tjaalton: Ahhhh... I believe that's a violation of some part of debian policy about icons and menu items, but it has the vast benefit of being legal :) [11:45] screw the policy then ;) [11:45] persia, the question was if 184834 bug can be called as "request for packaging" [11:45] bug #184834 [11:45] Launchpad bug 184834 in ubuntu "libdc1394 version 2.0.1 (new API version 2)" [Undecided,Fix committed] https://launchpad.net/bugs/184834 [11:46] persia: What does that break? [11:46] theseinfeld: Well, it's certainly not fix committed, or we wouldn't be having the conversation. Aside from that, you could either tag it "upgrade" in which case it should replace the existing library, or tag it "needs-packaging" in which case it would be a new package (with a correspondingly higher barrier to entry) [11:47] TheMuso: Something about menu policy. I forget exactly, and am too tired to hunt google well (too many leftovers for feature freeze, and no mdt all weekend) [11:47] persia: Oh I meant API wise. Never mind, unfortunately my hands are rather full atm. [11:47] persia god dammit is both :) [11:48] TheMuso: Wait, are you talking about lib1394 or nvidia-settings? [11:48] persia, TheMuso: imo it doesn't break anything (for a desktop-file). Menu policy iirc has the requirement of a xpm icon (which we don't really need to care about in Ubuntu, if we've got a desktop file) [11:48] theseinfeld: Either you want to replace the existing library, or you want to create a new package. Both is not usefully feasible. [11:48] persia i changed the status in progress [11:49] I'll go with the new package [11:49] persia: No that bug you referred to above, it said it had a new API or some such. [11:49] as it should be new from now [11:49] TheMuso: No idea. [11:49] theseinfeld: TheMuso may be well qualified to have an opinion. Please explain. [11:50] TheMuso, basically it is libdc1394 with a new API. The old one can work in parallel with the new one, as there are some packages depending on it, until we get people to move to the new one [11:50] <\sh> scottK: libfile-flock-perl is updated: http://buildserver.homelinux.net/src/libfile-flock-perl/ [11:50] * ScottK looks [11:50] theseinfeld: What packages does it break? [11:51] TheMuso so we have libdc1394-13 and now libdc1394-22 [11:51] <\sh> scottK: thx [11:51] theseinfeld: Whats the source package name? [11:51] TheMuso, don't remember exactly, but ones that have to deal with Firewire camera - like Coriander, libav, etc. [11:52] TheMuso the old one is libdc1394...wait [11:52] let me check [11:52] ScottK: clamav is still stuck on dapper (I ask someone about it again) [11:52] old one: Source: libdc1394 TheMuso [11:52] theseinfeld: And the new one? [11:53] the new one is libdc1394-22 after a long discussion with Debian guys and agreeing on this convention TheMuso [11:54] TheMuso you can get the new package from the ppa (https://launchpad.net/~libdc1394-dev/+archive) [11:54] jdstrand: Thanks. [11:55] theseinfeld: I don't have an opinion either way. [11:55] TheMuso, I have to go to a meeting now :( sorry... I will get back [11:55] TheMuso, I should be back in 1-1 [12:03] Now that lucene2 builds with icedtea, should I log a bug for moving it to universe? [12:04] slytherin: Please do so. [12:05] persia: Have you finished your review work on netbeans6? [12:07] slytherin: We decided to just have "netbeans", and not bother with all the silly version-in-name hassles. It's in source NEW now (http://launchpadlibrarian.net/11904872/netbeans_6.0.1-0ubuntu1.dsc) [12:07] persia: Cool. :-) [12:07] Once it gets accepted, I'll be filing a removal request for the netbeans5.5 multiverse package. [12:08] I haven't looked recently, but I think lucene is one of the last pieces that would keep netbeans in multiverse, so I'd be happy to see it move to universe. [12:12] <\sh> guys, what to do with this bug http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=428760 when the package is not found in debian until today? [12:12] Debian bug 428760 in wnpp "ITP: zend-framework -- High quality framework for Web Development" [Wishlist,Open] [12:13] \sh: You could file a sync request, but you may well need a freeze exception. How badly do you want it? [12:14] <\sh> persia, the package is not even packaged by this guy [12:14] <\sh> persia, and it's still 13th ;) [12:14] <\sh> persia, and I have it finished right now :) wanted to upload this to ubuntu [12:14] \sh: Not everywhere. [12:15] persia: done, bug 191536 [12:15] Launchpad bug 191536 in lucene2 "Please move package to universe" [Undecided,New] https://launchpad.net/bugs/191536 [12:15] \sh: Then upload it. [12:15] <\sh> persia, well, all timezones I think that means 13th 23:59:59 UTC and yeah, it's badly needed :) [12:16] \sh: No, all timezones means UTC+14 through UTC-11. [12:18] <\sh> yack... [12:18] <\sh> I think I need to add an lintian.override for this? [12:18] <\sh> W: zend-framework: executable-not-elf-or-script ./usr/share/php/zend-framework/library/Zend/View/Helper/FormCheckbox.php [12:20] Heya gang [12:21] Hi bddebian [12:21] Hi geser [12:22] bddebian: I've been trying to keep up, but I don't have changelogs handy for any of etw, qonk, or dd2. I don't suppose you'd be up for filing some more sync requests... [12:23] hi bddebian [12:24] \sh: why is this file executable at all? [12:25] Hi persia, sistpoty|work [12:25] persia: Sure [12:25] REVU is back online [12:26] bddebian: Thanks :) Also, the mdt I was using last night for my catch-up run didn't show NEW packages. If you know of anything recently uploaded that isn't in Ubuntu yet, syncing those might be good as well. [12:27] persia: Games wise, or in general? I've been doing a "few" QA uploads and NMUs these days ;-) [12:27] bddebian: Yes. [12:28] man-di: Just FYI ... I have fixed w3c-dtd-xhtml and lucene2 build in Ubuntu. I believe all the changes except icedtea build dependency are suitable for adoption in Debian. [12:28] bddebian: Actually, only "New Feature", "New Upstream", and "New Package" stop tomorrow. Most of the QA stuff can be pulled a little later. [12:29] I just saw your name on three .changes in my mail queue today, and you appeared before I got around to digging up the changelogs to request syncs. [12:29] has somebody what to do with ingimp? it has currently unmetdeps and a sync could fix it but I found now Debian bug #432765. ingimp includes a whole copy of gimp :( [12:29] Debian bug 432765 in ingimp "ingimp: Cannot be included in Lenny" [Serious,Open] http://bugs.debian.org/432765 [12:30] Ugh, that's hideous [12:30] Erm. Hacksaw patch time? [12:30] persia: OK. Well I hope to have a new upstream of lordsawar today ;-) [12:30] slytherin: in debian it builds fine also [12:30] ScottK: something goofy is happening on the security buildd, so I just pushed out clamav for feisty and gutsy since they were done [12:31] it'll hit the mirrors in a couple hours [12:33] jdstrand: out of interest, do the security buildds have the new kernel installed, but not yet rebooted? (s.th. goofy happened to sparky under that situation, but it might as well be a hw failure) [12:33] (as in kernel w. the vm_splice thingy) [12:34] * persia cheers bddebian's ceaseless energy and massive improvements to the distribution [12:41] man-di: Yes, they have disabled the unit tests that was causing problem. :-) [12:41] anyone would like to give http://revu.tauware.de/details.py?package=jodviewer a review? [12:44] theseinfeld: great it works! [12:44] persia: Heh, thanks but I've felt soo disconnected from Ubuntu lately :-( [12:45] bddebian: You've been doing wonderful things. That others have been playing "chase the merge" to keep up only indicates how much :) [12:46] persia, hi! i uploaded yet a new version of whysynth [12:47] persia, it's modified according to sistpoty's comments about the licensing [12:47] http://revu.tauware.de/details.py?package=whysynth [12:47] vemon: Excellent. I'm not going to have time to look at it again before feature-freeze, but maybe you can find some other advocates? [12:47] i'd be grateful if other motu's would care to take alook at it also [12:47] sistpoty|work: not goofy in the sense you are thinking. it seems it isn't handling updated translations introduced in the dapper clamav update quite right [12:48] jdstrand: ah, thanks.. then sparky must have been bitten by a HW failure ;) [12:48] sistpoty|work: I'm also curious why adjusting an orig.tar.gz as directed by upstream with a get-orig-source rule is considered inappropriate. I would have thought that putting the relevant documentation for the repack in README.Debian-source was sufficient. [12:49] persia: because you cannot change licensing as maintainer, or at least shouldn't do this under any circumstances. [12:50] sistpoty|work: Even when upstream specifically instructs you to do so, and provides a patch? Hmm. OK. [12:50] persia: then upstream could easily produce a new release [12:51] sistpoty|work: I'd agree with that, but upstream didn't feel like it. [12:51] * persia points at http://revu.ubuntuwire.com/revu1-incoming/whysynth-0802122140/whysynth-20070418/debian/README.Debian-source [12:52] persia: Do you happen to know if stormbaancoureur already got synced? [12:52] bddebian: Yep. Just pushed it last night. [12:52] Ah excellent, thanks [12:53] bddebian: Published in hardy-release 1 hour ago [12:53] Damn you guys are goood :-) [12:53] bddebian: You can see my sync list from the top of https://launchpad.net/~persia/+packages. Please hit anything I missed :) [12:54] Also, did you ever find a good solution for newpki-client? That didn't seem to be an available sync candidate, and still needs a rebuild or a drop. [12:55] persia: I have a patch on BTS and the maintainer mailed me saying he couldn't apply it but I told him it was probably a cr/lf issue and I never heard back from him :-( [12:56] bddebian: OK. I suspect we can get a FF exception to remove cruft, so I'll chase that next week. Thanks. [13:00] jdong: Have you looked at the new Debian azureus? Should it be updated? [13:00] Anybody use wifi-radar, and want to look at the new upstream in Debian? [13:01] persia, the only thing I can think of is that we would need to transition the libraries for anything that depends on libopenexr [13:01] rexbron: That might be a big transition. Have you investigated it, and done test builds with the rdepends? [13:02] persia, not as of yet [13:03] rexbron: That ought be a first step before considering an update of a library at this point. If you can test everything in the next few hours, it might be worth looking at a sync. Otherwise, it might not be appropriate for hardy inclusion. [13:03] persia, hmm.... kdelibs depends on openexr [13:04] That makes it even more unlikely. Sounds like a hardy+1 feature. [13:04] persia: it can't be updated, swt-gtk 3.3 is needed, which we pull from eclipse (>= 3.3) while Debian pulls from a separate swt-gtk package [13:04] jdong: Ah. As long as you've looked, I'll drop it from my list :) [13:04] ok :) [13:05] I mean, I'd LOVE to have Azureus updated, but Eclipse 3.3 just isn't happening [13:05] * persia declares grab-merge to be pointlessly slow and goes back to the nice fast manual process. [13:09] jdong, could you please re-advocate tovid? [13:09] is anyone getting crashes in javaws binaries from Sun JDK? I am getting this error - java: xcb_xlib.c:82: xcb_xlib_unlock: Assertion `c->xlib.lock' failed. [13:12] hi [13:13] slytherin: That's a known bug in Sun Java. [13:14] There is an environment variable that is supposed to help, and there is a sed script which when run against the binaries is supposed to help. [13:14] persia: any links? [13:14] I am unable to launch any JNLP based applications [13:15] slytherin: bug #87947 [13:15] Launchpad bug 87947 in libx11 "xcb_xlib.c:50: xcb_xlib_unlock: Assertion `c->xlib.lock' failed." [Medium,Fix released] https://launchpad.net/bugs/87947 === compwiz18_ is now known as compwiz === compwiz is now known as compwiz18 [13:24] persia: thanks. I am using the environment variable workaround. [13:25] LucidFox: looking [13:27] mornin' [13:28] Hello, mousetweaks for the hppa architecture is given as pending in the hardy heron build: https://edge.launchpad.net/ubuntu/hardy/+builds?build_text=mousetweaks&build_state=all Does that mean that it is waiting to be built? [13:29] frafu: that's correct [13:29] frafu: yes, it's in the build queue and waiting for it's turn [13:29] hi nixternal [13:29] howdy geser [13:31] LucidFox: tovid advocated [13:31] Thanks! [13:31] :) [13:31] go tovid :D [13:32] LucidFox: have you told upstream about it yet? They'd be quite happy [13:32] they came here two release cycles or so ago wondering how to package for Ubuntu [13:32] Ah. [13:32] Okay, I'll tell upstream. [13:33] As well as suggest to them some of my patches. [13:33] hey, I have subscribed u-u-s to a bugreport with a debdiff attached, is there anything more to do? bug 191546 [13:33] Launchpad bug 191546 in ilmbase "libilmbase-dev should conflict with libopenexr-dev (<< 1.6.1)" [Undecided,In progress] https://launchpad.net/bugs/191546 [13:33] And what does "Build for superseded Source" mean? That night a more recent version is also in the build queue? === Martinp24 is now known as Martinp23 [13:35] s/night/ [13:35] frafu: correct [13:35] rexbron: why did you change the standards-version and why didn't you mention it in the changelog? [13:36] Thanks to all for the confirmations [13:36] lifeless: poke; why isn't bzr 1.1 in Hardy? [13:36] geser, sorry, forgot to mention that. I did it as the debian maintainer had added Homepage: and Vcs-Bzr: which iirc were introduced in 7.2.3 [13:37] (or have I got the verson numbers wrong?) [13:38] 3.7.3 rather [13:38] rexbron: the debdiff has it right, could you a comment that you changed it any why to the changelog (the reason will be helpful to understand the change in the next merge)? [13:38] geser, sure [13:43] geser, fixed [13:47] persia: OK, sync requests in for etw, qonk, and dd2. I'll do another lordsawar one shortly [13:51] bddebian: Excellent. Thanks. [13:54] <\sh> guys, does anyone know a tool (not ooffice impress) which could convert powerpoint files into flv/swf? (good if this doesn't need wine and it should run on the cli) [13:57] <\sh> scottK: still not sleeping? :) [13:58] \sh: why, out of curiousity, not ooimpress? [13:58] <\sh> jdong, because I don't want to have a Xnest or Xlibs at all on a server [13:59] \sh: ah, ok :) [13:59] \sh: so you're trying to make a clone of http://www.fileformat.info/convert/doc/ppt2swf.htm [13:59] Ok, updated the debdiff on ilmbase. bug 191546 [13:59] Launchpad bug 191546 in ilmbase "libilmbase-dev should conflict with libopenexr-dev (<< 1.6.1)" [Undecided,In progress] https://launchpad.net/bugs/191546 [13:59] <\sh> jdong, and because ooimpress converts the ppt to swf with keystrokes..so nothing for having it in a video presentation [14:00] \sh: maybe take a closer look at http://www.artofsolving.com/opensource/jodconverter? [14:00] though I have a feeling it's using the Java API for OOo [14:00] and hence useless [14:01] <\sh> well...nothing really useful I think... [14:02] <\sh> the other alternative is to present a customer with a commercial plugin for powerpoint... [14:03] so... the sponsors queue has a bunch of stuff that needs to get accepted or rejected before feature-freeze. Please take a look at http://launchpad.net/~ubuntu-universe-sponsors/+bugs [14:03] :) [14:04] * jpatrick wishs he had more time [14:04] shouldn't there be a libusb meta package that points to the current version of http://packages.ubuntu.com/hardy/libs/libusb-0.1-4 [14:04] morning all [14:05] \sh: keynote on the mac [14:05] \sh: or use a java applet to present an odp ;) [14:06] \sh, lintian & linda without errors ... thanks ;-) [14:06] <\sh> tbutter, nothing really useful for webtv ;) [14:06] <\sh> mruiz, :) [14:07] does webtv support MHP? [14:08] CarlFK, it would be better to do it via a Provides: field in debian/controls [14:09] <_MMA_> siretart: PM when you are around. [14:10] rexbron: should I put that in a launchpad ticket? [14:10] CarlFK, filing bugs is always a good way of keeping track of problems [14:11] <\sh> sistpoty|work, i found a bug in revu , while recovering passwords ;) [14:11] \sh: what's the problem? [14:11] <\sh> sistpoty|work, the recover source doesn't use the main key, but the signature key, which is wrong ;) [14:11] <\sh> s/signature key/subkey for signing/ [14:11] <\sh> gpg: encrypted with 1024-bit RSA key, ID E4967E90, created 2007-10-14 [14:11] <\sh> "Stephan Hermann " [14:12] \sh: ugh... never touched that one yet... can you file a bug please? [14:12] <\sh> sistpoty|work, which is my subkey for signing [14:12] <\sh> sistpoty|work, yepp [14:12] thanks! [14:12] sistypoty|work, could it be possible for you to re-ckec whysynth with the new debian/copyright? [14:13] i modified the package according to your comments [14:13] re-check [14:15] vemon: sorry, not from work (though the copyright file looks great now, thanks!) [14:17] <\sh> sistpoty|work, oh well... [14:18] <\sh> pub 1024D/C098EFA8 created: 2005-03-20 expires: never usage: SC [14:18] <\sh> trust: ultimate validity: ultimate [14:18] <\sh> sub 1024g/31A7EF3B created: 2005-03-20 expires: never usage: E [14:18] <\sh> sub 1024R/5D12B6BA created: 2007-10-14 expires: never usage: S [14:18] <\sh> sub 1024R/E4967E90 created: 2007-10-14 expires: never usage: E [14:19] promag glad to help [14:21] theseinfeld: thanks! do know a good place to learn more? for newbies like me... [14:22] theseinfeld: also, it's normal to add debian/* to EXTRA_DIST? [14:22] or atleast some of them? [14:22] promag don't add that to EXTRA_DIST [14:22] don't add at all? [14:23] <\sh> sistpoty|work, it's not actually wrong... [14:24] \sh: heh, actually I wouldn't also know which of the two elgamal keys should get selected then [14:25] theseinfeld: so I always need to update the debian/* files? [14:26] anyone that would like to take a look at likewise-open it is in my ppa https://launchpad.net/~dendrobates/+archive [14:26] You need an AD server for it ot be of any use, of course. [14:26] It's also currently in the queue waiting for an AA to approve it. [14:30] <\sh> sistpoty|work, the problem is just that, that working on remote, having the smartcard reader here at my company...is worse for decrypting then :) [14:30] <\sh> zend-framework uploaded... [14:30] <\sh> send mail to this debian guy [14:30] promag debian folder is for packaging, the rest of the project is another thing [14:30] \sh: seems like you've got a typo on your from field in the mail [14:30] if you do the packaging, you add the debian thing [14:31] if you do the real code, you use autotools promag [14:31] quite straight forward [14:31] <\sh> sistpoty|work, yes ;) [14:31] <\sh> sistpoty|work, I saw that now too :( [14:31] \sh: sure... but I don't really see a solution to that problem... however I'm absolutely no gpg expert :( [14:31] * \sh is old, can't even write his own name [14:31] heh [14:32] TheMuso, me is back :) [14:32] theseinfeld: so cdbs will determine dependencies, changelog, etc etc from autotools project files? [14:32] theseinfeld: Well I'm about to go to bed I'm sorry. [14:32] TheMuso see you tomorrow... [14:32] promag no [14:33] promag debian folder contains the way you do the packaging that include the cdbs scripts that are aiding you in making clearer debhelper calls [14:33] promag and you don't need to use debian to install the thing [14:36] theseinfeld: but I want to provide a package, not the source for other to build it [14:37] theseinfeld: I don't want to provide a source package [14:37] promag, then you just build the packages with dpkg-buildpackage and give them the binaries [14:38] so, you don't need to do make dist in source [14:38] you just add the debian folder with the proper files [14:39] you need dh-make lintian linda pbuilder cdbs devscripts ubuntu-dev-tools, promag [14:39] and these files can be versioned with svn? [14:39] promag you can use pbuilder [14:41] promag have to go now [14:41] promag cheers [14:47] Hi, everyone. Can anyone point me on a clear howto for signing a package of my own to put on an internal repository and have other machines doing apt-get from it without having authentication warnings (i.e. doing the authentication correctly) === santiago-php is now known as foursixnine [14:49] durapraxis: not too sure... maybe the docs of mini-dinstall might contain a howto [14:52] congratulations LucidFox :-) [14:52] dholbach> heh, thanks! [14:53] dholbach: I would be honored if you would take a look at likewise-open. Soren, mathiaz and zul have already looked at it, but it is a hairy package, so the more eyes the better. [14:54] dholbach: https://launchpad.net/~dendrobates/+archive [14:54] dendrobates: I'm a bit busy right now, I'll add it to my TODO list but wouldn't mind if somebody else checked it out in the meantime [14:57] LucidFox: welcome - you're member of the team now :) [14:58] Sweet! [14:58] congrats LucidFox ! [14:58] May I join u-u-s right away, or do I need a separate approval for that? [14:59] LucidFox: You need a second approval, but it's typically easily granted. [14:59] I'm very happy with that [15:02] LucidFox: congrats! sorry I didn't respond sooner, but I was totally used to only responding if I was included :) getting used to the new job still :) [15:07] hi DktrKranz ... I uploaded a new revision ;-) . Thanks for your comments [15:07] mruiz: nice! [15:08] mruiz: it should be ok, now [15:08] DktrKranz, I hope so ... [15:15] <\sh> bah [15:15] <\sh> mssql db backup is fcking broken [15:19] \sh: I'm shocked! [15:20] <\sh> soren, just for the record...I'm switching to ubuntu, and I need the data from old mssqls :( [15:21] \sh: Oh. [15:22] <\sh> soren, again thx for the dpkg upload :) [15:22] No worries :) [15:26] is there any way to sense a user's locale? [15:26] eg en-US [15:27] homer: what are you trying to do? [15:28] I need to know a user's locale in order to download locale specific files from the net [15:28] homer: Often you can collect it from the user's environment variables. [15:28] homer: see the locale output [15:29] awesome, thanks [15:29] Hmm. I recently filed a sync request for subtitleeditor, after which it FTBFS, despite building successfully in Hardy PPA [15:30] homer: pick the correct env variable you need [15:30] LucidFox: What is build error? [15:30] oh, wait... the build process seems to have been rerun, and now it did build [15:31] LucidFox: The PPAs don't quite match the production archives, although they are very, very close. [15:31] LucidFox: that happens sometime when hardy changes between filing the sync request and the sync itself [15:31] the original error was something like: dpkg-gencontrol: cannot parse '-' [15:31] but as I mentioned, now it's been resolved [15:32] LucidFox: transient error in dpkg breaking pkg-create-dbgsym, already fixed [15:32] LucidFox: That might have been timing: there was a dpkg oddity recently. [15:33] locale | grep LANG= | sed s/^LANG=//g | sed s/.UTF-8$//g [15:33] LucidFox: and subtitleeditor build successfully now [15:33] I was just wondering that when new release of gstreamer0.10-plugins-bad comes out will it need FFE. It will contain the VCD plugin which was not ported until now to GST 0.10 [15:33] that works :) [15:33] yes, it did [15:33] slytherin: Any new upstream requires FFE. [15:34] superm1: I'm reminded: did you have any luck getting gst-plugins-bad to build the wildmidi plugin, or should I be chasing that if I want it? [15:34] just performed my first sponsor upload, by the way [15:35] homer: echo ${LANG%.UTF-8} is shorter [15:36] damn I got rid of one of my sed's and you go and get rid of the whole statement :o [15:36] thanks geser [15:36] homer: another hint: some people might still be using something like de_DE.ISO-8859-15 [15:36] true [15:36] I am no good at regular expressions though, I am trying to figure out which one will match anything after the period [15:42] Is anyone interested in bringing thoggen latest version in Ubuntu real fast? If so then I will file a needs-packaging bug. Else I will wait for Debian to package it and file a FFE [15:44] slytherin: real fast as in within 15 hours? :D [15:45] hi, could somebody update em8300 package? current version from sid will do [15:45] is there a sync request on launchpad yet? [15:46] only .4 compiles with 2.6.24, so .3 is useless [15:46] Kano, it needs a sync request with the updated changelog from Debian and a bit of testing. Unfortunately, my card is not in my current workstation, so I couldn't do the second part. Would you mind filing the bug? [15:47] persia: please test it yourself.i do not own the card myself anymore. [15:47] slomo: did you have a chance to look at the sync request for boo yet (bug #191394)? [15:47] Launchpad bug 191394 in boo "please sync boo (0.8.0.2730-5) from unstable to universe" [Wishlist,Incomplete] https://launchpad.net/bugs/191394 [15:47] Kano: I won't have time before the new upstream deadline :( [15:47] geser, hah! found one that works :) echo ${LANG%%.*} [15:48] persia: update it now before you forget it... [15:48] Anyone have an em8300 card to test the new upstream? The current version is apparently useless for us. [15:48] sistpoty|work: let's get it ;) [15:48] slomo: :) [15:49] slomo: can you subscribe ubuntu-archive and set it to confirmed (don't have credentials here right now... otherwise I'll do it once I'm home) [15:49] persia: if it's useless then I dont think much testing is required other than install the module doesn't explode your computer === foursixnine is now known as santiago-ve [15:49] sistpoty|work: already done [15:49] pochu: You beat me by seconds: remember to unsubscribe UUS before the ACK to avoid collisions :) [15:49] slomo: thanks! [15:49] persia: ah, I'm the fastest! ;-) [15:50] * pochu wins [15:50] persia: i tested that it compiles fine [15:50] pochu: you know, from my personal experience, that's not ALWAYS a good thing ;-) [15:50] (kidding) [15:50] jdong: Sure, but if .4 doesn't work with our kernel, it's better to fix it and get an FFe later, rather than doing a sync now and forgetting about it. That's why I won't sync untested. Maybe you have different guidelines? [15:51] persia: I thought it would be easier to get fixes to .4 to make it work after FFe than to realize we need .4 after the fact and go through a FFe [15:52] jdong: I've never had an issue with an FFe that would otherwise qualify for a UVF. Feel free to sync if you like :) [15:52] persia: haha with that said I'm scared to be on the blame trail ;-) [15:52] !jdong [15:52] jdong: yes, but you're FULL OF CRACK! [15:53] See, no change involved :) [15:55] ntfs-3g is still outdated btw.. [15:56] even sid has the new version [15:56] woha 5/5 in the MC call [15:57] * pochu hugs *his* MC ;) [15:57] <\sh> siretart, ping mplayer...would you kill me if I say, that mplayer-skins should be moved from Depends to Suggests? [15:57] <\sh> siretart, just because on a server, you can use mplayer to generate small thumbnails from videos and you don't need mplayer-skins at all ;) [15:57] mruiz: mnemosyne is on its way to the archives :) [15:58] thanks DktrKranz ... I learned many things during your sponsoring :-) [15:58] mruiz: now it's time to learn quilt, then! [15:59] DktrKranz, I'll do [16:01] * DktrKranz used to hate quilt, but he quicly changed his mind when he really used it [16:02] quilt is very powerful, but awkwardly documented [16:03] very awkwardly I might add [16:03] * bddebian thirds that [16:03] persia: that's why I like it, you have to fight against it, and when you win, you rule the world! :) [16:03] we are using it for the kde 4 apps, and it tends to confuse the hell out of me at times, causing me to go old school on it :) [16:03] hahaha, I guess I just give up easily on it...god I am a loser :p [16:04] nixternal: I always forget to export QUILT_PATCHES=debian/patches, *always* [16:05] I believe we have that set in our cdbs file we use for kde4 apps, so I get lucky there :) [16:05] rexbron: oh, you beat me! [16:06] rexbron: erm... sorry. [16:06] DktrKranz, :P [16:06] nixternal: it was you to beat me :) [16:07] rexbron: the real issue was related to bug 191546, does it happens during gutsy -> hardy upgrade? [16:07] Launchpad bug 191546 in ilmbase "libilmbase-dev should conflict with libopenexr-dev (<< 1.6.1)" [Undecided,In progress] https://launchpad.net/bugs/191546 [16:07] * persia likes seeing race conditions in sponsoring, and encourages more. First person to get 50 sponsored bugs between now and FeatureFreeze wins. [16:08] persia: do SRUs count? [16:08] DktrKranz: If they are sponsored :) [16:09] DktrKranz, That will fix a potential upgrade breakage when we transition to openEXR 1.6.1. It is too late in the cycle to make such a disruptive change. [16:10] persia: did you add em8300-headers to mplayer to use it with it? [16:11] is revu still broken? [16:11] Kano: Nope. I'm not an mplayer person. [16:11] persia: without it is hard to test em8300... [16:11] rhpot1991_laptop: no, it's broken *again*... (and my guess is that sparky's hardware starts to die of age :/) [16:11] Kano: Depends on how you use the card... Anyway, it's not in my current workstation, and I'm doing other things. Better to ask someone else. [16:12] sistpoty|work: what do I do about getting my changes up there and reviewed then, just wait? [16:12] jdong: yes, by 'real fast' I meant before FF. :-D [16:12] well: minimally update the package [16:12] rexbron: potential? Do you mean Hardy is not affected at the moment, but Hardy + 1 will? [16:12] sistpoty|work: it starting failing while I was uploading a change last night and I haven't seen it back since [16:12] nobody can even try to use it that way [16:13] rhpot1991_laptop: I'll walk down to the server room in a few minutes and reboot that thing... So I guess you just cross fingers that it will stay up alive longer then ;) [16:13] heh, ok [16:13] thanks :) [16:13] DktrKranz, it affects hardy but only if one tries to install libilmbase-dev . What has happened with openEXR is the latest upstream source has moved from one tarball to several tarballs [16:14] ilmbase has been synced from debian unstable, but only the new openEXR needs it. openEXR 1.6.1 has not been synced from debian experimental for the reason above [16:16] jdong: FYI ... It was updated in Debian by slomo, so you will have to wait only few hours. :-) [16:17] persia: I've updated http://members.ping.de/~mb/universe-versionslist.html in case you want to overflow the archive-admin queue :) [16:17] Could someone else please look at the drupal5 merge? I'm not sure I understand the new upstream well enough to be sure if we still want those changes. (emgent) [16:18] geser: I'm planning to sleep tonight. I'm chasing a few more merges, but I'm not sure how much more I'll get done. [16:18] slytherin: what luck :) [16:18] rexbron: I see now. My main doubt is if a universe package can Conflict/Replace a main one [16:18] geser: I don't suppose you could populate http://members.ping.de/~mb/universe-versionslist.html#notinB: that's probably one of the more interesting targets. [16:19] persia, ok just a moment :) [16:19] * persia encourages people to check http://members.ping.de/~mb/universe-versionslist.html#outdatedinB and review anything that has a new upstream. [16:19] persia: I'll try [16:19] geser: Thanks. [16:19] emgent: Great! [16:19] persia: how much night it left for you before the morning comes? [16:20] DktrKranz, I don't see why not. As it stands right now, it is broken. You must uninstall libopenexr-dev before you can install libilmbase-dev [16:20] geser: My alarm goes off in 4 hours, and I skipped last night. I'm not around much longer. [16:20] ouch [16:20] debian #464876 [16:20] Debian bug 464876 in drupal5 "drupal5: New upstream version 5.7 available, fixes several bugs" [Normal,Fixed] http://bugs.debian.org/464876 [16:20] If you get a solution, I'll see it in backscroll, and submit inclusion requests. If you get a solution and want to file inclusion requests for useful things not previously removed from Ubuntu, that'd be even better. [16:21] emgent: Exactly. We want that, but it needs to get merged in the next few hours. [16:21] persia, for me in hardy we can sync [16:21] * slytherin suggests geser to add persia's location in the new shiny clock applet to track his time zone. :-) [16:21] emgent: If you're sure, please file the sync request (it's your merge). [16:22] wait i'm re-see debian patch :) [16:23] emgent: If it's not a clean sync, please file the merge bug and subscribe the sponsors. There are extra sponsors helping to get new upstreams in right now. [16:23] persia, sure thanks [16:24] persia: The kvm bits of https://bugs.edge.launchpad.net/ubuntu/+source/qemu/+bug/156085 are assigned to you... Not sure how to interpret that. [16:24] Launchpad bug 156085 in qemu "Could not open /proc/bus/usb/devices" [Low,Confirmed] [16:24] well isomaster should be updated too [16:25] iceape [16:26] soren: Note that the bits assigned to me a supposedly "Fix Released". That's the result of me sponsoring TJ's work so that you can ask me about it rather than hunting TJ. [16:27] soren: If I remember correctly, https://bugs.edge.launchpad.net/ubuntu/+source/qemu/+bug/156085/comments/10 was the debdiff I uploaded (which apparently didn't fix it hard enough). [16:27] Launchpad bug 156085 in qemu "Could not open /proc/bus/usb/devices" [Low,Confirmed] [16:28] Err. https://bugs.edge.launchpad.net/ubuntu/+source/qemu/+bug/156085/comments/8 rather (same patch, different package). [16:31] persia: Ok. Thanks. [16:31] soren: From you asking, I'm assuming it shouldn't be "Fix Released"? [16:31] persia: Right. [16:32] rhpot1991_laptop: revu is back [16:32] * persia updates, and unassigns to reflect reality [16:32] persia: Lovely. Thanks. [16:32] thanks sistpoty|work [16:32] sorry for the inconvenience [16:33] soren: https://bugs.launchpad.net/ubuntu/hardy/+source/kvm/+bug/156085 is open for your assault :) [16:33] Launchpad bug 156085 in qemu "Could not open /proc/bus/usb/devices" [Low,Confirmed] [16:33] "Yay" [16:34] Does anyone know of a good application to screencast your own desktop? [16:34] hi all, anyone know why freeloader was removed from Hardy? the changelog and Soyuz page do not indicate any reason, and I can't find a relevant bug to the removal. [16:36] <\sh> pochu: ask MacSlow (Mirko Mueller) [16:36] istanbul - Desktop session recorder producing Ogg Theora video [16:36] \sh: that looks good, will try it :) [16:37] mgunes: maybe it was removed from Debian? [16:37] <\sh> pochu: hmm...:) [16:37] \sh: I was using deskscribe and when I finished I realized it just recorded the mouse movements o.O [16:38] \sh: well I think it did that. I'm not sure as when I tried ot open the log (4kB) it crashed :P [16:39] pochu, it wasn't in the list of orphaned packages but indeed seems gone from Sid, with no indication why [16:39] hey LucidFox ... I have uploaded the diff.gz to the bug 186397. I attached the interdiff only [16:39] Launchpad bug 186397 in gpredict "Please add Gpredict 0.9 to Hardy" [Wishlist,In progress] https://launchpad.net/bugs/186397 [16:40] mruiz> I've already reconstructed it from the interdiff :) === Mez__ is now known as Mez [16:41] LucidFox, thanks for review it [16:41] mruiz> the orig.tar.gz doesn't need repackaging, I assume? (It was better to include get-orig-source even if it doesn't) [16:41] LucidFox, I'm not familiar with get-orig-source [16:42] mgunes: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=454907 [16:42] Debian bug 454907 in ftp.debian.org "RM: freeloader -- ROM; obsolete; abandoned upstream; few users" [Normal,Open] [16:42] sistpoty|work, just found it, thanks. [16:45] Could a REVU admin please archive tovid, or give me REVU access so I can archive it myself? :) [16:45] * persia hopes someone will look at the libaudio-flac-header-perl merge. The new upstream fixes a lot of bugs, but it needs re-insertion of the conflicts/provides/replaces stuff to handle upgrades from Dapper. [16:46] LucidFox: Granting you reviewer rights... [16:47] LucidFox: Try reloading the page [16:47] Yes, I see the new buttons now, thanks. Archived. [16:49] Nobody wants libaudio-flac-header-perl? Easy merge? [16:49] persia, I can do it :-) [16:50] mruiz: Great. Just check to make sure you preserve the transition handling for Dapper, as it looks like a sync at first glance. [16:53] \sh: gfpoken baffles me, but I think Bas integrated equivalent changes. When you have a moment, could you take a closer look, and maybe sync? [16:54] ugh looks like I broke apt [16:54] fortunately unofficially to a small user base [16:54] so none of you guys have to sweat. just point and laugh at me [16:56] Anyone around know the piuparts codebase? There's a huge patch for Ubuntu, and we're 9 releases behind, with what looks like good work by the Debian QA team. [16:57] Hi LucidFox === evand_ is now known as evand [16:57] linux__alien> I've uploaded your avidemux debdiff, thanks for your work! [16:58] is it great thanks :) and i should thank you for your help and co-operation and i am looking forward for more [16:58] persia: Lars Wirzenius (liw?) should know [16:58] LucidFox, i ve a doubt i read through today's motu mailing list and found that they used the word REVU [16:58] whats that [16:59] i found something like that what does that mean? [16:59] !revu | linux__alien [16:59] linux__alien: REVU is a web-based tool to give people who have worked on Ubuntu packages a chance to "put their packages out there" for other people to look at and comment on in a structured manner. See https://wiki.ubuntu.com/MOTU/Packages/REVU [16:59] sistpoty|work: Doesn't seem to be about, and I'm not sure it would merit FFe, but I'd like to see the newer one available for testing hardy archive stability later in the cycle. [16:59] so when i create a new package i will have to upload it there is it? [17:02] linux__alien> yes, REVU is a place where packages for software not currently in Ubuntu are uploaded for review === dfiloni_ is now known as dfiloni [17:08] Hi Guys, I know everybody is terribly busy right now but I just need one more advocate http://revu.tauware.de/details.py?package=libtuxcap, thanks [17:11] LucidFox, ok thanks so now is there any bug that i could work on ? [17:12] i ve just started to try porting kchmviewer to Gnome :) and package it and give it to Ubuntu :) [17:12] linux__alien> I don't have any for you at the moment, but you can look for them yourself [17:12] linux__alien> it's too late for new packages, really [17:13] we've almost hit feature freeze [17:13] ya i understand but i can add it later even after the Hardy release [17:13] right ? [17:13] can it be done [17:13] Hi [17:13] Hi RainCT [17:15] linux__alien: it can be, but you must file an upstream freeze exception [17:15] rexbron, what does that mean ? [17:16] linux__alien: read the MOTU page on wiki.ubuntu.com [17:18] linux__alien: You can add them to the next release after hardy freeze is complete. [17:18] ok [17:18] and i want the bug list in Ubuntu where could i find it [17:18] i mean the list where i can filter those are opened , closed etc [17:19] So, my last outstanding merge help request is for someone to look at crystalspace to see if we can pull from Debian. Any volunteers? [17:19] persia, i am ready [17:19] persia, if someone can guide me i am ready to do it [17:20] Anyone want to help linux__alien for this? [17:20] as you might know or might now i am new just fixed couple of bugs in Ubuntu :) with LucidFox 's help [17:21] persia, talking about libaudio-flac-header-perl, the main difference in debian/control is Conflicts and Provides fields. Debian version doesn't include them [17:22] mruiz: Right. It would be a sync, except we might still need them for Dapper upgrades. Your job is to investigate Dapper to see whether we need them, and either add them back, or request a sync. [17:22] persia: thanks [17:24] persia, anything i could do for this ? [17:24] quick poll: is bug 190461 considered a new feature requiring a FFe or not? [17:24] Launchpad bug 190461 in clutch "Lighttpd support" [Wishlist,Confirmed] https://launchpad.net/bugs/190461 [17:24] linux__alien: I'm too tired to help in detail. Sorry. === Mez_ is now known as Mez [17:24] ok [17:25] LucidFox: congrats! [17:25] fine [17:25] congrats for ? [17:25] for joining MOTU, presumably :) [17:25] RainCT: Any luck with the diff.gz -> .dsc script, or will it be a hardy+1 feature? [17:25] linux__alien: That will just need the adjustment to 'Depends' right? [17:25] Oh Great LucidFox [17:25] Congrats [17:26] persia, Dapper uses 1.4-1. 1.9-1 removed all control references (Provides, Conflicts, Replaces) to the old libaudio-flac-perl package, as that was not included in the last stable Debian release anymore. (from the changelog) [17:26] one problem to merge drupal5 [17:26] http://rafb.net/p/VOFcC067.html [17:26] slytherin, i am new to packaging so if someone could just guide me i could work on it [17:26] patch dont work, and i dont work in this [17:26] some idea? [17:26] emgent: Are you the wrong person? My apologies, I thought you had the last upload. [17:27] i should remove this and re-apply with systempatch? [17:27] linux__alien: wait, does clutch needs php? [17:27] persia, yep, i was upload this, but in this merge there is a problem [17:27] slytherin, i dont know whats clutch [17:28] emgent: OK. It is your merge then. If you can do it now, great (and ask for help). If not, the variance gets larger, and you'll have a bigger job for hardy+1. [17:28] linux__alien: It is a web interface to transmission bittorrent client. I believe it needs php, at least the dependencies specify so. So I am not sure if you will be able to run with lighttpd [17:28] mruiz: I haven't investigated in detail. Check the upgrade path. Maybe they are requried, maybe it's a sync. [17:29] persia: (yesterday 18:41:54) RainCT: persia: I don't think I can be of much help with that (I never used many of those commands you listed), sorry :( [17:29] ok persia i will apply with other metod thanks persia [17:30] RainCT: Sorry. I missed that. Thanks anyway. I'll put something together for hardy+1 then (I'm not expecting many more new upstreams for hardy :) ). [17:31] slytherin, ok thanks [17:31] slytherin, can you help me on this ? [17:31] on that packaging [17:32] linux__alien: It is trivial provided you verify clutch runs on lighttpd [17:33] slytherin, oh i thought you were talking about crystalspace :) [17:33] slytherin, i am sorry was out of context [17:33] whats that i ve to do for this [17:33] Does anyone know where bluekuja is? [17:34] I haven't seen him for weeks and motu-p2p is kind of his thing [17:34] mruiz> gpredict uploaded [17:34] thanks LucidFox :) [17:35] jdong: He's been on-and-off jabber (although I haven't chatted) [17:35] LucidFox, i want the link to the bugs in Ubuntu [17:35] LucidFox, so that i could look into whatever i can [17:35] linux__alien> http://bugs.launchpad.net/ubuntu [17:35] Oh Thanks [17:40] persia, merge is ready, i go to open bug. [17:41] the entire content of the orig.tar.gz for vips consists of a single tar.gz, what kind of borked upstream release is that? :/ [17:41] emgent: Great. [17:41] LucidFox: tarball-in-tarball was popular for a while. === Spec[x] is now known as Spec [17:43] * persia has completed personal FeatureFreeze preparation, and wishes others luck: please try to hit all the FF critical bugs in https://launchpad.net/~ubuntu-universe-sponsors/+bugs , and review http://members.ping.de/~mb/universe-versionslist.html#outdatedinB for any new upstreams that have hardy-worthy features. [17:44] done, subscribed u-u-s too. [18:01] arent there any open bugs in Gutsy [18:02] all bugs i see in LP are more for Feisty and the older releases? [18:02] or am i looking at the wrong place / [18:02] ? [18:05] linux__alien: where are you looking? [18:05] hi, my alsa-firmware package was uploaded from revu just over a week ago. i have since received a rejection notice, as there were a couple of issues with copyright and distributability. i have now uploaded to revu a fixed version, and am consequently looking for a motu to sponsor it. presumably i only need one motu this time? the url is http://revu.tauware.de/details.py?package=alsa-firmware [18:06] apachelogger_: you might be interested in advocating http://revu.tauware.de/details.py?package=oxygen-cursor-theme [18:06] bddebian: stormbaancoureur has already the first bug :) [18:07] https://bugs.launchpad.net/ubuntu/+bugs?start=225 [18:08] geser: The endianness one? [18:09] linux__alien: it's due to the sorting, I usually use "newest first" to see new bugs at the top [18:09] RainCT, geser, bddebian, can i pester you, wrt the above? [18:10] bddebian: bug #191620, I didn't check further [18:10] Launchpad bug 191620 in stormbaancoureur "stormbaancoureur segfaults" [Undecided,New] https://launchpad.net/bugs/191620 [18:12] tsmithe> well, superm1 is here, you can ask him to readvocate him [18:13] given how he was one of the original advocates [18:13] ah yes, superm1, can you? [18:15] LucidFox, there are lot of crash kind of bugs in the bug list which i cannot reproduce coz i dont have the same environment in these cases what do i do [18:16] LucidFox, there are few bugs which i could work on or even try to reproduce coz i run Gutsy [18:16] then don't touch them :) [18:16] simple as that [18:16] how do you people generally manage to simulate and fix bugs . Do you all run those many versions of Ubuntu in you comp or you have an other comp to be used as secondary for all these purposes ? [18:19] * sistpoty|work heads home now [18:19] cya [18:19] Hi. Is there a possibility to have an apt repository password-protected e.g. via .htaccess? Can apt be configured to provide this type of authentication? [18:19] dfiloni: FF is tomorrow, in case you want to get wx2.8.7 in ;) [18:20] pochu: what? [18:20] pochu: FF? [18:20] dfiloni: Feature Freeze [18:20] <\sh> re [18:20] (hence my hurry :p) [18:21] pochu: oh damn, I think it's impossible to fix all wxwidgets2.8 bugs for tomorrow [18:22] <\sh> dear Ubuntu Release Team :) Do we get a blank UVF exception for wine? :) [18:23] persia, libaudio-flac-perl only exists on dapper, edgy and oldstable in Debian. For me is a sync [18:23] pochu: I had fix only a little number of bugs, however I will post it this night [18:23] dfiloni: well you don't need to fix bugs for tomorrow, just get the new stuff. Bugs can be fixed in the next month ;) [18:23] Dear \sh: One has to ask first. [18:24] ;-) [18:24] pochu: yes, I know, for this reason I will upload in revu this night [18:24] dfiloni: alright, ping me when you are done. [18:25] pochu: ok [18:26] <\sh> ScottK: *g* I don't think that we get a 0.9.55 from YokoZar and I'm asking myself, if I push a 0.9.55 this evening to ubuntu but then I'm feeling bad for YokoZar [18:26] \sh: I'm fairly certain you get it for the usual reasons. but just file a bug and subscribe the team so we have it all documented. [18:27] <\sh> ScottK: for sure...nothing without paper [18:28] Hi. Is there a possibility to have an apt repository password-protected e.g. via .htaccess? Can apt be configured to provide this type of authentication? [18:32] <\sh> emgent: how far did you get with the drupal 5.7 merge? [18:35] How many hours remain before FF? [18:37] LucidFox: ~29 as far as I understood it. [18:38] LucidFox, i am upset that i am not able to find anything with the resources that i ve :( [18:38] any help on this regard would be very much helpful [18:39] i really like contributing here and staying here but my resources are a stopping factor :( [18:40] linux__alien, what kind of resources do you mean? [18:40] durapraxis: nobody cares about you :D [18:41] Moniker42, i ve only one laptop where i ve installed 7.10 and want to contribute to Ubuntu but am not able to fix or look into issues as i dont have an other system to play with . This is my only sytem that i ve got [18:41] Moniker42, how do i go about doing it [18:41] linux__alien, dual-boot? [18:41] or get a job [18:42] o_O [18:42] :) [18:42] Moniker42, i thought i could fix some small application issues like something not working stuff like that [18:43] Moniker42, please [18:43] linux__alien, what is it that you want? [18:44] really curious to know this. there would be many people in the same situation that i am in . Having one system and not enough resources. so those people are not encouraged to contribute to Ubuntu ? [18:45] <\sh> durapraxis: did you try deb http://: in sources.list? === Ubulette_ is now known as Ubulette [18:47] RainCT: please archive the upload, this package is already in debian, and I merged it with the one on revu [18:48] apachelogger_, are you able to check out a new revision of a recently rejected package? [18:48] (for me) [18:48] apachelogger_: ok, done [18:48] tsmithe: just toss it over [18:49] Hey Ok guys got to go now cya tomorrow [18:49] I'll be out for the next couple of hours though [18:49] apachelogger_, http://revu.tauware.de/details.py?package=alsa-firmware [18:49] thanks LucidFox for uploading the package [18:49] linux__alien: I think the vast majority of Open Source contributions come from people with more than one computer, particularly for distributions like Ubuntu. I don't mean to discourage you from contributing, but you're certainly working with a handicap [18:49] tsmithe: please mention in a comment why it got rejected [18:49] slangasek, so i need an other system is it [18:49] any other alternative ? [18:49] ok [18:49] afk [18:50] linux__alien: I also have only 1 PC but this is no problem for contributing to Ubuntu [18:50] slangasek, why do you say particulary for distributions like Ubuntu [18:50] RainCT, how do you do it [18:50] * linux__alien listens [18:50] linux__alien: I don't say "need" - but having a dedicated development system makes a big difference in not having your life disrupted when you break your development environment :-) [18:51] ok but how does RainCT do it :) [18:51] linux__alien: I say "particularly for distributions" because when the *distribution* breaks while you're doing development, and it's your primary system, rebootstrapping yourself can be painful [18:52] linux__alien: what are you having problems with? [18:52] slangasek, so it applies to all the distros then [18:52] linux__alien: yes [18:52] RainCT, i ve only one laptop where i ve installed 7.10 and i just want to know how to fix bugs with this system alone ie for hardy how do you do it [18:52] i ve 7.10 installed [18:53] apachelogger_, done [18:53] now its hardy which is gonna be released so how do you contribute with just one system [18:53] linux__alien, why would you need two systems in the first place? [18:53] so that if i break one i would still have an other to connect to the internet and the normal routine does not get affected [18:53] Hmm, my @ubuntu.com address doesn't seem to work [18:54] or do I have to do something explicitly to enable it? [18:54] LucidFox: it takes some time till it gets activated [18:54] linux__alien: well, just choose bugs in programs that have still the same version in gutsy as in hardy or are easy to upgrade to (eg, don't need lots of dependency upgrades and such) [18:54] jdong: It is fitting that my first 'core-dev' upload would be a clamav source backport ... [18:54] <\sh> ScottK: pdns bug #191506 is already fixed in hardy... [18:54] Launchpad bug 191506 in pdns "TXT records truncated" [Low,In progress] https://launchpad.net/bugs/191506 [18:55] \sh: Thanks. [18:55] RainCT, thats how you do it is it [18:55] <\sh> ScottK: I checked our source and the changeset is longtime applied [18:55] <\sh> ScottK: so, question is, worth an SRU? [18:55] linux__alien: for stuff that needs testing, yes [18:56] ok for other stuff like fixing ? [18:56] i mean testing after fixing [18:56] you would use the same machine to do it which might not produce the actual results sometimes right? [18:56] linux__alien: then there is also other stuff you can do (fixing / adding .desktop files, manpages, etc. for example) that doesn't necessary need the resulting package to be installed for testing [18:57] hmm thats there true [18:57] \sh: Then I think that's not the right change set as the person who had that bug is running the current version. [18:57] Argh. [18:58] Ok RainCT Thanks for the info [18:58] linux__alien: and as someone already said above you also have the dual-boot option [18:58] RainCT, like downloading hardy and using it [18:58] is it [18:58] right? [18:58] <\sh> ScottK: regarding http://wiki.powerdns.com/cgi-bin/trac.fcgi/ticket/112 the revision is 996 and this is applied [18:59] linux__alien: yes, having Gutsy and Hardy installed at the same time (in different partitions) so that you can use Hardy for development but have Gutsy as a backup if you need it [18:59] \sh: I'm verifying the version now to make sure. [18:59] RainCT, how about VMWare or something like that ? [18:59] RainCT, do you have it in that way ? [18:59] <\sh> ScottK: and browsing svn there is nothing to see more about TXT records [19:01] \sh: Thanks. I'm checking. [19:02] hellboy195> I had a lame start, really :) [19:02] grml [19:03] everybody give it up for LucidFox the newest MOTU (since 4 hours) :D [19:03] I learned about REVU, read the packaging guide and uploaded 3 packages, one of them (psi) really badly done [19:03] (and not even based on the Debian one) [19:04] LucidFox: I didn't know you were Sikon. Congrats :-) [19:05] LucidFox: ^^. and next steps? I supposed it took 8 months until now [19:06] I didn't do much for Gutsy, admittedly [19:06] Packaged videotrans from scratch [19:06] <\sh> ScottK: and it looks like that the bugger is in pdns-recursor, reading the debian bug [19:06] \sh: Yes. That's what I'm discovering too talking with the person that had the bug. [19:07] Also packaged kink, but then I realized upstream was dead - so I forked it and became upstream, and another person packaged the fork for Debian faster than I did for Ubuntu :) [19:07] <\sh> ScottK: I pinged pkern...:) [19:07] LucidFox, hey, as new motu induction, you could upload alsa-firmware for me? [19:08] tsmithe> well, you need two advocates first [19:09] even if it has already had two advocates? [19:09] I don't know, really [19:09] LucidFox: nice [19:09] LucidFox: so you did ~30 packagings? [19:10] tsmithe: http://revu.tauware.de/diff.py?upid1=1715&upid2=2006 I guess changes in makefile, autom4te.cache/output.0 and such are just a side effect of re-building? [19:10] no, far fewer than that [19:10] LucidFox: but other things like ... ? [19:10] RainCT, oh crap. is that in there? i had to rebuild configure, but forgot to remove that. hang on [19:11] hellboy195> some packages listed on my +packages page are Debian syncs [19:11] others are minor modifications [19:12] LucidFox: so what and how ~ many contributions did you in generel to become a motu? [19:12] there are only four packages I packaged for Ubuntu from scratch: videotrans, inkblot, smplayer-themes, and tovid [19:12] however, I did quite a few Debian merges [19:13] \sh: Here's another clue http://mailman.powerdns.com/pipermail/pdns-users/2008-February/005130.html [19:13] LucidFox: I have now 22 merges and 3 sync requests ^^ [19:14] \sh: None of those files happen to appear in pdns-recursor they (it references the same commit)? [19:14] tsmithe: I'm away for ~1 hour. If LucidFox doesn't upload it ping me later [19:15] RainCT> so, readvocation isn't needed for reuploaded NEW rejections? [19:16] <\sh> ScottK: right, the changeset is in pdns itself...and this is already applied [19:16] <\sh> ScottK: so pdns is correct... [19:17] \sh: It appears and the problem is just in the recursor [19:17] bye all [19:17] <\sh> ScottK: and we don't find any fix in recursor :( [19:18] <\sh> ScottK: I'm downloading the 3.1.5 preview and check what's changed against 3.1.4 [19:18] Yes. The guy that's having the problem is asking on #powerdns. [19:18] \sh: Sounds good. [19:19] <\sh> ay [19:19] <\sh> ScottK: now I understand the system ;) [19:19] if anyone has any time I could use a revu on: http://revu.tauware.de/details.py?package=mythexport [19:19] <\sh> ScottK: pdns-recursor is sharing some code with pdns itself...and funny that are the same filenames [19:19] <\sh> ScottK: fixing [19:19] \sh: Great. [19:20] <\sh> ScottK: I can fix the 4.3 stuff too ;) [19:21] \sh: I'd say just fix this one bug and then we consider updating to the snapshot after. [19:22] LucidFox, well, i guess RainCT meant just that, soo... (now i've uploaded a new revision cleaning up the patches) [19:23] LucidFox: btw, nice post on ubuntu planet ^^ [19:23] <\sh> ScottK: yepp [19:24] persia: hello, I don't understand why ubuntume-themes didn't build for you [19:25] persia: in Build-Depends it has: xcursorgen | x11-apps [19:27] tsmithe> uploaded [19:27] LucidFox, excellent :D [19:27] apachelogger_, looks like you're off the hook :) [19:31] congrats lucidfox! [19:31] oh, yes, and of course, congratulations :) [19:32] RainCT: Thanks for doing the revu for me yesterday, I got another one ready to go if you have time later [19:34] how do I submit a debdiff to the "sponsors queue" ? [19:36] <\sh> ScottK: what arch do your friend need for testing? [19:36] i386 [19:37] hello? [19:37] <\sh> ScottK: ok...I'll compile one package for i386 and where do I send it? [19:37] \sh: Actuall it's i386 Sid. [19:37] ok, where/what is the sponsors queue ? [19:37] <\sh> ScottK: grmpf [19:37] \sh: You want to just give me a link to it? Or join #spf on irc.perl.org and we can chat directly. [19:38] \sh: I've got a sid pbuilder set up if you want to link me the .dsc [19:38] <\sh> ScottK: ok...give me a sec...put it on my webserver :) [19:38] K [19:38] <\sh> ScottK: just doing a testbuild... [19:39] OK. [19:42] does anyone have a moment to spare for a great softsynth ready for advocation? :) http://revu.tauware.de/details.py?package=whysynth [19:43] \sh That was close. You do want #spf and Julian is the individual in question. [19:46] <\sh> ScottK, what is SPF actually? ;) [19:47] <\sh> ScottK, don't answer :) I know what it is ;) [19:48] Can someone please review http://revu.ubuntuwire.com/details.py?package=thunar-svn-plugin? [19:48] It requires one more advocation :) [19:48] \sh: Then you know why someone involved in that project would find obscure TXT record bugs. [19:49] BTW, Julian is in Germany too. [19:49] <\sh> ScottK, yeah :) [19:49] Hmm. It seems that some archive admins have tendency to ascribe synced packages to the ACKer of the sync request and not to the original requester [19:50] persia: What do you think the odds are that LP #190589 will get in before the freeze? [19:50] Launchpad bug 190589 in mixxx "New upstream release (in REVU)" [Wishlist,New] https://launchpad.net/bugs/190589 [19:53] Roll back to old upstream versions? Is that even possible? [19:55] LucidFox, anything's possible - if only you believe in it! [19:57] * LucidFox believes that it's possible that Microsoft and Apple will simultaneously go bankrupt today [19:57] only if i crush tehm [19:59] LucidFox: dreamer :P [19:59] LucidFox: The reason they do that (with sync's) is they want to tag them to someone who's more likely to care/know what to do if it goes bad. [20:00] Hello, I am submitted a debdiff to a package that is currently in Queue for Hardy, should the Status of LP be New or Confirmed ? [20:01] AnAnt: confirmed and subscribe u-u-s [20:02] hellboy195: thanks [20:02] np [20:02] Great. My blog post has been on Planet Ubuntu for an hour and already I got porn spam. [20:03] rofl [20:03] LucidFox: yeah I heard that many people with @ubuntu mail adresses are suffering from a lot of spam [20:03] LucidFox: Is this good news or bad? [20:04] <\sh> LucidFox, you mean trackback and comment spam? [20:06] comment spam in blog [20:06] I get lots of spam on my blogs :) [20:07] hellboy195> my @ubuntu.com email doesn't even work [20:07] no idea why [20:07] LucidFox: hmm. just wait until tomorrow? [20:07] maybe [20:08] LucidFox: you could ask in #launchpad how often new @ubuntu.com addresses are generated [20:10] I'll try after I get some sleep first [20:10] night all [20:11] geser: after a week at least I believe [20:21] <\sh> ScottK, did you see http://www.securityfocus.com/bid/27751 ? :) [20:22] Looking [20:22] \sh: Fixed in all supported Ubuntu releases (except the package for feisty-backports is waiting to build). [20:22] So, yes. [20:23] <\sh> ScottK, you are fast :) [20:23] It helps to have help. leonel did Gutsy/Dapper and I did Hardy (grabbed the new upstream out of Debian incoming) and Feisty (stole Debian's patch for Etch). [20:24] That and now that I can upload source backports myself, that part's faster too. [20:25] <\sh> ScottK, your core application was overdue... [20:25] ScottK: Would you be able to review thunar-svn-plugin on revu? [20:25] http://revu.ubuntuwire.com/details.py?package=thunar-svn-plugin ? :) [20:25] cody-somerville: Perhaps later. [20:25] \sh: Thanks. [20:26] <\sh> siretart, did you get my ping from this afternoon? regarding mplayer and moving mplayer-skins to suggests ? [20:27] \sh: I didn't read the context yet, but from the line, Recommends seems appropriate [20:27] <\sh> siretart, yepp..that would be also possible..and telling apt not to install Recommends in the first place... [20:28] <\sh> siretart, the thing is you can use mplayer in a server environment to extract thumbnails of videos..therefore mplayer-skins pulls in a lot of not used and not needed x stuff [20:30] \sh: either that, or blacklisting xserver related packages [20:30] <\sh> siretart, well, actually you don't need the skins to start mplayer...so I think Recommends: is a better solution [20:31] <\sh> siretart, but you are the right person to answer this question :) [20:32] you proposed suggest at first ;) [20:33] \sh: btw, did you do something with fai on hardy? [20:33] <\sh> siretart, not right now...neither used nor put my hands on the source [20:34] \sh: I'm currently considering pushing my merge to hardy right now, and fix broken things after FF [20:34] <\sh> siretart, please do..I think there are some bugs with the old version in hardy because of the new kernel world order [20:35] allee: do you agree? (pushing fai into hardy right now)? [20:35] <\sh> siretart, and yes, I said suggests, because I know that this won't be installed by default...I forgot that you can train apt to not install recommends..so recommends is the better solution [20:37] \sh: you could even pin down individual packages [20:38] <\sh> siretart, I did rebuild the ubuntu package for etch and fixed it in our local repo ;) [20:38] <\sh> but pinning down because of this doesn't make sense, and moving it to recommends is more logical, because you can use mplayer without it [20:39] I mean moving the skins to recommends, and pin down the xserver. this way you don't need to turn of recommends [20:40] <\sh> siretart, sure...but disabling installing recommends is a good think so you know much better what's on your server, when apt is following only the main dependencies...well I'm lazy that's all ;) [20:42] indeed [20:43] pochu: done, wxwidgets2.8 2.8.7.1 is in revu === Amaranth_ is now known as Amaranth [20:45] dfiloni: cool. I'll have a look at it later. [20:46] persia, DktrKranz ^ perhaps you can have a look at it too and with all our eyes we can get it in tomorrow. [20:46] pochu: I don't know if it works, I didn't test it, my pc wan't to kill me :) [20:47] dfiloni: I'll do that for you ;) [20:47] pochu, sure. Last upload went good (at least they didn't shoot at me or dfiloni) [20:47] dfiloni: thanks for the good work [20:47] pochu: great! thanks! [20:47] * pochu hugs dfiloni :) [20:47] DktrKranz: cool. I have to leave soon. I'll leave wx building... [20:54] Should I provide a rule for get-orig-source if the source can be obtained with uscan? [20:56] afflux: it isn't necessary if upstream's tarball is ok [20:58] RainCT: the reason why I'm asking is lucidfox' comments on bug 190671 [20:58] Launchpad bug 190671 in gdecrypt "new upstream version available (0.7.1)" [Wishlist,Fix released] https://launchpad.net/bugs/190671 [21:00] hmph, my irc server is sinking. === Allan_ is now known as Hit3k [21:14] Anybody know a good resource on how to make apt.conf files? === AndyP_ is now known as AndyP [21:21] hendrixski: is "man apt.conf" not sufficient? [21:24] james_w, nope [21:25] james_w, I'm trying to get apt-ftparchive to make a packages.gz file of the .ddeb files in a directory (normally it only picks up debs)... and you need to pass it a conf file to do that... the only examples i've found are confusing, and I'm looking for a manual [21:25] and the man page doesn't have a lot of the key things that are in the example [21:26] <\sh> hendrixski, apt-ftparchive has a good docu..but man apt.conf is the wrong help ;) [21:28] <\sh> hendrixski, http://cihar.com/publications/misc/debian-repository-howto/ as one pointer with examples [21:28] nice [21:29] ah, I guess I googled the wrong things [21:30] \sh, thanks :-) [21:30] <\sh> hendrixski, another pointer where apt-ftparchive is used you'll find here: https://help.ubuntu.com/community/InstallCDCustomization?action=show&redirect=InstallCDCustomizationHowTo [21:34] \sh, nice. I'll read through more of that stuff. .. I thought those conf files being passed were in the style of apt.conf files so I was kind of scratching my head [21:35] <\sh> hendrixski, nope [21:35] <\sh> hendrixski, but the mentioning of apt.conf(5) looks like a bug to me === \sh is now known as \sh_away === _czessi is now known as Czessi [22:16] Is ubuntuwire down? [22:27] RAOF: I've re-uploaded jedit on revu. [22:35] csomerville: seems so [22:35] well, good night === wolfger_ is now known as wolfger [22:38] csomerville: http://revu.ubuntuwire.com/ works.. [22:39] yes === Igorots is now known as Knightlust [23:05] lastfm Ubuntu Hardy 1:1.4.2.58240.dfsg-1ubuntu1 2008-02-12 Not yet built [23:05] uhm.. some idea? [23:06] xsupplicant Ubuntu Hardy 1.2.4.dfsg.1-5 4 hours ago Not yet built [23:06] problem with buildt ? === jml` is now known as jml [23:16] emgent: lastfm build successfully [23:16] ok [23:16] my launchpad have some problem [23:16] https://edge.launchpad.net/~emgent/+packages [23:17] emgent: https://edge.launchpad.net/ubuntu/hardy/+source/xsupplicant/+builds and https://edge.launchpad.net/ubuntu/hardy/+source/lastfm/+builds [23:17] anyone available for a revu? [23:18] emgent: probably because some arch are still pending [23:18] ok cool. [23:18] thanks geser [23:32] Hello all [23:34] asantoni and I (original authors of Mixxx) are trying to get our package in before the freeze, we are facing from resistance from the fact that a old version was synced from Debian into Universe... [23:35] the debian package was authored by a 3rd party [23:35] and there is now some problem with change-logs being divergent [23:36] when you say 3rd party, do you mean a DD, or an NMU? [23:36] we could use the MOTU mojo in resolving this issue [23:36] https://bugs.launchpad.net/ubuntu/+source/mixxx/+bug/190589 [23:36] Launchpad bug 190589 in mixxx "New upstream release (in REVU)" [Wishlist,New] [23:37] pwnguin: there are debian maintainers who ported the ubuntu package to Debian Sid [23:38] http://packages.debian.org/sid/mixxx [23:38] when universe was synced from Debian it pulled their version of our ported package [23:39] I should say ported and updated from trunk [23:39] beta 2 has since been released and is quite a bit more stable and feature complete [23:40] http://mixxxblog.blogspot.com/2008/02/mixxx-160-beta2-released.html [23:40] but we the original authors of the package are shut out of the loop [23:40] so we are unable to get it updated [23:42] Hi I'm still confused about version numbering in my ppa. I've named the package 1.1.10-1ubuntu1~ppa1. That should be upgraded if a new version of libxine appears in -backports. Is that what will happen with the current version name [23:42] ? [23:45] so can someone do whatever MOTUs do and advocate the acceptance of our beta2 package plz [23:45] http://revu.tauware.de/details.py?package=mixxx [23:45] <_MMA_> jumpkick: I think the possibility of getting it into Debian and then syncing to Ubuntu are slim. But I might be able to get someone to do a package you can host for users if nobody has the time to do something in Ubuntu. [23:46] _MMA_: but the situation is a bit strange, in that upstream to debian is/was ubuntu [23:46] _MMA_: no, no, no... someone (not us) took the Ubuntu package for 1.5.2 and updated it against trunk to 1.6.0b1 and put into Debian [23:47] Ubuntu synced against debian [23:47] <_MMA_> Ok. I see. You have a package in REVU. Ill poke around to see if I can get it attention. [23:47] and now we are pooched [23:47] thanks [23:47] _MMA_: help is much appriecated... [23:47] i thought there was a list of software not to import from debian [23:47] for situations like this [23:47] Debian never had the package before [23:48] Hello, I am planning to upload new packages for GlassFish V2 UR1 (multiverse) to the REVU queue later today. LP: # 191658 . Is there any other process that I should be aware of other than following the instructions on uploading to REVU - Thanks [23:48] poor asantoni has been trying to get the package in for feature freeze since last week [23:48] <_MMA_> jumpkick: Still too late in my experience. :P [23:48] jumpkick: I know what the portaudio problem is, and it has to do with the fact that portaudio v19 used to be in main, which is where all the core Ubuntu softwrae is. However, jack is still in universe. [23:49] So portaudio is not currently built against jack. [23:49] nityad: That the deadline for new source packages (and hence REVU) is today, and that glassfish is already in the repository. You'd do better to submit the diff.gz to the sponsors queue in an upgrade bug. [23:50] We can probably live without jack if we have to... We also support ALSA and OSS [23:50] Right. [23:50] or package up unofficial bins to support jack for the hardcore folks who want it [23:50] I'm surprised you use jack via portaudio. [23:50] Thats... um... somewhat messy [23:50] IMO [23:51] TheMuso: I thought the point of using portaudio was to not care what the underlying api is for sound [23:51] Yes, but that introduces latency. [23:51] I'm not down at that level of dev, so perhaps I have it wrong [23:51] TheMuso: yeah, there's a trade off there [23:52] we already compensate for latency to some extent as it is [23:52] fair enough [23:52] I'm seeing what I can do to squeeze it in now. [23:52] TheMuso: thanks [23:53] ScottK: dapper clamav pushed. should hit mirrors in a couple hours [23:53] Can someone please review http://revu.ubuntuwire.com/details.py?package=thunar-svn-plugin ? [23:53] Is there anywhere else I can ask my version question? Launchpad is silent. [23:54] pwnguin: where can I find info about this don't-sync-from-Debian list of packages? [23:54] is there a keyword or something I can google [23:55] persia: GlassFish V1 relase is in the repository. This is going to be a completely separate package glassfishv2ur1 (and its dependencies) so that both versions are installable in parallel. [23:55] Hi I'm still confused about version numbering in my ppa. I've named the package 1.1.10-1ubuntu1~ppa1. That should be upgraded if a new version of libxine appears in -backports. Is that what will happen with the current version name [23:57] Can I get a review on this (http://revu.tauware.de/details.py?package=mythexport), been looked at a few times, should be pretty good by now [23:58] nityad: In that case, your chances of getting it into hardy are slim to nil.