[00:00] Greetings MOTUs and MOTUettes, I ask you kindly to please review my newly uploaded version of Me TV. I'm still awaiting my first advocate. See http://revu.tauware.de/details.py?upid=712. [00:00] jdong, interesting bug [00:01] jdong: It doesn't seem to stop, no. [00:01] i'm not really sure. i can't think of anything that we are doing that would affect said behavior [00:01] StevenK: strace look similar? [00:01] StevenK: can you get me an strace without any uploads/downloads going? [00:01] superm1: can you confirm his bug though? [00:01] jdong, not right now. i'll subscribe to it and try to take a look when i get to a machine with xvmc [00:02] jdong: Sure [00:02] Hi, how can I tell pbuilder to fetch build dependencies from universe too? ( I have added Section: universe/python ...) [00:03] jdong: Mailed [00:05] and COMPONENTS="main restricted universe multiverse" in .pbuilderrc [00:10] Any MOTU with a DVB card, I'd especially appreciate! [00:10] StevenK: hmm and you say these strace items keep CPU at what percentage? [00:11] jdong: ~20% [00:11] StevenK: no difference between whether window is open or closed? [00:11] jdong: I usually keep it minimised [00:11] frenchy: I've got me a dvb card, and reception to rubbish to use it :( [00:12] RAOF: Send it here, I have great reception. :-P [00:12] * jdong compares with his strace [00:14] StevenK: hmm my strace looks almost identical but no CPU usage :-/ [00:14] StevenK: and the cpu usage is coming out of KTorrent's process? [00:15] jdong: At the moment it's coming from cc1 :-) [00:15] jdong: When this build finishes, I'll double check with top [00:15] StevenK: LOL :) [00:15] StevenK: you don't have an indexing daemon crawling either .kde/share/ or your torrent download dir, do you? [00:15] RAOF: Sorry to hear that, I've built myself a DVB application for GNOME and I was trying to get some feedback on it. [00:16] jdong: Probably. I haven't disabled tracker, because it hasn't gotten in my way [00:16] RAOF: I was talking to a guy in Germany who got it to work with a spoon. [00:17] StevenK: :-/ well see if tracker is the root cause [00:17] RAOF: So your DVB-T also ... excellent ... Germany/Spain/Australia? [00:17] s/your/you're/ [00:18] frenchy: Australia. And I have *some* reception. Just not enough to replace my analog TV with a mythbox. [00:18] RAOF: I'm in Canberra. [00:19] RAOF: Get a better antenna? [00:19] jdong: top still points to ktorrent [00:19] In Soviet Russia, better antenna gets YOU [00:19] Boo, hiss [00:19] lol [00:19] StevenK: :-/ ktorrent is using 20% CPU idling? :( [00:19] jdong: Right [00:19] StevenK: what kind of CPU are we talking about? [00:20] 12214 steven 15 0 306m 46m 20m S 13.9 3.1 5:15.76 ktorrent [00:20] StevenK: I'm using the flat's external aerial. All my internal antennae haven't done any better. [00:20] jdong: A 3GHz Celeron [00:20] (in long mode) [00:20] StevenK: hmm I'm pretty stumped then; your strace looks identical to mine... [00:21] Okay, so it's because ktorrent sucks. :-) [00:21] jdong: Maybe x86-64 has a worse futex implementation? [00:21] RAOF: Anyway, I'd appreciate your feed back sometime. [00:21] RAOF: that is possible [00:21] can anyone reproduce on x86-64 too? :D [00:25] frenchy: I'd be happy to give it. URL? === chuck__ is now known as zul [00:27] hey all [00:27] how many packages are there in ubuntu? [00:28] nevermind [00:28] 23518 packages [00:30] effie_jayx: and those are not enough :-P [00:35] effie_jayx: depends on release, if you're counting just source packages, and what arch if not :-) [00:37] ahhh cool [00:37] Sorry, I sent it out a request for review a while ago. Here it is again in case you missed it. [00:37] Greetings MOTUs and MOTUettes, I ask you kindly to please review my newly uploaded version of Me TV. I'm still awaiting my first advocate. See http://revu.tauware.de/details.py?upid=712. [00:38] If you're not a MOTU then maybe you just ignored it. I'd still really appreciate your feedback. [00:41] frenchy: Oooh, it's a request for review, rather than a "try out my cool stuff" :) [00:41] RAOF: I've gotta go but flick me an email with any comments, I'd really appreciate them. [00:42] frenchy: I'll see if I can get around to it. [00:42] RAOF: Is there something that I need to say? [00:43] RAOF: I'll be back on later. [00:44] RAOF: Sorry, gotta go ... life gets in the way sometimes. [00:48] StevenK: ok, upstream in several places typedefs Int32 to int and uses that to perform intense calculations like SHA1sums [00:49] StevenK: Heh I'll test kt more extensively on 64-bit but I wouldn't be surprised if its performance is much worse than on 32-bit [00:50] jdong: Yay [00:50] Isn't a short int 32 bits on 64 bit arches? [00:51] StevenK: I'm not too familiar with x86-64 [00:51] StevenK: but I'm suspecting an int to not be 32-bits [00:52] steven@liquified:~% ./size [00:52] sizeof(int) = 4 [00:52] sizeof(short int) = 2 [00:52] So it is. [00:52] Yup [00:53] hmm so int is 32-bits on x86-64? [00:54] Assuming sizeof(char) = 8 bytes, yes. [00:54] (A perfectly reasonable assumption, but not officially standard). [00:54] thanks [00:55] is long 64 in lm and 32 in regular? [00:55] RAOF: 8 bytes?! 8 bits, maybe? [00:55] StevenK: he uses galactic unicode :D [00:55] Muaha [00:55] jdong: Yes, long int is full word size [00:55] * RAOF is on x86-512 :P [00:55] lurn sumthin new every day :) [00:56] jdong: long int is 8 bytes [00:56] StevenK: Even for ia32? I've seen long int pointers work in ia32... [00:56] /me wonders why people don't use the standard int types. [00:56] persia: This is on amd64 [00:57] StevenK: Right. "long int" = 1 word (32/64/128/256) [00:59] sizeof(long int) == sizeof(int) on ia32 [00:59] (So, as persia says :-) [00:59] Actually, I've never tested that on a 256-bit machine. Long int might only be 128 bits there [01:00] Which machine has a word size of 128 bits? [01:00] Aside from RAOF imaginary one. [01:00] StevenK: A few in the HPC zone. NEC has a couple, crusoe used to be one. Nothing standard. [01:00] Ah. Nothing 'regular people' can get their hands on [01:01] * persia notes really old Honnywells used to have a word size of 60 bits [01:01] StevenK: crusoes were in consumer devices for a couple years, untili transmeta got out of the HW business. NEC stuff is trickier to get. [01:03] Why would crusoes have a word size of 128 bit, though? [01:04] StevenK: It's a VLIW chip that runs ia32 in software emulation. I don't know why they chose 128 bits, but apparently it almost worked for them. [01:05] Oh, that's right. I forgot Crusoes were really special [01:05] They just didn't quite have the money to go after the market they really were suited for, which was high-performance stuff IIRC. [01:06] Actually, I really liked them for low-power stuff, but everyone was focused on HMDs, which are just clunky. Now that we have small 200DPI screens, the handhelds are interesting again (and there are no crusoes) [01:07] to ensure available space for both their transness and their metaness === `23meg is now known as mgunes === SD-Plissken is now known as SD-Plissken`away [01:30] Heya gang [01:31] Hawdy bddebian [01:31] Hi RAOF [01:42] persia: I saw you set the gaphor won't start bug to triaged and unassigned yourself. Does it still not start? [01:43] * ScottK2 tries it. [01:43] ScottK2: It still doesn't start. Last I looked (~6 weeks back), upstream was releasing about once a week, and I couldn't get the snapshots available working. I'm planning to try again in the future, but don't want to block anyone else's effort if they are motivated. [01:44] More critically, the problem is well understood: it just needs some work: I don't think "new" is correct. [01:45] Cédric was working on gaphas a bit more since I looked last, and I'm planning on pushing a 10x or 11x into the repos for hardy even it doesn't work, as the current version is just too old. [01:46] persia: I have a new game for ya to debug for me ;-P [01:46] persia: OK. Makes sense. [01:46] bddebian: Which one this time (and do I get to forget conquest and scorched3d) ? :) [01:47] SilverTree. New package [01:47] And of course not ;-P [01:47] ScottK2: Most of the Ubuntu changes are in Debian, so we should be able to sync, although I won't want to wait for Debian after DIF. [01:48] bddebian: OK. What does it need? (I am blind at this time of day) [01:48] To work :-) I finally got it building but now I get an error about an empty wml file on startup [01:49] bddebian: What is a wml file? Some internal xml? [01:49] Seems so. === protonchris_ is now known as protonchris [01:50] Does it give a filename for the missing file, or just say "Can't load WML" or something similarly unhelpful? [01:50] Pretty much that unhelpful :-) [01:50] wml parse error: 'empty wml file' [01:51] persia: Does it still not work if built for python2.4? [01:52] ScottK2: 9.4 or so works fine with python2.4, but it doesn't use gaphas, which is the current model. 9.x is also not supported upstream. 8.x doesn't work with modern python-gtk. [01:52] bddebian: Yep: there's no scenarios in the upstream SVN. Write a plot :0 [01:52] persia: What about the 10.4 we have in the repos? [01:52] * persia looks [01:53] Oh, scenarios, wtf [01:53] Since it depends on Zope and Zope only works with 2.4 (IIRC), I think any hope of getting with working wtih 2.5 is forlorn at this point. [01:54] * ScottK2 needs to go put kids to bed. See you later. [01:54] ScottK2: Right. I forgot about that. That doesn't work either: it has a zope problem, and uses gaphas 0.2.x (I just asked for the gaphas 0.3.x sync recently, so it needs a bump, if nothing else). [01:54] persia: ^^^ [01:54] OK [01:55] Well I'd stick with Python 2.4 until Zope gets fixed for 2.5 (don't hold your breath). [01:55] ScottK2: It doesn't need to depend on zope, but that's a different issue. I'm putting it off until DIF, and will examine it again then. [01:55] Ah. OK. [01:55] See later. [01:55] .. you .. [01:55] Later ScottK [01:57] * jdong eyes persia for suggesting backporting iscsitarget O_o [01:57] looks like a hairy package to touch [02:00] jdong: Erm. Read that again: I remember saying "Don't do that - it's stupid. Also, fix gutsy now, and then do something else", but in a polite way. [02:00] persia: yeah, upon close read I detected "not gonna happen" [02:00] I'll comment on the bug too [02:01] jdong: You've already rejected the backports task: let's keep it trim for the SRU. [02:01] persia: Where do you see that there are no scenarios? [02:01] persia: ok, agreed [02:01] bddebian: I can't find any? (only looking with svn web gateway for a few minutes). [02:02] bddebian: I suspect they'll be packaged alongside, as with wesnoth, and so might be hidden somewhere. [02:02] I'll be damned if I can find them [02:03] bddebian: Right. didn't Baby say something about upstream not being ready yet? Did that get sorted? [02:04] Well according to the site and Forum it's supposed to be playable [02:04] Of course the upstream tarball is b0rked [02:04] bddebian: Hmmm. The wiki has some guidelines and examples for wml files, and apparently it's format compatible with wesnoth. I wonder... [02:05] persia: yeah, it's the same devs as Battle for Wesnoth [02:06] * StevenK kicks autoconf [02:07] * bddebian kicks StevenK [02:07] * persia watches two more versions climb out of the hedges... [02:07] ? [02:07] bddebian: So you're an old, buggy evil shell script? [02:08] Although, persia has a point. [02:08] Well I'm old and American so some might call me evil [02:09] * persia thinks bddebian is sufficiently unpredictable to be hard to write in shell: likely requires something more expressive. [02:09] brainfuck? :) [02:09] I can replace bddebian with a shell script [02:09] #!/bin/sh [02:09] echo "Complain about $SOMETHING" [02:10] exit 0 [02:10] hahahahaha [02:10] * StevenK ducks [02:10] You got me there [02:10] StevenK: The art is defining $SOMETHING, and having the alioth and REVU plugins [02:11] Okay, so I add a second line, ". /lib/persia/bddebian-funcs" [02:12] Right. I can't implement that in /bin/sh, but that's mostly a matter of not knowing higher curl syntax. [02:12] persia: Dare I say ruby? :-) [02:13] Probably could do it in Ruby: I don't know the http client syntax there either, but the interface is cleaner than pulling curl output into buffers in shell. [02:14] Actually I think StevenK nailed me in one line :-( [02:14] * persia defers to the voice of experience [02:15] Hmm, maybe this sucker just isnt ready for prime time [02:16] bddebian: If you're feeling especially motivated you could ping them, but I doubt they'll get it clean enough in the next month. Let's check again in mid-Jan: perhaps it'll be easier then (and we should still have time to get a sync in before FF). [02:17] persia: I already pinged the guy about the shitty tarball release ;-) [02:17] bddebian: Right. That works then. Maybe we'll get it sooner :) [02:29] Dear Anonymous Upstream Author: [02:29] Curse and screw you, with all respect, for packaging your sources as a tarbomb. [02:29] Love, jdong. [02:30] * jdong goes purge like 200 new files from his /tmp [02:31] * persia wants a tar switch which applies dpkg-style mangling to the extraction location automagically based on the tarfile name [02:32] persia: yes, or at least a "bomb defuser" switch to tar that refuses to extract when more than one entry is in the top-level-directory [02:33] jdong: I was reading the docs recently, and -C might help, but I can't figure out how to get it to extract so that one level up from $(CWD) is guaranteed to be the start of the branching tree. [02:33] persia: -C sets a new root directory to extract into, same as navigating PWD to one level higher [02:34] jdong: Still, gives some bomb protection :) [02:34] persia: I think I might hack up something for myself that just parses a tar -t type output to perform that sanity check [02:34] jdong: Pass me the wrapper if you get one that's reasonably robust. [02:36] jdong: Forward that to silvertree too will ya? ;-P [02:36] haha [02:36] you were bitten too? [02:38] persia: I'm thinking of something like "bombsquad tar xzvf foobar.tar.gz", (1) create new dir with temporary name (2) extract to that dir (3) Check # of 1st level entries, if more than one rename tempdir to tarball_name, if one then move that entry into ../ [02:39] persia: should be reasonably robust [02:40] * Hobbsee waves [02:40] jdong: Maybe: my worry in that case would be user error or assignment of tmp directories (/tmp may be on a different filesystem). Take a look at dpkg - it's really smart about it, and can handle lots of different formats if asked nicely. [02:41] hmm I'll have to look into that [02:42] Heya Hobbsee. [02:42] jdong: Also, dpkg gets hit with 15,000 different kinds of wrapped tarballs, from every imaginable source: even if you do go with bombsquad, it might contain some pointers for corner cases. [02:43] persia: yeah, I'll have to look into some of its heuristics [02:56] we darn it, my printer still doesn't work [02:56] *well [02:57] I wonder if an update killed it somehow [03:01] Dear deluge. Please *release* the libtorrent you're based on, so I don't have to watch g++ grind through boost's mega [03:01] -templates [03:02] RAOF: Don't they use a specific alternate libtorrent? I thought I saw something about some other software using the same variant in the last couple days. [03:02] persia: yeah, we talked yesterday about that [03:02] Yeah, there are apparently 2 libtorrents. [03:02] they use libTorrent, while rtorrent uses Libtorrent [03:02] However, I *think* the libtorrent in universe is the one they use. [03:03] Except that they don't. [03:03] Alternatively, they could stop using boost/templates/c++. That would also cut down the build time :) [03:04] RAOF: alternatively, transmission could just Replaces: deluge-torrent and we'd be done. [03:04] :D [03:04] * StevenK is pondering trying transmission [03:05] * RAOF aptitudes... [03:05] StevenK: whole heartedly recommend it [03:05] 0.93 is even better [03:05] 0.91 is okay if you are not using a router [03:06] jdong: But everyone uses a router (unless they're just torrenting around the flat) [03:06] jdong: Does it suck less than ktorrent? :-) [03:06] persia: meh I just plug a switch into my wall. I don't see why y'all need these NAT things. ;-) [03:07] StevenK: I'm supposed to be unbiased and love and feed all the torrent clients ;-) [03:07] jdong: Ah. NAT != router, but I now understand. [03:07] persia: pfft mr. technical. I can play that game too [03:07] *finds his compiz bug report* [03:07] persia: Exactly, NAT and routing are very different. [03:08] jdong: Then get Transmission 0.93 into Hardy [03:08] (And then backport it) [03:08] StevenK: http://jdong.mit.edu/~jdong/motu/transmission_0.93.dfsg-1.dsc <--- authentic jdong crack ready for Debian :) [03:08] StevenK: silly you for not suspecting jdong has fresh crack for everything ;-) [03:08] jdong: Do you need a sponsor for that? What's left? [03:09] StevenK: I don't know how transmission manages themselves in Debian. I think they have a VCS... dunno who to contact [03:09] I'm pretty sure just uploading that will piss off the maintainers [03:09] Right [03:09] What else is new? :-) [03:09] http://packages.qa.debian.org/t/transmission.html says they use collab-maint SVN. [03:09] bug 155666 [03:10] Launchpad bug 155666 in compiz ""Desktop Cube" is geometrically inaccurate" [Undecided,Invalid] https://launchpad.net/bugs/155666 [03:10] *grin* [03:10] So there is actually good chance you can just upload it (through correct procedures, of course). [03:10] jdong: The Maintainer is Philipp Benner, you could mail him [03:10] jdong: Can you do an avant-window-navigator backport as soon as it gets in hardy? :) [03:11] Amaranth: I'd love to [03:11] jdong: I need one less reason for people to use broken crap from trevinho's repo [03:11] jdong: That's a good bug, but upstream. You've complained there as well? [03:11] * StevenK cackles at jdong's compiz bug [03:11] persia: haha , nah, a few grins is enough ;-) [03:11] StevenK: I'll poke him [03:12] jdong: No, you've a valid point: it's worth following up: miseducation rarely is properly disabused. [03:12] hehe [03:12] if you're serious then I guess I could pursue it upstream :) [03:12] much to Amaranth's disbelief :) [03:12] persia: Actually I think silvertree might actually "work" [03:13] bddebian: Do you just stuff it with the base WML from the wiki? [03:13] Gah kids, bbiam [03:14] persia: Would you consider 'find $(CURIDR) -name 'Makefile' | xargs $(RM)' as makey enough? [03:14] * StevenK adds -print0 [03:15] * persia doesn't understand why nobody seems to like "-exec $(RM) {} +". It does the same thing in less memory. [03:15] * minghua wonders what are the translations for compiz's "cube"... [03:15] persia: people like one tool per job, and xargs is familiar, I guess [03:16] StevenK: No: it's shell. On the other hand, it's nearly a nice clean one-line shell call, and not worth complaining about. There's a make function that generates that list, so you can do $(RM) $(function args) which is even cleaner, but I'd have to test the syntax. [03:16] persia: Ah, but xargs will bundle up arguments, -exec {} \; doesn't [03:16] minimizing forking vs memory consumption... which is more important... [03:17] jdong: Perhaps. I think it's also that "-exec {} +" has only been around for a few years, and most people are still trying to avoid "-exec {} ;" which is ugly. [03:17] Hum. Bugger. [03:17] I need it to ignore ./Makefile, but delete every other [03:17] * minghua doesn't know about "-exec {} +". [03:17] I think StevenK needs to monitor free memory and forking speed in realtime and decide which one to use on the fly :) [03:17] *hides* [03:17] jdong: That's the "-exec {} ;" vs. xargs argument. "-exec {} +" wins, by being the best of both. [03:17] persia: what's the difference between + and ;? [03:18] persia: does + string the arguments together? [03:18] jdong: + acts like xargs, inside find. ; iterates. [03:18] persia: I only know '-exec {} \;' is it '-exec {} \+' ? [03:18] persia: fascinating. Why didn't I get the memo on this sooner? :) [03:18] * persia wanders away, suggesting man pages. [03:18] StevenK: Yes. [03:18] persia: Danke, I shall use that [03:20] * minghua blames find(1) man page for putting "-exec {} ;" above "-exec {} +". :-P [03:21] OH! -execdir! [03:22] * jdong looks at violating xserver-xgl's sanctity. [03:24] oh wait. [03:24] ## 01-compalloc-faster.dpatch by John Dong [03:24] looks like I already did it earlier [03:24] when did I do that? :D [03:24] Muahaha [03:25] look at me thinking one step ahead of myself. [03:25] just unfortunate it's my past self from 2 release cycles ago doing the foresight. [03:25] jdong: *Ages* ago. You were touching xgl well before me :) [03:26] For Feisty, IIRC. [03:26] -- John Dong Tue, 13 Mar 2007 10:35:24 -0400 [03:26] yeah, while back [03:27] * jdong wonders what to violate next.... [03:28] * LaserJock backs away slowly [03:28] jdong: There's your answer. Violate LaserJock until he posts Ponies! [03:29] LaserJock: oh yeah speaking of d and f orbital hybridization.... [03:29] (haha kidding. I'll do it myself this time :D) [03:29] jdong: phew, I thought you were going to start asking about HOMOs and LUMOs [03:30] LaserJock: fortunately this assignment is due on Wed, so disappear come 24 hours from now :) [03:30] np [03:31] * jdong goes stare at that avidemux package on REVU [03:32] -- Matvey Kozhev Sat, 17 Nov 2007 10:49:54 +0600 [03:32] LucidFox... sounds very familiar [03:32] I'll assume he's workin hard on it [03:34] * RAOF crosses deluge-torrent off his todo list. [03:37] RAOF: ooh shiny new deluge crack? [03:42] @#$$%^ stupid piece of shit [03:42] ok, the PPA documentation is not very explicit.... [03:42] jdong: Shiny new deluge *sync* [03:42] so what distros can I target via PPA? [03:42] * jdong wants to move backports testing onto PPA [03:42] jdong: anything supported. [03:43] is there any way to associate a bug to an upload to track build status? [03:43] without closing it, a la LP: #foo? [03:44] and thirdly, can PPA packages be removed? [03:45] Not really [03:47] * jdong tries a PPA "backport" for fun and games :) [03:47] jdong: You need to file an Answers request and then wait, if I recall [03:47] StevenK: heh well if it's a pain for them to do it on their end, I'd rather not make it a regular part of the process [03:50] do I always have to use -sa for the .changes or will it pick from even Hardy orig.tar.gz's for an upload at Gutsy? [03:50] jdong: You mean to PPA? [03:51] right [03:51] It won't pick up anything from the standard archives. I've never tried to target the same source at two targets though. [03:52] you need to name them differently. it wont work. [03:52] ok, I'll try with -sa and see what happens [03:52] whoo, note how my CPU And hard drive don't suffer for testing anymore :D [03:53] but it will spam ~ubuntu-backports-testers :D [03:53] poor saps. [03:54] good time to hack together some automated diffing/analysis tools for Backports too [03:56] persia: Sorry, back you still around? [03:57] bddebian: No, but just back. [03:58] So, the piece of shit has hardcoded relative paths. scenario.cfg does things like terrain='data/terrain.cfg' [03:58] But the damn thing still core dumps on me [03:59] bddebian: Got a stack trace? [03:59] No :) [03:59] Is it one of those bugs that only happens when you don't run GDB? [04:00] * persia solicits input on nifty ways to extract stacktraces from coredumps [04:01] TheMuso: Looking at it later, the old code ought to work for epochs (I'll try a test later), as the only thing it gets from the changelog is the revision, and the epoch applies to the version. [04:03] Man, I just suck [04:13] * LaserJock is embarassed to find the reason why his printer wasn't work for a few days [04:13] Unplugged? :) [04:14] almost [04:14] two black USB plugins [04:14] The cord was plugged in, but not making contact? [04:14] 1 for mouse, 1 for printer [04:14] printer went into the KVM :/ [04:14] Muahaha [04:14] heh [04:15] I'm sure the KVM had lots of stuff to print out [04:15] but since I plugged the mouse into the computer thinking it was the printer it worked [04:15] heh [04:15] zomg python must die [04:15] i broke it again [04:16] Just because you can't program in something doesn't mean it needs to die. [04:16] imbrandon: Implement a request-response stateless system in Ada. After that, python will feel good again. [04:16] heh [04:17] Does anyone know what happened to the vague murmurings of syncing into the archive from PPAs? Is that considered a bug that it doesn't work? A feature because such syncs should never happen? [04:18] er....i think that they might be able to do it now. [04:18] unsure. [04:18] the bug was solved, or almost solved. [04:18] Hobbsee: So it's considered a bug if it doesn't work? [04:19] persia: yea they SHOULD be able to sync from any apt repo, from what they told me [04:19] last time i asked [04:19] now if they choose to sync from particular repo is diffrent [04:19] persia: i think so. it also affects partner [04:20] Right. Sounds like there is a mix of a couple bugs an unclear policy. That's somewhat what I remembered, only in more detail. Thanks. [04:21] persia: you shouldnt expect better from soyuz :) [04:22] Hobbsee: I expect soyuz to work perfectly, do everything I want, give me all the information I find interesting, and have eight nines uptime. I may be disappointed once in a while, but if I expect less, it's just not fair to what it could be. [04:22] heh [04:22] well, this is true [04:23] Eight nines? What's that, 5 seconds per year downtime? [04:23] persia: in a few weeks, i'll probably be very interested to find otu what sort of info you'd find useful,e tc. === tritium_ is now known as tritium [04:23] StevenK: About that. I've only heard of two shops reaching nine nines, and that was expensive, (mostly about geodistributing redundant servers), so I can't expect everything :) [04:24] Hobbsee: My current wishlist is mostly in the QA list. I could make some more, but I'lll have to stick that lower in the queue. That timeframe sounds around right. [04:24] I would have thought anything past six nines would be acceptable [04:24] persia: mmm kay. i'll poke you about it in a few weeks [04:25] StevenK: Two 5 minute maintenance windows? If the app can do that, no reason not to rotate things out live and go for higher numbers, but sure. [04:28] persia: Ok. [04:58] anyone know a way to avoid the following error while taring up a dir tar: Error exit delayed from previous errors im using tar -cvzf tarball dir, it worked for nss but fails on nspr and ff3.0 [05:00] gnomefreak: That just means tar is stuck from something else, try without the "v", and see if the errors are more informative. [05:00] gnomefreak: have a look at what the previous errors were [05:00] also worked for xulrunner [05:00] Hobbsee: i didnt see them [05:01] wait maybe i did because i used tar -cvvf to start with but failed to build because it complained it wasnt a gzip tarball [05:02] tar: nspr-4.7.0~cvs20071106t1834/.pc/30_pkgconfig.patch/mozilla/nsprpub/config/nspr.pc.in: Cannot open: Permission denied [05:02] without v [05:02] maybe removing .pc dir will help? [05:03] gnomefreak: There you go. "v" is sometimes interesting, but it usually spews so much you can't tell what's going on. If you really want to look, I'd suggest only using "v" with "t". [05:03] or changing the permissions thereof. [05:03] should .pc be in top level dir? [05:05] ---------- 1 gnomefreak gnomefreak 0 Nov 19 20:02 nspr.pc.in [05:05] it has no permissions how does that happen? [05:06] nice file. [05:06] :-) [05:06] lol [05:06] i guess removing .pc will help than building with -S -sa will add it if needed [05:09] dear MOTUs, I'm looking for a second advocate for the ike package please. Thanks! ( http://revu.ubuntuwire.com/details.py?package=ike ) [05:21] LucidFox: ah thought that name was familiar, thanks for taking on the avidemux merge :) [05:22] LucidFox: one favor, I recently merged a new x264 into Hardy, can you version your libx264-dev build-dep (>= 1:0.svn20070930) so we make sure to build against that new version? [05:40] jdong> sure [05:43] keescook: Thanks for that rather large number of security uploads! [05:44] emgent: That gallery2/reupload diff you attached isn't particularly useful - the WebDAV CVEs also need to be fixed, and it includes a lot of extra changes. [05:52] jdong> uploaded [05:52] I can't test-build avidemux right now with the new x264, though, so I can't guarantee if the new upload will build [05:52] http://revu.tauware.de/details.py?package=avidemux [05:54] LucidFox: Is that a new upstream pull? If so would you mind knocking out the lintian messages? [05:55] persia> I knocked out all lintian messages I could find [05:56] the only one remaining is "no manpage for binary avidemux" in the transitional package avidemux, but it depends on avidemux-common, which provides the manpage [05:57] LucidFox: There are a couple more in the URL you just posted: outdated autotools hint files which can cause FTBFS, and broken releationships (which don't really matter in Ubuntu anyway). [05:57] Autotools aren't used [05:57] In 2.4, upstream provides a choice between autotools and CMake, and my packages use the latter [05:57] LucidFox: OK. Strange to see config.{sub,guess} if they aren't used. Nevermind. [05:58] Right. That explains it. Nevermind :) [06:04] LucidFox: if you are otherwise ready and not gonna make major packaging changes, I'd be glad to test locally whether they FTBFS or not for you :) [06:04] LucidFox: thanks for your work on avidemux :) [06:05] Why does the new x264 build-depend on GTK? [06:06] LucidFox: there is some graphical x264 frontend thingie that's now in the x264 binary package [06:06] christian marillat's decision :) [06:06] ah [06:12] okay, I'm now building Avidemux with the new x264 [06:13] LucidFox: fantastic, good luck ;-) [06:13] LucidFox: I provide no guarantees they are API compatible; if you have more than trivial struggles with it poke me and I'll take a look [06:15] Hi RAOF ... Sorry back now. [06:17] frenchy: That's OK. [06:20] RAOF: So, are you a MOTU? It's really hard finding a MOTU with a DVB card. [06:21] Yeah, I am. [06:22] RAOF: Woo-Hoo! [06:22] Although for most of the review process you won't need a MOTU with a dvb card. [06:22] Much of the packaging stuff can be done without testing the app itself. === macd_ is now known as macd [06:23] jdong: So does an amd64 .deb of transmission 0.93 exist anywhere? :-) [06:24] RAOF: but you really can't run the application without a DVB card. Also, from a previous question I asked, MOTUs are actually meant to test the application as well. [06:24] StevenK: build it in a pbuilder, you're a developer :) [06:24] jdong: I'd rather someone else did the work. :-P [06:24] haha [06:24] RAOF: I doubt that I'm going to get many advocates when people can't start the application. [06:24] oh look at StevenK with his fancy fast 64-bit computer making others build for him ;-) [06:25] I can't build, ktorrent takes all of my CPU. :-P [06:25] frenchy: Yeah. [06:25] frenchy: No, but you'll get packaging comments, and when the packaging is perfect, then you need advocates. If you get your DVB people now, you may have trouble getting them again later. [06:25] (although it is REVU day, so people should REVU) [06:25] jdong: You can throw a source package at me if you like. [06:26] RAOF: I've already thrown one at StevenK ; http://jdong.mit.edu/~jdong/motu/transmission_0.93.dfsg-1.dsc [06:26] persia: Hi again, I think that I'm all shibby with the packaging now. [06:27] * persia prepares a pastebin... [06:27] persia: what TZ are you in? You're on 24/7/ [06:28] frenchy: No, actually, I'm on at random times: you just get lucky (UTC+9) [06:29] !info liibxine-ffmpeg [06:29] Package liibxine-ffmpeg does not exist in gutsy [06:29] !info libxine1-ffmpeg [06:29] libxine1-ffmpeg: mpeg related plugins for libxine1. In component universe, is optional. Version 1.1.7-1ubuntu1 (gutsy), package size 435 kB, installed size 908 kB [06:29] persia: After googling pastbin ... was that comment meant for me? [06:29] jdong> the new Avidemux successfully built with the new x264 [06:30] frenchy: Not yet: let me build a list first... [06:30] LucidFox: fantastic. [06:30] persia: Sorry .. a list of what? ... issues? [06:31] Yep. [06:31] persia: Let me grab the hammer and duct tape. [06:31] Frenchy likes to fix. [06:32] * Fujitsu wonders what the release policy for ubuntu-dev-tools is. [06:33] There's a policy? [06:34] jdong: Does the transmission deb want to contain something more than the changelog? [06:35] RAOF: huh? [06:35] jdong: I've just built transmission, and the arch-all package contains just /usr/share/doc/transmission/{changelog, README, etc} [06:35] RAOF: transmission-{gtk,curses} [06:36] trnamission is metapackage [06:36] Aaaah. [06:36] persia: What I don't understand is that I've seen other packages in universe that are in a lot worst state than mine. klear doesn't even have GPL headers. Sorry klear dudes, awesome app. [06:37] RAOF: haha you nearly gave me a heart attack :) [06:37] RAOF: What did you build it for? :-) [06:37] StevenK: Eeeh, to see if it works? :) [06:38] RAOF: Which release/arch? [06:38] grr rmadison is slow today [06:39] % time rmadison -u ubuntu libc6 >/dev/null [06:39] rmadison -u ubuntu libc6 > /dev/null 0.05s user 0.02s system 2% cpu 2.740 total [06:39] Is it? [06:39] ubotu: Shut up [06:39] Sorry, I don't know anything about shut up - try searching on http://ubotu.ubuntu-nl.org/factoids.cgi [06:39] Hah [06:39] StevenK: maybe I'm trying blackhole packages :) [06:40] frenchy: 15 quickies at http://paste.ubuntu.com/2108/ [06:40] persia: UTC+9 are you yet another Australian? [06:40] persia: ooo ... thanks I'll take a look. [06:40] frenchy: there are a lot of them huh? crazy aussies [06:41] LaserRock [06:41] frenchy: Yes, there are worse apps. If you want to clean one, nobody will complain. We just don't want more ugly ones :) [06:41] hi highvoltage [06:41] persia: Can I respond to your comments here? [06:41] frenchy: Sure. [06:42] * jdong resyncs gtkpod-aac with latest debian release :) [06:42] Why xine frontend? [06:42] jdong: Shouldn't it be in sync with our gtkpod? [06:43] Fujitsu: it was 2 debian versions behind, debian separated out their patches into dpatches too like us, and added one bugfix patch [06:43] StevenK last resynced against -2 in Debian, I brought it up to -4 [06:43] StevenK: amd64, hardy. [06:44] RAOF: Gah. I wanted amd64 gutsy :-) [06:44] * Fujitsu whines about lack of ponies. [06:44] frenchy: https://lists.ubuntu.com/archives/ubuntu-motu/2007-November/002617.html (about libxine) [06:44] * StevenK joins Fujitsu and whines at LaserJock [06:44] StevenK: I can do that if you like. [06:44] RAOF: You rock :-) [06:45] Hi LaserJock [06:46] sorry guys, got a 12am presentation. it's gonna be a late night as is [06:46] I was up til 4am last night working on a stupid Fortran program [06:47] and got it fixed about 4pm this afternoon [06:47] Fortran sounds great. My father is always complaining about it. [06:48] turns out I was averaging 9 data points instead of 10 [06:48] persia: debian/copyright ... just the last two lines? Are they the only extraneous parts? [06:49] Fujitsu: it works really well if you know how to use it well [06:49] I'm just not that great with it [06:49] http://paste.ubuntu-nl.org/45201/ [06:49] frenchy: I think so: check http://lists.debian.org/debian-devel-announce/2006/03/msg00023.html [06:49] can someone look at that diff for me? [06:50] debian made some changes to the .desktop file and I'm not sure which ones to keep [06:50] " * Adapted .desktop file to current freedesktop standards. [06:50] jdong: Those changes are both correct. [06:50] jdong: yeah, that's ok [06:50] Fujitsu: ok, will apply [06:50] thanks :) [06:50] jdong: Encoding and Application are deprecated. I don't see much value for GTK as a caegory: that's more an OnlyShowin thing [06:51] jdong: Also, drop the .png on the icon [06:51] persia: ah, ok [06:51] persia: drop the .png extension? [06:51] persia: will the icon be found correctly? [06:51] jdong: it's smart :-) [06:51] unless you could otherwise sync (and yes, if it is in the icon cache) [06:51] LaserJock: haha, ok :) [06:53] StevenK: www.cooperteam.net/transmission-gtk_0.93.dfsg-1_amd64.deb and stuff? [06:53] jdong: Don't forget dh_desktop and dh_icons [06:54] Does Ubuntu's dh_desktop do anything special other than updating MIME database these days? [06:54] RAOF: Yay! [06:54] persia: is removing Homepage: from the description field and replacing it by a Homepage: tag correct for Hardy? [06:55] jdong: Sorta. We don't have the right dpkg yet, IIRC> [06:55] minghua: No, and it's not likely to diverge from Debian. The only Ubuntu developer hacking it is pushing things in Debian first. [06:55] jdong: Yes. [06:55] Fujitsu: A merge is planned RSN :) [06:56] (plus we need to schedule an update to packages.ubuntu.com, etc.) [06:56] RAOF: $beers_owed++; [06:57] StevenK: Surely $beers_owed--; :) [06:58] RAOF: It's a note that I owe you another :-) [06:59] Don't we need the correct dpkg first before using Homepage: field? [07:00] minghua: We're already syncing heaps of packages that use the Homepage field. Trying to manage that is just too painful. We'll get a few warnings, and then it gets fixed. [07:01] Thankyou Launchpad: [07:01] Accepted: mplayer, mplayer, mplayer, mplayer, mplayer, mplayer [07:01] How understandable. [07:01] heh [07:01] Fujitsu: haha [07:01] heh [07:01] persia: is dh_icons + dropping .png applicable to Debian too? shall I push that upstream? [07:02] jdong: dh_icons is [07:02] persia: I was thinking that without the new dpkg, the generated control files may be lacking fields or something, but probably that's not the case, or it doesn't matter. [07:02] jdong: you should be able to push the drop of .png as well I think [07:02] jdong: dh_icons is, but Debian supports more window managers, and I'm not sure they are all freedesktop compliant. I usually push it, and it gets adopted > 50%. [07:03] persia: ok, thanks, I'll give it a shot [07:03] minghua: It would be too much work to matter, and it shouldn't break anyway: Debian can't expect to rebuild everything for lenny. [07:04] persia: Huh? How is rebuilding lenny relevant to the topic at hand? [07:06] minghua: The dpkg transition will have been started in such a way as not to break. This is especially true as > 5% of Debian was using Homepage: as a full header before there was dpkg support. This is partly because of how Debian operates. Because they are so good, we don't need to be quite as careful to manage these things (usually). [07:06] * jdong figures out how StevenK did this gtkpod-aac.diff thing without self-recursing :D [07:06] If the dpkg / Homepage transition was hard, every "complaint" package would need a rebuild for Lenny, which would make someone very happy with mass-bug. [07:07] s/complaint/compliant/ [07:09] persia: Hmm. I didn't know people started using Homepage field before dpkg supported it. [07:09] by the way, jdong, since you seem to be interested with iPod videos [07:09] minghua: Yep. Read debian-policy@ archives or policy / dpkg bugs sometimes. It's always entertaining. [07:10] LucidFox: owner of one, trying to make things easier for fellow owners [07:10] I just converted a video with Avidemux's iPod profile, processed with MP4Box -ipod and uploaded with gtkpod, and it played perfectly [07:10] LucidFox: the types of video formats that they take is not trivially obvious to deduce or produce [07:10] LucidFox: that's great to hear [07:10] LucidFox: what video codec do they use? [07:14] persia: Err... I think I'll pass. I have better ways to kill time. :-) [07:14] persia: my code is on LP, not a browse-able FS ... I don't think that the watch file will work. [07:15] frenchy: Read about uscan's screen-scraping functionality (man uscan) [07:16] frenchy: As long as you can identify a stable page, and a regex to match the link, you're all set. [07:22] jdong> Avidemux uses Xvid [07:23] LucidFox: oh that's disappointing [07:23] by default, 320*240, 400 kbps, no B-frames [07:23] but I changed the resize filter to 640*480 and it still played [07:23] LucidFox: meh xvid profiles are boring, I want to see them vindicate their manhood by doing an H.264 baseline no-complexity profile [07:24] LucidFox: the iPod will accept XVid 640x480@~2000kbit with no or 1 B-frame [07:24] (don't ask. trial and error.) === LaserJock is now known as LaserRock_70s [07:25] persia: Where can I find info on the current file formats? I'm using http://www.debian.org/doc/maint-guide and I think that its version of the menu file might be old, I think. [07:25] Anyone want to be a second advocate of avant-window-naviator? [07:25] frenchy: /usr/share/doc/menu/menu.txt.gz on a gutsy, hardy, lenny, or sid system ought have it. [07:28] whee gtkpod-aac resynced & uploaded; thanks persia Fujitsu LaserRock_70s for your guidance :D [07:28] frenchy: You might also want to run linda and lintian (preferably hardy versions) on your binary changes file. [07:31] persia: I didn't even have menu, linda or lintian installed. Shows how much I know about this whole process. [07:32] xmms-dev: Depends: xmms (= 1:1.2.10+20070601-1) but it is not going to be installed [07:32] hmm that's an odd failure in hardy, *investigates* [07:33] jdong: buildd skew? NBS change? [07:34] persia: yeah gonna look in a hardy pbuilder to see if I can reproduce [07:34] jdong: You might find it faster to check the buildd queue and NBS list. [07:35] persia: what's a NBS list? [07:36] jdong: Top canonical link on http://qa.ubuntuwire.com/ : packages that oughtn't exist anymore as the source builds something else now. [07:36] (but, since they have rdepends, the rdepends need porting to remove the package) [07:38] persia: yeah it's libglib1.2 on that list, xmms depends on it but it's changed names [07:38] jdong: Do you ever sleep? [07:39] :-) [07:39] persia: is uploading a rebuild of xmms enough? [07:39] morning [07:39] TheMuso: hehe I should be asleep right now! [07:39] jdong: I thought as much. [07:39] I honestly don't know how you people manage to stay up so late. [07:40] TheMuso: simple. we suck at waking up the next day. [07:40] heh [07:40] jdong: No idea: I haven't looked at the issue. You'll want to check https://launchpad.net/ubuntu/hardy/+queue, and the buildds, and the NBS list, and rdepends of things. Sometimes a rebuild fixes it, but usually changing something else lets them all fall together. [07:40] I'm quite the opposite. I'm a morning person. [07:41] which TZ though [07:41] Morning Australia/Sydney. === LucidFox is now known as LucidFox_away [07:44] TheMuso: I'm a morning in Australia/Sydney person too [07:45] Heh if you want to put it that way. :p [07:46] persia: hmm gonna try a rebuild locally to see if it does any good [07:46] and go to bed while that builds [07:46] jdong: OK. I suspect it's because of a conflict related to xmms-crossfade, rather than xmms itself, but that might work. [07:48] persia: no, it's xmms I'm fairly certain. It tries to install libglib1, which is a transition package, which tries to install the new pkgname, which conflicts with libglib1 [07:48] persia: how do I supply source for graphics? [07:48] I'm pretty sure if we build again we'll hit the correct libglib package name and break the cycle [07:48] jdong: In that case, it's not xmms, it's all the other reverse dependencies of libglib1 :) [07:49] persia: I think it's supposed to happen though because the ABI of the glib changed [07:50] frenchy: .fig, .svg, .xpm, and I'm sure there are others. That's one of the least important items, as most people don't really mind editing .pngs. If you have a large format you're shinking to make the icon, that's a nice target as well. [07:50] jdong: Yep. If you're feeling motivated tomorrow, and want to push a rebuild of them all the problem would go away :) [07:50] persia: O_O :D [07:51] What's up with r-core-*? [07:51] pkern: A little more info might be helpful... [07:51] Apart from a missing newer ocaml I had quite some rebuild failures with r-core-* and old glib stuff... [07:51] persia: are rebuilds automated/scripted or done by hand? [07:51] [07:51] r-base-core: Depends: tk8.4 (>= 8.4.16-2) but it is not installable [07:52] jdong: By hand. We upload new revs (-Xbuild1 if no other changes) with a changelog entry explaining why. If we can hit another couple bugs along the way, it looks nicer. [07:52] persia: ah, ok :) [07:52] pkern: Might have something to do with tk8.5? [07:53] Hm. [07:53] hi [07:53] how can I remove a package that I submitted? [07:54] codemaste1: To where did you submit it? [07:54] persia: Shouldn't be. Surely tk8.3, tk8.4, tk8.5 are parallel installable? [07:54] persia: ok, I'll push thru xmms tonight so it stops blocking faad2 and the entire new media stack, and tomorrow I'll look at the other million packages on the list :D [07:55] persia: Missing merge of new tk8.4? [07:55] minghua: Right, but perhaps the R maintainers are using the latest tk, and only half the suite has been rebuilt. [07:55] pkern: That might do it as well. [07:55] jdong: I've been meaning to join the MOTU media team. Where is help needed? [07:55] As I'll probably be able to knock some stuff over tonight. [07:55] jdong: I thought there were only about 300. If you don't mind porting them to GTK2 as well, it'd be a great help :) [07:56] TheMuso: siretart would be the expert on that, but currently I'm getting a bunch of new mp4 related stuff in [07:56] jdong: ok [07:56] TheMuso: of all things stupid xmms is the bottleneck :D [07:56] What? That piece of crap? Who cares about xmms. :p [07:56] TheMuso: There's a bit of the xine-lib transition outstanding, if you like. [07:56] persia: Is that just rebuilds? [07:57] TheMuso: and adding a front-end dependency. [07:57] Which front-end? [07:57] TheMuso: Upstream's not dead! [07:57] It still releases once every 1112 days. [07:57] Fujitsu: I know. [07:57] ok *now* seriously, bed for me! [07:57] jdong: Famous last words. [07:57] jdong: Night. [07:57] night! [07:57] TheMuso: https://lists.ubuntu.com/archives/ubuntu-motu/2007-November/002617.html [07:58] persia: ok thanks. Will have a look a little later. [07:58] TheMuso: No rush, just the only MOTUmedia think I had in mind :) [07:58] persia: Ok. [07:59] * TheMuso is still undecided as to what to do re the query I raised in -devel last night. [07:59] TheMuso: Which? [07:59] Fujitsu: Fun with .la files, and a package build not seeing that a .la file was moved from /lib to /usr/lib [07:59] Ah. [08:00] And the incorrect location is listed in the dependency_libs field, which causes a frontend package for the main package in question to FTBFS. [08:00] Fun. [08:00] * pkern hopes that his lappy arrives today... or tomorrow... or the day after... [08:00] Fujitsu: Oh yeah. Just what I'd call fun. :p [08:01] dang it I hate OO Impress [08:01] LaserRock_70s: What's with the nick? [08:01] Fujitsu: Read Planet [08:01] Fujitsu: see Planet [08:01] * Fujitsu does so. [08:01] Hah [08:01] Aha. [08:01] Fujitsu: have you seen that WP has a new security hole? [08:02] It was read for some reason - Liferea doesn't like vanishing regularly. [08:02] geser: Really? That makes 43. [08:02] TheMuso: you're interested in MOTUmedia? [08:02] Fujitsu: http://www.securityfocus.com/archive/1/483927 [08:02] geser: I'll start rolling up updates for Feisty/Gutsy tonight, and the others at some point. [08:02] siretart: I think we talked about it at UDS, yes I am, and I have been meaning to join. [08:03] TheMuso: aah, then you've heared the discussions crimsun and I had about the team, did you? [08:03] geser: Thanks, I'll add that to The Bug. [08:03] siretart: I think so, but if I did, I can't remember them. :p [08:04] Ah, not even a CVE yet, which is why I haven't seen it. [08:04] TheMuso: we were wondering if the team was worth to have, since there isn't too much action going on there [08:04] siretart: Thats right, I remember now. [08:04] TheMuso: we decided to keep it for 2 reasons: grouping bug reports of multimedia related packages and PPAs [08:04] Fujitsu: LWN.net had it in the RSS today [08:04] Is patch available for the wordpress bug now? [08:04] good morning [08:04] * minghua checks. [08:04] LaserRock_70s: ROCK! [08:04] morning dholbach [08:05] how are you guys doing? :-) [08:05] * Fujitsu checks how many WordPress CVEs affect Gutsy. [08:05] dholbach: Greetings. [08:05] Hi dholbach. [08:05] TheMuso: well, I assume that you want to use the PPA, right? [08:05] siretart: Right. [08:05] TheMuso: welcome on board then! :) [08:05] siretart: The PPA was the last thing on my mind actually. [08:05] Still no patch in sight. [08:06] k [08:06] minghua: Great... [08:06] I wonder how Fujitsu is going to roll up updates... [08:06] Fujitsu: it will become CVE-2007-6013 [08:07] geser: Where did you get the reference? [08:07] minghua: Well, I'll prepare the other 9 CVEs for Feisty and 1 for Hardy, and throw the new one in when I see a patch. [08:08] Fujitsu: from http://www.cl.cam.ac.uk/~sjm217/advisories/wordpress-cookie-auth.txt [08:08] it'd be nice if we had a good way of letting users see that we've got these kinds of fixes in [08:08] Fujitsu: Nice. I am just happy I have nothing to do with wordpress. [08:08] I think they tend to just look at the version [08:08] geser: Right, I see it on Mitre now too. [08:09] Don't we have a security notification feed? [08:09] persia: Only for amin. [08:09] s/amin/main/ [08:09] We need universe-security-announce or so once we actually have some reasonable support. [08:09] Right. What does it take to add an RSS feed somewhere and populate it for universe? [08:10] persia: We'd need a somewhere. [08:10] Ah. "reasonable support". That goes back to needing a security / updates team, no? [08:10] siretart: Thanks. [08:10] Fujitsu: Maybe we could ask ubuntuwire [08:10] persia: Perhaps. === LaserRock_70s is now known as LaserRock [08:10] persia: We have a security team, but it seems to only consist of \sh and myself... [08:11] Fujitsu: I thought there was going to be marketing & announcements & stuff. How many people do you want? [08:11] And we have literally a thousand CVEs to go through. [08:11] persia: I might actually get around to writing an announcement to -motu tonight. [08:12] Fujitsu: OK. If you've 1000 issues, I'm guessing you need 6-10 relatively active people? [08:12] persia: Right, but that's not going to happen. [08:12] Fujitsu: it's not? [08:12] you might be surprised if you market it [08:13] persia: With the funny libxine thing, does that mean that I'll have to maintain 2 versions of the control file now? [08:13] We can't pull much of several people's time out of the dev. release. [08:13] Fujitsu: I think 4 should be easy, and maybe 5. Clearing the backlog will be painful, but maybe keeping up will be possible. Due to the excitement of announcements, you might even have 7 or so for a few weeks. [08:13] frenchy: How do you mean? [08:13] persia: Keeping up should be practical eventually [08:14] persia: Well there's no libxine1-x in Gutsy. [08:14] Fujitsu: well, I think many people care about security, they just don't know what exactly needs to be done and how to do it [08:14] a nice task list and some documentation would probably go a long ways [08:14] persia: So I need a control file for gutsy and a control file for Hardy with libxine1-x. [08:14] frenchy: Ah, yes. You'll want a slightly different package for gutsy than for hardy. Alternately, use a versioned OR for stability (see the Debian bug). [08:14] LaserRock: True. It looks like ubuntu-cve will be developed further soon, which will help. === rob1 is now known as rob === doko_ is now known as doko [08:41] persia: bip. ;) [08:41] do you know exactly what doesn't work with clive and python2.5? [08:42] gaspa: I think it just didn't run. I don't remember why. Let me check if I left a useful note. [08:42] persia: the bug report tells simply that "it doesnt' work" [08:42] because the new version seems to work, at a first sight [08:43] (python2.5, of course) [08:43] when I build a package named package_0.08-0 the source gets included. If I use package_0.08-0ubuntu1 instead, I get: "dpkg-genchanges: not including original source code in upload". Since I build this package from scratch for Ubuntu, I would like to include the source. Any tips? [08:44] gaspa: Excellent. I don't appear to have left any good notes, but the upstream changelog looks promising. If it runs for you in hardy, and can play YouTube and GoogleVideo, you can request a sync. [08:45] SWAT: debuild -S -sa [08:46] persia: great. I test it a little more... [08:46] gaspa: Thanks for looking into that. [08:46] persia: ;) [08:46] persia, thanks again. [08:47] nealmcb: I've not yet reached a verdict :) [08:51] http://wiki.ubuntu.com/MOTU/ReportingPage looks awesome this month [08:51] lots of activity [09:27] morning dear MOTUs and wanabees :) [09:27] heya huats [09:28] hey dholbach [09:28] dholbach: I was looking at dad yesterday. Do you min if I look at the jokosher merge ? === LucidFox_away is now known as LucidFox [09:29] huats: not at all, not even if you replace my name in the maintainer field - the only problem is that the tarballs differ [09:29] huats: let me know once you've done something, I'll review it for you [09:30] dholbach: I didn't went inside to have a look. I just saw that you were the last uploaders [09:30] dholbach: I'll have a look tonight [09:30] and I let you know [09:30] rock and roll [09:31] :) [09:36] persia: do you think it's enough? (bug #164021) [09:36] Launchpad bug 164021 in clive "sync version 0.3.1-1 from Debian unstable" [Undecided,New] https://launchpad.net/bugs/164021 [09:37] also with a build log. [09:38] gaspa: You'll want to change the title to note that clive is going into (universe) from (main). Take a look at some of the bugs in https://bugs.launchpad.net/~ubuntu-archive for an example [09:39] gaspa: You'll want to mention which version of clive didn't work with python2.5 in gutsy. [09:39] ah, ok [09:39] gaspa: And you'll want to include the Debian changelog since the last sync in the description as well. [09:41] gaspa: Other than that, it looks good. Please push to the sponsors queue when you make those changes: I won't sponsor (as it's mine), but I doubt it'll take more than a few hours. [09:45] Has anybody else seen any security uploads announced to -changes since 2007/10/23 (ie. just before LP 1.1.10)? [09:48] I don't remember seeing any [09:48] I can't see any on any of them, in the past month, when there are normally lots... Oh dear. [09:48] persia: thanks. :D [09:51] \sh_away: hi [09:55] luisbg_: hi [09:55] Hi s1024kb [09:57] geser: hi. do you use jabber? [09:58] hey s1024kb, how are you? [09:58] and hello to the rest of the room also ;) [09:59] luisbg_: hey, fine, thanks. i uploaded my first package "yappy" today finally... [10:00] s1024kb, cool! my congrats [10:01] s1024kb: yes, why? [10:02] geser: it was the first time i use jabber (\sh suggested yesterday), and i added you guys... :-) [10:02] luisbg_: thanks. === yamal_ is now known as yamal [10:04] Quick question guys... I am currentlyworkning on a real update... all updates should be hardy obviously right? [10:04] s1024kb: I have seen your authorization request now, and acked it [10:04] dch -i creates an entry with gutsy in the new version... but hardy is the next release [10:05] but would it build ? [10:05] effie_jayx: That's because you're using Gutsy's dch. [10:05] hardy is correct. [10:05] effie_jayx: yes, all updates (except SRU obviously) should target hardy [10:05] now [10:05] would it build ? [10:06] effie_jayx: either install devscripts from hardy, update the distribution by hand or set an alias [10:06] effie_jayx: is your pbuilder hardy or gutsy? [10:07] pwnguin, gutsy [10:07] effie_jayx: for a pbuilder the distribution in the changelog doesn't matter [10:07] geser: haha, sorry, i changed to a new account... and added you again. :-) [10:07] I remember downloading pbuilder for gusty before... [10:08] I can't quite remember [10:08] effie_jayx: apparently it doesnt matter [10:08] ok [10:08] I shall try it [10:09] it should build and test fine, but MOTU is now at the stage where only stable release updates are accepted into gutsy. ideally you'd be setting up a hardy pbuilder and testing on a hardy install [10:10] pwnguin, any leads as into how to build my hardy pbuilder [10:10] the wiki has a section on keeping multiple chroots around, ive not set it up [10:10] ok [10:11] i just upgraded to hardy like an hour ago [10:11] pwnguin: how much is broken currently? [10:11] nvidia's totally busted [10:11] i havent looked into it yet [10:11] effie_jayx: look at the pbuilder-dist script from ubuntu-dev-tools [10:11] otherwise, it basically is a lot like gutsy [10:12] not much happened during the freeze i guess [10:13] geser, I will check it know ... I am at that very step now... [10:13] oh, i guess i do tend to throw things into my ppa when they wont make it into official relases on time [10:13] so theres a few new toys like CellWriter. [10:13] effie_jayx: you need to debootstrap from gutsy-backports or hardy to create a hardy pbuilder [10:13] need to install * [10:13] geser: apparently the gdm failsafe is not quite ready [10:15] luisbg_: do you have a jabber account? [10:15] s1024kb, yes... bethencourt@gmail.com [10:16] luisbg_: add you too. :-) [10:17] s1024kb, ok! [10:23] geser: i take that back. gdm just decided to go nuts on reboot [10:29] another question... if this is a new upstreeam version [10:29] the name is 3ubuntu1 [10:30] what would the new name be? [10:32] effie_jayx: -EPARSE, do you want to upgrade an existing package to the next upstream version? [10:32] geser, yes, that's right [10:33] -0ubuntu1 as there isn't a Debian release for this version yet [10:34] ok [10:34] thanks geser [10:39] heh [10:39] package doesn't build [10:39] lot's of warnings and the there is an error [10:45] Hi norsetto [10:46] heya geser, how is it? [10:46] hey norsetto! [10:46] dholbach: morning master! [10:46] norsetto: good, but I got a cold :( [10:46] * dholbach hugs norsetto [10:46] * dholbach hugs geser too [10:46] * dholbach makes some tea [10:46] * geser hugs dholbach back [10:46] * norsetto hugs dholbach and geser (and get a cold in so doing :-)) [10:47] so if I get an error building and it seems to be a code problem [10:47] a variable not declared it seems [10:47] fix it :) [10:48] geser: fix id ;-) [10:48] geser, ok [10:51] geser, the error is this ... 'ctx' undeclared (first use in this function) [10:52] could it be that I am missing some dependency? [10:53] * effie_jayx check the depends line [10:56] geser, build depends on libclamav-dev [10:56] * effie_jayx has found the glitch [10:59] * proppy hugs dholbach [10:59] * dholbach hugs proppy back [10:59] * proppy hugs the big N [10:59] (norsetto) [11:01] norsetto: hello my teacher. i had uploaded the package... will be concentrate to the next one. [11:01] heya proppy! [11:01] proppy: hi, nice to meet you again. [11:01] s1024kb: ok good, you have subscribed the sponsors? [11:02] nope that eas not it [11:02] norsetto: yes. [11:02] http://pastebin.ubuntu-nl.org/45215/ <---- here is the output if anyone can help me identify === persia changed the topic of #ubuntu-motu to: Ubuntu Masters of the Universe: https://wiki.ubuntu.com/MOTU | Hardy Heron is in active development. | Want to get involved with the MOTUs? https://wiki.ubuntu.com/MOTU/Contributing | Go Merging! http://dad.dunnewind.net/universe.php | http://www.ubuntuwire.com is back! [11:03] there must be a problem with a library and vairables not being read [11:03] s1024kb: hmmmm, can you give me the bug number? [11:03] norsetto: maybe there will be errors inside it, but i wish to learn from the errors... Wish to work better next time. [11:03] norsetto: ... [11:05] norsetto: the bug number? (sorry, i know that my English is really bad, after thinking for quite a while...) [11:05] effie_jayx: The only problem worth looking at for a start is the one on line 145. If you can track down why it's not finding those libraries (missing build-dependency?, source structural changes?), I suspect a lot of the getline_ssl stuff will make more sense. [11:05] s1024kb: yes, you have written a bug report requesting the merge? [11:05] persia, ok I'll see what I can do [11:07] norsetto: sorry... [11:07] s1024kb: well, how did you upload it then? [11:09] norsetto: dput revu *_source.changes ... [11:10] s1024kb: oh right, but revu is not for merges, its only for new packages, or updates [11:11] s1024kb: you should open a bug report, and attach the debdiff to it [11:11] norsetto: i will try to. :) [11:11] s1024kb: do you know how to open a bug report? [11:12] norsetto: not yet. i will read the documentations later at home... [11:12] hi s1024kb [11:13] s1024kb: can you use a web browser now? [11:13] norsetto: yes. [11:14] hmmmm, revu nuking seems to be out of order [11:15] s1024kb: https://launchpad.net/ubuntu/+filebug [11:15] s1024kb: you have the debdiff already? [11:15] norsetto: Just archive it gently with a comment: no need to nuke :) [11:16] persia, I am a bit lost ... to find structure changes, what do I use.. .a debdiff between .dsc's? [11:16] norsetto: yes. [11:17] effie_jayx: I'd need more context: what are you trying to accomplish? [11:17] s1024kb: good, you may want to look to some other merge request to see how it is done [11:17] s1024kb: let me fetch one for you [11:17] persia, an update of this p3scan... from 2.1 to 2.3.2 [11:17] norsetto: finally got the web page open... this evening the speed is very low here in my office. [11:18] norsetto: thanks. [11:18] s1024kb: well, take it easy, no need to hurry up [11:19] norsetto: :) [11:19] persia, i followed this update bug https://bugs.edge.launchpad.net/ubuntu/+source/p3scan/+bug/133802 [11:19] Launchpad bug 133802 in p3scan "Please update to newer stable version for SSL support" [Wishlist,New] [11:20] s1024kb: this should be a good example (I hope): bug 163271 [11:20] Launchpad bug 163271 in xulrunner "Please merge xulrunner 1.8.1.9-1 (universe) from Debian unstable (main)" [Undecided,Confirmed] https://launchpad.net/bugs/163271 [11:20] effie_jayx: To examine the differences in the packaging, take a look with `interdiff -p1 -z old.diff.gz new.diff.gz`. To examine the differences upstream, extract each of the orig.tar.gz files with `tar xzf`, and use `diff -urN old.orig new.orig`. [11:21] norsetto: sorry, can't see it on the page? [11:21] s1024kb: let me know once you have done it and we will look at it together [11:21] * persia thought there was a better command to diff tarballs, but cannot remember it just now [11:21] norsetto: okay, found it. sorry. [11:22] norsetto: okay, many many thanks. :) [11:23] * Fujitsu attempts to write an email eliciting help with security. [11:24] * persia offers proofreading and editing if desired [11:25] persia: Should I sym-link the config.{guess,sub}? [11:26] frenchy: I usually just copy it in from autotools-dev in configure: or makebuilddir/packagename:: [11:27] persia: Thanks, I'll pastebin it in a sec. [11:27] frenchy: More generally, those are the porting scripts: if the application is to be compiled on a new platform, it likely wants new hints, so it's nice to have that happen automatically, rather than requiring a manual refresh. [11:28] (the counterargument is that it's more difficult to guarantee a repeatable build with changing hints, but I believe that we rebuild often enough not to hit this too much). [11:30] persia: http://pastebin.com/d586748f0 [11:31] Fujitsu: Mind if I try for something a little more upbeat? [11:31] persia: Sure, I'm not good at writing announcements, or much, really. [11:32] Fujitsu: No worries. I suck at actually generating meaning [11:33] Fujitsu: Is there a team name that will be used for this? motu-swat? [11:33] persia: That would be the universe security team, yes. [11:33] Not that it actually does anything... [11:34] Fujitsu: Of the active security chasers, one is a motu-swat admin, and the rest aren't MOTU yet, so I'd say the team's doing OK, but has a few inactive members :) [11:36] persia: I guess. [11:36] * persia attempts to inject yet more upbeat cheer, but suspects people would be more useful === dholbach_ is now known as dholbac === dholbac is now known as dholbach [11:39] persia, shall give that a wack after I drop my daughter off school... [11:39] effie_jayx: No rush: SSL is nice, but daughters are nicer :) [11:39] persia: Haha. [11:40] * Hobbsee waves [11:40] Evening, Hobbsee. [11:47] Fujitsu: Just to confirm, there's no ML at this point, right? [11:47] persia: Correct. === \sh_away is now known as \sh [11:48] <\sh> moins [11:49] hey \sh [11:49] Hi \sh. [11:51] * persia declares paste.ubuntu.com annoying for this sort of thing [11:53] persia: Lack of linewrapping? [11:53] Fujitsu: http://pastebin.com/d4445b8a0 is a first draft. Takes away the "dire situation" bits, and tries to be inviting. I think it needs more in the third paragraph, but I'm not sure of the workflow: giving a little instruction to help get people started would be good. [11:53] persia: That looks much better! [11:54] Fujitsu: I have the advantage of not actually being under that weight of CVEs :) [11:55] I note that the CVE tracker has been around for 2.5 years, but I'm not sure how old the new incarnation is, nor where its existence has previously been documented. [11:55] Fujitsu: Shhhh! [11:55] (although maybe "recently" could be dropped) [11:55] Right. [11:57] \sh: You seem to be an expert on these things: would you be up for running a class on patching CVEs sometime this week or next? [11:58] <\sh> Fujitsu, what's up with the cve tracker? [11:58] <\sh> persia, I'm far away from an expert...I'm just using my skills and read a lot of source ,-) [11:59] \sh: What about it? [11:59] \sh: Umm.. rather you seem to have a good grasp of the related workflow. I'm not sure everyone does :) [11:59] <\sh> I note that the CVE tracker has been around for 2.5 years, but I'm not sure how old the new incarnation is, nor where its existence has previously been documented. [11:59] <\sh> Fujitsu: Shhhh! [11:59] \sh: You mean you didn't know of its existence either? [12:00] <\sh> Fujitsu, you mean people.ubuntu.com/~kees/ubuntu-cve ? [12:00] \sh: Right. [12:00] Er, except the real one ~pitti/bzr/ubuntu-cve. [12:00] * persia thought pitti's was now the authoritative tree [12:00] <\sh> Fujitsu, pitti was running it in former times, since kees and jdstrand were taking over, kees had it on his account [12:00] \sh: The proper branch is in ~pitti. [12:01] <\sh> Fujitsu, the "real" one is not uptodate...regarding the output..but the source is on pittis account [12:01] <\sh> Fujitsu, I'm talking about the result of the cve tracker, I think you speak about the source ,-) [12:01] \sh: Right, Kees said he'll have the output fixed soon. [12:01] Ah, so pitti has the source, and kees has the output? [12:02] \sh: I speak of the source, right, which is the only valid thing at the moment. [12:02] <\sh> persia, well, pitti was adding some code I think...the original code comes from debian afaik...but better to ask pitti [12:02] where should I report a bug regarding compiz and blender, on compiz bts, or on launchpad ? [12:02] proppy: Both [12:02] Most of what needs to be done at the moment is triage, anyway. [12:03] persia: ok :) [12:03] <\sh> Fujitsu, do you want to run a self cve tracker? which is quite complicated when I read the documentation of pitti .) [12:04] proppy: Be sure to tell LP about the upstream bug, to help with tracking. [12:04] I will check if it is already reported [12:04] blender with compiz enable start without borders [12:04] <\sh> persia, I'll try to prepare some docs for this workflow... [12:05] proppy: Also, #ubuntu-bugs is the better place to ask that sort of question next time :) [12:05] \sh: I have a local branch and am going through triaging various CVEs. Apparently the main branch will be moved to Launchpad in the near future, so more people can commit. [12:05] persia: o k [12:05] how do I add a .desktop file to a package so it will be entered in a menu? Just drop the file in the debian/ dir? Or create a separte directory and create a rule to move the files (.desktop file and icons) to the correct dir upon installation? [12:05] \sh: That'd be great. An announcement is planned to get some more people involved, but they'll need something to do when they get all excited and want to join. [12:06] <\sh> persia, well, it's a hell of a lot "real" upstream svn searching ,-) [12:06] <\sh> persia, most people hate this, like i'm hating it ;) [12:06] \sh: I find that in most cases I can retrieve the patch from another distro or diff between their releases, though with some you're right. [12:06] SWAT: If you're packaging someone else's upstream, it's best to use the debian/ directory. If you're doing your own, put it somewhere in the tarball, and install with $(MAKE) install. [12:06] And it is very much hate inducing. [12:07] <\sh> Fujitsu, yeah, when other distros are faster then us... [12:07] \sh: Which is 99.9999999% of the time, or so. [12:07] \sh: That's about what I thought, and why I thought a class might be good: lead a mix of developers and contributors through the workflow, and generate a bunch more bugs for a while. [12:07] persia, thanks again [12:07] <\sh> Fujitsu, but sometimes you see a fix from another distro and it just doesn't fit for our version, whysoever [12:07] \sh: That's also true. [12:07] \sh: A class would be great. [12:08] We could do with more people. [12:08] <\sh> Fujitsu, yeah, I would like to see more security involvement for universe.... [12:09] <\sh> Fujitsu, I would also propose a separate security archive for universe, so we can inject our security fixes more easily and don't disturb our main security team with this [12:09] <\sh> Fujitsu, but I think that's just me ,-) [12:09] \sh: I think most would agree, but that won't happen. I can see why they would want to keep control over it all. [12:09] <\sh> cprov, ping...question about why sometimes I can see -security uploads in -changes and most of the time not. why is that? :) [12:10] \sh: I filed that earlier. [12:10] \sh: Since 1.1.10, there have been no notifications from -security. [12:10] \sh: Bug #164027 [12:10] Launchpad bug 164027 in soyuz "As of 1.1.10, security uploads no longer generate announcements to -changes" [Medium,Confirmed] https://launchpad.net/bugs/164027 [12:11] Hey, I didn't get that email. [12:11] <\sh> Fujitsu, oh...I thought it's just me about this...I work most of the time with the -changes MLs so I don't rely on p.u.c...and when I'm missing an upload, like yesterday the emacs22 fix from the 13th, i'm doomed [12:12] \sh: well, bigjools and colin are discussing this right now, expect the bug to be updated in a minute. [12:12] Yay, only a month to wait... [12:13] cprov: Why does this all have to be private? That's silly. [12:14] Fujitsu: I don't see anything being treated as *private* in this subject. I just don't want to discuss it twice, which is quite different. [12:15] cprov: It is private if the discussion is hidden away in #soyuz or #canonical. [12:17] Fujitsu: no, the bug is public and that is the place for discussion and argumentation (which is quite unnecessary, since you are right) it doesn't depend on anything happen in #soyuz [12:18] cprov: So the only discussion occuring between Julian and Colin is on the bug? [12:19] Fujitsu: well, it's about "how to sort the problem in the right way". [12:20] Right, which should surely be best discussed in a place where the people who are more affected by it (ie. those who don't deal with components with USNs), or those who reported it. [12:20] * norsetto -> food [12:20] Fujitsu: es ist sekrit. you should leave it alone, before you learn more about soyuz and such than you ever wanted to :) [12:21] Er, a `can participate or watch' should have been in their somewhere. [12:22] This brings up another issue: why the $*#($*@#($@# isn't there a damn changelog? [12:22] Fujitsu: of? [12:23] Hobbsee: Launchpad. [12:23] Other than bzr log. [12:23] Which we obviously don't have access to. [12:23] Fujitsu: apart from the release notes? [12:23] Fujitsu: i thought all the stuff was documented in the release notes [12:23] If there are features disappearing, or bugs that aren't milestoned being fixed, we should at least have some notification. [12:24] Hobbsee: It's not listed. [12:24] useful. [12:25] * persia wonders if motu-swat could commit to offering peer review of SRUs as well [12:25] The first reference to it I've seen is Colin's comment on the bug. And I read LP material fairly thoroughly. [12:25] ok [12:25] I'm back at it persia ... let me see what I can pull off [12:25] effie_jayx: Good luck. [12:25] thanks [12:30] morning [12:30] moin all [12:32] LaserRock: poniez plz. [12:34] persia, +#include "getline.h" -#include "getline_ssl.h" <--- I found it... it got changed [12:35] effie_jayx: Good work. That's one of the tricky things about new upstreams: upstream changes things, and the packaging has to be adjusted. [12:41] persia, so I have to fix source now? [12:42] effie_jayx: I'm actually completely unfamiliar with the specifics of what you are doing, so am not sure. If you've something that changed, and now it doesn't build, that's something to fix. [12:43] effie_jayx: On a wider note, I must admit I was a little surprised at your choice of order in which to try things, as it appears to be that you're trying some of the harder things first :) I don't suppose you have time to take a quick look and maybe alter the order? [12:44] cprov: Are security uploads logged to any other publically visible place? [12:45] persia, I actually was hoping someone would help me shape it up... any suggestions? I can surely add those [12:45] Fujitsu: no [12:45] * Fujitsu blinks. [12:46] cprov: what would the reason for that be? === tudenbart is now known as dothebart [12:50] Hobbsee: I didn't understand your question. I clearly see a reason to provide a package/upload search page where users could select a specific pocket. It would be even better if it was provided as a rss-like feed. it's just not done yet. [12:51] cprov: what would be the reason that the security uploads are not logged to any publically visible place? [12:51] It would be better if functionality was replaced before the original was removed, preferably with some kind of notification. [12:52] unless i'm misreading [12:52] <\sh> Hobbsee, sometimes you do security uploads which are still not opened to the public (hint on embargo) [12:52] \sh: sure, but when the embargo is over? [12:52] Colin's comment in the bug about embargoes seems invalid; things published to -security are published to the public. Embargoes have already expired. [12:52] <\sh> Hobbsee, it's public [12:53] I would presume this has been rebutted in [insert private channel here], but I really can't tell. [12:53] <\sh> Fujitsu, right...embargoed CVEs are still set to private...as pitti mentiones it in his CVE tracker howto [12:53] \sh: Right, but once they're published by Soyuz, they're surely going to be public. [12:54] Hobbsee: they are presented, https://edge.launchpad.net/ubuntu/gutsy/+queue?queue_state=3&queue_text=, just not in the ideal way. [12:54] oh, right, i see [12:54] <\sh> cprov, it would just been nice to see -security uploads again on -changes ML... [12:54] Ah, so there is a list, just fairly randomly sorted and only via the web UI. [12:55] What was the result of the secret discussion? [12:56] Fujitsu: DESC uploadtime, doesn't seem random to me. [12:56] cprov: Right, but uploadtime is mildly randomised. [12:57] (and all the binaries are separate) [12:57] It is a workaround, however. [12:57] Fujitsu: there was secret discussion and if you continue to insist in this point I'm afraid you won't be listened anymore. [12:57] I presumed as much. [12:58] err, I meant that "there was *no* secret discussion" [12:59] So it's safe to have them on a web page, but a ML is dangerous? [13:00] <\sh> stop stop stop [13:00] <\sh> I think some things are mixed up now [13:00] cprov: I'm afraid that I am confused. Your comment some 48 minutes ago to \sh seems to contradict your statement. [13:01] <\sh> 1. there are embargoed CVEs standing for source X...which is normal and should be respected [13:01] <\sh> 2. there are security fixes which are fixing even those embargoed CVEs...which is quite common, and everybody is doing that [13:02] <\sh> 3. even when there is an embargoed CVE listed in the changelog a link to the CVE is included, but no description what the fix does or what the error was (which is also quite common in distro security uploads) [13:02] <\sh> 4. everything else is commonly available... [13:02] <\sh> 5. all uploads (it doesn't matter which pocket) should be announced on *-changes. [13:04] <\sh> there is, agreed, a definition how to deal with embargoed CVEs, and this is still valid, but has nothing to do with the upload message on an ML for informational reasons which package was updated/uploaded...this is only important for people dealing with the distro, not for sysadmins, they are using most of the times the USN or other informations from other sources [13:07] (and sysadmins can see the same changelogs by downloading things in any case) [13:07] I'd just like to see an explanation of the change that makes sense. [13:09] I see this whole thing as something quite simple to solve, we can announce every upload that is about to be published in the primary archive and we will do that ASAP. [13:09] and you can treat what happen in 1.1.10 as a regression if you like. [13:10] cprov: Was it an accident or by design? [13:11] * persia thinks the cause of the regression doesn't matter, so long as there is a near-term plan for a solution [13:12] persia: If it was by design, it's not a regression. [13:12] ScottK: well, I see it as a lack of pre-requisites documentation, but I'm not strong on this, from this point it will be treated as a new feature. [13:12] cprov: What does that mean? [13:13] ScottK: it means that "It will be fixed in the next milestone." [13:13] cprov: That doesn't answer my question then. [13:13] ScottK: go easy on him, me might just escape the channel otherwise. [13:13] cprov: To me, regression is an accident. It sounds like this was not by accident. [13:16] ScottK: Think viewpoints. If a change closes a bug, it is good. If the bug was a bad bug, that's hard to see from some viewpoints. [13:16] ScottK: well, you can call it whatever you want, but it doesn't change the fact that code will have to be fixed to provide the "feature" you are asking for. [13:16] cprov: I'm trying to understand what's going on. [13:17] persia: There was no bug. [13:17] Bug report, that is. [13:17] <\sh> I think we all have to calm down ... cprov says now, it will be included again, so we wait [13:17] Fujitsu: That's a different problem than the accident / design issue, but yes. [13:17] jono: *hugh* [13:18] \sh: That misses the entire point of this discussion. [13:18] jono: oops, ment *hug* [13:18] (for that blog post, I needed it) [13:19] ScottK: it's simple, you relied in a broken code side-effect (announcements of -security uploads) when the code got fixed this *problem* was gone. Now if you consider that a *feature* it will be added and documented as such. [13:19] \sh, Fujitsu: ubuntu-cve was originally written by pitti. It was later modified by keescook. A couple of months ago it was rewritten by keescook (and I wrote some of the helper scripts) to be more like Debian's kernel-sec. There was not much documentation before the rewrite, and the documentation that exists now is a work in progress. [13:19] highvoltage: no worries, glad it helped :) [13:20] cprov: Is there any documentation that I, as a user, could have looked at that would have allowed me to know I was relying on a side effect and not design behavior? [13:20] <\sh> ScottK, what is the point? that is was intentional, that this feature was "removed, deleted" or whatever? fact is, it's missing, so there is a bug, cprov now stated, hopefully official, that this will be fixed in the next release. [13:21] Also, IRC isn't the best medium for policy statements. If the lack of a public set of specs is an issue, that out be raised somewhere less transient. [13:22] s/out/ought/ [13:22] ScottK: no there is no public documentation about what do we expect to be announced and this is a general problem in Soyuz [13:22] <\sh> ScottK, regarding LP, please have in mind, it's a commercial project, which has some other needs as other projects. and I don't want to be involved in any decision of the LP project, I just want to work with this tool, because it's the heart of our workflow [13:22] cprov: So your statement that it was a side effect and not design behavior is completely opaque to me. [13:23] <\sh> jdstrand, thx for the explanation :) [13:23] \sh: Commercial / Free doesn't matter. It's user communication (as cprov just said) [13:23] \sh: Agreed. I'd like it to actually support the work flow. [13:23] \sh: np [13:23] persia: It matters for the visibility into what's going on. [13:24] ScottK: right, what can I do to clarify this to you ? What are expecting me to say ? [13:24] ScottK: I'd be willing to argue that at some point: consider nethack vs. some of the smaller feature-auction driven programs for Macs, but I've been up to long to do it justice now. [13:25] cprov: i think it's clear now, but the question is how to make it work better in future - as in, with stuff that we're using that migiht not be intentional [13:25] cprov: You clarified it. There is no documentation about what I can expect Soyuz to do. You will change $STUFF that's not by design without notification. So I can't actually rely on it continuing to do anything that's not documented. [13:26] ScottK: I've already said: 1) It was gone because it wasn't listed as a feature 2) We will fix it 3) to avoid it to happen again we have to provide public documentation (additionally to a up-to-date test-suite) ... What else ? [13:26] ScottK: that sounds reasonable. I suspect if you documented it (or convinced someone else to so do), it would be easier to rely upon (not that I know what I take for granted either) [13:27] persia: Now we get to the other reason Free/not-Free matters. I have a consulting rate for design work on commercial projects. [13:27] ScottK: come on now... you make it sound as if soyuz only worked by chance, that's completely unfair [13:27] ScottK: That's separate, but valid. [13:27] <\sh> ScottK, sure, so this feature was implemented, now it's missing, for what reason ever, and we have one coder here, cprov, who explained to us, that it will come back...this is all we need to know...I know all these things from my actual company... [13:28] dholbach: No, I'm saying I've been told that I can't rely on it continuing to do anything that's not documented and there is no public documentation. [13:29] <\sh> lack of documentation or lack of documented features is a problem in most companies around the world :) [13:29] ScottK: and the tin foil is in the kitchen. [13:29] persia, because I added icons to the debian dir, I get a "dpkg-source: unrepresentable changes to source". How should this be resolved? [13:29] <\sh> cprov, so it will be seen again on wednesday? [13:29] after all, it was nice to have this conversation and identify and we are missing a *contract* between users and developers, i.e., user-documentation. [13:30] SWAT: uuencode. Look at flobopuyo [13:30] cprov: That sounds reasonable to me. [13:30] \sh: no, LP is frozen. It will have to be cherrypicked (if we are lucky) next week. [13:30] SWAT: Also, don't ask me: ask the channel. I'm just ask likely to answer, and won't complain to you about it. [13:30] <\sh> cprov, cool :) [13:31] <\sh> cprov, btw, I like the CVE parser on edge now :) I was a bit surprised to not have added any CVEs manually during my reports :) [13:31] ScottK: right, now I ask, how can we collaborate to produce Soyuz user-documentation ? [13:31] persia, I just highlighted you, because you gave me the suggestion. Normally I would ask the channel. [13:32] <\sh> SWAT, what do you want to do ? deliver a binary blob inside the debian package for installing it? [13:32] SWAT: OK. Maybe I'm oversensitive because I tend to answer a lot of questions, and so get a lot of unnecessary highlights :) [13:32] you are very active indeed [13:33] cprov: I don't know. That's a tough one for me. I am often stuck in my mind between knowing that if I want LP to meet my needs I need to participate and being unwilling to be a volunteer for proprietary development. I don't have a good resolution of those two things in my mind. [13:33] \sh, add an icon, to the application I'm packaging (for the menu) [13:33] <\sh> SWAT, add sharutils to build-deps and uuencode all binary files before in the debian/ dir....add in debian/rules some tasks to uudecode them during build time and push them into the right directory [13:34] <\sh> SWAT, take a look at spkg "ipe" I did that there [13:34] I'll go and take a look, thanks [13:35] <\sh> dholbach, I jsut had a look at launchpad-bugs...you are scraping the html via xpath, right? :) [13:35] \sh: Do you install directly in debian/rules? I usually uudecode into debian/ and use dh_install to push them where they go. [13:35] <\sh> persia, no...I uudecode in debian/ dir and install them in the right location... [13:35] \sh: you can also use the method="text" connector, which will make use of pages like: [13:35] <\sh> persia, uudecoding is done in the debian/rules file [13:35] *let me find the link* [13:36] https://launchpad.net/bugs/61030/+text [13:36] Launchpad bug 61030 in ssed "Mistake in ssed string (dapper)" [Undecided,In progress] [13:36] <\sh> persia, depends on the source package actually [13:36] \sh: Right. From your first explanation I thought you were doing one less step than I, and just wanted to check. [13:36] \sh: but the text connector is not fully implemented yet, bdmurray will work on that [13:36] \sh: so yes, up until now we use xpath [13:37] ScottK: so, w/o offending your principles, would you be happy to help us to write help.launchpad.net/Soyuz/UploadSystem describing how to do an upload and what to expect from it ? [13:37] <\sh> dholbach, hmm...we really need something like a xmlrpc interface, or REST or soap...but in the meantime I have to use some of this logic for the UI [13:38] cprov: I would be willing to help some. Given my current work/family commitments, about all I can promise is to review/validate and maybe fill in some holes. I do not have a lot of time for Ubuntu work right now. [13:38] \sh: readonly will work nicely with the next LP release [13:38] Wasn't someone talking about REST/JSON at some point recently? [13:38] \sh: it just needs some bits in py-lp-bugs to get fixed (comments, tags, links to attachments) [13:39] \sh: xmlrpc/rest/soap/.../... needs fixing in LP first [13:39] persia: And at most points over the past 2 years, but I should shut up. [13:39] <\sh> dholbach, but readonly functions are much more then we have now :) [13:39] \sh: hm? I don't understand [13:40] Fujitsu: Ah. Right. I'll push it into that filing bin then. As always, thanks for tracking that so closely. [13:40] ScottK: ta, that's fine. It wasn't suppose to sound as a personal question, it's fine if you, as the other active MOTU, simply support the general idea. [13:40] <\sh> dholbach, some readonly xmlrpc/rest/soap functionality ;;() [13:40] <\sh> dholbach, or I misunderstood you now [13:40] \sh: look at https://edge.launchpad.net/bugs/61030/+text [13:40] Launchpad bug 61030 in ssed "Mistake in ssed string (dapper)" [Undecided,In progress] [13:40] cprov: I definitely support the idea of documentation. [13:40] \sh: oh sorry: we have read/write using html [13:41] \sh: we have partial read-only in the 'text connector' (with the next lp release and some pylpbugs fixing, we will have full read-only) [13:41] dholbach: The LP change being +bugs-text searching working in 1.1.11? [13:42] Fujitsu: and comments/tags/links-to-attachments added [13:42] Oh, good. [13:42] <\sh> dholbach, cool...so I can push this underlaying functionality with a nice GUI into public :) [13:42] I think there are some other bits, but yeah, that'll make pylpbugs more reliable and bughelper much quicker [13:43] <\sh> something like kbugbuster for LP :) [13:43] \sh: great - once the 'text connector' works OK, the only necessary change for you will probably to use "method='text'" somewhere :) [13:43] <\sh> dholbach, for generating new bugs, I'll rely on mail with gpg...this will also help people to come to terms with gnupg and keymanaging [13:44] \sh: if you use Bug.New() you will get the bug number bug, etc [13:44] \sh: and you don't need a configured MTA [13:44] dholbach: based in what we have discussed, do you approve https://wiki.ubuntu.com/MOTU/SoyuzUserDocumentationDraft page as a place to we can collaborate ? [13:44] just your lp cookie somewhere [13:44] * gnomefreak has a stupid question, i added export LANG=C to ~/.bashrc and i dont see all chars correctly seems like it turns off UTF support but g-term still shows using UTF-8 [13:45] cprov: not sure if it should live in the MOTU namespace, as it affects all areas of Ubuntu [13:45] i added export LANG=C for chroot lang. warnings and it got rid of them [13:45] cprov: dholbach has a good point I think. [13:45] cprov: but I guess it's going to live on help.launchpad.net in the future anyway, right? [13:45] <\sh> dholbach, well, TBH, everyone has a SMTP server somewhere, with TLS etc. and this is a simple adjustment in our perl code :) [13:45] It should probably relate under the Ubuntu Development pages that dholbach has been doing. [13:46] <\sh> dholbach, lpbugs.py (the old version) had this functionality already :) [13:46] dholbach: exactly, MOTU would host a draft. [13:46] a sub section in https://wiki.ubuntu.com/UbuntuDevelopment/PackageArchive ? [13:46] Sounds reasonable to me. [13:46] \sh: your choice, I prefer to not have a local smtp or configure apps to use an SMTP I might have somewhere [13:46] yup [13:46] can i replace the C with ALL maybe? [13:49] cprov: Please give us a link here when you've started the page (I'll subscribe to it). [13:55] https://wiki.ubuntu.com/UbuntuDevelopment/PackageArchive/SoyuzUserDocumentationDraft [13:57] * ScottK subscribes. [13:58] ich auch. [13:58] Moi aussi [14:00] persia: are u working on bug 163727 ? [14:00] Launchpad bug 163727 in timidity "soundfont does not seem to get automatically installed" [Low,Triaged] https://launchpad.net/bugs/163727 [14:01] norsetto: Not actively: do you know someone who wants it? It's in large part a search effort, as most soundfonts aren't DFSG-free, and freepats isn't quite good enough. On the other hand, I am correctly assigned to that bug. [14:02] Ideally, someone would generate a full XG soundfont & publish under a permissive license, but as even getting the XG spec costs, that's not likely soon :( [14:03] <\sh> Hobbsee, are you learning german? ,-) [14:04] \sh: no, i learnt parts of it a few years ago. however, i've always come up with that phrase before the english equivalent. unsure why. [14:05] Because "I also" sounds funny and "Me too" is ungrammatical? [14:05] <\sh> me too is aol slang ,-) [14:06] \sh: It was common inappropriate use for decades before AOL :) [14:06] Hehe.. the only words my son knows in German are "Finger weg" [14:06] <\sh> > sugar@aol.com wrote: >> I need pr0n sugar2@aol.com wrote: > me too ! ,-> [14:06] (sufficiently so that most native speakers of English don't immediately understand "I also") === lmr_ is now known as lmr[A] [14:07] \sh: also, when iv'e been greeting people too much, i tend to automatically switch to german. [14:08] persia: yeah, i come up with i also, and then go "um, huh? [14:08] * \sh needs a pause [14:09] :D [14:13] Did dholbach already announce when the motu question time will be this week? [14:13] txwikinger2: There's a post on planet (although I must admit I don't remember) [14:13] txwikinger2: Friday, 12:00 UTC [14:14] txwikinger2: still need to send a mail out [14:14] dholbach: That's the same time as the MOTU Meeting... [14:14] ngh, not again [14:14] persia: people have learned to clone themselves. [14:15] * dholbach pedals back and makes it 13:00 UTC [14:15] dholbach: MOTU Meeting has been bouncing between 12:00 and 20:00 for a while. Do you want a change maybe so there's not a conflict next month? [14:15] persia: maybe I'll move it to 13:00 generally [14:16] dholbach: Thanks: 13:00 gets pretty late in Australia in the Summer. [14:16] persia: I hope that we'll find people who are willing to run it at another time [14:16] we had it at 0:00 and 12:00 UTC for a while [14:16] dholbach: Q&A sessions? [14:16] yes [14:17] I'm happy to do the the ones that are good for european folks [14:18] Do we have any demographics on interested parties? I'm a big fan of asking questions here whenever, but do agree that sessions sometimes help. On the other hand, I don't know how many interested parties we have from APAC. [14:18] now that we have more people joining the Q&A sessions and broad announcements [14:19] we also have announcements in the packaging section on the forums [14:19] but I can't tell you how many APAC people we'd have there, if Q&A sessions were later [14:19] I think the promotion is working well, I just don't know from where they come, and times convenient over here aren't typically useful for North or South America. [14:20] do you think other times than 0:00 and 13:00 UTC would work better? it was just my initial idea [14:20] <\sh> grmpf....what do I do? I don't have any sponsors to cheer for MOTUship ,-) I'm stucked now with my application for motuship [14:20] I'm also not convinced we've that many non-Australians from APAC, as the localisation over here is significantly weaker than for Europe / Americas. [14:22] Thanks dholbach [14:22] \sh: I'll cheer you. I've seen acceptable work from you for quite a while, and seem to have your address in my sponsored patch archives (you'll still need more) [14:22] \sh: Did you apply again? If you didn't, please do. [14:23] <\sh> persia, I'll add kees to my sponsors ,-) [14:23] <\sh> ScottK, no I didn't apply again..not yet [14:23] \sh: OK. When you do, please CC me on the application so I can be sure to endorse it. [14:26] <\sh> ScottK, will do... [14:26] <\sh> persia, thx === cprov is now known as cprov-lunch [14:43] dholbach: The dual nature of w.u.c/MOTU/GettingStarted and w.u.c/MOTU/Contributing was just pointed out to me. Any thoughts on merging the two? If left to my own devices, I'd be tempted to push the content from Getting Started into Contributing, and use the GettingStarted path (with a redirect from Contributing due to external links). [14:44] persia: what I like about GettingStarted is that it's a relatively short guide that links to all necessary steps along the way [14:44] persia: do you think we can conserve that idea somehow? [14:46] dholbach: too much information might turn people off [14:46] mok0: exactly [14:46] dholbach: Hmm. I'm not a fan of short pages, but I agree that a lot of that is "right now" information. Perhaps keeping a lot of that on the top, and tailing it with MOTU/Contributing content (with some wording changes (and yes, I don't mind processing: you're busy)) [14:46] dholbach and persia: Please, if you can, make it even more clear that the mentors program is totally and completely optional. I still (as recently as the last week) get e-mail about "What can I do if I don't have a mentor yet". [14:46] <\sh> cacti CVE-2007-6035 [14:47] Ah. There's that. I guess I'm mostly not happy with the fragmentation. [14:47] mok0: Hello. [14:47] <\sh> and fixed for gutsy now [14:47] ScottK: hi [14:47] ScottK: that page only contains ubuntu-motu-mentors@lists.ubuntu.com [14:48] dholbach: I'm just saying. I made some wiki page changes after the last mail I got to try and make it even clearer. [14:48] I think people don't feel sufficiently free to just contribute as they are able. [14:48] dholbach: I guess the other reason I'm not happy about GettingStarted is that there appears to be a lot of focus on new packaging, and we've heaps of maintenance to get done: I'd much rather channel people into fixing existing bugs and helping bugsquad whilst they learn, rather than encourage new packaging (which is rarely done will without seeing the work of others). [14:48] dholbach: clear is good. And not having to look many places for info is good. But I think a Quick-Start version should be retained. [14:48] In the following debian\rules file what do I need to make config.status depend on for the patches to be applied before the configure command? http://pastebin.ca/790632 [14:49] ScottK: right, I do that already, when I come across it; for example I copied your FAQ bit from UbuntuDevelopment/FAQ to MOTU/FAQ or the other way around yesterday [14:49] persia: that's why I referred to both Bugs and NewPackages [14:50] DaveMorri1: You really don't want to mix CDBS and raw debhelper. The answer is likely "patch", but you really want to do it differently. [14:50] persia: also I added that packaging a new piece of software might not be the easiest thing to start with [14:50] persia: if you have ideas on how to make that more prominent, I'm happy to add that [14:50] CVE-2007-6035 [14:50] \sh: !cve 2007-6035 [14:50] DaveMorri1: What persia said. If you look at man dpatch it's got a decent example of how to integrate dpatch into debian/rules [14:50] !cve 2007-6035 [14:50] Sorry, I don't know anything about cve 2007-6035 - try searching on http://ubotu.ubuntu-nl.org/factoids.cgi [14:51] dholbach: I see those, but I'm also seeing a lot of people packaging new software who have trouble generating a patch, which worries me because 1) I'm not confident of maintenance, and 2) it adds to the REVU burden. I'll go think some more, and see if I can come up with something useful. [14:52] persia: I'll change the sentence mentioning new packages. [14:52] dholbach: Part of it is that I don't want to create a page that has all the links, and big warning labels everywhere: gets into a "boy who cried wolf" thing. [14:52] <\sh> Kmos, it's not listed on mitre...but on NVD :) [14:53] No need to change the sentence: it's not important enough right away, and won't fix my issue. [14:53] norsetto: ping [14:53] \sh, ah ok :) [14:53] riddell: pong [14:53] pyelemental depends on libelemental-dev, is that in hardy? [14:53] persia: I'll think about what we can do with /Contributing [14:53] <\sh> Kmos, debian security tracker looks also for nvd it seems ;) [14:54] riddell: yes, but is not yet built, is part of the gelemental package that you (or somebody else) took out of NEW this morning [14:54] hmmm, I liked they way it was easy to do patches in cdbs [14:55] ScottK: Just as an aside, I think of the mentors mailing list as possibly distinct from the Mentoring program: they aren't sufficiently staffed to distinguish well today, but consider the first as a slower version of what we do here, and the second as one-on-one guidance (although I hope the new process is adopted). [14:55] DaveMorri1: Then just do it all in CDBS :) [14:55] Riddell: thank you for taking care of that :-) [14:56] yep I guess. I still need to use that custom configure command so how can I tell that to depend on the patches or if I do it the cdbs way will it automatically happen? [14:57] DaveMorri1: If you do it with traditional debhelper it'll be more complicated to set up, but much clearer what's actually happening. [14:58] DaveMorri1: IMO, CDBS is good for straightforward things that just work. Once you start wondering "How do I get CDBS to ..." you don't have to go far down that road before you're better off with debhelper. [14:59] how come you can't use the cdbs patch system with debhelper then? [14:59] DaveMorri1: Integrating dpatch into a debhelper debian/rules takes a bit of thinking, but actually using it is easy (dpatch-edit-patch). [14:59] DaveMorri1: use dpatch [14:59] That's like saying how come Perl code doesn't work in a Python program. [14:59] :-) [14:59] norsetto: all looks fine, accepted [14:59] DaveMorri1: You can, but you'd need to learn heaps of the CDBS internals, which even most CDBS packagers hide from. [15:00] ScottK: The other way around can work ... [15:00] no, because my package builds [15:00] It's kind of orthogonal, but possible if you work at it. [15:00] riddell: thanks, appreciate it [15:00] ScottK, yeah.. when are you going to fix that bug? :Þ [15:01] I'll check out using dpatch and going all cdbs and see which I perfer === _jason is now known as jrib [15:01] thanks for the tips [15:02] norsetto: congratulations to pyelemental in the archive! :) [15:02] I added quite a bit of CDBS info on the wiki some days ago [15:02] dholbach: yuppy :-D [15:04] Any package that uses GNU autotools should be built with CDBS IMHO [15:05] other people think differently ITHO [15:05] mok0: Erm. I can show you some counterexamples. How about "Any package that uses GNU autotools properly should be built with CDBS"? [15:06] cdbs shall die [15:06] persia: granted [15:06] * persia also especially likes the 1-line debian/rules for CDBS using artwork, settings, and meta-packages [15:06] norsetto: and yada will become the new overlord? [15:06] Umm.. Why don't we just repackage those? [15:07] Hobbsee: overlady .... [15:07] I've used cdbs quite a bit lately and it works fine. For newbies it hides all the gory makefile details, and makes sure it works correctly [15:07] (and for experts it offers more hooks and goodies than you might imagine) [15:08] AND, it can apply patches to autotools files, which is otherwise a pain to bring about [15:09] persia: Hi again, can you please tell me where I can find some information on the debian/*.install file? It's not working for me and I can't find any info on what it actually does. [15:09] frenchy: man dh_install [15:10] persia: ta [15:15] Anyone got a sec to chat over a dh_install problem? [15:15] frenchy: go ahead [15:16] * persia cheers mok0 [15:18] The first line in the me-tv.install is "usr/bin/me-tv" [15:18] frenchy: ... and? [15:19] when I run dh_install from the top directory I get "cp: cannot stat `./usr/bin/me-tv': No such file or directory" [15:19] frenchy: the path in *.install should be relative to the top-level source dir [15:19] the file is a debian/usr/bin/me-tv [15:20] persia: Ok, that make sense but ... [15:20] persia: gxine.install has usr/bin/gxine? [15:20] frenchy: your'e talking to me, not persia. [15:20] Ooops. [15:20] * persia suggests listening to mok0, who has done much more recent packaging with dh_install than I. [15:21] mok0: Sorry. [15:21] You can invoke dh_install with an option --sourcedir=debian/tmp , then that will be prepended to what's in the *install file [15:22] frenchy: but I suggest that you just put the correct path in the .install file, it's clearer [15:22] mok0: So is it ok for me to put the debian/ at the start .... got it. [15:22] norsetto: what's this "Xb-Npp-Applications:" line in gecko-mediaplayer? [15:23] frenchy: yes. [15:23] riddell: those are for the new plugin policy with firefox [15:23] frenchy: it's usually debian/tmp, though... [15:23] riddell: I should have a spec reference somewhere [15:26] mok0: I just realised that. For me it seems to be debian/me-tv. [15:27] frenchy: It depends on what exactly goes on when debian/rules does "make install" [15:28] riddell: here: https://blueprints.launchpad.net/ubuntu/+spec/firefox-distro-addon-support [15:28] Normally things are set up so that the upstream stuff stages into debian/tmp and then files are picked out of there into the debian/final-package dirs. [15:28] norsetto: interesting thanks. looks fine, accepted into multiverse [15:29] frenchy: you need to understand: the install process goes on in 2 stages. First, make installs everything in some temporary place, then, dh_install moves files to debian/ [15:29] riddell: thanks again! [15:29] mok0: That would've been anjuta. Is debian/me-tv ok? [15:29] frenchy: is that the name of one package being built? [15:30] mok0: Yes. [15:30] frenchy: .... how many subpackages? [15:30] mok0: None ... I think. [15:31] frenchy: look in controls file [15:32] whoa awn in Hardy :) [15:32] mok0: I should see 2 parts right, one for the source and one for the binary. [15:33] wait does hardy-changes show packages that are stuck in New? [15:33] frenchy: it "make install" installs the files in debian/, then you do not need to call dh_install [15:34] persia: btw, do you have any links to FDO documentation that the .png suffix should be dropped on icons? [15:35] jdong: Not handy. [15:35] persia: okay, never mind then [15:35] mok0: Ok ... the light bulb just went on. "dh_install moves files to debian/" [15:35] There was something on the wiki, but the last remnant is now written by me and deprecated, so not something for you to trust :) [15:36] frenchy: yes [15:36] frenchy: that's the only purpose of dh_install, but it is only needed if you want to separate the install tree into different binary packages [15:37] mok0: So me-tv.install is really only for debian specific files (i.e. menu) ... because everything else can go in the make install? [15:38] mok0: And your point ... of course. [15:38] frenchy: yes [15:39] mok0: Thanks. I'll give that a go. [15:39] frenchy: glad to help! [15:40] ahh - daylight savings.... damn [15:43] nealmcb: Move: not everywhere has that silly thing about changing clocks :) [15:43] persia: :-) [15:51] mok0: Yet another question, me-tv.install tells dh_install where to copy the files to, am I right? Then how does dh_install know where to copy the files from? [15:52] frenchy: no, me-tv.install tells dh_install where to copy the files FROM [15:53] <\sh> Fujitsu, did you see wordpress CVE-2007-6013? ;) [15:55] mok0: I do not doubt your greatness for a second ... but I read this from `man dh_install` "Files named debian/package.install list the files to install into each package and the directory they should be installed to" [15:55] mok0: And I assumed the opposite. [15:57] frenchy: yeah, that manpage is hard to interpret [15:58] frenchy: I don't think you need to use dh_install [15:58] Erm. Just a note, an install file may contain lines with two whitespace separated values, and both define from and to [15:58] persia: That where I was heading ... thanks. [15:59] frenchy: you should use the specialized dh_install* funcitons, like dh_installmenu [16:00] mok0: ohhhh ... I'm using cdbs ... so a lot of that is auto-magically. But I don't see a dh_install_* for a desktop file. [16:01] s/auto/done auto/ [16:02] There isn't one. .desktop files currently require an entry in debian/install. It's on the feature wishlist, but isn't likely to get deployed in Ubuntu until hardy+1 [16:02] frenchy: create a file called .menu with the name of the desktop file [16:02] frenchy: cdbs will then put it in the right place in the package build tree [16:03] mok0: awesome. [16:04] frenchy: yeah pretty cool [16:04] Um. No. debian/package.menu is supposed to be a debian menu file, and gets installed in /usr/share/menu. The ,desktop file belongs in /usr/share/applications [16:05] persia: you're right. My bad. [16:07] frenchy: I stand corrected. You _do_ need the .install file, with a space separated FROM TO line placing the desktop file ./usr/share/applications [16:08] (please also create debian/package.menu in menu format for users of desktop environments that aren't 100% freedesktop compliant [16:10] Thanks, I'll give that a go, now. [16:15] how can I tell cdbs to use make instead of make -c? [16:17] DaveMorri1: MAKE:=make [16:18] * jdong smacks himself for setting the wrong From: on his mails [16:18] heh I really need to have procmail handle my outgoing too [16:19] persia: didn't work [16:20] the autotools.mk file has this [16:20] DaveMorri1: Ought. I can't troubleshoot now, but $(MAKE) is likely getting set somewhere, and there's likely an override mechanism. [16:20] DEB_MAKE_INVOKE = $(DEB_MAKE_ENVVARS) $(MAKE) -C $(DEB_BUILDDIR) [16:20] so it doesn't look like it can be overridden [16:20] DaveMorri1: ...and probably shouldn't be... [16:20] DaveMorri1: Why don't you want to run make in the base package directory? [16:20] yeah, the package I have doesn't build with make -C but does with make [16:21] Here's the thing, right, I put the .desktop file in the top directory because it's not really debian specific ... is that right? [16:21] persia: not my build system [16:21] DaveMorri1: That's why debian/patches exists :) [16:22] persia: I don't really wanna patch the whole build system. It runs configure, creates a build dir, then calls make which moves into the build dir and builds it there [16:22] Depends on how you're shipping it. If you're shipping it as upstream, you should put it near your icons, and install it with your build system (not with debian/install). If you're shipping it as the packager, it7s considered good form to try to keep everything inside debian/ [16:23] build dir changes depending on arch and compiler :( [16:23] DaveMorri1: Then just override $(DEB_BUILDDIR) [16:25] k [16:25] thnaks [16:31] superm1: the license of libdvdcss2 was never an issue. it's rather what it does. [16:34] frenchy: some MOTUs don't like you putting stuff outside of debian/ [16:34] because it's a pain, yes. [16:36] Hobbsee: a pain to review, perhaps [16:36] pain to upgrade [16:36] you cant just nuke the debian dir. [16:36] and i'll bet it also does nasty things with patches back to debian [16:37] Hobbsee: Why would you want to nuke the debian dir? [16:37] to put it into the new source package? [16:37] for the newer version? [16:38] Hobbsee: You could just apply the diff to the new dir [16:38] <\sh> siretart, I tried to explain it on the ML :) [16:38] mok0: it's kinda hard to *find*, in with all the new upstream changes. [16:39] <\sh> siretart, btw...do you have time for mentoring me for debian maintainership? ,-) [16:39] but yes, if you wanted to diff out the old lot, then apply it to the new package, you probably could [16:39] just harder [16:39] <\sh> moins bddebian [16:40] <\sh> hmm...if everything works fine, one cve fix for debian will just arrive in debian-security... [16:40] Hobbsee: In general, your diff would just contain the debian/ dir, right? Plus a few files you've placed in the source [16:40] Heya gang [16:40] Hi \sh [16:40] Hobbsee: As long as the new version doesnt clash with that , you should be fien [16:40] mok0: yes, should do. [16:40] bddebian: salutations [16:41] Hobbsee: THat's a very broken way to handle new upstreams. You want to zcat ../foo.diff.gz | patch -p1 in that case. [16:41] persia: was thinking of uupdate [16:41] Hobbsee: If you're authoring a completely new autobuilds system, it's kinda akward to put it in as dpatches [16:41] Heya norsetto [16:41] I don't understand, what does a GNOME desktop file have to do with upgrading? [16:41] Hobbsee: Yep. Then too :) [16:41] You get a little fuzz, which you should fix, and debian/ [16:42] persia: sorry, which was is broken? moving the debian dir, or patching the source direct/ [16:42] <\sh> I don't know..but pushing files into upstream source tree is not what a package maintainer want... [16:42] frenchy: when a new upstream version appears, you want to move your desktop file along with your debian dir [16:42] <\sh> that's why debian and redhat are maintaining the additions and patches inside their build system [16:43] Hobbsee: expecting to move or nuke debian/ and have it do the right thing. Because debian/rules clean gets called when building a package, it's not infrequent to have unexpected variation in diff.gz [16:43] mok0: frenchy is upstream :) [16:43] <\sh> and inline patching a .desktop file...well, I don't find it a really cool location..most likely it's even more distro specific [16:43] mok0: Ohhh ... yeah when upstream isn't maintaining the desktop file. [16:43] persia: granted. [16:44] If the maintainers are "maintaining" the desktop file then it's a diff right? [16:44] * persia finally sends the email with the review procedures for doing it the right way and plans to update the recipes & instructions later [16:44] persia: so can i skip to reading your mail, and delete the rest? [16:45] <\sh> frenchy, package maintainers who are adding a .desktop file, this will be represented in the .diff.gz, yes. upstream maintainers have to do it in their source tree [16:45] Hobbsee: Err.. "Doing new upstream reviews properly". Other email may be useful for other values of it. [16:45] \sh: I'm the latter,right? [16:45] * persia notes that when the package maintainer is the upstream maintainer, it's vastly preferred that the .desktop file be an upstream file. [16:46] \sh: so you are saying that it should go in the top directory? [16:47] <\sh> frenchy, when you are upstream maintainer, you should maintain the .desktop file in your source tree, yes...and put it into your normal make dist resulting tar.gz [16:48] * persia sleeps [16:50] \sh: mok0: mok0 said "some MOTUs don't like you putting stuff outside of debian/". We now agree that this is a unnecessary restriction for a MOTU to place on me? [16:50] brb [16:50] Damn, just missed him. [16:51] \sh: I think we see eye-to-eye here. I was really just trying to get a confirmation out of mok0. [16:52] <\sh> frenchy, if you want to be sure, that you want to have a .desktop file with your stuff in, provide it in the upstream tarball...no package maintainer will touch your upstream tarball...they are only patching stuff in and out which will be represented in a patch file [16:53] <\sh> frenchy, most package maintainer are so kind and sending bugreports with their changes to you (reading upstream developer) and you can decide which patches you want to apply and which not. [16:54] <\sh> frenchy, so, when you want to have a .desktop file distributed with your source tarball, include it in your VCS (aka cvs, svn, bzr whatever) , but [16:54] <\sh> frenchy, if you want a .desktop file only for ubuntu or debian, put it into the debian/ dir and install it manually in debian/rules... [16:54] \sh: all makes perfect sense to me. [16:58] <\sh> frenchy, normally, an upstream developer shouldn't deal with distro packaging...so no upstream developer should ship debian, redhat or build specific sources with their source tarball...but that's just me [16:58] <\sh> ok....time to go home [16:58] <\sh> cu later === \sh is now known as \sh_away === cprov-lunch is now known as cprov [17:17] * RainCT waves [17:19] Heya RainCT === asac_ is now known as asac === pgquiles_ is now known as pgquiles [17:25] frenchy: I didn't realize you were upstream. [17:25] Hi bddebian [17:25] hey bddebian [17:26] bddebian: I was looking for you [17:26] :) [17:28] Heya geser, huats [17:28] huats: Uh oh, what'd I do now? :-) [17:28] bddebian: no big deal [17:29] I was wondering if you were taking care of the merge of balsa, or can I have a look [17:29] huats: Ah, go for it, thanks [17:29] (I am asking you since you are marked as the last uploaders....) [17:29] bddebian: ok [17:29] great [17:30] I might ask you a few stuffs may be... [17:30] but I'll try to do my best by myself :) [17:30] Cool [17:30] bddebian: thanks === LaserRock is now known as LaserJock [17:33] Heh, I like LaserRock better ;-P === apachelogger_ is now known as apachelogger__ [18:03] huats: ping. Available for some more testing? [18:05] hi [18:05] bddebian: you liked him better? [18:07] Let say i am developer of network application and would like to get it into universe. I am little confused what should I do. [18:07] jariq, is it opensource? [18:07] yes [18:07] gpl [18:08] LaserJock: Yeah, bring him back will ya? ;-P [18:09] Hi all! [18:10] jariq, you'll need to package it etc. (and follow the instructions on the wiki). Do you have a url to the website? [18:11] LaserJock: http://stompbox.typepad.com/blog/2007/11/mantha-on-the-m.html [18:12] jariq: well you can go two routes, you can just publish a source tarbal and rope a current MOTU or MOTU hopefull into packaging it for you ( the quickest ) or learn to make debian packages yourself and go that way ( the best long term ) [18:13] if you choose the latter then !packageguide will help you [18:13] !packageguide [18:13] The packaging guide is at http://doc.ubuntu.com/ubuntu/packagingguide/C/index.html - See https://wiki.ubuntu.com/MOTU/Packages/New for information on getting a package integrated into Ubuntu - Other developer resources are at https://wiki.ubuntu.com/DeveloperResources - See also !backports [18:13] if the former, then get to know your fellow MOTU :) === jussio1 is now known as jussi01 [18:14] if i create a package myself [18:14] what will happen then [18:14] then it should be submitted to REVU and current MOTU will review it for QA and upload it [18:15] REVU == http://revu.ubuntuwire.com [18:15] so the first route is quicker [18:15] right [18:15] because motu does the package [18:15] first is quicker, but the second is better longer term [18:15] how long after a build succeeds in Hardy before the buildd's will pick up the new package? [18:15] and the second [18:16] if i make a package upload it to revu [18:16] jdong: you mean publish the new package? umm 1 hour 2 minutes iirc start to finish [18:16] someone will approve it [18:16] imbrandon: I mean for build-depends: foo-dev to pick up the new foo-dev for future builds [18:16] then it will get to universe? [18:16] if you upload a package to revu it largely depends on the time of day and time of week, early on mondays normaly goes within minutes, other times can be daysw [18:17] warp10: do you have an italian desktop? [18:17] jdong: whenever its published it should [18:17] imbrandon: ok, thanks [18:17] norsetto: I do! How can I help you? [18:18] jariq: the "best" way if you go the revu route is once uploaded , copy and paste the url to the upload in here asn kindly ask for MOTU review [18:18] alot of times you can get soem feedback realtime that way [18:18] imbrandon> great [18:18] warp10: could you check bug 160152? You just need to install tagtool from gutsy-proposed and see if it is in italian [18:18] Launchpad bug 160152 in tagtool "[Gutsy] Tagtool without icon and in english only" [Medium,Fix committed] https://launchpad.net/bugs/160152 [18:18] imbrandon> and what about updates [18:19] jariq: updates to the package once pubished in the archive can be made with a simple diff file attached to a bug by you oor someone else [18:19] warp10: don't start tagging your 2454327011 illegal mp3 though .... [18:20] norsetto: I just read your email on MOTU ML, I was yet thinking to check your tool. :) [18:20] norsetto: sorry, I only have illegal .ogg :P [18:20] warp10: jokes aside, if you can test it it would be cool [18:21] imbrandon> so any other updates will be done by submiting diff on launchpad? then some motu will apply the patch on package? [18:21] correct [18:21] norsetto: I'll do. Just the time to request a sync and I'll take a look [18:21] jariq: or you yourself could become a motu at somepoint, totaly upto you [18:21] but yea [18:21] imbrandon> but i dont have to [18:21] correct, you dont need to [18:21] by anymeans [18:22] warp10: take your time,just report your results to the bug report. thanks! [18:22] norsetto: you are welcome! :) [18:23] imbrandon> so i can be a maintainer of packege but do not have to be motu. Just need to get first package approved by motu and then just put patches to launchpad [18:23] yup [18:23] sounds like you got the jest of it [18:23] imbrandon> and what about new major release of my package [18:24] imbrandon> i will have to wait for next release of ubuntu ? [18:24] new versions ( not revisions ) normaly hit REVU again if they are large [18:24] depends on the time of the cycle the new version comes out [18:24] imbrandon: I think that's gist not jest ;-P [18:24] if its not durring a freeze no you dont have to wait [18:25] bddebian: prob :) [18:26] imbrandon> thanks a lot [18:26] np , feel free to poke me or any MOTU in here if you hit bumps along the way [18:27] we dont bite ( mostly ) [18:27] :) [18:28] so universe is some kind of "free" repository? can you add new packages for gutsy now? [18:28] or they have to wait for next release [18:29] jariq: Gutsy is frozen; your uploads would be to Hardy [18:29] jariq: however if your Hardy package builds in a gutsy environment too, it is eligible for backporting [18:29] ( witch is all taken care of on the backend ) [18:29] so it can get to backports [18:29] correct AFTER it hits hardy [18:30] thanks [18:30] now i know everything i needed [18:30] c ya [18:30] imbrandon: speaking of you being enslaved into a manual backport, would you have some spare time later on to sponsor a wengophone srcchange backport to Feisty? The debdiff looked trivial but I need to review it a bit more [18:31] jdong: possibly if you mean tonight ( as in this evening CST ) [18:31] Bug #164143 Is it normal such a long changelog or I made something wrong? o_0 [18:31] Launchpad bug 164143 in gwhois "Please sync gwhois 20071030 (universe) from Debian unstable (main)" [Undecided,New] https://launchpad.net/bugs/164143 [18:31] imbrandon: meh just sometime in the future, it's low on my list too [18:31] kk [18:33] warp10: yeah that's too long, you only need changelog entries since las Ubuntu release, 20070408ubuntu1 [18:34] jdong: well, really I used requestsync. Is there a way to cut it using this tool? [18:35] good question, I'm not sure [18:35] warp10: no.. you need to edit description on launchpad [18:35] and remove them manually [18:35] Kmos: Ok. I'll do. Thanks! [18:40] norsetto: sorry, but I see tagtool in english :( [18:40] warp10: ok, what version is that? [18:41] norsetto: 0.12.3-2 [18:42] warp10: right, you need to add the gutsy-proposed repository in /etc/apt/sources.list and upgrade then [18:42] norsetto: It was enabled yet, and I did an apt-get update before installing it === nuu is now known as nu === nu is now known as nuu [18:43] warp10: ok, but the version of the package should be 0.12.3-2ubuntu0.1 then? [18:43] norsetto: maybe it just need some more time to build? [18:44] warp10: let me check [18:47] warp10: thats interesting, I don't find it in gutsy-proposed ...... [18:49] wow... [18:54] what's the difference between gutsy-proposed and gutsy-backports? [18:55] proposed are often incomplete and broken versions [18:55] for testing ONLY [18:56] before it goes to -updates ( more revisions later normaly ) [18:57] ok [19:03] I am working on a merge and the new Debian version has some patches and some of these patches have +x permissions, which creates some debuild errors. should make these patches non-executable? [19:07] how can I generate a debdiff only from the debian/ dir? [19:13] only make changes to the debian/ dir ? [19:13] heh [19:26] Yet another odd situation === \sh_away is now known as \sh [19:28] <\sh> re [19:28] so i was working on this package come to find out that sombody was already working on it in debian [19:29] so got in touch with the Debian Maintianer [19:30] enjoy working with him but... his sponser different matter [19:32] like this guy hasn't responed to emails whats us to maintian an unstable old and real crudy upstream [19:33] remove lintain overrides that *need* to be there [19:34] ie binary without manpage when you can't call that binary directly [19:35] and i don't want the Ubuntu version to suck so what can i do [19:36] can i package a higher upstream and not have it killed on sync [19:38] or do i have to wait for the sync and then move to package the upstream [19:40] because gotta tell you i don't want to be fixing inspircd 1.1.8 for the 5 years [19:44] CyberMatt: sorry, I missed the beginning, what is the problem? [19:45] <\sh> CyberMatt, you are allowed to package new upstream versions, yes...and it won't be killed by a sync when it has a ubuntu version tag [19:45] ok [19:46] * \sh has no clue what inspircd is anyways [19:46] \sh: wait, is he afraid that a debian package will come and override his package? [19:46] <\sh> if it's a irc server, hell, someone has to security bug fixes [19:46] <\sh> norsetto, yepp [19:47] we are going to try to persude this sponser to let us go ahead with the latest upstream which i am 90% done packaging [19:47] \sh: well, but then he is right, if a new debian version will come it will override his package (unless he manages to have his package in debian that is) [19:48] <\sh> norsetto, nope...it won't be synced automatically when it has an ubuntu version tag ... he doesn't want to work with the debian maintainer as far I could understand...so he wants to package for ubuntu a new upstream version (-0ubuntu1) ,-) [19:49] \sh: thats right, not automatically, but manually .... [19:49] but if we don't hear from him by chirstmas I'm gonna do a revu upload [19:50] <\sh> CyberMatt, why don't you package a new upstream and send the source package to the bts and ask him to take it [19:50] I'm alright working with the DM [19:50] <\sh> CyberMatt, so what's the problem? [19:50] but his sponser is causing problems for us [19:51] * norsetto -> dinner [19:51] <\sh> CyberMatt, find another one? [19:51] the DM aggres with me somewhat [19:56] just wanted to know what my options were [20:11] Hi, I can't found the page about quilt into the packaging guide ? [20:12] maybe I've dreamed about it :) [20:12] here https://wiki.ubuntu.com/MOTU/School/PatchingSources [20:12] :) [20:14] proppy: quilt is at the very bottom of that page [20:16] yep [20:16] just found it [20:21] proppy: have I done libcpptest how you where saying? http://revu.tauware.de/details.py?package=cpptest [20:23] DaveMorris: It was just a suggestion feel free to get other advice about this [20:24] yeah, I agreed with what you said though. Others don't and I'm not sure which route would be best [20:24] DaveMorris: but yes that was what I was talking about [20:25] are you a motu? [20:25] DaveMorris: no [20:25] DaveMorris: and not really close to be one :) [20:25] DaveMorris: the best shot will be to look a another c++ unittest package in debian (not mine) [20:26] if there is one [20:26] proppy: you need to fix the copyright in yours btw [20:27] in 1.3.0-3 ? [20:27] the gutsy one [20:28] DaveMorris: http://packages.debian.org/libcunit1 [20:28] debian/copyright ? [20:28] it needs a preamblee in it I'm told, and someone showed me bug about it [20:28] yeah debain/copyright [20:29] let me look [20:29] I thought it had a correct preample [20:29] you mean a bug report against unittest++ [20:30] DaveMorris: btw unittest++ is not synced from unstable yet [20:30] DaveMorris: gutsy version is outdated [20:31] http://paste.ubuntu.com/2115/ [20:32] I thought this was correct [20:32] ah, I based my package to begin with on the gutsy version and got told that my debain/copyright was wrong I pointed them to cppunit deebian/copyright (gutsy) and they said it was also wrong and that a bug had been filled [20:32] This package was debianized by Johan Euphrosine (proppy) on to It was downloaded from http://sourceforge.net/projects/unittest-cpp/ [20:32] isn't it the preamble ? [20:33] DaveMorris: did you recall the bug number [20:33] DaveMorris: you should take a look at the 1.3.0-1 version [20:33] trying to find it now, but my laptop is veery slow [20:33] DaveMorris: if you need it's a bit cleaner [20:34] DaveMorris: so does mine :) [20:40] evening all [20:40] anyone know if there is a grapical client to bzr? [20:40] can a motu comment/ack http://revu.tauware.de/details.py?package=lightning-sunbird [20:41] jussi01: olive [20:41] jussi01: olive [20:41] !info olive [20:41] Package olive does not exist in gutsy [20:41] !info bzr-gtk [20:41] !info bzr-gtk [20:41] bzr-gtk: provides graphical interfaces to Bazaar (bzr) version control. In component universe, is optional. Version 0.90.0-1 (gutsy), package size 142 kB, installed size 1004 kB [20:41] hehe :) [20:41] there's an echo around here somewhere [20:41] * jussi01 wonders if there is a qt app... ;) [20:42] people use qt? [20:42] hehe :) [20:43] jussi01: nope atleast not in repos [20:43] gnomefreak: ok, thanks [20:43] ;) [20:43] what is the rebuild versioning for XubuntuY? [20:43] I know for -X from Debian we do -Xbuild1 [20:44] Xubuntu(Y+1) [20:44] prro [20:44] ajmitch: makes sense, thanks :) [20:44] proppy: Debian bug #437526 [20:44] Debian bug 437526 in libcppunit-dev "libcppunit-dev: old debian/copyright, upgrade to newest standard" [Minor,Open] http://bugs.debian.org/437526 [20:46] DaveMorris: it's cppunit not unittest++ [20:47] oh, sorry I though yours was cppunit, my mistake [20:48] * DaveMorris too many testing frameeworrks [20:49] :) [20:49] yep [20:49] and too "my framework is better than yours" when it comes to testing framework [20:50] reason I used cpptest was it was the 1st one I found and could get working when I coded up my projet [20:50] because they're really big project, people seems to think that implementing their own is better than tolerating another one [20:52] yep [20:52] DaveMorris: same with unittest++, I found it from a blog post, and figure out that there is quite a community around it [20:53] now to seee if my opensg packages builds on ppa [20:57] hi, I'm still looking for a sponsor for bug 163271. got asac's approval. [20:57] Launchpad bug 163271 in xulrunner "Please merge xulrunner 1.8.1.9-1 (universe) from Debian unstable (main)" [Undecided,Confirmed] https://launchpad.net/bugs/163271 [20:59] anyone ? :) [21:00] Ubulette: be a bit more patient and I'm sure someone will ;) [21:01] uboulette ou ubulette? [21:01] guess :) [21:02] ubulette: better not ;-) [21:03] ubulette: any reason for asac not to sponsor it himself? [21:03] he's on holidays [21:03] ubulette: 266 kb!? [21:03] and i'm always depending on him so a bit of change would be nice [21:04] yes [21:04] like most of moz apps [21:04] just filterdiff -x '*/99_conf*' to ease the review [21:05] oubliette? [21:05] lol [21:05] lol [21:07] Ubulette: have you finally decided where is the plugin dir for xulrunner? [21:08] norsetto, i'm on it for xulrunner 1.9 b1 just released a couple of hours ago. [21:09] here, the merge is about xulrunner 1.8.1.* (the firefox 2 branch) [21:09] (1.9 being the firefox 3.0 branch) [21:09] ubulette: yes, but it is still /usr/lib/xulrunner-addons/plugins/ or you changed it? [21:12] i'm not touching that part in xul 1.8, plugins and addons are not used shared by debian, and we're following debian for that branch [21:12] i'm going to change that in 1.9 for sure [21:13] debian will probably never follow === cprov is now known as cprov-away [21:14] why won't Debian follow? [21:14] \o/, presentation finished [21:15] now, back to the land of slackers :-) [21:16] norsetto: Regarding the .desktop files in ksimus, I think there is one describing the filetype, and I think I'll need to change it.. So, it might take a day until I upload a new diff... [21:16] jazzva: sure, take your time [21:16] slangasek, because of the way it is packaged now (ie almost the mozilla way). remember the soname vs GRE war? [21:16] (need to learn the new structure and stuff) [21:17] * \sh wonders when he can work on merges again...there is so much unfixed stuff [21:19] Ubulette: no? [21:20] Ubulette: sorry, I don't have the historical context here, but if there are reasons that Debian and Ubuntu are diverging radically on packaging I like to know about it [21:20] slangasek: hi! :) [21:20] Baby: moo [21:20] :)))) [21:21] nice to see u! :) [21:21] one reason just popped in .... [21:21] slangasek, to make a looong story short, debian rejected to mozilla way to install the xul toolkit (GRE) and went for changing the structure and soname everything, plus the unbranding thing [21:22] Ubulette: and for some reason, you believe that Mozilla's way is right? [21:23] it's not my choice only. it has been discussed a long time ago in #ubuntu-mozillateam === macd_ is now known as macd [21:26] well, the whole reason for having xulrunner as a separate package is so that it can be shared among other applications, which inherently requires a stable packaging interface (soname, etc); so I guess I'm missing something in regards to why the Debian changes are wrong [21:26] "GRE" isn't very googlable, so doesn't tell me what the differences are [21:27] * norsetto wonders about the point of having two xulrunners actually [21:27] the api changed a lot. there's no way to make xul apps for 1.8 and 1.9 work with only one xulrunner. We've tried [21:27] heh [21:29] ubulette: but apps which are now using 1.8 are planning to migrate to 1.9 or we will keep two forever? [21:29] well, by xul apps, i meant real xul applications and libmozemb apps [21:29] we feel it will take forever [21:29] oh dear [21:30] <\sh> why can't a browser be a simple browser...why it needs to embedded something like emacs [21:30] now you're confusing xulrunner with elrunner [21:32] maybe ubuntu will be able to drop xulrunner (1.8) at some point as most of the 1.8 apps are using firefox-dev anyway (which causes tons of crashes if you upgrade ff-dev without recompiling everything.. that's the whole point of GRE) [21:32] <\sh> slangasek, sometimes it sounds like that mozilla is reinventing emacs...but starting with a browser and not with a vi replacement ;) *meruns* [21:33] it's just a SDK here. we're working to make as many moz apps use it [21:33] Ubulette: uhm? what is it that's the whole point of GRE? [21:33] \sh: and look how well emacs turned out :-) [21:33] and there are lots of packages that use xulrunner, not firefox-dev [21:34] slangasek, really ? show me :) [21:34] Ubulette: grep-dctrl doesn't already show this? [21:34] <\sh> LaserJock, yeah, now it has a gtk UI ,-) [21:34] epiphany will be using xulrunner I think and hopefully yelp as well [21:34] we gotta get rid of the firefox dependence in everything :-) [21:35] ... ok, I take that back; apparently Ubuntu has diverged heavily from Debian and almost all packages that use xulrunner in Debian *are* using firefox in Ubuntu, wtf? [21:37] well, videolink uses xulrunner anyway [21:38] <\sh> LaserJock, do you know how deep the knowledge of motu documentation goes regarding patching, packaging and working with upstream VCS? [21:39] ubulette: is ecj really needed as a build-dep? [21:39] \sh: I would say not very much === ogra1 is now known as ogra [21:40] \sh: we have documentation on patches, and various bits I think, but as far as specifically dealing with upstream VCSs I don't know that we have much [21:40] <\sh> LaserJock, I wonder how I can start a session about security bugfixing when all the three main workflows are needed...I need to find a good example [21:42] <\sh> I really wonder if this bugfix is good as security fix...adding at least 2 new configuration settings to net-snmp is not a simple fix [21:43] <\sh> anyways it works [21:43] oh god an emacs browser [21:44] norsetto: it has been introduced by asac in the previous release, it ftbfsed in gutsy iirc. [21:44] warp10: if you want I can ack your gwhois merge [21:44] ubulette: well, it was replacing ecj-bootstrap byt theat is gone now, so I wonder if you still need it [21:45] Ubulette: s/byt theat/but that/ [21:45] warp10: s/merge/sync/ [21:45] geser: I asked to pitti, that is my mentor, but he looks rather busy, so I will be happy if you ack it :) [21:45] <\sh> CyberMatt, which would help me now a lot...switching between FF, emacs is sometimes ugly [21:47] warp10: ACKed [21:48] norsetto: totally OT but I get tiddlywiki works with a mercurial web server, this leads to a nice versioned wiki, http://mercurial.aminche.com/raw-file/tip/tiddly.html [21:48] geser: thank you so much! :) [21:48] * norsetto rolls his eyes [21:49] Is it ok to make changes to Makefile.am? I think I need to rename one .desktop to .xml and its name should be changed in Makefiles too... [21:50] norsetto: this one is for you http://mercurial.aminche.com/rev/dd4245b27320 [21:51] proppy: hehe you silly bugger [21:53] ubulette: is it correct to drop the xulrunner.install change? [21:54] norsetto, yes. [21:55] norsetto, hmm, wait [21:56] hold on, i have to check the alternative === tonyy is now known as tonyyarusso [22:02] <\sh> good night motus :) === \sh is now known as \sh_away [22:03] norsetto, good catch. it's still needed. do you want me to post a new debdiff ? [22:03] i have it ready [22:04] ubulette: well, yes, if you can check as well if ecj is needed [22:04] ubulette: all the rest seems ok [22:07] norsetto, for ecj, I need to rebuild everything in a clean env. providing it takes 1 h for xul alone and that i'm currently building ff3b1 and xul1.9b1, that's another hour. [22:08] ubulette: ok, how much mem is needed to build it? [22:09] mem ? no idea [22:10] 1G is ok for sure [22:11] hi folks! [22:11] ubulette: well, if 1 G is enough I can build it, but if there is disk thrashing than forget [22:11] norsetto, do you mean memory or disk ? [22:11] Hola nxvl [22:12] ubulette: 1 G or RAM [22:12] ubulette: 1 G of RAM even [22:12] ok, 1GB of RAM is enough [22:12] ubulette: good, upload your patch and I check if ecj is needed [22:13] 1GB is enough for a very patient person :) [22:14] ajmitch: patience or not, if I get disk thrashing I quit .... [22:15] ajmitch: building eclipse left a scab already on my pc === bueroman is now known as setanta [22:23] norsetto, debdiff posted. here is the diff with the previous debdiff: http://paste.ubuntu.com/2121/ [22:24] ubulette: ok, you like cryptic changelogs eh [22:24] compact, not cryptic [22:25] foo.{install,postinst,prerm} => this is a bashism :) [22:26] someone should consider backporting courier from hardy to gutsy. as the gutsy version doesn't work with ssl3. [22:29] norsetto: hey [22:29] * ajmitch mutters [22:29] time for me to work on some (reasonably urgent) security updates [22:29] I am trying to test again tagtool [22:29] huats_: ok, thats good :-) [22:30] huats_: check if the binaries have been built already though [22:30] but I cannot install it :( apparently I already have the latest version [22:30] oh that should be the pb,not yet available... [22:31] * jussi01 throws https://edge.launchpad.net/bzr-eclipse at ajmitch... [22:31] * ajmitch throws it out the open window [22:31] jono here comes the finger of god player :) [22:32] ajmitch: hehehehe... just mentioning it as you told me about olive... :) [22:32] * jussi01 ---> [22:32] bed [22:38] fdoving: is a backport request filed? [22:39] jdong: don't know, i just noticed this. need to fix my server first. [22:39] fdoving: yeah if you get a chance please file a backport request and I'll look into it [22:39] Morning all. [22:40] morning Fujitsu :) [22:40] morning Fujitsu [22:40] Hi jdong, huats_. [22:40] Hi Fujitsu [22:41] I should go take a nap [22:41] jdong: might be more suitable for an SRU, maybe, or does it matter for universe things? (reading UbuntuBackports wiki that bugfixes shouldn't be the sole purpose) [22:42] fdoving: hmm, is the fix trivial? [22:43] fdoving: if it looks SRU-able, then by all means that's the correct process [22:43] jdong: no, patching is not an option as far as i can tell. needs a full version upgrade. so probably not an option. [22:43] fdoving: ok, then let's deal with it as a backport [22:43] jdong: I am looking for you :) [22:44] norsetto told me to ask you about backports [22:44] :D [22:44] bug 164202 can someone confirm this? it is not a lot of work to reproduce [22:44] huats_: uh oh :) he left the moment you said that :D [22:44] * jdong is worried [22:44] no where is the bot [22:44] https://bugs.launchpad.net/baltix/+source/git-core/+bug/164202 [22:44] LordKow: disappeared [22:44] I have done a fix for hardy, and I am interested in doing a backport for gutsy [22:44] why is it in baltix grrr [22:44] such a bad dya [22:45] jdong: don't worry, he told me days before :D [22:45] huats_: what is the nature of the fix? [22:45] and what package [22:45] https://bugs.edge.launchpad.net/ubuntu/gutsy/+source/torbutton/+bug/137513 [22:45] it is easier [22:46] but I really like to do it by my self... since it is my first backport... but I would appreciate a little guidance :D [22:46] it is a firefox extension [22:46] huats_: you are still alive! [22:46] LordKow, ubotu will be back shortly. [22:46] k :) [22:46] ah god not if that happens more... [22:46] nxvl_work: yeah.... [22:47] my life is incomplete without ubotu [22:47] huats_: i haven't see you for some time in there [22:47] PriceChild: are you breaking irc again? [22:47] LordKow, just be patient and he'll be back sorry :) [22:47] huats_: where you a little disconect or was i? [22:47] nxvl_work: I was a "bit" overwhelmed by my work [22:47] huats_: ok, yeah, I'm reading the bug report right now [22:48] nxvl_work: I wasn't I think [22:48] nxvl_work: I still have to send the patch to the debian maintener :( [22:48] (I hope I can do that tomorrow...) [22:48] huats_: I agree with pkern's analysis that a SRU is unfeasible, so let's go the backports route [22:48] huats_: have you tested if the package builds in a Gutsy pbuilder? [22:48] jdong: I can sum up a little if you want [22:49] jdong: it was building, since I start working on it just before it was freeze... but I finished after the freeze... [22:49] so it should be building fine... [22:50] I can recreate a gutsy pbuilder to check out of course.... [22:50] huats_: ok the source is in hardy, lemme just abuse the Backports PPA for this ;-) [22:51] ;) [22:51] ppa will be great [22:51] huats_: mark Also Affects Project: gutsy-backports and invalidate the Gutsy ticket in the meantime, please [22:51] ubulette: ecj is not needed as an explicit dependency [22:52] huats_: it's ridiculously small so I'm gonna build it locally rather than deal with PPA buildlag ;-) [22:52] norsetto, javaxpcom is still built ? [22:53] jdong: ok [22:53] norsetto, did you open a bug for the xulrunner-addons path ? i don't remember [22:53] jdong: I change the bug to gutsy-backports and invalid the gutsy [22:53] Ubulette: yes, its in any case an implicit one, so, if you want to reduce your delta with debian you can remove it [22:53] huats_: thank you. I'm install-testing the backport in Gutsy at the moment [22:54] jdong: there is notthing I have to do ? [22:54] huats_: you are done :) I'll manage it from here [22:54] huats_: thanks for your help [22:54] Ubulette: what bug? I just need to know what I should use so that I can add xulrunner as an or-ed dependency [22:54] norsetto, did you try on hardy or gutsy ? [22:54] no use of sharkattack ? [22:54] jdong: you did everything :D [22:54] huats_: not now; I'm going to replace sharkattack with PPA :) [22:54] Ubulette: hardy [22:55] huats_: no, *you* did everything with your Hardy upload :) [22:55] huats_: sharkattack was nothing more than a web based pbuilder... I'm looking into a easy way to use PPA's to accomplish the same deed [22:55] norsetto: i'm fixing the xulrunner-addons path in 1.9b1 right now so if you have a bug id, i can put in changelog otherwise, nevermind. [22:55] jdong: be patient with him, he may even do a man page for you ... or two ..... [22:56] norsetto: hahaha [22:56] * jdong puts on evil face [22:58] huats_: ok, you are all set; on next archive day the backport will be queued :) [23:00] launchpad needs debdiff buttons :D [23:00] at least between successive revisions to same upstream ver [23:00] I guess those are interdiff buttons, but anyway :) [23:02] :-( [23:08] jdong: I've seen your post on the bug : Great ! [23:08] thanks a lot [23:09] so when merging a package from debian do i need to specify the upstream debian patches in the changelog too? [23:10] LordKow: no, only the ubuntu changes that need to be carried over [23:10] k [23:11] norsetto: the backport has been done.... thanks to jdong [23:12] (you know regarding the torbutton extension) [23:12] another question. if a merge requires modifying the source (not the debian stuff in debian\) um... do i need to create a patch for it? im confused because basically from what I understand is we go ahead and modify the source to fix conflicts (like the mom reports say along with all of the howtos), but they never mention anything about actually creating a patch for it [23:12] huats_: yes, I'm not yet that old to have such a short memory :-) [23:13] huats_: what torbutton extension ? [23:13] norsetto: of course not... but you do so many stuffs that you might not see what I am talking about [23:13] :) [23:13] norsetto: you know the one that deals with man pages :) [23:13] huats_: oh, THAT torbutton extension! [23:13] YES [23:14] huats_: right ... [23:14] norsetto, do you (really) need a 3rd debdiff for ecj or if I remove it in the next release that would be good enough ? [23:14] ubulette: I can do that, no problem [23:15] I can do it, no problem. I just fell it's not a big deal for this particular merge [23:15] norsetto: we weren't worried about you getting old, we were worried about you becoming a full backup of the LP bug database ;-) [23:16] :) [23:16] * norsetto still remembers when bugs had only 2 digits [23:18] ubulette: I'm not imposing anything, the choice is yours, on one side you minimise the delta with debian, on the other you have an explicit dependency, its your call [23:19] norsetto, then, I keep that for the next release for sure === soren_ is now known as soren [23:23] interesting patch to aufs. "#if 0//def CONFIG_VSERVER" im not quite sure what that is supposed to be... "#ifdef CONFIG_VSERVER" ? [23:27] meh i'll just rebuild this package starting with the latest debian base [23:28] if we didnt use apparmour it would be a sync [23:34] + * Fix kernel compilation due to Apparmour changes. (LP: #140735) <-- yay thanks for the patch name [23:35] good night everyone [23:35] norsetto: go to bed, at your age you should be slepping already [23:35] :D [23:35] ZZZZZZzzzzzzzzzzzzzz.................. [23:36] :) [23:36] huats_: one day you too will appreciate the power of the mid-afternoon nap ;-) [23:36] rrrgggg [23:36] I already like that too [23:36] but I can't do that at work [23:38] LordKow: I interpret "#if 0//def CONFIG_VSERVER" as: It used to be "#ifdef CONFIG_VSERVER", for now comment it out completely ("#if 0"). [23:38] hmm [23:38] huats_: :-P [23:38] norsetto: good morning my teacher. [23:39] see you all tomorrow [23:39] why wouldnt they just have commented out the 1 line embedded within the statement? :P [23:39] s1024kb: good night my alumn [23:39] oh i see, for info. [23:39] LordKow: http://patches.ubuntu.com/by-release/atomic/ubuntu/a/aufs/aufs_0+20070605-2ubuntu1.patch [23:39] yea im looking at it now [23:40] norsetto: is it too late if i ask you question now? or "tomorrow"? [23:40] s1024kb: shoot [23:40] this is definitely a package when it is better to not use MOM automerge and simply start with debian base and ubuntu-ize it from there [23:41] norsetto: so for the merged packages, how to upload? [23:42] s1024kb: did you check the bug report I mentioned to you? You should open another one for yappy, following that template [23:42] norsetto: okay, get it. thanks. [23:43] this package is really a mess [23:43] s1024kb: give me the bug number once ready and I'll check it out [23:43] LordKow: amen [23:44] debian decided to start putting their kernel patches in \patch instead of \debian\patches. There are some patches in debian\patches that are dups of what is in patch [23:44] i will leave aufs alone and maybe i'll complain upstream :) [23:44] LordKow: complaining upstream is always a good tactic [23:45] rm -R /tmp/merges/aufs :D [23:45] s1024kb: I'm off to bed, just send me an email with the bug number ok? [23:46] norsetto: okay my teacher. i will. :) [23:46] g'night all [23:47] i would rather not merge something like aufs anyways until the kernel team gets the new kernel out [23:47] according to debian it should compile against 2.6.23 which should work against 2.6.24. but for testing purposes it is another good reason to wait