[02:12] ugh [02:16] ok i'm pulling my hair out here , this ( http://imbrandon.pastebin.com/d7d1bdc64 ) fires if its null or "" but not "num" , am i just an idiot or what , seems always to reach the else if its "num" [02:19] imbrandon: this is Java? [02:19] imbrandon: getPage.equals('num') [02:20] java does string comparisons in a funny way [02:20] isnull might also be more robust (and maybe isempty? I don't remember) [02:21] it's been a long time (probably not long enough) since I touched java [02:25] yea java ( JSP ) on tomcat [02:26] ajmitch: java does comparisons in a funny way in general :) [02:26] == is pointer (reference) equality, Object.equals() is the equality most people think of... [02:26] unfortunately Java does allow two unique strings with same contents to be constructed even though strings are immutable types [02:27] ahh cool , thnaks guys [02:28] * imbrandon tries it [02:28] * imbrandon is converting some old old old php+mysql to java+mysql [02:29] imbrandon: your construction on line 6 also seems to beg SQL injection [02:29] I suspect it's that string comparison... [02:29] yea it will get cleaned up, i simplified it for pastebin [02:29] ok, just makin sure :) [02:30] try "" == "" and "num" == "num" and see what you get [02:30] imbrandon: I have to ask, why java for this? [02:30] haha, why not? (tm) [02:31] then try again with "".compareTo("") and "num".compareTo("num") [02:31] jdong: I'd expect that from you :) [02:32] or if you just want plain equality "".equals("") and "num".equals("num") [02:33] ajmitch: because we use java and c# mostly at work, so i picked the one i could run reliably on linux ( yes yes i know apache + libmono ) [02:33] yeah if those were your options I'd trust Java more at this point.... [02:34] most of our "old" stuff is php and its getting converted to java/jsp + WebSphereâ„¢ ( ugh, did i mention i hate WebSphere ) [02:34] think C here; and what happens if you do if("" == "") and if("num" == "num") ... you're doing pointer evaluation and the same is happening in Java [02:34] sladen: ahh [02:35] so should my "" and null also be .equals("") / .equals(null) ? [02:35] sladen: only thing confusing is most other high-level languages with an immutable string type automatically intern strings such that in this case pointer equality <==> content equality [02:35] hrm [02:35] imbrandon: comparing to another string should be with .equals [02:35] imbrandon: comparing to null can be either [02:36] ahh ok [02:38] one other strange thing i noticed too, maybe someoen can explain WHY , if ( getPage.equals("") || getPage == null ) <--- bombs on null , but reversed if ( getPage == null || getPage.equals("") ) works on both [02:38] however, in C, it'd have to be == [02:38] imbrandon: short circuit evaluation [02:39] huh? [02:39] imbrandon: in an or statement, the 2nd term is only evaluated if the first is false [02:39] imbrandon: so the 2nd version implies getpage != null when the getpage.equals is evaluated [02:39] but if its null .equals("") is false [02:39] imbrandon: null has no .equals [02:39] arg, ok [02:39] imbrandon: . dereferences null which is an exception [02:41] so you want: if (getPage == null || getPage.equals("") || getPage.equals("num")) [02:42] yup yup [02:43] killer thanks guys , i spent an hour on google pulling my hair out [02:43] lol [02:43] * ajmitch just looked up 'java string equality' to find it :) [02:43] null / "" / 0 , is so diffrent in diffrent langs [02:43] :) [02:43] but that's because I knew what to look for [02:44] * ajmitch is having *so* much fun trying to track down why a certain php page causes apache's memory usage to explode [02:44] heh [02:46] the last major conversion we did at work ( finished last week ) was ASP 3.x pages + MSSQL to JAVA/JSP + WebSphere + IBM Httpd + Oracle ( http://www.ford.ca ) now, THAT was fun fun fun [02:47] that query could be simplified if you have RLIKE "[0-9]*" [02:47] hrm not sure, its com.mysql.jdbc [02:47] * imbrandon looks [02:49] but you *so* want to validate/escape getPage before inserting it [02:49] hahah definately [02:49] actualy its on a read only copy of the db , but still good to validate [02:50] :) [02:50] s/good/necessary/ [02:51] ....something.php?getPage=;DROP+ALL;%23 [02:51] ....something.php?getPage=";DROP+ALL;%23 [02:52] ....something.php?getPage=";DROP+ALL;-- [02:52] ...something.jsp?.... :) [02:52] yer gotcha me there [02:52] readonly makes it much faster anyhow in production [02:52] just because it's on a read-only DB now, doesn't mean that it will be in the future, or that code won't be reusued by someone [02:52] true [03:02] Heya gang [03:07] hrm rlike seems WAY slow sladen [03:12] what about '^[0-9]' [03:12] otherwise, you're stuck with your faster, but less maintainable ten comparisions [03:14] no [03:14] oops (scrollback was on) [03:31] yea rlike '^[0-9] is much better === Amaranth_ is now known as Amaranth === Tweenaks is now known as Treenaks === LucidFox_ is now known as LucidFox [07:05] heya === asac_ is now known as asac [07:11] <\sh> moins [07:11] Hi \sh [07:14] heya \sh geser [07:15] Hi emgent [07:24] <\sh> btw...happy UDS starting day....I think the time is still 9am SHARP? ,-) [07:24] <\sh> emgent, you are in praque now? [07:25] yep [07:25] conference will be start at 9 am [07:25] <\sh> emgent, great :) and you met already some of the crazy people there? [07:25] now we are to wireless lan space :P [07:25] \sh: yes but my english sux [07:25] :) [07:26] <\sh> emgent, that will get better every day...try to speak german with ogra ;) [07:26] <\sh> emgent, and give ogra a hug from me :) [07:27] hahah ok :) [07:27] \sh: #ubuntu-devel-summit :) [07:30] <\sh> emgent, anyways...have a great time :) enjoy your stay and enjoy your "working holiday" ;) [07:31] emgent: you have now a occasion to improve your English :) [07:33] <\sh> geser, with all the germans there? I wonder, he'll improve his DEnglish ;) [07:34] geser: Engrish [07:34] :P [07:35] lol [07:38] <\sh> dear vmware developers, please make vmware esx virtual infrastructure client linux compatible...eventually only running via wine...but this situation now is doomed...and not usable === fta2 is now known as fta [08:17] <\sh> emgent, subscribe to the "ubuntu mobile, security for packages not in main" bof (16:15-17:10) if you haven't done already === Zenton_ is now known as Zenton [08:43] \sh: Do we actually subscribe to them somewhere? I can't see them anywhere on LP. [08:44] <\sh> wgrant, I thought via blueprint? [08:45] \sh: I can't see the blueprints anywhere. [08:45] <\sh> how nice [08:45] <\sh> how do they know now who is attending to those bofs [08:45] I'm not sure there's a close mapping between mooted blueprints and entries on LP. [08:46] \sh: Magic. [08:46] <\sh> looks like...Need a voip account now [08:46] So they look like blueprints with subscribers like they have been for every other recent UDS, but aren't? [08:48] Why are all the interesting sessions in the very early morning? [08:48] wgrant: Precisely. I've yet to encounter any rationale for name mappings (despite having my name somewhere) [08:48] They must always do that deliberately. [08:49] persia: I was thinking they might have polled Canonical people, but then I saw your name there which discounted that... [08:49] \sh: yes i saw :) [08:49] (very early morning local time, that is) [08:49] <\sh> wgrant, so everybody is concentrated..mostly after lunch people are getting tired ;) [08:49] \sh: That's after lunch Prague time. [08:49] wgrant: o/ [08:50] I got picked for a few too. Not sure how that worked. [08:50] Security, universe QA, bug stuff... All after lunch. === emgent is now known as emgent`UDS [08:50] <\sh> wgrant, yeah...seeing it now === emgent`UDS is now known as emgent [09:23] scottk: where are you? [09:23] Server Team [09:23] norsetto: [09:24] Scottk-uds: ok === Tweenaks is now known as Treenaks === _neversfelde is now known as neversfelde [12:04] siretart: ffmpeg in debian is build with --enable-gpl, right? [12:31] siretart, are you going to write this new grab-merge program? === elkbuntu is now known as elky [13:04] Hi [13:07] Hi Iulian [13:07] Hey mok0 [13:11] slomo: right. with a note in README.Debian about contacting the maintainers if this is a problem for you [13:11] mok0: depends on how the design ends up. I still have only rough sketches [13:12] siretart: cool! [13:12] siretart: If you need help, pls say [13:13] mok0: if you want to go ahead, get cracking! [13:13] siretart: you have it on bzr? [13:14] perhaps in ubuntu-dev-tools? [13:16] siretart: well, it's a potential problem with gst-ffmpeg... as it's a plugin and people might use it in the same process as gpl-incompatible plugins ;) (not that this isn't a problem with mad already...) [13:18] mok0: I'm not sure where to put it. ubuntu-dev-tools might be a good option [13:18] siretart: It's a mixed bag of stuff anyway [13:19] slomo: well, I don't think this is a potential, but rather a real problem. we probably should talk to ftpmaster about that [13:19] siretart: so, do you have any code, or just loose ideas? [13:19] siretart: I know, nasty question ;-) [13:20] siretart: iirc this depends on your GPL interpretation (breaks when linking or when loading in the same process?) [13:21] mok0: no code, as said, only rough sketches in my head [13:21] siretart: also, one could say it's the user's problem... because it's more or less his choice to use it or not and there are many scenarios where it can be used legally [13:22] slomo: not on my interpretation, but rather on ftpmaster's interpretation [13:23] siretart: well, the packages themselves are fine... it's the combination of several packages that causes problems and this combination is the user's choice (afaik there's no package that forces a combination of plugins whose licenses are invalid) [13:25] siretart: currently the only possible problem that comes to my mind is using gst-fluendo-mpegdemux and gst-ffmpeg in the same problem (MPL vs. GPL) and of course when users buy the fluendo codecs and use them [13:27] why is that a problem? surely the GPL is a distribution license, and you're free to "break" it if you're not distributing the result? [13:28] directhex: because different people have different interpretations... IMHO distributing the stuff is just fine because it's all seperate, problem appears when the user combines several parts [13:29] directhex: no [13:33] directhex: from article 5: " Therefore, by [13:33] modifying or distributing the Program (or any work based on the [13:33] Program), you indicate your acceptance of this License to do so, and [13:33] all its terms and conditions for copying, distributing or modifying [13:33] the Program or works based on it." [13:34] mok0, installing and executing the program is neither modifying nor distributing, though. that's precisely my point. the gpl covers distribution [13:34] directhex: and modifying, even if you don't distribute [13:35] directhex: in other words, if you modify, you must distribute [13:36] <\sh> mok0, if you modify, you need to make the source available...in what way, it's not mentioned or settled...you can also send the source on a cd for money [13:37] Only if you distribute binaries (or source). You can do whatever you like locally providing you don't give anyone else a copy of it. [13:37] broonie, that's what i'm arguing, but mok0 disagrees [13:37] \sh: so, if I make an ingenious modification to gcc that makes it run 100 times faster, I can distribute the source for a price of $1,000,000,000,000 ??? I don't think so [13:37] (/me is currently fighting a major unequivocal gpl violation, as it happens) [13:38] mok0: Of course - you can charge what you like for the source; you just can't stop anyone else exercising their GPL rights with the results. [13:38] <\sh> mok0, nope...but if you send out a cd in platin and gold and the production cost is 1Billion dollar, you could ;) [13:38] mok0, you can distribute the binaries for $1,000,000,000,000 as long as you include source, and that source can be redistributed by others for free [13:38] see also: RHEL [13:39] mok0: (assuming you really mean sell the source, and don't mean "fulfil GPL obligations for the binary") [13:39] broonie: I am arguing that you must provide the same right over the software that you yourself have [13:40] <\sh> the problem in general: "What is locally providing?" giving out binaries from one company to another, even if the companies are directly connected, you need to make the source public [13:40] <\sh> but inside one single company, you can do any source changes you want without publishing [13:40] slomo: btw, ffmpeg-free just built successfully in unstable [13:40] on powerpc, that is [13:41] mok0: Right, but this only takes effect when you distribute. [13:41] If you modify the source, you _must_ distribute your changes [13:41] <\sh> mok0, nope [13:41] Otherwise you can't let anyone use the binary [13:41] <\sh> mok0, if I change the source of a GPL licensed source, and never make it public...no need to publish [13:41] siretart: great, i'll upload new gst-ffmpeg to unstable soonish then [13:42] <\sh> mok0, who wants that? [13:42] mok0: Giving someone the binary to run is distribution. [13:42] <\sh> mok0, I change a server daemon source which is licensed GPL...it's only running on my server...no need to publish... [13:42] \sh: you can't install it for others to use [13:42] <\sh> mok0, I don't want that in special cases [13:43] <\sh> mok0, only when I make it available to other people (where other people == undefined and really difficult to decide)...I need to publish the source. [13:44] ... GPL-3 was introduced exactly to close the loopholes that imaginative companies have tried to rip-off the software authors [13:44] one of the specific targets of gpl v3 was to target systems where you can have "worthless source" [13:45] e.g. tivo - "here, have our source. it won't execute if you compile it, though, due to lack of crypto keys" [13:45] that's not the same thing as working on something yourself, and never sharing it. if i make a change to some libarry to test a theory, should i be publishing source, even if i never plan on using that personally-compiled binary ever again? [13:47] directhex: of course not, unless it is useful, and you let other people use it [13:47] directhex: you can also rip part of the library out and put it in your own code using the same license [13:51] slomo: yes, that would be great [13:54] mok0, which only becomes an issue of any description once you want to distribute said code. and now we're back to square 1 [13:55] mok0, the only room for doubt here is whether 2 libraries being loaded by the same app constitute a "derivative work", if their licenses aren't compatible [13:55] directhex: no, because you acquire a copy of the program, and the act of modifying the program means you accept the license [13:56] directhex: if the library is not LGPL'ed, you're in trouble. For example. readline is GPL, which means that any program using readline must be distributed under the same license. [13:57] huhu dholbach [13:57] hi sebner [13:59] mok0, and we're back onto this curious definition of "must". is the only way to develop in the presence of gpl software to point apache at your $HOME, just in case someone wants access to your source, because you "must distribute"? [14:00] directhex: don't be silly [14:00] mok0, and this STILL doesn't answer the question "is the ability for a gst app, using two libraries at the same time, with incompatible licenses, a distributor problem?" [14:01] directhex: Well, IANAL. If you really want to discuss this, go to gnu.misc.discuss [14:02] directhex: you may get an answer from RMS himself [14:04] mok0, slomo or siretart might want to, but they got bored of the discussion half an hour ago. i'm just explaining why i disagree with your view of the gst-ffmpeg situation [14:04] directhex: Sounds like you are looking for holes in the GPL and I can tell you with almost 100% certainty that there aren't any. Nobody forces you to use GPL'ed software [14:05] christ on a bike, where did THAT come from? [14:05] disagreeing with you does not mean i want a glorious new world order without freedom, it means i disagree with you [14:05] directhex: did I misunderstand? [14:06] directhex: no offense intended [14:07] i disagree with your assertion that "private", non-distributed apps must have the source published, even if you don't plan on sharing binaries. mostly because it says as much on http://www.gnu.org/licenses/gpl-faq.html#GPLRequireSourcePostedPublic [14:08] directhex: I agree, it's just a question whether "private, non-distributed apps" make sense [14:08] "You are free to make modifications and use them privately, without ever releasing them. This applies to organizations (including companies), too; an organization can make a modified version and use it internally without ever releasing it outside the organization." [14:08] i think that's reasonably clear [14:08] directhex: If you are the only person with access to the computer, then yes, but if you install the app on a multiuser system, then no [14:09] directhex: that quote is very surprising to me [14:09] mok0, ah, but there's one of the non-existent issues with gpl v2 - that's NOT how things are right now, and is being "abused" as a result - e.g. web services built on top of GPL code (but you're not 'distributing' any binaries, so it's 'okay') [14:10] hey, any sru member there? [14:10] mok0, now, if you disagree with gnu.org, that IS something to take up with gnu.misc.discuss ;) [14:10] directhex: :-) [14:10] mok0, see also: http://www.gnu.org/licenses/gpl-faq.html#UnreleasedMods [14:11] directhex: so what if I, a member of that organization, would _REALLY_ like to get my hands on the mods and install them at home?? [14:11] I'd like to know what's wrong with https://bugs.launchpad.net/bugs/222580... everything seemed ok but I never got a reply after submitting the debdiff [14:11] Launchpad bug 222580 in gnome-mastermind "GNOME Mastermind grid is shifted to the right with new cairo releases" [Undecided,New] [14:11] jdong: ping? [14:12] mok0, if you're distributing it from your company to you (as a private individual) then that's distribution, as per the license [14:12] mok0, i think. IANAL. [14:12] mok0, for an easier, clear-cut example of gpl violation, try http://lkml.org/lkml/2008/5/16/472 [14:15] * mok0 looks [14:16] directhex: yeah [14:16] STILL no reply from compro. [14:18] directhex: they will probably try to stall... Skype just gave in on their attempt to circumvent the GPL [14:18] Nobody has yet overturned the GPL [14:18] in a court of law [14:25] mok0, all the naysayers insist that it's not been "tested" in a court of law. [14:25] directhex: heh [14:26] mok0, the bit in brackets being (in the US, anyway, and only if you define 'tested' as 'ruled on by a judge, rather than dealt with by a settlement before ruling') [14:26] directhex: it's never been overturned [14:26] things would be MUCH worse for companies violating the GPL if it were overturned [14:26] directhex: Legally it's a no-brainer, I think. [14:27] since it goes from license violation to copyright violation, and the RIAA have taught us that every infraction is worth eleventy billion dollars [14:28] directhex: the license clearly says, nothing else than the license gives you the right to distribute [14:28] indeed. [14:28] so the mere _act_ of distributing shows you accept the license [14:28] I think if you look at SCO versus Novell decision, it pretty clearly establishes the validity of GPL. [14:28] also indeed [14:29] and further indeed [14:30] In my opinion, the GPL is extremely clever, and it gives the "little guy" the best protection of their copyright [14:31] Companies are only concerned if _their_ copyright is violated. They gladly violate others' [14:31] i'm still curious as to whether gpl violation can be tackled in the US via the DMCA. IANAL, but i get the feeling you can at least get any violatory stuff taken offline [14:31] DMCA? [14:32] Digital Millenum Copyright Act. [14:32] sounds evil [14:32] It is. [14:32] digital millennium copyright act. the overbearing copyright law people use to get things pulled offline (e.g. all the cool stuff removed from youtube). it's primarily used for dealing with "copyright violation" [14:32] like it's meant for the next 1000 years [14:33] Well, they have RIAA etc. we have the GPL [14:36] that's the thing. on the basis that rejecting the gpl means you have no right to distribute, then you're violating copyright by distributing outside the boundaries of the gpl. and on THAT basis, the company infringing on the copyright of the developer(s) of the gpl code can be attacked using the same anti-consumer laws as are used to attack people passing mp3s on bittorrent. as is my understanding of us law, anyway [14:41] directhex: So violating the GPL is like aiming a machinegun at your feet and pulling the trigger... [14:42] ... except no ordinary person can afford to sue for copyright infringement... [14:42] mok0: No. It is dropping granade on your feet and still hoping it won't blow your face [14:42] ha [14:42] mok0, if it goes to court, and the side which has been "damaged" has the money for legal representation. sure. [14:43] directhex: ... and most likely you'll run out of money while they're pulling all the legal tricks [14:43] or they just won't give a crap, e.g. uif they're somewhere like china [14:43] is there such thing as a "free trial" in the US? [14:43] ... or taiwan... [14:44] That will enable a poor person to carry on a trial against a wealthy corporation (or person)?? [14:46] mok0: For civil cases (like copyright violation) you can usually get a lawyer to take the case for a percentage of any eventual recovery. [14:47] s/usually/occasionally/ [14:47] ScottK, that means it is up to the lawyers? [14:47] if it's not an open and shut case, good luck [14:47] There is almost always a lawyer that'll do it. [14:48] Here you can apply for a "free process" either if you're empoverished, or if the case has a principal interest [14:48] Many lawyers make their entire careers on contigency cases. [14:48] There are some limited resources for that, but they are very limited. [14:49] I am guessing copyright violation would not qualify [14:49] Probably not (but contingency fees would work). [14:50] "If you're dumb enough to GIVE your code away, then you DESERVE to get screwed" :-) [14:52] OK, gotta go. See you guys later... [15:00] jdong: can you please look at bug 212468 asac and myself would prefer a backport of latest FF3 in Gutsy if you can let me know and ill do what i can to get it out [15:00] Launchpad bug 212468 in gutsy-backports "Backport Firefox 3.0 beta 5 from Hardy" [Undecided,Confirmed] https://launchpad.net/bugs/212468 [15:01] gnomefreak: firefox beta5 is in hardy!? [15:01] sebner: yes [15:01] gnomefreak: ah to gutsy [15:01] sebner: i didnt say hardy [15:01] gnomefreak: sry. missunderstood [15:01] its ok i figured you did :) === tb1 is now known as tbf [15:25] Heya gang [15:27] huhu bddebian [15:27] Hello sebner [15:31] 'ey bddebian [15:31] Hello Iulian === persia_ is now known as persia === LucidFox_ is now known as LucidFox === LucidFox is now known as Tealc === Tealc is now known as LucidFox === Czessi_ is now known as Czessi [16:30] Hi bddebian [16:30] Heya geser [16:37] sebner: nice work with sync requests :) [16:37] pochu: why? [16:38] sebner: because I'm ack'ing all of them ;) [16:38] pochu: I don't have that many. you just ACKed gmsh ;) [16:39] I think I acked more. look again at your mail :) [16:39] pochu: if you are ACKing I've reported some syncs :) [16:39] devfil: bugs? [16:39] pochu: haha. run run run [16:39] ah, wapiti [16:40] pochu: wapiti, vips and libgtk2-ex-podviewer-perl [16:40] wapiti is to ACK [16:41] pochu: just normal sync bugs, nothing special. or are you so nice to me because you know that today is my birthday ;) [16:41] pochu: but if you have time I've also 3 merges [16:41] devfil: na na na. there is a queue ;P [16:41] sebner: lol ok ok [16:42] sebner: oh, really? happy birthday! :) [16:42] pochu: thx :) now you have to review all my merges and syncs :P [16:43] sebner: Happy Birthday [16:43] heh [16:43] persia: thx ^^ [16:43] sebner: is your birthday? [16:43] devfil: yes [16:43] I should leave ^^ [16:43] huhu mok0 [16:43] -.- [16:44] sebner: then happy birthday! [16:44] devfil: also thanks to you :) [16:45] As of today I have legal access to pr0n, \o/ [16:45] sebner: loool [16:45] ^^ [16:45] sebner: you don't need to post an invalid born date [16:46] devfil: ^^ [16:47] sebner: you can go to prison too :P [16:47] pochu: damn! xD [16:48] pochu: lol [16:49] I want a scripts which automatically subscribes ubuntu-archive and unsubscribes u-u-s :) [16:49] pochu: bah, don't be lazy :P [16:49] that way I can increase my ACKs/minute :P [16:49] pochu: I am looking at this bug #196834. Maybe a simple command in rules should fix the bug. Do you think this is right? [16:49] Launchpad bug 196834 in wxwidgets2.8 "wxPython demo is not installing properly" [Low,Triaged] https://launchpad.net/bugs/196834 [16:49] +rate [16:49] pochu: And subscribes yourself, and adds ACK :) [16:49] right :) [16:50] persia: how is it in prague? [16:50] howdy! [16:50] pochu: ok, then I will try to fix it [16:51] devfil: what? I didn't say anything :) [16:51] looking at it [16:51] pochu: btw, isn't that the second time we don't manage to meet at UDS ? last time you didn't make it and this time I leave before you arrive :) [16:51] pochu: lol [16:51] stgraber: yeah :/ "A la tercera va la vencida" :) [16:52] If you know Spanish proverbs ;) [16:52] pochu: I heard that the sponsors queue is > 250. so go and increase your ACKs count :P [16:52] pochu: I don't :) [16:52] pochu: when did you arrive in Prague ? [16:53] stgraber: yesterday night [16:53] stgraber: did you leave yesterday? [16:53] pochu: I left Prague yesterday at 16:30 :) [16:53] sebner: and my karma :) [16:53] bah :( [16:53] pochu: karma hunter :P bah? [16:53] I was in the airport at 13h and arrive here at 22h or so... [16:54] pochu: why are you doing ubuntu work. go and walk around in prague or attend sessions :P [16:55] too bad I couldn't stay, I liked the hotel and conference rooms. Only problem is the price of food/drink in the area, you need to go to the city and find a local bar/restaurant to get something cheap [16:55] or go to McDonalds ;) [16:56] pochu: that's what the youth normally does ^^ [16:56] I didn't see a McDonalds around the hotel, the only one I saw was in the city (Muzeum metro station) [16:56] devfil: I think that's ok, could you attach a debdiff? [16:56] devfil: or maybe use dh_compress -X... [16:56] but then, just buy some local food :) [16:56] devfil: I haven't looked at the source though, just read the bug [16:56] stgraber: There's one about 1km away, but not closer. There are cheaper places coser. [16:57] persia: want a hamburger? :) [16:57] pochu: I too. Now I'm looking the source to try to fix it. I think debian/unpack_examples.sh should be dropped because it doesn't working at my fix will replace it [16:58] pochu: I don't eat that much meat all at once :) [16:59] pochu: i had one of them. [16:59] pochu: a sent email, and just kept changing the to field. [16:59] (or adding multiple to's) [17:00] Hobbsee: ah, indeed [17:00] Hobbsee: thanks for the tip :) [17:01] persia: there's fish hamburgers AFAIK :-) [17:03] persia: why are you listed on some sessions at http://people.ubuntu.com/~scott/uds-intrepid/2008-05-20/index.html? [17:03] pochu: Because they can't happen without me? [17:03] heh [17:04] but I mean, I thought that was tracked at blueprints.lp.net, but I haven't found blueprints for most sessions I've searched for [17:04] and for the one I found it, it didn't have any subscribers... [17:05] pochu: The mapping is broken for this session [17:05] * bluefoxicy stabs rhythmbox repeatedly for constantly deciding it should play any ipod plugged in, rather than whatever it was playing before [17:06] off. /me ---> birthdaydinner :) [17:15] so last sync is a merge :) https://bugs.edge.launchpad.net/~ubuntu-universe-sponsors?field.searchtext=sync [17:20] pochu: maybe I find an error: find $DESTDIR -name "*.gz" -exec gunzip {} \; GUNZIP??? [17:21] devfil: gunzip is valid [17:21] it's the opposite of gzip... [17:22] jdong: ok [17:22] jdong: I remembered gnuzip [17:23] gnuzip hasn't been a valid command for ages... [17:23] gunzip is gzip's unzip command [17:23] it's essentially gzip -d, as far as I know [17:24] jdong: ok, thanks for this infos :) [17:31] bluefoxicy: yeh, that's annoying :( [17:56] all syncs done! there's too many merges though, but that will have to wait :) [17:57] could anyone tell me in which ubuntu package can I find the manual pages for kernel development (i.e. those in section 9 of the man pages). In Debian they are in the linux-manual-(kernel-version) package, but there is no such equivalent package in Ubuntu [17:59] manpages-dev ? [17:59] Pici: for kernel development. [17:59] I think the wiki's got the best info on that [17:59] jdong: twas a guess [18:01] jdong: any section in particular in the wiki, or should I just search for it? [18:02] I never should have said that clint adam's blog was random. now it's just random numbers =( [18:02] dpm: I wish I knew off the top of my head, sorry. [18:03] ok, I'll search for it. Thanks for the pointer [18:10] geser: Do you have some time to review a package? [18:10] not right now, but perhaps later [18:13] geser: Ok. FYI ... bug 177158 [18:13] Launchpad bug 177158 in ubuntu "[needs-packaging] xml-commons-external" [Wishlist,New] https://launchpad.net/bugs/177158 [18:16] I guess you are better at packaging java apps than me :), but I can still look at it [18:19] geser: It is first attempt at packaging from scratch. :-) === fargiolas is now known as fargiolas|afk === nand_ is now known as nand === rockstar_ is now known as rockstar [20:10] ? is the maintainer of blender here [20:25] lf blender deb maintainer [20:26] leif: Maintainer: Ubuntu MOTU Developers [20:26] Original-Maintainer: Debian Blender Maintainers [20:26] you probably want to contact these mailing lists [20:26] ok is new to linux sorry [20:27] if you've got a real question, you can also ask it ;) [20:27] well better wait for those guys to test the new code for the new to get tested [20:31] sounds like you guys is kind of hard core programer :) [20:52] quick question, do we still only take gzipped upstream tarballs? [20:53] LaserJock: bye bye :( [20:53] hello to you to ;-) [20:53] LaserJock: afaik .orig.tar.gz is still the only accepted format [20:54] LaserJock: good luck with your studies [20:54] afaik only the data.tar in the debs can be bzip2 [20:54] what is a good ide to learn c++ in [20:54] it seems so odd [20:54] leif: vim? [20:54] ok thanx [20:54] sebner: thank you === chuck__ is now known as zul [21:05] is it possible to disable langpack.mk for a package using gnome.mk? [21:55] could someone please review merge #226988 [21:55] ? [21:55] https://bugs.launchpad.net/bugs/226988 [21:55] Launchpad bug 226988 in bygfoot "Please merge bygfoot 2.0.1-1 (universe) from debian unstable (main) " [Undecided,In progress] === azeem_ is now known as azeem === sebner_ is now known as sebner