/srv/irclogs.ubuntu.com/2008/05/10/#ubuntu-motu.txt

=== asac__ is now known as asac
=== gnomefre1k is now known as gnomefreak
=== RoAk is now known as RoAkSoAx
RoAkSoAxnixternal, around?00:51
=== pgquiles__ is now known as pgquiles
=== Martinp24 is now known as Martinp23
pochuJazzva: regarding autoreconf patches: yes, they tend to be huge, but you can make them smaller by running the same autoconf/automake/intltoolize... versions as upstream did01:02
pochuJazzva: but that's ok, thanks for the debdiff!01:02
Jazzvapochu: No problem... I noticed I missed one change - to add to lintian-overrides that it depends on quilt 0.40-1, lintian produces one warning for depending on -1.01:03
Jazzvapochu: So, I'll just add that and upload new patches... to reduce the upload, do you need diffs with or without .po files :)?01:04
pochuJazzva: can't you depend on 0.40?01:04
=== asac_ is now known as asac
pochuwithout the -101:04
pochuJazzva: and regarding the po changes from MoM... always remove them01:04
Jazzvapochu: It's introduced in debian, I know I saw a log why it has to depend on -101:05
pochuJazzva: ok, live it anyway, that's just a warning and we don't want to add more useless diff01:06
Jazzvapochu: Ok...01:06
Jazzvapochu: Tracker merge seems to be a lot easier ... just to remove some Debian deps we don't use (qdbm), and to check if we still need patches from debian/patches...01:08
pochuyup01:08
pochuJazzva: you will likely need all of them, as Debian has 0.6.6 too01:09
Jazzvapochu: Yep... Just checked. I'll do a testbuild and upload the diffs...01:12
pochuJazzva: wait, I'm reviewing it01:14
pochuJazzva: looks fine, just make the changelog entry a bit more verbose (mention what files you have removed, that we don't build a liferea-webkit package...)01:21
pochuJazzva: feel free to copy&paste from older changelog entries for the remaining changes if you want ;)01:21
pochuJazzva: but other than that the merge looks perfect, I'd sponsor it if I could :-)01:21
Jazzvapochu: Thanks :)... I'll prepare a new patch and subscribe sponsors.01:23
=== asac_ is now known as asac
Jazzvapochu: Uploading new debdiffs. I'll be off when it finishes, too tired.02:34
=== RoAk is now known as RoAkSoAx
=== evalles_ is now known as keffie_jayx
=== boomer` is now known as boomer
LaserJockanybody familiar with python conditionals about?05:48
persiaLaserJock: I'm not familar, but suspect that if you described your test problem, one of you, I, or some lurker might have the answer :)05:54
LaserJocksure05:56
LaserJockI'm wanting to do a pretty extended if statement05:57
LaserJockbasically something like:05:57
LaserJockif x == y && z == (q|r|s)05:57
x1250does that even work?06:00
persiaOK.  I think that's if(x==y){if(z=(q|r|s){...06:00
LaserJockx1250: no, that's why I'm asking06:00
LaserJock:-)06:00
LaserJockok, so x == y and z = ( q or r or s ) it seems to be ok with06:01
persiaAh.  Maybe you wanted || instead of | ?06:01
Amaranthif x == y and z in (q, r, s)06:01
x1250LaserJock: try #python, they answer fast ;-)06:01
LaserJockno, it doesn't like || or &&06:01
* persia retreats from python again, wishing it were slightly less prevalent06:02
LaserJockpersia: why?06:02
LaserJockAmaranth: actually, I want to do x == y and z != (q or r or s)06:03
x1250then use -> not in06:03
LaserJockAmaranth:  so you if x==y and z notin (q,r,s) work?06:03
persiaLaserJock: The syntax is un-C like.  Also, whitespace treatment may require bit-analysis, rather than visual analysis.06:03
LaserJockpersia: C-like syntax is a good thing?06:04
AmaranthLaserJock: if x == y and not z in (q, r, s)06:04
Amaranthi think that'll work06:04
x1250LaserJock: (q or r or s) will return true if anyone of them is true, or whatever value != false and != 0 any of the members would have06:04
x1250is that what you want?06:04
persiaLaserJock: I think so, but I've been reading C since around the first flight of the Space Shuttle Discovery06:05
LaserJockx1250: yeah06:05
LaserJockI want it to work if x == y and z != any of q,r,s06:06
x1250("text" or false or true") will be == "text"06:07
x1250(0 or false or True) will be == True06:07
LaserJockthese conditionals are one thing I just can't get the hang of in Python06:07
x1250the only case the result is false is when every member is false06:07
LaserJocksweet, Amaranth's recipe worked06:08
Amaranth:)06:08
LaserJockpersia: I'm getting somewhere http://laserjock.us/files/ubuntu/buglist.html06:14
persiaLaserJock: That's looking great!  Is it that just approved tasks, or nominations as well?  Also, is it possible to pull the descriptions?06:15
LaserJockpersia: I can pull pretty much anything now that I've hooked into python-launchpad-bugs06:15
LaserJockpersia: those are bugs that are subscribed to by MOTU SRU06:16
LaserJockI'm working now on how to get a list of tasks that haven't been targeted yet06:16
persiaInteresting.  That list would be the list of things that need review/action by the approval team, and there'd be another list of things that need review / approval by the wider stable developers team?06:17
LaserJockpersia: items that are "Fix Commited" have been accepted into  -proposed and need testing06:18
LaserJockitems that are "Confirmed" are ack'd by the SRU team06:18
LaserJockmaybe I should seperate out those lists06:19
persiaMight be nice to have a few lists: things that need testing, things that need review/approval of the proposed solution, and things that need someone to either prepare a proposed solution, or determine that it doesn't qualify for SRU.06:21
LaserJockyeah06:21
LaserJockactually, those are better categorizations than release06:22
LaserJockI'll put the release as a column06:22
persiaJust out of curiosity, what is the workflow to handle approvals?  To me there seem to be two approval stages: firstly whether a given issue meets the criteria for SRU, and secondly whether a given solution is acceptable for upload, (regression analysis, etc.).  Are both stages handled by the SRU team?06:24
jdong*cry* car shopping sucks....06:25
persiaThe reason I ask is that I wonder if it is possible to generate a list of pending updates that would benefit from someone preparing a patch.06:25
LaserJockpersia: well, first SRU approves the "worthyness" of it and makes sure things are following policy, then it gets uploaded to -proposed (verification-needed tag is added)06:28
LaserJockthen once it's been tested it gets a verification-done tag and gets moved to -updates06:28
persiaAh, so currently the SRU team determines both whether the bug is suitable for SRU and whether the patch is good at the same time?06:29
LaserJockbasically06:29
LaserJockwe don't do testing per se06:29
LaserJockbut make sure things are being done sanely06:29
persiaOh, sure, I wouldn't expect testing.06:29
LaserJockwe might say "that's too invasive", etc.06:29
LaserJockbut we expect the contributors and their sponsors to test before upload06:30
persiaSo the contributors end up responsible for determining what gets development attention for SRUs?  I'm just thinking it might be awkward for someone to determine that something should be updated, do all the work, and only at the end be advised that they ought have selected a different bug.06:31
LaserJockwell, we like people sub'ing SRU if they thing something should be an SRU06:31
LaserJockand work with us early on06:32
persiaOK.  So there are two cycles: first an approval for the class of bug, and then for the proposed patch?06:32
LaserJocksometimes06:32
LaserJockdepends on if the patch is already there06:32
LaserJockbut informally yes06:33
persiaLet's assume it's not.  If there is a patch, it falls back to the case where someone didn't get pre-approval, and may be advised they've wasted their time.06:33
LaserJockI'll say "looks good, work up the SRU", then once it's ready actually ack it06:33
LaserJockI think mostly we get to bugs and comment before people get all that far06:35
LaserJockI can't think of any cases where somebody got all the way to having a ready debdiff and I rejected it06:35
persiaHmm.  Well then, if it's not broke, no point fixing it :)  I think it still might be nice to have a supplementary list of all tasks nominated or approved for stable releases, but maybe only as a source for contributors to review when selecting candidates to bring to the SRU team.06:36
LaserJockhmm, yeah. I agree06:37
persiaMight get a little confused with security vs. SRU, but I'd think that would be obvious from the bug description, etc.06:38
LaserJockperhaps yeah06:43
AmaranthLaserJock: so was your question so you could do something like   not status in ("Incomplete", "Invalid", "Won't Fix") ?06:43
LaserJockI wouldn't mind having to go through some false positives06:43
LaserJockAmaranth: Invalid, Won't Fix, and Fix Released06:43
Amaranthah06:43
Amaranthclose enough :)06:43
LucidFoxDoes the ALSA device "default" in Hardy correspond to PulseAudio by default?06:45
TheMusoLucidFox: No.06:46
LucidFoxIs "pulse" present by default, then?06:46
TheMusoLucidFox: If you install Ubuntu/GNOME, yes.06:51
TheMusoLucidFox: But it can be disabled.06:51
LucidFoxah06:51
TheMusoLucidFox: However when pulse is playing audio, it accesses the audio hardware directly, so alsa apps won't work while pulse plays audio.06:51
LucidFoxyes, I know that06:51
LaserJockpersia: ok, so maybe I'll do two pages. One for potential SRUs and one for the tasks we're actively tracking06:52
LucidFoxI was patching an app that used "plughw:0,0" as the default audio device, and wondered whether to set the default to "default" or "pulse"06:52
persiaLaserJock: That seems sensible to me.  Perhaps for the former, it might make sense to coordinate with SWAT as a common list towards which to point people who want to work on the stable environments.06:52
LaserJockpersia: agreed06:53
TheMusoLucidFox: default.07:10
=== asac_ is now known as asac
gesergood morning07:47
=== asac_ is now known as asac
IulianG'morning08:49
LucidFoxIf I'm going to upload a NEW package from debian-multimedia.org that requires Ubuntu changes, do I need to submit it to REVU?09:53
LucidFoxI can't find mpeg4ip on REVU, for one...09:54
=== lool_ is now known as lool
=== amachu__ is now known as amachu
wgrantLucidFox: Quite old == latest release? Tracking SVN is foolish.10:37
wgrantWe have 1.0rc2 in Hardy, IIRC.10:39
LucidFoxyes10:39
wgrantThey say 1.0rc1 is old.10:39
LucidFoxWell, smplayer uses some features that aren't even in rc2 - I'll ask upstream which exactly10:44
wgrantIf mplayer actually made any vaguely useful releases..10:45
LucidFoxalso, how about shipping mplayer in Ubuntu with the compiz xv patch?10:49
LucidFoxthe one that enables use of the compiz video output plugin10:50
wgrantLucidFox: Wasn't that patch rejected violently by upstream?10:50
wgrantOr is there another one which is blessed?10:50
LucidFoxhmm, this was proposed as bug #12147610:52
ubottuLaunchpad bug 121476 in mplayer "Use Compiz' "video" plugin when available" [Wishlist,Won't fix] https://launchpad.net/bugs/12147610:52
LucidFoxthere was a new version of the patch posted after it was closed as Won't Fix, though10:54
wgrantDoesn't Xv work in Compiz on most cards these days?10:55
wgrantEven textured video should work on Intel soon, at list.10:55
wgrant*at least10:55
LucidFoxhmm10:55
LucidFox"There is an unofficial patch for mplayer/compiz (it'll never be official, it's more like a temporary and dirty hack)"10:55
LucidFoxlooks like that answers it10:55
wgrantYes.10:55
LaneyIs there a fix/workaround for the pbuilder libc6 issue yet?10:58
RAOFLucidFox: The compiz 'video' plugin is in some sort of perpetual limbo.  Davidr consistently threatens to do it again, correctly.  So nothing supports it, because it's kinda temporary.11:18
RAOFAlso, debhelper 7 is whack.11:19
persiaRAOF: Please define "whack"11:19
RAOFTwo line debian/rules kinda whack.11:20
RAOFLike CDBS, but it seems that doing advanced stuff doesn't require sacrifices to the four dark gods of chaos.11:20
persiaSimple.  Concise.  Readable.  Says "Nothing to see here.  Please move on." to people, and they look at the useful files.  Fewer irregular debian/rules hacks.11:21
RAOFYeah.  Whack is not necessarily indicative of disapproval.11:21
RAOFI'm just packaging Do for debian, and playing with dh and cli-common-dev 0.5.7.11:23
* Hobbsee waves11:35
geserHi Hobbsee11:42
bardyrwhat benefits does packaging programs as perl5.8, perl5.10 and making other packages depend on them instead of a meta package for perl and depends on the perl5.8 like the linux-image packages12:27
mok0bardyr: I am not a perl programmer, but I assume that new features were introduced in 5.1012:28
mok0another package making use of those features needs to depend on 5.1012:29
bardyrmok0, but then special packages can depend on certain version of perl12:30
mok0bardyr: yes12:30
bardyrmok0, im on intrepid and trying to install some perl depended programs but they all depend on 5.8 but its gone12:30
bardyrnow i need to manually change dependencies to 5.10 :/12:31
Hobbseewhich means they need to be updated, which may well require code changes12:31
Hobbseeor removed.12:31
mok0bardyr: or just >= 5.812:31
bardyrmok0, it has that, but it points to perl5.8 and it has been replaced with perl5.1012:32
mok0bardyr: there may be a virtual package perl, that depends on the "current" perl version for any given distribution12:34
pochuDo FTBFS bugs have a whitelist from motu-sru?13:24
sistpotyhi folks13:26
geserHi sistpoty13:26
sistpotyhi geser13:26
* sistpoty merges ghc6... just trying to rebuild itself with the merged version13:27
LucidFoxAnyone want any REVU packages reviewed?13:29
=== asac_ is now known as asac
slicerHm. Is there a way to get PPA to build the same source package for both hardy and gutsy?13:58
rexbronslicer: Look at the copy package option13:59
slicerrexbron: Ah, I must be blind :) Thank you.14:01
rexbronslicer: np14:06
sebneris there a difference between debhelper (>> 5) and debhelper (>> 5.0.0) ?14:08
rexbronsebner: I would guess that >>5.0.0 would be satisfied by 5.0.1 while >>5 would not14:09
Hobbseesarah@saturn:~% dpkg --compare-versions 5 lt 5.0.0 && echo true         11:09PM14:09
Hobbseetrue14:09
Hobbseeinteresting14:09
Hobbseesarah@saturn:~% dpkg --compare-versions 5 lt 5.0.1 && echo true         11:09PM14:10
Hobbseetrue14:10
Hobbseerexbron: both should be satisfied.14:10
Hobbseesebner: i don't really think so - there's no number in between 5 and 5.0.0 except for 5.014:10
Hobbseewhich all equates to the same thing, in real version #'s, anyway14:10
sebnerHobbsee: cool. thanks :)14:10
Mezwow. the debian NM process is complex14:13
bddebianHeya gang14:21
sistpotyhi bddebian14:23
emgentheya :D14:23
bddebianHi sistpoty, emgent14:24
LucidFoxHmm14:31
LucidFoxIn the orig.tar.gz for cairo-dock on REVU, various automake files in the root are symlinks to files in /usr/share/automake-1.1014:31
LucidFoxis this allowed?14:32
sistpotyLucidFox: hm... looks like a mistake from upstream to me, though (if it b-d on automake 1.10 it imho is ok *packaging* wise)14:34
sistpotyLucidFox: if it's gpl (or lgpl) however, the license file must not be a symlink though14:34
LucidFoxit isn't - only config.guess, depcomp, install-sh, all that stuff14:35
sistpotyok... packaging wise I guess it's ok, but the packager should really ask upstream to fix that (as it defeats the purpose of autoconf/automake actually)14:36
sistpotyanyone know if intrepid is currently safe? or are there any big issues?14:38
sistpoty(as I'm pondering dist-upgrading)14:38
=== x1250_ is now known as x1250
wgrantsistpoty: libxfonts1 is broken.14:42
wgrantBut downgrading that gets things working again, I believe.14:42
gesersistpoty: I've only a intrepid chroot for working on packages and a intrepid pbuilder. Both doesn't seem to be broken right now.14:43
sistpotyhm... apt tries to remove quite a bunch of important packages from me... (e.g. dia, exim4-daemon-heavy, svn-buildpackage)...14:52
sistpotyand kvirc! *g*14:52
sistpotyoh... apt changes the behaviour when puring old packages... strange14:53
sistpotypurging even14:53
gesermy intrepid chroot is only minimal (enough to work on packages). I'll upgrade my main system to intrepid around the first or second alpha.14:54
geserwhat did change during purging=14:55
geser?14:55
sistpotygeser: I'm entirely unsure actuallly... I've thought the packages I purged were entirely unrelated14:55
sistpotygeser: it changed from removing many packages to hold back a bunch of others14:55
sistpotyhowever I don't see a pattern yet for apt doing so14:56
sistpotyand now it upgraded some packages while purging only other ones... *strange*14:57
gesermay it be related to recommends?15:02
sistpotydo we have recommends by default now?15:04
sistpotyhm... there's at least nothing in apt-cache -i unmet for e.g. kvirc or exim *shrug*15:05
gesersistpoty: "* enable installation of recommends by default" [from the changelog entry for apt (0.7.14ubuntu1)]15:10
sebnersistpoty: don't hestiate to upgrade. it's never false to get rid of this kde stuff ^^ ;P15:12
sistpotygeser: ah, thanks15:14
sistpotysebner: :P15:14
gesersebner: luckily kernel-image got renamed to linux-image so you can do now: "apt-get --purge remove k*" :)15:16
sebnergeser: hrhr :)15:17
* sistpoty is bold and dist-upgrades *g*15:22
sistpotybug #228997 reported15:30
ubottuLaunchpad bug 228997 in apt "[intrepid] apt-get happily removes packages" [Undecided,New] https://launchpad.net/bugs/22899715:30
sebnersistpoty: nice comments xD15:35
sistpotyhm... I'm still puzzled. maybe the difference is that apt-get install will do an apt-get upgrade (vs. apt-get dist-upgrade) under the hood?15:36
=== emgent_ is now known as emgent
geseras sistpoty isn't swearing, either the upgrade went fine, or is still in progress or sistpoty is fighting to bring his box back to life :)15:59
* sistpoty is still upgrading (replacing packages right now)15:59
penperhi! I have a python app that depends on python-pygame. My app just contains python files with nothing to compile. Can anyone point me to the easiest way to make a .deb with my python files and the pygame dependency? Thanks :)16:06
pochupenper: https://wiki.ubuntu.com/PackagingGuide/Python16:07
pochupenper: that should guide you into making a deb package for a Python application16:07
penperpochu: perfect! Thanks16:08
sebnerpochu: wow. really great work by Michael Gliwinski for putting your session on the wiki page.16:30
pochuyeah he did a nice work16:33
LucidFoxHoly...!16:34
LucidFoxdh_make was updated just yesterday!16:34
sebnerLucidFox: that means?16:35
LucidFoxwell... it's been long time since the last update16:35
sebnerah. k16:37
RainCT_lol16:37
LucidFoxIt's somewhat ironic that dh_make only updated to debhelper 6 after debhelper 7 was released16:46
* sistpoty is off again... cya16:52
stgraberbtw, if some of you have some spare time can they have a look at : http://revu.tauware.de/details.py?package=emu805116:56
stgraberPierre Ferrari is one of my teachers, trying to learn packaging. It looks good to me but as I only do some packaging updates nowadays I probably missed a lot of things :)16:57
geserstgraber: I've only looked at the diff.gz yet, and at first I only see a very minor issue: move the Homepage field to the source stanza in debian/control16:59
geserstgraber: and the link to the GPL in debian/copyright should point to GPL-2 as GPL is a symlink to GPL-317:02
stgrabergeser: ah, right code is not GPL2 and higher. Thanks17:05
LucidFoxstgraber, geser> I also have doubts about Section: x1117:12
LucidFoxto be fair, the Debian section conventions are far from clear17:13
=== fta_ is now known as fta
geserLucidFox: as I can't find a better section and it has a gui, it could stay in x1117:16
LucidFoxmakes sense to me17:16
LucidFoxHoly cow... someone submitted a 9.1 MB debdiff for a new upstream release, including upstream changes17:17
LucidFoxuncompressed to boot17:17
LucidFoxactually... two people did it17:18
LucidFoxsebner, congratulations!17:25
sebnerLucidFox: ah.. thanks ^^17:25
gesersebner: congrats17:26
sebnergeser: thanks. :) ehm yes, you made it possible ^^17:26
LucidFoxI feel a little lost here, to be frank17:30
LucidFoxuniverse-contributors is a recently created team, how is it different from MOTU?17:31
sebnerLucidFox: I have no upload right ;)17:31
geserLucidFox: universe-contributors is like ubuntu-members but you don't have to go the CC but to the MC17:32
geserLucidFox: it grants ubuntu membership and is a step towards MOTU17:33
* persia notes that it's possible to be MOTU without being a universe-contributor, but most people will likely reach the threshold for universe-contributor before reaching the threshold for MOTU (lower technical requirements, same community requirements)17:33
LucidFoxah17:34
LucidFoxoh, hello blueyed_17:36
no0ticI reported a bug on kid3 debian package to add dh_icons on debian/rules and the mantainer forcibly merged this bug to an unsolved previous one (156 days old). Is this a sign she won't fix it again? Can we proceed with the merge?17:39
no0tichttp://bugs.debian.org/cgi-bin/bugreport.cgi?bug=48024617:40
ubottuno0tic: Error: Could not parse data returned by Debian: timed out17:40
no0ticmerged to http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=45452617:40
ubottuno0tic: Error: Could not parse data returned by Debian: timed out17:40
copprothere's a typo on a REVU page17:42
coppro"Please consider  submitting your package to Debian as well. The Utnubu team would be more than happy to help you to get started. "17:43
copproor is that intentional?17:43
jdaviescoppro: Utnubu is a team17:43
copprook17:43
jdaviescoppro: it's focused on getting Ubuntu packages into Debian17:44
LucidFoxcoppro> A largely defunct one, really17:44
pochusebner: congrats :)17:45
LucidFoxIf you can't find a sponsor otherwise, I suggest pitching packages to the Debian team that's involved in similar packages17:45
sebnerpochu: also thanks to you :)17:46
jdaviessebner: congrats!17:46
* RoAkSoAx hi all17:46
sebnerjdavies: thanks ^^17:46
RoAkSoAxsebner, congrats too (what for? hehexD :P)17:47
sebnerRoAkSoAx: xD. You remind me of me when I started contributing ^^17:47
RoAkSoAxsebner, looool17:48
warp10hey sebner, congrats! ;)17:48
sebnerwarp10: thanks. But I'm now contributing member and not president of the USA ^17:49
slytheringeser: Do you have time to take a look at merge for lucene2?17:49
LucidFoxWhere can I find debhelper 7 documentation? Other than "man dh" :)17:49
warp10sebner: How knows, maybe a day you will be the first MOTU-president...! :P17:49
sebnerwarp10: hrhr17:49
LucidFoxalso... why do I see so many debdiffs uploaded as text/html? (including yours, slytherin)17:50
slytherinLucidFox: I am filing a bug report about it right now. :-)17:50
LucidFoxheh17:51
* LucidFox can't wait for openjdk-6 to get into Debian finally17:52
geserslytherin: sure17:52
slytheringeser: As LucidFox has already mentioned, debdiff is shown in html format.:-( You will need to wget it.17:54
slytherinLucidFox: https://bugs.edge.launchpad.net/launchpad/+bug/22904017:54
ubottuLaunchpad bug 229040 in launchpad "debdiff shown as html" [Undecided,New]17:54
gesersebner: if you would told me two years ago, I will be a part of the MC I wouldn't believe you. Let's recheck in two years again.17:54
geserslytherin: I've changed the filetype of your debdiff from text/html to text/plain so I can review it in firefox17:55
slytheringeser: where did you find that option?17:55
slytherinahh, in edit attachment17:56
geserexactly17:56
LaneyI'm doing a merge, some of the previous Ubuntu patches just modified the source directly. Is it worth me refactoring these to use cdbs or similar, or should I just leave them?17:56
geserLaney: does the package use a patch management system (dpatch, quilt, etc)?17:57
Laneygeser: No, there is no debian/patches or anything17:57
LaneyActually, the Debian patches do it too. I guess it's not worth it, eh?17:58
geserthen leave them as they are as adding a patch system would increase the Ubuntu delta even more (unless there a many and/or big patches)17:59
Laneygeser: Right then, cheers17:59
slytherinwhat does this error mean - debian/rules:16: *** target file `build-indep' has both : and :: entries.  Stop.18:00
pochuslytherin: I think that's because you added a 'clean:' target and included a CDBS include which has 'clean::', so if that's the case, change your 'clean:' to 'clean::'18:01
geserslytherin: re lucene2: why got the patches 80 and 81 removed from 00list?18:01
pochuslytherin: err, the same but 's/clean/build-indep/g'18:02
slytheringeser: they were removed on debian side.18:02
slytherinpochu: thanks. There is a debhelper include which is not needed.18:02
sebnergeser: hmmm?18:07
geserslytherin: debian/patches/00list from the unmodified Debian package lists 80_prevent-downloading-data-files.dpatch and 81_prevent-network-access.dpatch18:12
slytheringeser: let me take a look18:13
geserslytherin: but these are different patches as the patches from the old Debian package with the number 80 and 8118:13
slytheringeser: Oh, Wait. These patches were included in Debian as fix for FTBFS. Remember 'no-internet-access-on-buildd' problem? We fixed it in different way.18:15
geserah, ok then18:15
NorthernLightsHello all18:17
geserslytherin: does the DTD fix replace also patch 80 (prevent downloading data files) or only patch 81?18:18
NorthernLightsWould someone have a look at my package "gtkvncviewer" on REVU? Its Debian version has been accepted by Debian mentors, so I believe it's not bad.18:18
slytheringeser: both. we patch the unit test to use local DTD.18:18
=== Lure_ is now known as Lure
geserslytherin: please document it better the next time you merge this package, that the ubuntu patch replaces the other two patches18:21
slytheringeser: Can you please wait. Looks like patch 80 should not be dropped. My bad. :-(18:22
geserslytherin: so I should readd patch 80 again?18:25
geserslytherin: no need to create a new debdiff just for that18:26
slytheringeser: Yes, if that is not much trouble to you. Otherwise I will add it and document things properly18:26
geserslytherin: no problem. it's probably easier than to start from fresh18:27
NorthernLightsBye all18:30
ScottKsebner: Congratulations.18:37
slytheringeser: I have reverted that changed and documented why patch 81 was removed. Should I delete old debdiff and upload new one or simply upload new one?18:37
sebnerScottK: oh. thanks :) Just hoping that I won't be thrown out of the team after the courier merge ^^18:37
RoAkSoAxsebner, lol... now i know.. you've been the first accepted as a u-u-c member18:38
sebnerRoAkSoAx: exactly :)18:39
no0ticScottK, did you follow the kid3 merging adventure two days ago?18:39
ScottKno0tic: No.  I've been offline the last few days.18:39
RoAkSoAxsebner, congrats then ;)18:39
sebnerRoAkSoAx: thanks thanks ^^18:39
no0ticScottK, may I bother you anyway? :)18:40
emberis there a simple way with debhelper to install a debian/desktop and debian/desktop.png or i have to link in install?18:40
ScottKno0tic: You can ask.  Not sure I'll have time to answer.18:40
embercongrats sebner !18:40
sebnerember: also thanks to you18:40
ScottKember: Isn't there a dh_desktop for that.18:41
no0ticScottK, I reported a bug on kid3 debian package to add dh_icons on debian/rules and the mantainer forcibly merged this bug to an unsolved previous one (156 days old) reported by DarkSun88 during hardy merging. Is this a sign she won't fix it again? Can we proceed with the merge?18:41
slytherinCan someone point me to some page that explains you-you-c?18:41
emberScottK yeah that registers the .desktop file18:41
emberand the png i link it on .install right?18:41
ScottKno0tic: What bug?18:42
sebnerslytherin: https://wiki.ubuntu.com/UbuntuDevelopers18:42
RoAkSoAxslytherin, https://launchpad.net/~universe-contributors18:42
ScottKNote that dh_icons is still somewhat controversial in Debian.  Some DDs favor the idea and some don't.18:42
no0ticScottK, http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=480246 was merged to http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=45452618:42
ubottuDebian bug 480246 in kid3 "kid3_1.0-1: Add dh_icons in debian/rules" [Normal,Open]18:43
ScottKno0tic:18:43
ScottKno0tic: Looking18:43
slytherinsebner: RoAkSoAx: thanks18:43
ScottKno0tic: Yes.  I'd say go ahead.18:44
geserslytherin: like you want18:44
ScottKno0tic: I don't think you needed to file your bug as it appears essentially the same as the existing bug.18:44
slytheringeser: I will simply upload the new one so you can compare it with old one if you want.18:45
no0ticScottK, ok, I'll file the merge wishlist bug on LP, thanks a lot18:46
ScottKno0tic: No problem.  Thanks for contributing and working to get Debian and Ubuntu in better sync.18:47
sebnerScottK: already looked at courier?18:50
ScottKsebner: I have not.  I just got back from being out of town.  I'll probably look at it tonight (I'm at -0400).18:51
sebnerScottK: ah ok. sry18:52
ScottKsebner: No problem.18:52
no0ticsince kid3 turned out to be a merge and not a sync I set this bug https://bugs.launchpad.net/bugs/227405 to invalid, is it ok?19:19
ubottuLaunchpad bug 227405 in kid3 "Please sync kid3 1.0-1 (universe) from Debian unstable (main)." [Wishlist,Invalid]19:19
slytheringeser: Done. Uploaded new debdiff.19:22
geserslytherin: Uploaded.19:30
ScottKno0tic: Just edit that bug to be a merge bug.  No need to start a new one.19:32
no0ticScottK, I hope not to miss another merge, but if it will happen I'll do that way19:33
ScottKno0tic: OK.19:33
nxvlis there something like an upload count?19:37
slytheringeser: Thanks. And since you have ack'ed my previous sync bugs, I would be glad if you also did it fro tomcat5.5 :-D19:47
=== emgent_ is now known as emgent
sommergeser: I was looking at merging bioperl and noticed you were the merge-o-matic, just wondering if it's cool if I take a crack at merging it?20:39
sebnerhuhu no0tic20:56
sebnerhuhu norsetto20:56
norsettoerr, yes, huhu 2u2 sebner20:56
sebner^^20:56
norsettosebner: so you made it eh? Bribing the MC with home-made sauchertorte proved to be a worthy tactic after all20:58
sebnernorsetto: hrhr. psst! don't reveal my top secret success plan ;)20:59
* norsetto didn't realise he wasn't quering :-O20:59
sebnernorsetto: xD xD xD21:00
sebnernorsetto: btw, filed the flightgear bug and reported the changes to debian. We'll see what happenes :)21:01
norsettosebner: I'm eagerly awaiting21:02
sebnernorsetto: ^^, why?21:03
norsettosebner: "We'll see what happenes :)"21:03
sebnernorsetto: well, if they accept our changes or not21:04
norsettosebner: yes, thats why I said that I'm curious to see it too21:04
sebnernorsetto: I thought that was just a joke because you are working on a lot of other packages ^^21:05
norsettosebner: do you think this guy (bug 228976) is upset?21:05
ubottuLaunchpad bug 228976 in xsensors "The Xsensors program STILL will not install and/or run under Hardy final release version" [Undecided,New] https://launchpad.net/bugs/22897621:05
sebnernorsetto: STILL, maybe a little bit =)21:06
norsettosebner: but we are very nice guys, so we will ask debian to update it to 0.60 (supposing the DM is still alive)21:06
sebnernorsetto: 0.6 fixes it? Not worth a SRU or? We are very nice guys, indeed ^^21:07
norsettosebner: there are very high chances it will, the version right now in hardy is from beg. 200621:08
sebnernorsetto: I see. bug 20686221:08
ubottuLaunchpad bug 206862 in xsensors "New upstream version (0.60) available" [Undecided,New] https://launchpad.net/bugs/20686221:08
norsettosebner: if it works in intrepid, we could backport it, but first we need to check21:09
crimsunhmm, unstable still has 0.50-121:09
sebnernorsetto: yep. do you want me to file a bug in debian BTS?21:09
norsettosebner: why not, check if there isn't one already, and if you really feel nice you can try to upgrade it yourself in the meantime, it will be a good exercise for you21:10
sebnernorsetto: well then I have to be pretty quickly. Today is the last the I will work for ubuntu for at least for one week. You know. final exams :)21:11
norsettosebner: there is a bug alreday btw: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=44653021:11
ubottuDebian bug 446530 in xsensors "xsensors: New upstream version (0.60) available" [Wishlist,Open]21:11
norsettoalreday !?21:11
sebnernorsetto: pretty old :\ what already?21:12
sebnersistpoty: thanks for the nice comment ^^21:13
norsettosebner: if this is true (bug 225362) this could be easily solved21:14
ubottuLaunchpad bug 225362 in xsensors "xsensor will not install and run correctly in Hardy final release" [Undecided,New] https://launchpad.net/bugs/22536221:14
sebnernorsetto: sry. doesn't understand what you mean now21:15
norsettosebner: check last comment of bug 22536221:15
ubottuLaunchpad bug 225362 in xsensors "xsensor will not install and run correctly in Hardy final release" [Undecided,New] https://launchpad.net/bugs/22536221:15
gesersommer: afaik nobody claimed it already, so you can have it21:15
sebnernorsetto: launcher = .desktop file?21:16
sommergeser: cool thanks, do I need to file a merge bug as mentioned here: https://wiki.ubuntu.com/UbuntuDevelopment/Merging ?21:17
norsettosebner: yes, but I wonder if this could not be solved via configure/rules21:17
sebnernorsetto: good question21:18
sommergeser: nm, since I'm not the previous maintainer I do :)21:18
norsettosebner: looks like this is hardcoded as /etc/sensors.conf21:21
sebnernorsetto: possible solution? just curious because I'm just doing a merge and then bye bye ubuntu for one week :)21:22
* sistpoty ponders if haskell-utils is safe to merge... as it will be quite rigid in regards to version numbers21:22
* sistpoty decides to at least wait for ghc6 being built :)21:23
norsettosebner: that last comment seems to be an hoax ....21:27
sebnernorsetto: -.- If you can wait for one week I'll try to update it21:28
sebnersistpoty: intrepid up and running?21:34
sistpotysebner: partly... bug #229079 and bug #229016 still prevent me from a full upgrade21:36
ubottuLaunchpad bug 229079 in libxfont "[intrepid]: broken" [High,Confirmed] https://launchpad.net/bugs/22907921:36
ubottuLaunchpad bug 229016 in system-config-printer-kde "missing conflicts" [High,New] https://launchpad.net/bugs/22901621:36
sebnersistpoty: what about upgrading excluding these two?21:37
* norsetto still has not updated to hardy even21:37
sebnernorsetto: good. it's not that stable ^^21:37
sistpotysebner: might be an idea21:37
sebnersistpoty: at least this is my plan ^^21:37
sistpoty(though I'm partially at new versions already *g*)21:38
sistpotysebner: also check, what apt will remove (the bug with the funny comments) ;)21:38
sebnersistpoty: yeah I know ^^. I also upgraded partly. It took me 10 minutes to realize that debuild is complaining that dh_clean can't be done because it need debhelper 7 whats only in intrepid -.-21:39
norsettoRainCT_: are you working on bug 225362 too? (meaning, is it the same as bug 206280)21:48
ubottuLaunchpad bug 225362 in xsensors "xsensor will not install and run correctly in Hardy final release" [Undecided,New] https://launchpad.net/bugs/22536221:48
ubottuLaunchpad bug 206280 in lm-sensors "[hardy] Error opening config file: /etc/sensors.conf" [Undecided,Confirmed] https://launchpad.net/bugs/20628021:48
* norsetto is now entering maintenance-mode21:54
gnomefreaknorsetto: its the weekend monday == maintainance-mode :)21:54
norsettognomefreak: I'm synced with LP unfortunately21:55
lagait's saturday night, some geeks are trying to get something done ;)21:55
gnomefreaknorsetto: sorry to hear that21:55
sistpotylaga: :P21:55
norsettognomefreak: not as much as I'm ;-)21:56
gnomefreaknorsetto: i forgot LP was going down :(21:57
tbielawayou all ever get the error where pdebuild will fail at: debsign: Can't find or can't read changes file /var/cache/pbuilder/result//bibus_1.4.2-1ubuntu1_amd64.changes!21:58
tbielawaexcept, insert your package name there.21:58
gnomefreakare PPA repos affected by LP gown down?21:59
LaserJockgnomefreak: I would think the actual repos would be still up22:00
LaserJockbut you won't be able to do soyuz bits22:00
gnomefreakLaserJock: thanks i was thinking that too but its db update22:00
LaserJocksure, but the archive is the archive22:00
LaserJockit should be technically independent of LP22:01
sistpotyLaserJock: so I'll be able to attach a debdiff? *g*22:01
gnomefreakthanks LaserJock :)22:01
LaserJockgnomefreak: I don't know for sure, we can try it :-)22:01
gnomefreakLaserJock: ill test as soon as i know for sure its down22:02
gnomefreakas of this moment they are working22:02
LaserJockLP is down right now for me22:02
gnomefreakok PPA are working than22:02
gnomefreakyay libc6 updates22:03
gnomefreakmaybe i will be going down with LP ;)22:03
sebnerLaserJock: yeah, they are updating it. And I was currently filing a bug -.-22:03
LaserJockdarn, that'll mean I can't work on my SRU script :(22:05
sebnerLaserJock: btw, gnustep maintainers answered and it's a sync now ;) But they also told me that they maybe remove edemapp because of troubles with gnustep upgrades22:05
LaserJocksebner: awesome, good work22:07
sebnerLaserJock: yeah fine that's a sync now but not that good if they remove it ^^22:07
LaserJockeither way really22:10
LaserJockI doubt much of anybody uses it22:10
LaserJockso if it's time to get rid of it then it's better overall for us22:10
sebnerLaserJock: ok :)22:11
RainCT_norsetto: I got a fix ready for Hardy but nobody uploaded it22:11
RainCT_norsetto: (lm-sensors is in main)22:12
norsettoRainCT_: yes, main is ... main22:12
norsettoRainCT_: so the new libsensors doesn't replace the old one22:12
norsettoRainCT_: I have bot sensor.conf and sensor3.conf in my hardy chroot, I guess thats because I upgraded22:13
RainCT_yes, I think the config file name changed22:15
tbielawaLaserJock: i got a version of bibus up on revu. looks like I fixed it making a native package this time22:15
RainCT_(I don't know the program, thought; actually I don't even remember what it is for :P)22:15
LaserJocktbielawa: ah excellent22:15
tbielawaLaserJock: it's summer break, time for the ubuntu hackery to begin22:16
gesertbielawa: good to hear that you managed to build a non-native package22:16
tbielawai guess changing a - to an _ changes a lot with debuild22:17
* gnomefreak is missing something :( LP going down made wiki go down?22:17
gnomefreakdamn22:18
gnomefreaki cant paste it22:18
LaserJocktbielawa: with Launchpad down I know what I can do with my time ;-)22:18
tbielawaLaserJock: w00t22:18
gnomefreakit says The authentication database is temporarily unavailable. Anonymous access only.22:19
LaserJockgnomefreak: yeah, wiki is authenticated via Launchpad22:19
gnomefreakLaserJock: thanks22:19
sistpotyhm... anyone with upload rights for main around, who'd like to sponsor me two packages?22:20
sistpoty(I can post debdiffs on a site that will work :P)22:21
LaserJocksistpoty: you're not Cre Dev?22:21
LaserJock*Core22:21
sistpotyLaserJock: no, I'm interested mainly in universe... so no reason for me to go for core-dev22:22
sistpoty(unless a package in main is fubar)22:22
LaserJockhuh, I thought you'd been a core dev forever22:23
LaserJocksistpoty: what packages?22:23
sistpotyLaserJock: I also didn't go for core-dev when being on MC, since I was the only motu back then (and I think MC back then should have been mainly for motus)22:23
sistpotyLaserJock: system-config-printer and system-config-printer-kde22:24
LaserJocksistpoty: make sense22:24
LaserJockI'm both MOTU and Core-Dev, I don't feel like it has to be one or the other22:25
norsettohmmmm, can you be a core-dev and not a MOTU?22:25
LaserJocknorsetto: not technically, but socially very much so22:25
norsettoLaserJock: we love you even if you are a core-dev ;-)22:26
LaserJockhah22:26
tbielawa*hug to LaserJock*22:26
sistpotyhm... I at least couldn't describe *why* I'd be a core-dev... fixing up the bad things in main that are left behind doesn't make a good impression for an application imho :P22:26
norsettosistpoty: lol22:26
LaserJocksistpoty: oh, I don't know22:27
LaserJocksistpoty: well, get me debdiffs and I'll have a look22:27
LaserJockI'm upgrading my intrepid chroot now22:27
geserit depends if you count the indirect membership of ~ubuntu-core-dev in ~motu as being MOTU or not22:29
=== tbielawa is now known as tbielawa_dinner
sistpotyLaserJock: thanks... first one is http://www.potyra.de/s-c-p-kde.debdiff22:30
LaserJockgeser: isn't the relationship via ~ubuntu-dev ?22:30
sistpotyLaserJock: second one is http://www.potyra.de/s-c-p.debdiff22:31
sistpoty(I didn't report the remaining lintian warnings about system-config-printer yet, before lp went down)22:33
geserLaserJock: I don't remember exactly and can't currently look it up but you could be right22:35
sistpotygeser, LaserJock: afair it's core-dev -> ubuntu-dev and motu -> ubuntu-dev22:36
LaserJockyeah, I think that's how it is22:36
LaserJockso core-dev can upload to Main and ubuntu-dev to Universe22:37
sistpotyyes22:37
norsettooh $DEITY, I don't believe this22:38
geserso it's even technically possible to be core-dev but not MOTU (if MOTU == member of ~motu)22:38
sistpotygeser: fwiw, yes22:38
sistpoty(and iirc not only technically)22:39
norsettoanyone that can spot whats wrong with the output of "apt-cache show gtkgo" wins a hug22:39
gesernorsetto: don't forget to "export DEITY=bddebian" :)22:40
sistpotyheh22:40
norsettogeser: thx for reminding me!22:40
sebnernorsetto: package doesn't exist ;)22:40
norsettosebner: nope22:40
sebnernorsetto: I want my hug! ^^22:41
gesernorsetto: the maintainer address22:41
* norsetto hugs geser22:41
LaserJockhah22:41
LaserJockfunny22:41
sebnerwth?22:41
norsettogeser: the fastest eyes in #ubuntu-motu :-)22:41
sebnercan somebody explain that to me?22:41
LaserJockI'm surprised we don't have more of those22:42
LaserJocksebner: explain what?22:42
norsettosebner: check the maintainer line22:42
sebnernorsetto: ?? http://pastebin.com/m429b63d22:42
LaserJockodd22:43
norsettosebner: yes, its amd64 only22:43
sebnergrml22:43
sebnernorsetto: unfair. Not possible for me to win a hug -.-22:43
* norsetto hugs sebner22:43
sebnerhihi22:44
* sebner hugs norsetto back =)22:44
sistpotyoh, norsetto: do we need to revisit gfortran dependant packages for intrepid, or will everything work fine with gfortran 4.2 -> 4.3?22:44
norsettoI owed you one anyhow to congratulate you on your membership :-)22:44
gesergtkgo | 0.0.10-15ubuntu3 | hardy/universe | source, amd64, i38622:44
sebnernorsetto: hehe. true :)22:45
LaserJockI saw it and I'm on i38622:45
sebnergeser: hmm. so wth?22:45
norsettoah ....22:45
gesersebner: did you forget to enable universe?22:45
LaserJocksebner: you're special :-)22:45
sistpoty(austrian mirros are behind at least one release :P)22:45
sebnergeser: I'm a universe-contributor xD22:46
sebnerLaserJock: I use them main servers ;)22:46
norsettosistpoty: it should be ok, my only concern was with R but we only had two packages to merge and I made sure they were built after R was built22:46
sebnerAnd I br0ke my sources.list ^^22:46
sebnerno22:46
sebnereverything enabled22:46
sebner:\22:46
sistpotynorsetto: cool, thanks! :)22:46
sistpotynorsetto: you also took care of the package I still couldn't verify from hardy-proposed?22:47
norsettosistpoty: to be sure, I have anyhow some syncs I'm waiting to request so that they are built with the new blas/lapack22:47
norsettosistpoty: libittp?22:47
norsettosistpoty: or libitpp, can never remember22:48
sistpotynorsetto: yes22:48
sistpotynorsetto: neither can I ;)22:48
norsettosistpoty: AFAIK, its still in proposed22:48
sebnernorsetto:  <ubunto-motu@lists.ubuntu.com>22:48
sebner  <.---- lol22:48
sistpotynorsetto: but what about intrepid?22:48
norsettosistpoty: that should be autosynced22:49
* norsetto checks22:49
sistpotynorsetto: ah, excellent! :)22:49
norsettosistpoty: yes, its autosynced22:49
sistpoty:)22:49
norsettosistpoty: btw, we should really push that to hardy, its a rebuild, and all the tests run during build are fine22:50
sistpotynorsetto: hm... I think it's definitely worthwhile, but I cannot figure what is broken with the old version :/....22:51
sistpotynorsetto: maybe compile some fortran packages against it? (which I guess is out of my scope, since I just can't figure fortran)22:52
sistpoty(linked against it even)22:52
norsettosistpoty: tried that, but short of looking at the API and do some stupid program which is anyhow much simpler than any of the test which are run during build seems hopeless22:52
sebnerLP is running again. wuhu22:53
geserLP is back22:53
sebnergeser: faster :P22:53
sistpotynorsetto: it would prove the point that the old version needs to be replaced afair (since iirc you cannot link to libgfortran2 and s.th. else at the same time)22:53
sistpotynorsetto: if you can attach s.th. like this to the bug, I'd be very happy to pick it up and check what's going on (or try to modify it so that the hardy package breaks)22:54
LaserJockgrr, sbuild isn't likingn me22:57
LaserJockhmm, maybe it's the problem pitti was talking about22:58
LaserJockit complains that it can't find fakeroot22:58
=== nenolod is now known as happinessturtle
norsettosistpoty: you have a point actually, why should the current libitpp in hardy not work!?22:59
sistpotynorsetto: my believe is that it won't work, if you compile a fortran program against it... maybe. maybe it does work, that's what I'd like to find out23:02
norsettosistpoty: I don't see why it shouldn't work23:02
sistpotynorsetto: oh, then I guess we can leave hardy as is? or what do you think?23:03
norsettosistpoty: well, the idea was to complete the transitionm, its just not clean but I think it should be perfectly workable23:03
sistpoty:)23:04
norsettosistpoty: its just funny to leave the bug thats started it all as the only one that was not fixed :-\23:06
RainCT_good night23:06
sistpotyheh23:06
sistpotygn8 RainCT_23:06
sebnerRainCT_: gn8 =)23:06
sistpotyLaserJock: any news about sponsoring for main?23:11
sebneris anybody here member of the Debian Scientific Computing Team?23:11
sistpotysebner: not too sure, but I guess norsetto is and LaserJock as well23:13
sebnersistpoty: that would be great23:13
norsettosistpoty: I'm not actually23:13
sistpotyah23:13
sebnerLaserJock: still around?23:13
emgentsebner: try in #debian-devel23:15
sebneremgent: I know. It's just that I would need a MOTU who is part in this team ;)23:15
emgentoh ok :)23:15
LaserJocksebner: yeah23:17
LaserJocksistpoty: trying to get my sbuild working23:17
sistpotyok :)23:17
sebnerLaserJock: are you member of the Debian Scientific Computing Team?23:17
LaserJockno23:18
sebnerdamn23:18
sebnersistpoty: damn you ^^23:18
LaserJockI hang out with Debian Science and Debichem23:18
sebnerLaserJock: sorry then23:18
sebnerLaserJock: do you know a MOTU who is in this team?23:18
LaserJockare you looking at pkg-compsci ?23:18
LaserJockno23:18
sebnerLaserJock: ok, np. And no23:18
LaserJockis there even really a team for it?23:18
LaserJockI thought it was just a couple people23:19
sebnerLaserJock: it's pkg-scicomp23:20
LaserJockyeah, that's the one23:20
LaserJockI don't think there's all that many people in it23:20
LaserJockand none that are connected to Ubuntu that I'm aware of23:20
LaserJocksebner: what do you need?23:20
sebnerLaserJock: ok. thanks23:20
sebnerLaserJock: somebody that needs to push our changes back since persia filed a bug there but a debian-dev didn't trust him. persia told me to ask directly a member. So I have to file a bug now and hope the best23:22
LaserJockif all else fails you might be able to email debian-science for discussion23:22
sebnerLaserJock: yeah. We'll see23:23
LaserJockanybody have problems with fakechroot in an intrepid sbuild?23:25
norsettosebner: what package was that?23:27
sebnernorsetto: gmsh23:27
=== Czessi_ is now known as Czessi
tholdarwhy. Czessi?23:29
sistpotyheh, so I just sent a very short application for core-dev to mc... let's see what will happen :)23:37
tholdarwhy23:37
sistpotytholdar: you could aks that on a follow-up mail (in case you are responding to my comment)23:38
sistpotyask even23:38
LaserJocksistpoty: heh, good luck!23:38
sistpotyLaserJock:  thanks!23:38
sebnersistpoty: now I'm universe-contributor. I'll comment ^^ Maybe then the think you application is a  joke ^^23:38
sistpoty:O23:39
sebnerhmm. It's pretty late and I can't write -.-23:39
sebnersistpoty: just a joke ^^, good luck :)23:40
sistpoty:)23:40
sebnernorsetto: special interest in gmsh?23:41
norsettosebner: no23:41
sebnernorsetto: ok :)23:42
sebnerso. gn8 folks :)23:43
norsettosistpoty: nighty sistpoty23:43
sistpotygn8 sebner23:43
sistpotygn8 norsetto (or did you mean sebner there?)23:43
* norsetto has a fried brain23:44
sistpotyheh23:44
sistpotygeser, persia, dholbach, nixternal, soren: you've got mail :)23:48
LaserJocksistpoty: I'm having to rebuild my intrepid chroot, but I'm still working on your packages23:48
sistpotyLaserJock: no problem... ;)23:48
sistpotyLaserJock: thanks for looking actually :)23:49
LaserJocksistpoty: lol, that is such a typically sistpoty application :-)23:49
sistpotyheh23:51
LaserJockI don't think sistpoty even has a -v switch23:52
sistpotyLaserJock: I do have... just give me lots of beer ;)23:56
LaserJockheh23:59
LaserJockalright, intrepid chroot rebuilt23:59

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