/srv/irclogs.ubuntu.com/2008/01/22/#ubuntu-motu.txt

mok0_jscinoz: the .o file is the compiled files, they need to be linked to generate the program00:00
LaserJockit's an object file00:00
jscinozand these are not included with libjpeg62-dev?00:00
LaserJockno00:01
LaserJock.o files get linked to create the program00:01
mok0_jscinoz: well, they are assembled into a library00:01
LaserJock.so are what would be shipped in a library00:01
jscinozalright, so when someone says " static copy of system library: please change the upstream Makefile to link against Ubuntu’s libjpeg62 instead of using the static copy inside the sources" what do i need to change the make file to reference? the headers? the actual source or what?00:02
mok0_jscinoz: the makefile, in principle00:02
jscinoz>_<00:03
jscinozok.00:03
jscinozso.00:03
LaserJockyou want it to build against the headers I believe00:03
mok0_jscinoz: it looks like the program gets linked to the set of .o's from the jpeg subdir00:03
jscinozincluded with the upstream package is libjpeg source, ie .h and .c, it builds these into a bunch of .o it needs to compile, now the libjpeg62-dev package contains no .c, and only a few headers compared to those in the upstream00:04
mok0_jscinoz: yes, and those headers are being included by other parts of the source00:04
jscinozso... in the makefile, i've commented out where it compiles libjpeg from the source in the .c files.00:05
mok0_jscinoz: you need to define to the compiler where to find those headers (if not in the subdir), and also where to find the library00:05
jscinoz/usr/lib/libjpeg.so.62 yes?00:05
mok0_the first is usually with a -I switch, and the latter with a -ljpeg switch to the linker00:06
mok0_jscinoz: yes, that's the one that replaces the .o files00:06
jscinozoh00:06
mok0_jscinoz: i.e. gcc -I/usr/include program.c -ljpeg -o program00:07
jscinozso instead of the multitude of .o files on line 1000-1033, i just need the one .so?00:07
mok0_jscinoz: yup00:07
jscinozugh00:07
jscinozwish i found that out earlier.00:07
jscinozthe -ljpeg is all i need?00:08
jscinozi dont need it to be -l/usr/lib/libjpeg.so.62?00:08
mok0_jscinoz: no00:08
mok0_jscinoz: -ljpeg00:08
jscinozthank you00:08
mok0_by default, the linker knows to look for libraries in /usr/lib00:08
mok0_it knows their names always start with 'lib' and end in '.so'00:09
mok0_so you only need to specify the "variable" bit = jpeg00:09
ryanakcahmm... what does this do "common-binary-predeb-arch" ?00:10
ryanakcaand "common-binary-predeb-indep::" ?00:10
jscinozmok0_, with -ljpeg can lines 1000-1033 be removed/commented out? or do they need to be changed somewhat00:14
* mok0_ looks00:14
jscinozand also line 153, and lines 1553-155400:15
mok0_jscinoz: it's not that simple00:16
jscinoz>_<00:17
mok0_jscinoz: you need to put it in the LDFLAGS variable, and in fact it looks as if you can do that when calling make00:18
mok0_jscinoz: make "LDFLAGS=-ljpeg"00:18
jscinozmake[2]: *** No rule to make target `build/release-linux-i386/client/jcapimin.o', needed by `build/release-linux-i386/ioUrbanTerror.i386'.  Stop00:19
jscinozas i said, should line 1k-1033 be commented out?00:19
mok0_jscinoz: yes that has to go00:19
mok0_jscinoz: but this makefile is full of ifeq... endif sections so be sure to fix it the right place00:20
jscinoznew output: http://pastebin.ubuntu-nl.org/52947/00:20
mok0_jscinoz: looks like it's missing -lGL00:21
jscinozhmm00:22
jscinozbecause it didnt have that output before i removed its own jpeg stuff..00:22
jscinozsame output with -lGL aswell >_<00:22
mok0_Hmm00:22
mok0_jscinoz: do you have someone where you live that knows about programming?00:23
jscinozno.00:23
jscinozhmm00:23
mok0_jscinoz: Like I said earlier, what you are trying to accomplish is not easy00:23
jscinozif i have it still compile its own libjpeg, but remove the lines referncing the *.o's, it gives this same output00:23
jscinozso what i think is that -ljpeg isnt linking it properly or something00:24
jscinozaye, same output with or without "LDFLAGS=-ljpeg"00:24
mok0_jscinoz: it could be that it's a modified libjpeg00:24
jscinozgah00:24
mok0_jscinoz: I suggest you tell the motu that you looked into the problem with help on IRC and that it does not seem to be possible to use Ubuntu's libjpeg as a replacement00:25
jscinozalright thanks00:25
mok0_jscinoz: you can say you got indefined references and urbanterror00:26
mok0_s version seems to be modified00:26
jscinozalright00:27
LaserJockhi Hobbsee and minghua00:32
Hobbseeheya LaserJock00:33
minghuaGood evening LaserJock.00:33
jscinozhmm whats a way to count the amount of lines output by grep/cat00:35
StevenKgrep -c00:35
StevenKwc -l < file00:36
StevenKEither works fine00:36
ryanakcashould I write a patch to fix two dozen lines of this? "dpkg-source: warning: file qyoto/csharp/qyoto/core/QObjectExtras.cs has no final newline (either original or modified version)" ?00:36
jscinozthanks00:36
ryanakcas/two/a/00:37
StevenKpochu: I haven't, it's a little complicated.00:38
ryanakcahmmm. Ok, so I've got qyoto merged into kdebindings, I'm just wondering how to generate the dsc since I'm getting these errors http://paste.ubuntu-nl.org/52952/ when I run debuild -S -sa -kE95EDDC900:54
cyberixI'm looking after first advocate for my package Malbolge. I've fixed all broblems that have been brought up. http://revu.tauware.de/details.py?package=malbolge00:59
LaserJockryanakca: it looks like it's from source files and if it doesn't cause a bug I certainly wouldn't worry about it.01:03
ryanakcaLaserJock: was that to the patch question or how to generate the dsc question?01:03
LaserJockpatch question01:04
ryanakcaokies, thanks :)01:04
LaserJockryanakca: hmm, it kinda looks to me like there's a lot of stuff going on in the .diff.gz there01:05
ryanakcaLaserJock: yes, well, I copied all of the qyoto sources into kdebindings-3.5.801:06
minghuaryanakca: The building error question -- the real problem are the two "cannot represent change" errors.01:06
LaserJockoh, that's going to be a bit difficult01:06
LaserJockright, what minghua said01:06
LaserJockyou're trying to add source when packaging is not meant for that01:07
ryanakcayes... then what would be the appropriate way?01:07
* ryanakca was asked to merge qyoto into kdebindings... generate a new .orig.tar.gz ?01:07
LaserJockryanakca: I guess so01:09
LaserJockis qyoto distributed separately?01:09
pochuStevenK: Alright. Would be nice though if possible.01:09
ryanakcaLaserJock: okies. take out the debian dir?01:09
LaserJockryanakca: hmm?01:09
ryanakcaLaserJock: yes, but kdebindings is just an assortment of libraries which are distributed seperately01:09
ryanakcatake out the debian/ dir when making the .orig.tar.gz ?01:10
LaserJockhow is it distributed?01:10
LaserJockryanakca: first we need to figure out how you get the kdebindings .orig.tar.gz01:10
ryanakcahow are they distributed? umm... part comes from http://www.kde.org/download , another comes from the xparts website, some from qyoto.org, kjsembed... umm.. unsure how it was all pieced together originially01:11
* ryanakca reads the changelog01:11
LaserJockryanakca: are you working on KDE3?01:12
ryanakcayes01:12
LaserJockk, I'm grabbing the source01:12
ryanakcaI was originally supposed to merge the KDE3 package with the KDE4 package from debian, and then merge in qyoto into that merged thing, but then it was decided to just merge qyoto into kdebindings kde3 since the debian kde4 packaging wasn't advanced enough01:13
ryanakcaLaserJock: step by step, what I did was copy the qyoto source dir to kdebindings-3.5.8/qyoto, merge kdebindings-3.5.8/qyoto/debian/* with kdebindings-3.5.8/debian/*, then remove kdebindings-3.5.8/qyoto/debian01:16
LaserJockright, and I think that's wrong01:16
* ryanakca tars up kdebindings-3.5.8/debian and puts it on his webserver01:17
ryanakcahmmm.01:17
LaserJockthe problem is that packaging isn't meant to add source to01:17
LaserJockso your .diff.gz can't represent binary files01:17
LaserJockand really, you don't want to do that01:18
bddebianHeya gang01:18
LaserJockyou want to add qyoto to kdebindings01:18
* ryanakca nods01:18
ryanakcaLaserJock: http://blog.ryanak.ca/kdebindings-3.5.8.debian.tar.gz01:18
ryanakcahey bddebian01:19
LaserJockso kdebindings is distributed upstream as a tarball01:19
ryanakcaLaserJock: ok, to add qyoto, I'd have to generate a new orig.tar.gz?01:19
bddebianHello ryanakca01:19
ryanakcahmmm01:19
ryanakcaand in that new .orig.tar.gz, I would have to remove debian/, then readd it, debuild, etc ?01:20
LaserJockwell01:20
LaserJockhmm01:20
LaserJockthis is a bit funky01:20
* ryanakca nods01:21
LaserJockyou want to take the kdebindings upstream tarball01:21
LaserJockunpack it, add your qyoto source, and retar it01:21
ryanakcaok.01:21
LaserJockbut that means you're creating a new .orig.tar.gz for the same version of kdebindings01:21
ryanakcacan I do that to the current .orig.tar.gz?01:21
LaserJockwhich is not great01:22
ryanakcahmm... Riddell is probably asleep atm...01:22
LaserJockryanakca: I honestly don't know why you're not adding this as a separate package01:22
ryanakcaLaserJock: it currently is a seperate package...01:23
LaserJockah ....01:23
ryanakcaLaserJock: *gets the logs from this afternoon describing what he has to do*, just a sec.01:23
ryanakcaLaserJock: http://blog.ryanak.ca/kubuntu-devel.log01:25
ScottKLaserJock: Do you have time to do some source backports for me (I need a core-dev to upload)?01:28
LaserJockryanakca: well, honestly, you've got to talk to Riddell about that. That looks really odd/suspicious to me01:29
LaserJockScottK: what do you need01:29
LaserJock?01:29
ScottKLaserJock: I need to you upload the 3 packages with debdiffs in But #183914.01:30
ScottKUrgh01:30
ScottKBug #18391401:30
ubotuLaunchpad bug 183914 in dapper-backports "Please Backport clamav-0.92~dfsg-2 from Hardy to Dapper" [Wishlist,In progress] https://launchpad.net/bugs/18391401:30
ScottKThe won't get published until an archive admin accepts them, but I can't upload them...01:31
ScottKThe/They01:31
ryanakcaLaserJock: ok, will do01:31
RAOFsuperm1: Re bug #134197 - as far as I can tell, monodevelop doesn't need a build-dep on firefox at all (but it does need a dep on firefox, & I've filed a debian bug about that).01:32
ubotuLaunchpad bug 134197 in monodevelop "Please merge monodevelop 0.18.1+dfsg-1 from Debian unstable (main)" [Wishlist,Fix released] https://launchpad.net/bugs/13419701:32
mcisbackukHi all, I'd like to get involved in packaging, but a lot of the wiki's are confusing01:32
superm1RAOF, i didn't want to change things with the way it worked (it build-depends fine with it in there)01:33
RAOFsuperm1: Quite true.  It doesn't care whether or not you've got a firefox-dev build-dep or not :)01:33
mcisbackukCan anyone help me get started please?01:34
ryanakcamcisbackuk: the Ubuntu Packaging Guide is a good starting place...01:34
RAOFmcisbackuk: What would you actually like to do?01:34
RAOF(Packaging is a broad field ;))01:34
superm1RAOF, :)01:34
ryanakcamcisbackuk: http://doc.ubuntu.com/ubuntu/packagingguide/C/index.html01:34
mcisbackuki've had a look at the guide, but it's too broad, as you say, and I'll be honest I'm not that good on linux, but know pc's well (notdeveloper level) and would love to help out, maybe get rid of some on the wishlist to help you guys out :)01:35
LaserJock!packagingguide > ryanakca01:36
RAOFsuperm1: Did you try to xul-1.9ify it at all?01:36
ryanakcaLaserJock: oh? hmm... *checks the new link*01:36
superm1RAOF, i did not.01:36
ScottKLaserJock: What do you think, are you up for it?01:36
superm1RAOF, i was more looking to get the merge done (given the time frame for the impending freeze)01:36
ryanakcaLaserJock: heh, interesting.01:37
ryanakcamcisbackuk: ignore me :)01:37
mcisbackuki havent used irc before how do i reply lol sorry i must sound really stupid now01:37
RAOFsuperm1: Yeah, fair enough.  I'll add that to my moderately large "before FF todo" list.01:37
superm1RAOF, yeah i'm looking for any other big ones that i know people are going to be annoyed by here if they aren't done at this point01:38
mcisbackukryanacka01:38
mcisbackukoops01:38
* RAOF would like to fix debian bug #461353 before FF, for example.01:38
ubotuDebian bug 461353 in monodevelop "monodevelop: Fails to start without Gecko" [Normal,Open] http://bugs.debian.org/46135301:39
RAOFArgh, wrong one.01:39
ryanakcamcisbackuk: to reply, put the persons name : message.01:39
mcisbackukAm I still connected?01:44
RAOFmcisbackuk: Yes.01:44
mcisbackukRAOF : Thanks01:45
mcisbackukRAOF: Thanks01:45
RAOFIt's just that no one is saying anything much :)01:46
RAOFThat happens.01:47
mcisbackukAhh I see :)01:47
mcisbackukI really wann get my hands dirty in linux lol01:48
mcisbackukAre packages added to the repositories after the feature freeze do you know?01:48
RAOFOnly with a good reason.01:49
mcisbackukSo not anything silly like someone wants a game then01:49
RAOFThe only really hard freeze is at the end.  All the other freezes mean that you need to make a good argument for why $PACKAGE should be an exception.01:49
ScottKmcisbackuk: If you are just starting now, you probably want to start learning packaging through bugfixing and merges and then do new packages starting with Hardy +101:50
mcisbackukWhat if it's built for 7.10 for example though?01:50
mcisbackukAhh I see...01:50
ScottK7.10 is done.  Packages can be added/updates from Hardy in gutsy-backports, but that's it.01:50
mcisbackukok01:51
mcisbackukI get it now :)01:52
mcisbackukSo I take it the only time software gets updated is with a new release, and its only bugfixes/security updates until then?01:53
minghuaIf you mean "after that" by "until then", basically yes.01:54
RAOFPretty much.  And not just any bugfixes; they need to be important (for a certain definition of important).01:54
minghuaFrom a user's point of view, at least.01:54
mcisbackukLike data loss, corruption I take it?01:55
RAOFThat'd certainly qualify.  Also regressions from previous versions (it works in Feisty, but not Gutsy) often qualify.01:55
mcisbackukI see01:55
LaserJockmcisbackuk: you might want to read http://wiki.ubuntu.com/StableReleaseUpdates01:55
ScottKUp until the beta, my usual definition of sufficiently importatant is someone thougth it was worth the trouble to come up with the fix.01:56
RAOFBasically the risks of touching a package increase the closer to the release date we are.  *After* the release date the risk is considered very nearly infinite, so you need a *very* good reason for touching anything.01:56
mcisbackukSince everything is pretty much working at that point?01:57
zulevening01:57
ScottKThat's the theory.01:57
ScottKevening zul.01:58
zulhow is going ScottK01:58
mcisbackukTheory's nice lol :)01:58
ScottKzul: Pretty good.  LaserJock's uploading the source backports for Dapper so we can get the current clamav into dapper-backports.01:58
zulnifty01:59
* RAOF needs to write a blog post on what "stable" means in the context of Ubuntu releases/archives.01:59
ScottKI feel like I just did a masters thesis in packaging, testing, and release management.01:59
mcisbackukSo, sorry guys, what about bug #182693, it says needs-packaging, but its under mentoring available? Does that mean the maintainer is willing to help out someone new with doing it? Sorry you must all think I'm a pain in the backside.02:00
ubotuLaunchpad bug 182693 in ubuntu "[needs-packaging] monkeystudio" [Wishlist,In progress] https://launchpad.net/bugs/18269302:00
ScottKmcisbackuk: Part of what we do is help people get started.02:00
ScottKmcisbackuk: You're fine.02:01
RAOFmcisbackuk: The "in progress" status of that bug suggests that someone is actively working on it, so it might not be a good place to start.02:01
mcisbackukScottK: Thanks :) I just want to learn and help out02:01
ScottKThen you're in the right place02:01
mcisbackukWell I was looking at bug #184791, and it looked like a simple one to start off with, an alarm clock....but none of the guides tell you how to compile the binary/deb in python02:03
ubotuLaunchpad bug 184791 in ubuntu "[needs-packaging] Alarm Clock" [Undecided,New] https://launchpad.net/bugs/18479102:03
mcisbackukOr vice versa02:05
ScottKmcisbackuk: We're pretty close to feature freeze.  It's really unlikely that if you start a new package it would make it into Hardy, but you're certainly free to give it a shot if you want.02:08
mcisbackukScottK: Well I'd like to at least have a go, and try refining the skills needed to package.02:09
RAOFmcisbackuk: It's much easier to start with bugfixing.  Then you learn bits of packaging at a time.02:10
mcisbackukRAOF: Don't you need to know more about the actual code then?02:10
ScottKmcisbackuk: If you really want to take a shot at that one, find a similar package and see how they did it.02:10
ScottKmcisbackuk: Do you code at all?02:11
mcisbackukNope - I think that may be the problem lol02:11
ScottKIt's not needed to package.02:11
mcisbackukThank god02:12
ScottKlook for bugs tagged packaging and bitesize02:12
RAOFmcisbackuk: You don't have to understand the code in many cases.  Some bugs are just in the packaging.  Sometimes you can follow the bug to the upstream bug tracker, where there's a patch to fix it.02:12
mcisbackukAs in the original from the developers website?02:12
RAOFYes.02:12
mcisbackukOK, maybe I'll start there :)02:13
mcisbackukCan either of you point me to an idiots guide, if there is such a thing?02:13
mcisbackuklol02:13
LaserJockmcisbackuk: and idiots guide to what?02:20
mcisbackukLaserJock: Packaging, or as RAOF said re-packaging upstream versions02:21
LaserJockmcisbackuk: I think the best we've got really is the packaging guide http://wiki.ubuntu.com/PackagingGuide02:22
mcisbackukLaserJock: OK I'll have to grit my teeth and buckle down and see if I can work it out, I won't let it get the better of me :)02:22
LaserJockmcisbackuk: packaging is not all that hard, but does require patience02:24
LaserJockthere is a lot of stuff to remember02:24
LaserJockbut it's definitely learnable02:24
mcisbackukI have the patience and the time to do it definately, and I learn quick02:24
jscinozwell i managed to bork my system >_<02:28
mcisbackukDoesn't sound good.....02:29
ScottKjscinoz: This isn't a support channel.02:30
jscinozi know :P just saying it casually lol02:30
jscinozand zomg someone check the latest uploads of my urbanterror and urbanterror-data packages, i fixed some more stuff02:31
wolfgerone of my review comments mentions the "python packaging policy". but Google isn't helping me find that. Anybody have a link?02:34
* bddebian would if it wasn't a 300+Mb data package :-)02:34
bddebianwolfger: http://wiki.debian.org/DebianPython/NewPolicy02:35
wolfgerthx02:36
LaserJockman, busy day today. Got almost nothing done that I wanted to :)03:16
bddebianajmitch: You around at all?04:21
vemongood morning!05:42
vemonshould i add "Uploaded to REVU: http://...." comment to a [needs-packaging] bug when i do a revu upload?05:51
LaserJockwouldn't hurt05:51
vemonif there is someone who knows that LASH is then here's one for review: N:   The source package refers to a 'Standards-Version' that is starting to05:53
vemonN:   get out of date, compared to current Policy. You can safely ignore05:53
vemon:D05:53
vemonN:   this warning, but please consider updating the package to current05:53
vemonwell not that05:53
vemonN:   Policy.05:53
vemonhttp://revu.tauware.de/details.py?package=lashwrap05:53
vemonsorry for flooding :D middle clicking can be a little hazardous sometimes05:54
LucidFoxvemon> commented06:32
warp10Heya07:05
yamalmornin07:05
yamalMOTUs, your comments please, for the latest and greatest sabnzbd package: http://revu.tauware.de/details.py?package=sabnzbdplus07:08
theseinfeldcprov: how long does it take to revu to get your dput and email you?08:56
amarillionPlease be so kind to review one of my packages http://revu.tauware.de/details.py?package=alex4 and http://revu.tauware.de/details.py?package=speed-game. These packages are in a good state, all previous comments have been addressed08:56
amarilliontheseinfeld, you won't get an email...08:57
amarillionbut revu is updated once every 12 minutes08:57
theseinfeldamarillion: yes, I can see that it was received, but I was waiting for the password so I could login...08:57
theseinfeldamarillion: or did i get it all wrong?08:57
theseinfeld:(08:57
amarillionThe password won't get emailed either. Just fill out your email address, and press login. It fails, then gives you the option to get a new password08:58
theseinfeldOnce you have uploaded a package to REVU, a password will be created for you. To get it, enter your e-mail address into the login box, leaving the password field blank, and click Login. Click Recover, and REVU will display an encrypted message with your password in it.08:59
theseinfeldyes08:59
theseinfeldamarillion: you are right...08:59
amarillionyeah, do you get a password now?09:00
theseinfeldamarillion: the problem is that i get this09:00
theseinfeldNo REVU account for theseinfeld@users.sf.net exists yet.09:00
amarillionDid you sign up for the universe contributors team?09:00
theseinfeldyes09:00
amarillionalso, do you have a GPG key uploaded to launchpad?09:00
theseinfeldsince yesterday09:00
theseinfeldthe key must be 2 years old09:00
theseinfeld:D09:00
theseinfeldyes yes yes09:00
amarillionoh, it may take a day before the keys get copied to revu09:01
amarillionso that may be the problem09:01
amarillionask persia to do a sync09:01
theseinfeldwhois persia09:01
theseinfeldok09:01
theseinfeldI can wait also...09:01
amarillionyeah, both will work :)09:01
theseinfeldI was puzzled that the package is uploaded09:01
amarilliondid you upload a package?09:02
theseinfeldhttp://revu.tauware.de/details.py?package=libdc1394-2209:02
amarillionwhich one?09:02
philnhi09:02
theseinfeldamarillion: libdc1394-2209:02
amarilliontheseinfeld, would you like me to review it?09:03
theseinfeldamarillion: on phone...just a sec09:04
philni created a bug to sync a package in hardy, do i need subscribe someone special so that it's taken care of?09:06
minghuaphiln: Yes, read https://wiki.ubuntu.com/SyncRequestProcess and follow instructions.09:08
=== civija_ is now known as civija
philnok; thx09:08
TheMusoHey MOTUs.09:09
TheMusoand MOTu hopefuls. :p09:09
Hobbseehi deity09:10
TheMusoHobbsee: lol09:12
HobbseeTheMuso: or is that info not public yet?09:12
TheMusoHobbsee: Lets just say its not common knowledge.09:14
Hobbseefair enough09:14
Hobbseewe'll just call you a deity without saying the reason tehn09:15
vemonis the backports repository the only place to get new upstream versions after an ubuntu release?09:17
vemonmeaning: are bug fixes the only changes which are uploaded to the normal repos after release?09:18
minghuavemon: Yes, unless the new upstream version is a bugfix-only release, and fix important bugs.09:18
Hobbsee!sru | vemon09:21
ubotuvemon: Stable Release Update information is at http://wiki.ubuntu.com/StableReleaseUpdates09:21
slytherinhi all. Does anyone know if the java license related debconf preseeding on buildd works for both java5 and java6?09:22
geserslytherin: yes, as both use the same debconf question09:22
slytheringeser: One more question. Are 'arch: all' packages built on i386 only?09:26
theseinfeldamarillion: back09:27
geserslytherin: yes, the i386 buildd builds also the arch:all packages09:33
=== jono_ is now known as jono
geserHi dholbach09:46
dholbachhey geser09:46
=== dholbach changed the topic of #ubuntu-motu to: Masters of the Universe: https://wiki.ubuntu.com/MOTU | Want to get involved with the MOTUs? https://wiki.ubuntu.com/MOTU/Contributing | Unmet Deps time! http://qa.ubuntuwire.com/debcheck/ | QA resources from http://qa.ubuntuwire.com
* TheMuso can't see any major change in that topic.09:48
* StevenK bites his tongue09:49
TheMusoStevenK: hardy hardy gar09:49
TheMusos/gar/har/09:49
theseinfeldPlease be so kind to review the following package: http://revu.ubuntuwire.com/details.py?package=libdc1394-22 . It should be in a good state as it has been discussed with some Debian people. Thank you09:51
psicus78hi10:10
geserslytherin: do you know if with sun-java[56] compiled code runs with kaffe? I'm looking at the statcvs package now.10:19
slytheringeser: Not sure, never used kaffe. But if the code itself doesn't use any sun specific apis/extensions then it should run with any VM. And I guess kaffe supports Java 1.5 apis, but I will have to confirm.10:21
slytheringeser: What is the problem by the way?10:21
geserslytherin: no problem, just checking if depends line is still correct after changing build-depends10:23
geserstatcvs depwaits currently on sun-j2sdk* and I want to change it to the available compilers10:24
slytheringeser: Why not try java-gcj-compat-dev?10:25
geserI did, doesn't build with it10:25
slytheringeser: can you paste the error somewhere?10:26
geserbtw: libjibx-java from yesterday doesn't build with gcj either10:26
slytherinhmm.10:27
slytheringeser: looks like kaffe is far behind other Free JVMs. http://www.kaffe.org/~stuart/japi/htmlout/h-kaffe-jdk14.html10:29
geserslytherin: http://paste.ubuntu.com/3773/10:32
psicus78hi!10:33
psicus78do you know if it exist any tool that allow to find out (and then install) all the build-dependencies of a package which is not debianized yet? I mean get all the libblabla-dev required at build time?10:33
geserpsicus78: no, try and error10:33
slytheringeser: Check error number 8, It uses sun specific apis.10:34
geserpsicus78: you can read the README and/or INSTALL file and hope that it contains a list of requirements10:34
minghuapsicus78: There are tools to help, but nothing like "apt-get build-dep"10:34
psicus78minghua: yes, autotools should help10:34
geserpsicus78: you can also look which packages configure looks for10:35
psicus78geser: correct, that's what I was thinking10:35
DaveMorris\me plugs his package for revu - http://revu.tauware.de/details.py?package=opensg It's an OSS distributed scenegraph API for doing some cool 3D graphics across multiple machines or single machines.  Has support for sort 1st and sort last.  I'm currently using it to power a cluster with a 46 million pixel display.  It's cool so please revu it.10:35
psicus78I was wondering if it would be possible to automate that10:35
geserslytherin: so build-depend on sun-java[56]-jdk. is kaffe still a good candidate for depends?10:36
psicus78I believe it is possible10:36
geserpsicus78: you could also check the included headers files10:37
slytheringeser: No. Obviously in this case since the runtime should also contain those sun specific apis, only Sun JRE qualifies10:37
geserslytherin: so I change "Depends: classpath, kaffe | java2-runtime" to "Depends: sun-java6-jre | java2-runtime"?10:38
slytheringeser: only "sun-java5-jre | sun-java6-jre".10:39
geserslytherin: thanks10:40
psicus78geser: mmm...if the developer uses autotools he should check everything in configure.ac10:42
psicus78geser: or configure.in10:42
geserpsicus78: yes, if the developer uses autotools10:43
psicus78geser: I was wondering if there is something cannot be discovered automatically10:44
vemonnow that you're talking about Depends... what does the {sh:Depends} (probably not typed correctly) actually do?10:44
vemoni've seen that in many packages and it seems it's not necessary to explicitly define deps for those packages10:45
vemoni'n debian/control i mean10:45
psicus78geser:  for instance in network-manager there is some code to check for wireless-tools but not using pkg-config, that could be a problem10:45
geservemon: dh_shlibdeps computes the runtime dependencies (by looking at the needed libs) and replaces the the placeholder with it10:46
psicus78vemon:  I'm not sure 100% but I think {sh:Depends} includes all the packages that contain the shared libraries required at runtime10:46
psicus78vemon: what I want is build-time depends instead10:46
psicus78geser: I must suppose that autotools is used, otherwise is impossible10:48
slytherinCan someone explain to me process of merge?10:49
geserslytherin: simplified: you take the latest debian revision and the Ubuntu changes, check which are still needed and apply them again10:50
geserslytherin: you can use the output of MoM as a starting point for most merges10:50
slytheringeser: Ok. And then which debdiff should I submit? Or should I submit interdiff?10:51
geserslytherin: debdiff, between the debian revision and the new ubuntu revision10:52
slytherinok, thanks.10:53
vemonare there cases where sh:Depends is not enough? (i guess when some package is only suggested?)10:53
geservemon: it works only for libraries (lib*.so.*), so if your app is written in perl/ruby/python/etc. you need to figure the depends yourself out10:55
geservemon: another examples are -dev packages, where you want to install the correct version of the lib the headers belong to10:56
vemoncan give me an example?11:00
geservemon: an example for what?11:01
vemongeser, for a dev package which requires a certain version of the lib it gives headers to11:11
geservemon: e.g. http://revu.tauware.de/revu1-incoming/libmirage-0801202040/libmirage-1.0.0/debian/control any other package on revu building a -dev package should have it too11:19
slytheringeser: Are you able to search packages in debian unstable from http://packages.debian.org ? It times out for me for last few days.11:26
man-dislytherin: works fine here11:31
geserslytherin: here too11:32
vemongeser, now i understand. i think i missed the part where you said the package to be built is a dev- package. :)11:35
rexbronHey everyone! Got one ack and looking for a second: http://revu.tauware.de/details.py?package=ubuntustudio-controls11:52
* Hobbsee has a look11:55
=== _czessi is now known as Czessi
zulmorning11:58
Hobbseerexbron: surely setup.py should have some form of copyright notice too?11:59
Hobbseeif the rest does?11:59
rexbronHobbsee: perhaps, but that is just calling a function. If by convention setup.py should have a copyright notice, I will include one12:00
Hobbseerexbron: will leave it, and see what the other archive admins say12:00
rexbronok12:00
* Hobbsee acks, uploads12:02
=== Sp4rKY is now known as Sp4rKy
rexbron:)12:02
rexbronthanks Hobbsee12:02
Hobbseerexbron: you're welcome12:03
slytherinCan anyone give me any debian package's .dsc url? I wish doe download source for libjcalendar-java but I can't search it due to timeout problems.12:03
* TheMuso hugs Hobbsee 12:03
* Hobbsee hugs TheMuso :)12:04
mok0whole lotta huggin' going on12:04
geserslytherin: I use the PTS for such things: http://ftp.debian.org/debian/pool/main/libj/libjcalendar-java/libjcalendar-java_1.3.2-2.dsc12:04
slytheringeser: Please excuse my ignorance, what is PTS?12:05
geserslytherin: Debian's package tracking system: http://packages.qa.debian.org12:06
slytheringeser: Thanks.12:06
geserslytherin: it has also a nice redirect: http://packages.qa.debian.org/libjcalendar-java will redirect you to the correct page12:07
frafuCould anybody please review the following package: http://revu.tauware.de/details.py?upid=1379 Thanks12:13
frafuPlease ignore the package from January 21 18:30;  its upload was an error.12:15
ion_It might be best to reupload the correct one.12:16
frafuion_: reuploading does not work: package already uploaded error12:19
slytherinfrafu: use 'dput -f' option12:19
persiafrafu: delete your .upload fle12:20
frafuthanks for the tips12:21
* ion_ cringes. From the postinst of a third-party deb:12:23
ion_cp /usr/share/retroshare/retroshare.desktop "$HOME/Desktop"12:24
LongPointyStick...blink12:24
persiaIt recreates that wonderful "launcher on the desktop on install" feature, except that the install doesn't actually run as the user :)  Perfect for those scenarios where you run X as root.12:25
StevenKWhich gdm doesn't permit, if I recall12:25
persiaStevenK: There are ways around gdm, and gdm can be configured to allow it, but in most cases you are correct (as usual)12:26
frafupersia: where can I find the .upload  file?12:26
persiafrafu: should be in the same directory as the .changes you uploaded.12:26
frafupersia: ok; I understand now; I searched for it in my home directory. Thanks again.12:29
persiaJava question: If upstream has mixed-case in their .jar file, I know we flatten for the package name, but do we also flatten the .jar file?12:36
slangasekI can't see any reason why you would, surely that would induce incompatibility with upstream?12:37
theseinfeldanybody for reviewing http://revu.tauware.de/details.py?upid=1391 ?12:37
theseinfeldthanks12:37
persiaslangasek: That's what I was thinking, but I'm a little fuzzy on Java policy.  Thanks for the confirmation.12:37
persiatheseinfeld: There tends to be a significant lull in reviewing just after REVU day (ended 99 minutes ago).  If your package was submitted before REVU day, and nobody looked at it, it will be included in the post-REVU day summary mail, and may get a review.12:39
slytherinpersia: I would recommend not do do that. What if the package has some demo program which uses jar file. The program won't find the file in that case.12:39
persiaslytherin: It shan't be done then :)12:40
slytheringeser: A little help needed, libhibernate3-java has manual dep wait on libcglib2.1-java, but I can't find that package in Ubuntu as well as Debian.12:41
slytheringeser: oops, my mistake, it is present in both12:43
=== \sh_away is now known as \sh
mok0I am still looking for a collaborator to help with torque12:48
mok0... I guess not many are interested in cluster computing12:48
persiamok0: The best way to get help is to ask in the right forum, but it appears you've already done that with https://lists.ubuntu.com/archives/ubuntu-motu-science/2007-November/000010.html :(12:50
mok0persia: yes12:50
slytherinCan anyone confirm that package aspectwerkz2 is not synced from debian. I seem to be making search at wrong places today.12:51
tjaaltoncan someone with fglrx + amd64 confirm that 32bit GL apps work currently?12:52
persiaslytherin: I don't see it in the Ubuntu repositories.  rmadison might be a tool worth investigating12:54
slytherinpersia: Can absence of a package cause depwait packages that depend on it? looks like cglib2.1 has a depwait for same reason and in turn causes depwait in hibernate312:56
persiaslytherin: Yep.  depwait only means the build dependencies cannot be satisfied.  This can be a typo, a needed update, a side effect of a removal, or a build failure somewhere else in the chain.12:58
Alohaits cool that the servers automagically build the binaries12:59
Alohawoot pbuilder install almost done12:59
slytherinpersia: rmadison returns zero results for aspectwerkz2 as well as libaspectwerkz2-java.12:59
geserslytherin: bug #18427812:59
ubotuLaunchpad bug 184278 in ubuntu "[Sync request] Please sync aspectwerkz2 2.0.dfsg.1-2 (universe) from Debian unstable (contrib)" [Wishlist,Confirmed] https://launchpad.net/bugs/18427812:59
slytheringeser: thanks. :-)13:00
Hobbseewhen will someone write a script that gets the address of the .dsc for the latest package in debian?13:00
geserHobbsee: start coding :)13:01
persiaHobbsee: apt will do that, if you like.  I wrote a dirty hack to do it, but these days I find it most convenient to keep an up-to-date sid chroot around and just use apt-get source with /home bind-mounted.13:01
Hobbseehm13:02
persiaIf you use mk-sbuild-lv from ubuntu-dev-tools to generate the sid chroot, it takes care of all the mounting stuff for you.  You just need a couple gig free for the volume group for the LV in which the chroot lives.13:03
geserHobbsee: shouldn't apt-get source -t unstable do it if you have a deb-src line in your sources.list?13:03
Hobbseegeser: probably.  if i had the deb-src line13:03
AnAntman-di: Hello13:04
AnAntman-di: I have a couple of questions13:04
AnAntman-di: 1. why are you worried that people would depend on IcedTea and forget about gcj, isn't IcedTea free ?13:05
AnAntman-di: 2. any news about IcedTea debian package ?13:05
persiaAnAnt: Are you planning to update the ubuntume packages?  I'd really like to see them get into hardy, but I'm getting worried about timing.13:05
jdstrandemgent: I have uploaded the drupal5 fixes, but please see my comment in bug #18198413:05
ubotuLaunchpad bug 181984 in drupal5 "Drupal5: SA-2007-031, SA-2008-005,SA-2008-006: SQL injection and XSS " [Undecided,Fix committed] https://launchpad.net/bugs/18198413:06
jdstrandemgent: thanks!13:06
man-diI am worried because icedtea is currently i386/amd65/powerpc and people woll forget about the other archs13:06
man-diAnAnt: its currenly uploading13:06
StevenKamd65. I've not heard of that arch13:06
slytherinAnAnt: apart from what man-di said, icedtea is not complete yet, may not be stable enough.13:07
* man-di paints StevenK a big 4 into his hand13:07
man-di*g*13:07
StevenKGimme 4?13:07
man-diAnAnt: slytherin is right. Its a big moving target, nobody knows what Java7 really will include13:08
man-diStevenK: Its the successor of amd64 with one more address bit to make it possible to address more memory13:09
AnAntpersia: well, I don't think so. I really dunno what to do about modifying gdm.conf & grub.conf13:09
AnAntpersia: also the request to host the packages in LP's SVN13:10
Alohawoohoo!13:10
Alohamy pbuilder install is done13:10
persiaAnAnt: Hrm.  Have you tried asking one of the other derivatives about it?  Maybe #xubuntu or #ubuntustudio or #icthux would have some pointers.13:10
\shpersia, mk-sbuild-lv just has this nasty debootstrap->find distro in /usr/lib/debootstrap bug ;) it's fixed in our bzr branch of ubuntu-dev-tools13:11
\shmoins btw13:11
persiaAnAnt: That was more that either the packages oughtn't be native, or be in LP bzr.  LP accounts are free, but I can understand if there are issues with the service.  The other option is not to publish any Vcs-*, but that can affect maintenance.13:11
persia\sh: Why is it only fixed in bzr?  Shouldn't it be fixed where we can use it?13:12
\shpersia, well it would be a good idea to release a new version of ubuntu-dev-tools13:12
Alohahow do you import signature for apt-get source?13:13
persia\sh: You have the power...13:13
Alohai mean key13:13
persiaAloha: There's no easy way.  You have to collect the keys of all the developers.13:13
\shdholbach, any reasons not to upload ubuntu-dev-tools from trunk?13:14
Alohapersia, nevermind not worth it. i believe its valid ;)13:14
ScottK\sh: Does pbuilder-dist work yet?13:14
ScottK\sh: Also, IIRC it was geser, someone was working on requestsync and I'm not sure they got it done/comitted/merged.13:15
geserScottK: I've already committed my changes to bzr13:15
Alohawhats bazaar used for? is it like PPA?13:16
\shScottK, oh I never used pbuilder-dist ;) I have my own pbuilder framwork13:16
geserAloha: have you heard of cvs or svn? bzr is an other version control system13:16
Alohageser, gotcha. is it ubuntu specific?13:17
\shAloha, nope13:17
Alohaoh. never heard of it before13:17
\shAloha, bug canonical sponsors the development of bzr and so it's our default VCS13:17
jdstrandemgent: I also added a comment on bug #18141613:17
ubotuLaunchpad bug 181416 in wordpress "SQL injection vulnerability in wp-includes/query.php in WordPress CVE-2007-6318" [Undecided,Confirmed] https://launchpad.net/bugs/18141613:17
mok0persia, and in https://lists.ubuntu.com/archives/ubuntu-motu/2008-January/003046.html13:17
Alohagotcha13:17
ion_It’s just orders of magnitude slower than git. :-(13:17
Alohaso its made by "ubuntu"13:18
\shAloha, nope13:18
\shAloha, it's sponsored by canonical ;)13:18
Alohaoh sponsored, gotcha13:18
persiamok0: Yes, but that wasn't the ideally targetted forum (although still a good request).13:18
* \sh 's busy with gnucash13:18
\shScottK, what wasn't working in pbuilder-dist?13:19
mok0persia: working in this communtity has taught me that patience pays off :-)13:19
ScottK\sh: I'm not sure, but laserjock was saying he wrote a new script because it wasn't working for him.13:19
ScottK\sh: Something wrong with create, so if you can make a new pbuilder, then I think it's fine.  Might be worth a quick test.13:20
\shScottK, ok...I'll test after gnucash13:20
ScottKOK.13:20
\shand if anybody has experience with crystalspace, I would like to ask for some testbuilds of new upstream....looks like it's broken somehow but I don't have any clue about it13:21
mok0There's actually a build machine called "hooker"...13:23
* \sh has his own build machine ;)13:24
ScottKmok0: I choose to assume it's named after General Hooker.  http://en.wikipedia.org/wiki/Joseph_Hooker13:24
mok0ScottK: Oh, of course :->13:25
ion_One of my keyboards (as in, the ones with black and white keys that play sound) has a controller titled “Bender”.13:25
\shion_, I think the "Bender" name for the "make sound keyboards" are older then the name of Futuramas Bender ;)13:26
\sh"Good News Everyone" !13:26
mok0"Building bender in hardy on hooker" :-P13:26
ion_It’s just called “Pitch Bend” in every other keyboard i’ve seen. :-)13:26
\shwell...looks like we get a new gnucash version soon....after the gconf fix it's building again ;)13:28
Alohain apt-get source how do i get an earlier package version, such as hello-debhelper-2.1.1 instead of 2.2?13:29
persiaion_: I've seen "mod" and "twist" as well.13:30
\shScottK, do you still want to have quilt introduced in gnucash fixing *.desktop* files?13:32
* persia encourages fixing .desktop files, but wonders if it is really worth quilt13:34
\shpersia, I agree...packages without any patch system where we have to add some trivial fixes could be still be made inside diff.gz13:35
\shbut I asked better ScottK because he introduced quilt in gnucash ;)13:35
persia\sh: Depends on the maintainer.  If a maintainer always uses patch system X, and we know that, and we introduce a change, using patch system X is the best way to do that.13:35
\shpersia, there was no patch system before and after ;)13:36
AnAntpersia: so, all I have to do is remove the Vcs-* fields ?13:36
\shand there are two changes left...libungif4-dev -> libgif-dev and the desktop fixes13:37
AnAntpersia: and still keep the package source in the current SVN repository ?13:37
persiaAnAnt: That would suit me.  My objection is to specifically asking people editing the package to use the VCS repo, and not granting them access by default.13:37
AnAntpersia: ah, ok13:38
persiaWith LP, it's easy to add the ubuntu-dev group, but externally, it's hard.  If the packaging isn't listed as being in a VCS, people just commit changes to the repo.  Maybe a little harder for you to track, but less confusing for normal package maintenance.13:38
Alohawohoo almost done building my first source package13:41
AnAntpersia: ok, and the svn URL would be mentioned in copyright ?13:41
persiaAnAnt: Well, that gets back to whether it is a native package.  If you downloaded it from some upstream, it isn't native, and shouldn't be treated as such.  If it is native, then there's no upstream from which to download it, and it wouldn't get put in debian/copyright.  Personally, I don't like native packages (and really appreciate the way the mythbuntu team does their packages)13:42
StevenKGrumbles.13:44
* StevenK wonders how to join lines from stdin13:45
jpatrickstdin: you around?^^13:45
persiaStevenK: Do you mean like a zipper mixing stdin and a file, or just push a stream onto a single line?13:45
StevenKpersia: Not exactly. I have 1 2 3 4 on seperate lines, and I want to end up with 12 34 on seperate lines.13:46
StevenKI thought paste could it, but it seems it can't13:46
persiaStevenK: awk can do that.  Now I have to go look for my scripts.  Given your preferences for newfangled human-readable languages, you might find perl easier (only chomp every other input line)13:47
StevenKSince the script is in shell, I'd rather not pipe to Perl13:48
\shawk != human readable ?13:48
StevenKSince if I'm going to end up piping to Perl, I may as well rewrite the script in Perl13:49
persiaStevenK: awk '/$/ {sub(/\\$/,""); getline t; print $0 t; next}; 1'13:51
persiaNote that this works by accident in a way, as it just grabs the second line when the first terminates, and then skips the actual processing of the second line, as it was already grabbed.13:51
ScottK\sh: You can be confident that if I introduced a patch system, it wasn't quilt.13:52
StevenKHaha13:52
\shScottK, ohj well...it was siretart indeed...sorry scott ;)13:52
zulheh dpatch is worse13:52
* persia suggests that the best patch system is that which allows the person adding patches to have an easy workflow, and is rarely the same for any two parties.13:53
ScottKWell without dpatch-edit-patch it'd be painful, but with it is pretty easy.13:53
\shScottK, quilt is also not so difficult .. well, when you understand how it works, sure13:53
ScottK\sh: Yes.  I think if I used it regularly it would be OK.13:54
StevenKAgreed. I sat down and fleshed out how to write a quilt patch13:54
* TheMuso prefers dpatch.13:54
\shnot forgetting to set  QUILT_PATCHES=debian/patches that is ;)13:54
\shbut I set this shell var now as default in ~/.bashrc13:55
siretart\sh: I did what?13:57
\shsiretart, introduced quilt in gnucash13:57
LucidFoxpersia> Sorry, I was away13:57
siretartbad siretart13:57
AnAntI use quilt13:58
LucidFoxI will try running combinediff right now and see if I can reproduce your problem13:58
\shsiretart, but you never activated it, that was pkern ;)13:58
siretartlol13:59
\shwell, I'd remove it again, because the fixes are trivial...13:59
\shoh pbuilder-dist is so broken14:04
\shah14:06
\shfixing it ,)14:06
\shoh nice14:10
\shhow to fix this14:10
\sh $( [ -z $BINARCH ] || echo "--debootstrapopts \"--arch\" --debootstrapopts \"$BINARCH\"" ) gives14:11
\sh--debootstrapopts '"--arch"' --debootstrap '"i386"' which failes14:11
=== EpBFGggG is now known as LjL
mruizjono: Hi!  Any advance about LoCo Council ?14:20
mruizups... wrong channel14:20
\shgnucash new upstream uploaded14:28
\shand hopefully found a fix for pbuilder-dist create14:29
norsettoheya all14:33
slytherinman-di: Did you forwarded info about lucene2 to whoever was facing the problem?14:35
mok0yo, norsetto!14:35
ScottKHello norsetto.14:36
norsettohey guys14:36
Alohawhat is acceptable in the "section" area of my .changes file?14:38
TheMusoHey mok0, norsetto.14:38
norsettohey TheMuso14:38
Alohai can't figure it out. i put unknown and gutsy and the ppa rejected them both14:38
frafuHello, the last version of mousetweaks in revu is again the correct one. Could anybody please review it. Thanks in advance. http://revu.tauware.de/details.py?package=mousetweaks14:38
Aloha4311a61ec1e32bc027b27736d858e6be 518 gutsy extra hello-debhelper_2.2-1.dsc for example14:39
man-dislytherin: yes14:39
slytherinman-di: Thanks. :-)14:39
man-dislytherin: and I have a plan when nothing happens in some timeframe14:39
man-dithe package is really outdated anyway14:39
slytherinman-di: So what is the plan exactly. :-)14:40
norsettowould anybody have any pointer re. ubuntu/debian udev policies?14:41
Alohaok changed to devel, lets see if that works14:41
man-dislytherin: NMU if really relly needed as it fixes an RC bug14:41
slytherinman-di: Which bug are you referring to?14:43
man-dislytherin: that w3c-dtd-xhtml bug14:44
slytherinman-di: Oh. I didn't know that was RC bug. :-)14:44
man-dithat but is not14:44
man-dibut it needs to be fixed to make lucene2 not FTPFS14:44
man-diso its indirectly RC14:44
slytherinah, ok14:44
\shwell...what should I do now with a wrong /etc/pbuilder/pbuilderrc that's another reason why pbuilder-dist create failes...14:46
\shlooks like I have to imrpove the script...14:46
slytherinman-di: I am not sure if I already mention but lucene2 may build with GCJ. At least the core part built when I disabled the unit tests. I will try again once the dtd bug is solved and package synced in Ubuntu.14:47
persiaslytherin: please subscribe me to the lucene2 sync bug if you get it fixed.  I have a personal interest in seeing that work.14:48
slytherinpersia: Sure. once the w3c-dtd-xhtml package is fixed in debian and man-di uses my fix for lucene2 in debian. :-)14:49
Hobbseeoh noes, it's dholbach!15:00
ion_:-((((15:01
mok0Anyone know of a good versatile benchmark suite, that runs from a script?15:02
persiamok0: There aren't any.  Or, there are lots, but nobody agrees.15:03
tuxmaniacHobbsee, dholbach15:03
Hobbseehiya tuxmaniac15:03
mok0persia: I tried lmbench, but it requires a lot of interactive input15:03
bddebianHeya gang15:04
mruizhi all!15:04
mok0I have the old Byte Magazine benchmarks in a tar.gz file. I don't think it's in the archives15:04
bddebianHello mruiz15:04
persiaHey bddebian.  Did trustedqsl work for you?  Is survex the last one?15:04
bddebianpersia: survex and ctsim are the hold-outs :(15:04
bddebianpersia: Oh, and Hi :-)15:05
persiaRight.  Have you tried survex 1.1?  I think ctsim is a lost cause, given the upstream response.  Similar reasoning led to dropping a few other packages (or just not building the WX GUI).15:05
bddebianpersia: Not yet.  I asked wookey about it when I filed the RC bug ;-)15:07
* persia cheers the power of RC bugs, and misses ajmitch15:07
norsettoheya dholbach !15:08
persiabddebian: Probably worth a shot.  Olly was at least interested, even if neither Phillip or I actually sent him a patch.15:08
bddebianpersia: Well get to work man.. :-)15:09
* persia is currently assigned 6 bugs, a library upgrade (and ensuing transition), REVU, and some upstream community work. Maybe in a couple weeks, but FF nears...15:11
bddebian:)15:12
emgentmalone  17315315:13
ubotuLaunchpad bug 173153 in audacity "[CVE-2007-6061] Denial of service and deletion of an arbitrary directory tree via symlink attack" [Undecided,Confirmed] https://launchpad.net/bugs/17315315:13
frafuIn fact, feature freeze is nearing and mousetweaks has not even passed revu yet. As the gui of mousetweaks is in the GNOME Mouse control panel, I wonder how long the main inclusion process will take!? I wonder whether there is a chance for mousetweaks to be shipped with hardy!?15:17
kdubanyone know of a program that still needs packaging, or a program that needs repackaging because the current version is too old? I have experience with making deb's but i might still need to look at the ubuntu standards page15:17
LucidFoxkdub> you can look at needs-packaging bug in Launchpad15:18
LucidFox* bugs15:18
kdubLucidFox: hrm, thanks. i always seems to get lost trying to navigate around launchpad...15:19
LucidFoxkdub> https://bugs.launchpad.net/ubuntu/+bugs?field.searchtext=&orderby=-importance&search=Search&assignee_option=any&field.assignee=&field.bug_reporter=&field.bug_contact=&field.bug_commenter=&field.subscriber=&field.component-empty-marker=1&field.status_upstream-empty-marker=1&field.omit_dupes.used=&field.omit_dupes=on&field.has_patch.used=&field.tag=needs-packaging&field.has_cve.used=&field.has_no_package.used=15:19
LucidFoxfind a package you like for which the bug is not assigned, assign it to yourself, and begin packaging15:19
persiaThere's a shorter URL: https://bugs.launchpad.net/ubuntu/+bugs?field.tag=needs-packaging15:20
kdubthanks LucidFox and persia, its funny how i didnt find this in 20 minutes of looking for it15:21
kduband this is a motu-newbie question, but once i get it packaged, i can come back here and have someone look over the package to get it in the repos?15:21
persiabddebian: Tracking down a reference shows Debian bug #418713 for your amusement15:21
ubotuDebian bug 418713 in trustedqsl "Please build against wxWidgets 2.6" [Wishlist,Open] http://bugs.debian.org/41871315:21
LucidFoxkdub> You can upload it to REVU15:22
persia!revu > kdub15:22
kdubah, very nice. i suppose i'll get to work then :-D15:22
* persia notes that the last REVU day for hardy will be 4th February, so it may not be the best time to start as a new packager.15:23
nixternalhehe15:23
persiakdub: You may find the learning path easier with bugfixing (although you'll need to learn launchpad for that)15:23
bddebianpersia: I know, I actually have an NMU prepared for it already ;-)15:23
nixternalboo15:23
persiabddebian: OK.  You just asked me before about the fix, and I happened across an old mail while searching for something else, and wanted to make sure the apparent closure in ~test1 hadn't kept it from your sight.15:24
kdubpersia: i've been sifting through bugs already, but i've been mostly just trying to eliminate bugs people report that arent really bugs15:24
LucidFoxUbuntu has the concept of NMUs?15:24
LucidFoxOr are you talking about Debian?15:24
persiaLucidFox: When they are uploaded to Debian, yes :p15:24
LucidFoxah15:25
jeromeghello15:25
jeromegi'm trying to get an SRU for klavaro in Gutsy15:25
jeromegbug 18411215:25
ubotuLaunchpad bug 184112 in klavaro "[SRU] klavaro crash" [Wishlist,New] https://launchpad.net/bugs/18411215:25
jeromegis my proposal ok ?15:26
persiaLucidFox: And in a looser sense, when the Maintainer is set to a specific team (e.g. media, xubuntu, mozilla, etc.) it is considered good form to check with a member of the team before uploading for any significant changes.15:26
LucidFoxI see.15:26
persiajeromeg: You probably want to subscribe ~motu-sru to that bug15:26
persiaFurther, you likely want to prepare a debdiff (or convince someone else to do so) for review.15:27
jeromegpersia: ok15:27
jeromegi sucribed the wrong team15:27
jeromeg*suscribed15:27
LucidFox*subscribed :)15:28
persiajeromeg: It gets a little confusing.  Both teams are likely interested, although only one is actually responsible for reviewing the change.15:28
jeromegpersia: ok15:28
jeromegLucidFox: thank you :)15:28
norsettoping superm115:29
LucidFoxOn an unrelated note, does it make sense to sync -1 from Debian if it's identical to -0ubuntu1? Or if it contains functionally the same changes?15:30
persiaLucidFox: Little benefit to such a sync.  I usually skip those.  Some people like to sync them to make the Ubuntu variance appear less.15:33
danbhfivehello all, is this the correct channel to ask about MIME types and packaging?15:34
\shhmmm15:35
LucidFoxIn this case, I'll wait for the new upstream release of SMPlayer, which comes in a week or two, get it into Debian first, and then sync.15:35
\shsome pakcages I uploaded are not showing up in hardy...strange15:35
LucidFoxdoko> I see you have uploaded icedtea to Debian - excellent work!15:37
LucidFoxhopefully more Java packages can move to main now15:37
persiadanbhfive: It is a reasonable forum to ask questions, but not the best place to ask for changes in handling.15:37
nixternalI am becoming more and more impressed with icedtea every day...I can build most of my standard java apps with it now, which is good15:37
persianixternal: Try using it on ARM or Sparc15:38
nixternalhehe, no thanks!15:38
* persia touts gcj15:38
nixternalgcj won't build any of my java apps15:38
zulwhat hangman? :)15:38
nixternaland if I forget to update-alternative and I have gcj, I am constantly cussing trying to figure out why it is broke :)15:38
danbhfivepersia: I have a project that I created, and it needs packaging, and it needs a file-type association.  Knowing that, would you say this is the place?15:39
persiadanbhfive: Depends on what you want.  You can ask a question here, but the actual mechanisms that drive it aren't managed by MOTU.15:40
danbhfivepersia: I'm not sure I follow15:41
persiadanbhfive: Just ask a question.15:42
DaveMorrispersia: if the last Revu day is the 4th, how many are there between here and then.  Or have you got a link to a site with the dates on?15:43
danbhfivehow do I set it up so that, when I double click certain text files, they are opened in my python script?15:43
persiaDaveMorris: Happens every Monday, so there are two more.15:43
dx9s_workbeen stumped on this (have qt4-dev-tools 4.2.3-0ubuntu3 installed) "qt4-dev-tools:15:44
dx9s_work  Depends: libqt4-core (=4.3.2-0ubuntu3) but 4.3.2-0ubuntu3.1 is to be installed" when it wants to upgrade15:44
persiadanbhfive: Assign them a MIME type, register the MIME type, and report that your app handles the MIME type in the .desktop file.15:44
dx9s_workis there a qt4-dev-tools 4.3.2-0ubuntu3.1 ?15:44
persiadx9s_work: Yes.  In gutsy-updates.15:45
danbhfivepersia: well, I don't know how to do any of that, is there documentation on that stuff?  or can you explain it?15:45
dx9s_workpersia, I have that in my source (did an upgrade from 7.04 Feisty) .. I suspect I am missing a line in /etc/apt/sources.list then...15:46
persiadanbhfive: I'm not the best person to ask (I don't tend to do new packages).  The dh_installmime manpage suggests the mime-support and shared-mime-info packages may have some documentation.  The freedesktop.org website can help with the .desktop file.15:46
persiadx9s_work: Perhaps the line is missing in the chroot in which you are building?15:47
dx9s_worknot a .deb maintainer.. end user here15:47
danbhfivepersia: cool, thanks, I'll look into those15:47
=== Amaranth_ is now known as Amaranth
persiadx9s_work: In that case, yes, likely /etc/apt/sources.list.15:48
dx9s_workpersia, here is my current sources.list -> http://rafb.net/p/N7Nubr53.html15:51
persiadx9s_work: Strange.  I have no explanation.  Might check with someone who looks at those more frequently (possibly in #ubuntu) or register a question.15:52
dx9s_workpersia, funny thing is similar setup at home ... and the dev-tools updated.. so it's weird15:52
dx9s_workI thing -motu was targeted at .deb packaging issues15:53
dx9s_work(and dependencies)15:53
* persia encourages someone to review awn-extra-applets or opensg, even though it's not REVU day, because they have now missed two REVU days, and really need another pair of eyes.15:53
dx9s_workpersia, do you know how to search the gutsy offical repos for .deb files then I can try to back trace it to a line that I might need to uncomment... those tools might be a part of a backport15:55
jeromegpochu15:55
\shScottK, improve pbuilder-dist a bit so it's working now15:55
jeromeg:15:55
\shs/improve/improved/15:55
persiadx9s_work: They should all be in Packages.gz15:55
jeromegpochu: sorry. I was able to test scribes 0.3.3.3-1 and it seems to work fine.15:56
persia\sh: Any leftovers still broken?15:56
jeromegpochu: may I ask for a sync ?15:56
dx9s_workpersia, heh ... sorry to ask .. where is that file?15:57
\shpersia, I'll check the bug list before I push my changes15:57
persiadx9s_work: There should be one in every path three levels down from http://archive.ubuntu.com/ubuntu/dists/.  The correct answer depends on what you want.15:58
LucidFoxFinally! mpeg4ip has passed NEW!15:58
pochujeromeg: sure. Let me know the # and I'll ack it.15:58
dx9s_workpersia, ty (semi-new to the whole .deb thing -- if you ask me anything about Slackware .tgz's I can answer it :) )15:58
LucidFoxlibmp4v2 builds unbroken at long last!15:58
pochujeromeg: thanks for testing it!15:58
jeromegpochu: np15:59
persiadx9s_work: Is there a semi-automated system to produce a .dsc from a .tgz?15:59
jeromegpochu: oh I'll just test printing before submitting it15:59
\shpersia, fixed pbuilder-dist create, provide a sane source.list for --aptconfdir and remove $COMPONENTS_LINE which sadly didn't work (I wonder why) , added --http-proxy support and changed the $ARCHIVE workflow a bit, so it's possible to set $ARCHIVE before the pbuilder-dist call15:59
persia\sh: Although I have never used pbuilder and don't really intend to start, I commend your attitude towards fixing everything for a new upload :)16:00
\shpersia, hehe :)16:00
ScottK\sh: Good.  It's nice when stuff actually works.16:01
LucidFoxno kde4libs on hppa? that's a shame16:01
LucidFoxlooking at the build log, it just segfaulted for no apparent reason16:01
dx9s_workpersia, okay I can't answer that.. .dsc description files? mainly there is no standard method for dependency checking ... 3rd party tools that do okay but nothing perfect...16:02
persiadx9s_work: :)  That's OK.  I didn't really expect there to be one.16:03
jeromegpochu: the print dialog causes the following erros in terminal but works: http://paste.ubuntu-nl.org/53036/16:03
pochuDo we need a bulb next to the new packages in REVU? It makes the rows too high16:04
pochujeromeg: please go ahead. I don't think that's a regression, and I can't say that's scribes' fault...16:05
persiapochu: source is in LP :)16:05
dx9s_workpersia, yeah, different methods for updates... some just hack the changelog file and apply them in order (slack-apt) and so forth.. but without dependency checking -- lot of tgz maintainers try to link the binaries to generic (symlinked) libs so instead of libBLAH.so.0.1.123 .. it's libBLAH.so.0 (or *.0.1) so updates don't break because of specific versioning.16:05
pochujeromeg: and since it works ;)16:05
jeromegpochu: ok :)16:05
=== bigon` is now known as bigon
persiapochu: If you're hacking, I'd like to see hearts for >1 advocates, bulbs for 1 advocate, glasses for 0 advocates, and hammers for rejections.  The two icon bit was more important when updates were going to REVU as well (now we use debdiffs & interdiffs).16:06
pochupersia: how do you reject a package in REVU?16:08
mok0persia: don't tell him16:09
persiapochu: A rejection happens when someone who is registered as a reviewer (as opposed to a contributor) leaves a comment without advocating.16:09
persiamok0: Better to tell him: otherwise he'll be rejecting my accident :(16:09
jeromegpochu: bug 18510616:09
ubotuLaunchpad bug 185106 in scribes "Please sync scribes 0.3.3.3-1 (universe) from Debian (unstable)" [Wishlist,New] https://launchpad.net/bugs/18510616:10
pochujeromeg: thanks16:10
jeromegpochu: np16:10
mok0:-)16:10
smarterhi16:11
pochupersia: I see, thanks16:11
smartercould someone please review my extremetuxracer package? :) http://revu.ubuntuwire.com/details.py?package=extremetuxracer16:11
mok0smarter: what's extreme about it?16:12
persiamok0: It's extremely better than the aging nearly abandoned upstream tuxracer we have in the archives16:13
smartermok0: it crashes your computer if it doesn't like your graphic card :P16:13
dx9s_workpersia, fixed it.. gonna compare the pasty to what I have now... not exactly sure which lines I've changed (used the gui -- which is nice, but text files are forever! *lol* )16:13
smartertuxracer is not in the repo16:13
smarterppracer is in the repo16:13
smarterand is dead16:13
mok0smarter: nice excuse for getting a new one :-)16:13
persiaAh.  Right.  We have planetpenguinracer16:13
smartertuxracer is commercial now IIRC16:14
* persia points at Debian bug #461911 as justification for extremetuxracer16:14
ubotuDebian bug 461911 in planetpenguin-racer "planetpenguin-racer is deprecated, please package Extreme Tux Racer" [Wishlist,Open] http://bugs.debian.org/46191116:14
smarterand bug #5329916:14
ubotuLaunchpad bug 53299 in ppracer "RFP: Extreme Tux Racer" [Wishlist,In progress] https://launchpad.net/bugs/5329916:14
TheMusoHow many changes does that game have to go through?16:14
TheMusoFirst tuxracer, then planet penguin racer, and now this.16:15
* persia corrects the link relationship16:15
persiaTheMuso: Better than most games.  At least in this case, someone always picks up the ball (or hill, depending on how you look at it)16:16
dx9s_workpersia, think it was in universe someplace16:16
TheMusopersia: True.16:16
\shbug #175183 also fixes16:17
ubotuLaunchpad bug 175183 in ubuntu-dev-tools "pbuider-dist fails to create chroot" [Medium,Confirmed] https://launchpad.net/bugs/17518316:17
\sh-s+d16:17
mok0smarter: the first thing I do when playing with a new program is to look at the man page. I think your etracer.6 is very short and you may want to sell the program better.16:17
\shand bug #17294316:17
ubotuLaunchpad bug 172943 in ubuntu-dev-tools "pbuilder-dist: Optionally allow to use gksudo instead of sudo" [Wishlist,Triaged] https://launchpad.net/bugs/17294316:17
smartermok0: well, I basically copy&paste the ppracer man page16:18
* dx9s_work thanks persia (even tho not much help, it still was enough)16:18
smarterI'm not very good at doing that ^^'16:18
mok0smarter: add some of your own enthusiasm for the program16:18
smartermok0: I can try ;)16:19
mok0smarter: why is it better than tuxracer? Is the graphics good? Sound? Music?16:19
mok0smarter: game play? tell about how tuxracer is cult16:19
mok0smarter: tell the story of tuxracer, how it developed into extreme16:20
mok0smarter: what graphics cards are supported16:20
smarterthat's a manpage, not a complete review :o16:21
mok0smarter: brief description of key bindings16:21
sistpoty|workmok0: why should that be in a man page?16:21
smarterand I don't think there's a list of supporter graphic card16:21
mok0sistpoty|work: because it's nowhere else and he should sell the program16:21
mok0IMHO anyway...16:21
sistpoty|workmok0: the (long) discription is for that... in the man page I expect to find information on how program options, eventually directories or controls of it16:22
persiasistpoty|work: There are lots of manpages with amusing history.16:22
smarterIs there a good (Qt) manpage editor?16:23
mok0sistpoty|work: I am not saying that information should not be there16:23
pochupersia: hearts for >1 or >=1 advocates? I think the later is better, don't you?16:24
mok0smarter: if you don't like to edit manpages, check out asciidoc, you can generate man pages from a simple layout16:24
mok0smarter: it's just my opinion, anyway, and I am not a MOTU ;-)16:25
persiapochu: adv<0:hammer, adv=0:glass, adv=1:bulb, adv>1:heart would be my thought.  "Needs work", "Needs a look", "Turned someone on", "We love it"16:25
=== x-spec-t is now known as Spec
pochupersia: hmm, advocates < 0 ? Does REVU adv -= 1 when you don't advocate a package?16:27
sistpoty|workpochu: nope, adv=0 can never hapen16:27
persiapochu: Not really, but when a MOTU leaves a comment and doesn't advocate, it counts as negative advocation in a way (and no, this isn't how the code works)16:27
sistpoty|work+p16:27
persiasistpoty|work: Hrm?  Do you mean to say that when a MOTU comments, the state changes (and this cannot be prevented), or that there can never be 0 advocations for a candidate?16:28
frafuTheMuso: I would like to let you know that I managed to upload the correct version of mousetweaks a second time to revu. So if you still intend to review it (which would be nice), you can simply pick the most recent upload.16:29
sistpoty|workpersia: no, I just wanted to say that my brain (which says kvirc as irc client->german keyboard layout) is making me heavy trouble here at work, where I have a us layout *g*16:29
TheMusofrafu: I know, I will do my best to get to it, however I am somewhat busy.16:29
persiasistpoty|work: I completely understand.  My current client has a US layout, which means I tend to pair "*...(" far too often :)16:30
sistpoty|workpersia: so there can never be adv<0, but negative advocations add the hammer (= motu comments w.o. advocate flag set) iirc16:31
persiasistpoty|work: Right.  pochu's point was that double icons made the page too long.  Given that we discourage existing packages on REVU now, I agreed it made sense to consolidate, and suggested trying for a patch.  (While I'm sure you've enjoyed your recent monopoly on REVU work, I suspect you wouldn't mind a bit of help)16:32
frafuTheMuso; thanks; should I perhaps ping dholbach, who is also motu and a member of the accessibility team (at least I think so) ?16:32
persiafrafu: You just did :)16:33
TheMusofrafu: He doesn't do accessibility stuff any more.16:33
dholbachfrafu: I'm a bit busy right now, sorry16:33
sistpoty|workpersia: sure, every patch is welcome :)16:33
TheMusodholbach: I will get to it in due course.16:33
dholbachfrafu: I'm not member of the team anymore16:34
jeromegpersia: could you please have a look at bug 185112 ?16:38
ubotuLaunchpad bug 185112 in torcs "Please sync torcs 1.3.0-2 (universe) from Debian (unstable)" [Wishlist,New] https://launchpad.net/bugs/18511216:38
frafudholbach; I just got informed about it; thanks nevertheless for your willingness to do it if you had time; TheMuso: thanks for you doing it. I won't disturb you (both) any longer16:38
jeromegpersia: i think that the delta you introduced in 0ubuntu1 has been applied to -2 in debian16:38
DaveMorriscan you make a package the same across multiple releases.  i.e. I have a almost 1GB doc package, can you make it so it appears only once in the repo?16:38
persiajeromeg: I can still crash torcs with a broken sound configuration despite the supposed fix for Debian bug #445806.16:39
ubotuDebian bug 445806 in torcs "Torcs can crash if OpenAL is unable to open a sound device" [Wishlist,Fixed] http://bugs.debian.org/44580616:39
smarterI can make a cooler manpage if it's really important but if someone could review my package before I upload again the ~30MB I'll appreciate :) http://revu.ubuntuwire.com/details.py?package=extremetuxracer16:39
jeromegpersia: but it looks like the patches are the same16:39
* persia looks again16:39
pochuDaveMorris: I don't think so.16:40
desertcGreetings grand MOTU.  Thank you for your support of Ubuntu.  It continues to be the best operating system anywhere.  May I ask your attention on a package issue?16:40
desertchttp://packages.ubuntu.com/gutsy/graphics/scribus16:40
desertcThe standard operating procedure in #scribus is to instruct all Ubuntu users to this page, when they say the packaging for Scribus is incorrect in Ubuntu:16:41
desertchttp://wiki.scribus.net/index.php/Getting_Scribus_on_Ubuntu/Kubuntu_up_and_running16:41
persiajeromeg: Ah.  Yes.  I previously played with the xrandr change, and didn't sync because I didn't think the try/catch clause was also included.  Thanks for bringing it to my attention.16:41
cyberixpersia: Does my new copyright file look ok to you? http://revu.tauware.de/revu1-incoming/malbolge-0801211640/malbolge-0.1.1/debian/copyright16:41
jeromegpersia: shall i suscribe ubuntu-universe-sponsors or you will take care of the ACK ?16:42
persiacyberix: Yep.16:42
persiajeromeg: I'm building it now :)16:42
persia(plus I get to fix it when it breaks, so ...)16:42
jeromegpersia: i know i should have asked you before filling the bug but i id things the other way round :)16:42
jeromegpersia: ok16:43
desertcThe channel admins have said they were unable to get MOTU managers to correct these issues, and they are requesting all Ubuntu users to obtain different versions of the program, instead of the Ubuntu packaged software.16:43
persiajeromeg: Don't worry about asking me for any of my syncs or merges.  I'm subscribed to bugmail for any packages I'm actually interested in, so I see them anyway, and I'm not very concerned about the size of my +packages16:43
desertcIs there a representative who can seek clarification in #scribus?  I can see you look very busy, of course.16:44
jeromegpersia: ok16:44
persiajeromeg: On the other hand, feel free to ask me any questions about said syncs or merges :)16:44
jeromegpersia: i just wanted to train a little and do a merge, but in fact I realised it could be synced :)16:44
persiadesertc: I'll visit (although I may not be able to provide a satisfatory explanation)  Please introduce me16:45
desertcpersia: right16:45
zulStevenK: ping16:47
persiajeromeg: Processing a merge and discovering a sync is a great way to do that :)16:47
jeromegpersia: yep, but to not for training to merge packages :)16:48
TheMusozul: another 7 hours or so I'd say and he'll be around16:49
zuldamn it16:49
persiajeromeg: I recommend checking the Debian list of recently closed RC bugs in combination with multidistrotools to find a good source of merge bugs.  The RC bugs tracker is down right now, so it's a bit manual.16:51
jeromegpersia: i use DaD or MoM16:52
jeromegpersia: got to go16:52
jeromegpersia: please let me a comment on the bug report if something is wrong, but for me it builds fine16:52
persiajeromeg: Those are also useful tools, but not so good at finding the ones that really need the merge.16:52
jeromegpersia: ok16:53
persiajeromeg: I'll be advocating after a couple laps (after scribus).  Thanks again16:53
jeromegpersia: np, thanks.16:53
jdongLucidFox: I see mpeg4ip pushed thru NEW, have you commenced rebuilds yet? (I'd be happy to do em right now)16:54
jdongsuperm1: ooh oooh oooh! new monodevelop!!!!!!! THANKS!!!16:55
jdong(yeah yeah I just got some dental word done, so deal with intoxicated jdong for a while)16:55
LucidFoxjdong> mpeg4ip hasn't reached the archive yet16:55
LucidFoxgtkpod-aac briefly exited and re-entered depwait when it hit DONE16:56
jdongLucidFox: ah, ok16:56
LucidFoxfaac is also in depwait, so both it and gtkpod-aac should be rebuilt automatically16:56
jdongLucidFox: ok, let's wait for faac to build, then I'd like to prod through mpeg4ip again with libfaac-dev enabled16:57
LucidFoxah16:57
jdongI'm afraid pushing it through right now would put us back at circular dep world :D16:57
LucidFoxyou could also sponsor avidemux 2.4.0 :)16:57
LucidFoxafter faac builds, that is16:57
jdongLucidFox: sure, we'll take a look at that soon :)16:58
jdongok looks like I should take this shiny new loaner car out for another spin (literally) in the snow :)16:58
jdonghopefully in an hour when I get back there'll be productive things to do :)16:59
=== bigon is now known as bigon`
emgenthello people17:06
sistpoty|workhi emgent17:06
TheMusopersia: You're up late.17:11
persiaTheMuso: Far too late :(17:11
superm1jdong, :)17:19
LucidFoxWell, at least it appears I have an excuse for the removed build-dependency of f-spot on beagle.17:20
LucidFox"f-spot is in main, and beagle has been demoted to universe"17:21
RainCTHi17:27
TheMusoHey RainCT.17:27
\shRainCT, I fixed some stuff in pbuilder-dist and added some new functionality...(sudo replacements included)17:28
RainCTmruiz: is it still necessary to modifiy gnome-chess.install now that you've patched the Makefile?17:28
RainCT\sh: I know. If it was already commited I'd have told you that you're my hero ;P17:30
\shRainCT, just testing the packaging...included even the bash completion;)17:31
mruizRainCT, I don't think so... I'll fix it17:31
RainCT\sh: great! :) (but next team please ping me if you work on some bug assigned to me.. if I hadn't had exams I would have already started working some of those)17:33
\shRainCT, I tried...;)17:33
\shRainCT, ok...I'll push the changes now to bzr17:33
RainCT(altough I realize they shouldn't be assigned to me until I really start working on them :P)17:34
RainCTheh17:34
\shand if someone has time please test them...before I create a new upload thx :)17:34
RainCTI'll do so now :)17:34
\shok..rev 60 is just coming up :)17:35
\shRainCT, but if you checkout...check your COMPONENTS_LINE code it doesn't work...I fixed it through introducint --aptconfdir with sane sources.list17:36
foolanohi17:37
foolanowhat's the next step after uploading a package to REVU?17:37
foolanowaiting for review?17:38
sistpoty|workfoolano: yep17:38
sistpoty|workfoolano: you can also post a link to your upload right here, maybe s.o. is interested in reviewing ;)17:38
foolanook i c17:39
pochusistpoty|work, persia: I'm with the REVU patch, and I have a little question. Actually for a package, new = True if it has >= 2 advocates in case it's a new package, or >= advocates in case it's an update. Since we don't want package updates in REVU anymore, does it still make sense to do that distinction?17:39
\shRainCT, should be up now...but I don't see the changes on LP until now17:39
RainCTfoolano: yes. if it's Monday somewhere on the world annoy people here asking for review (but only a little bit :P), and if it isn't Monday you can ask anyways :P17:40
sistpoty|workpochu: feel free to drop that17:40
persiapochu: Not really.  All the more so because the NEW package checking is a little odd (it only checks at the time of the first upload, so any package first on REVU shows as NEW)17:41
foolanoI've just uploaded two perl modules to REVU we are using in eBox:17:41
foolanohttp://revu.tauware.de/details.py?package=libnet-cups-perl17:41
foolanoand http://revu.tauware.de/details.py?package=libtree-perl17:41
sistpoty|workpersia: heh, the complete codebase is a little odd *g*17:41
=== tuxmaniac is now known as adminstrator
=== adminstrator is now known as tuxmaniac
persiasistpoty|work: For most use cases (especially when people follow the guidelines (which ought be properly written somewhere rather than passing as textual tradition here)) it works perfectly.17:42
\shbtw...we don't have this "don't advocate your own packages anymore", right?17:43
pochusistpoty|work, persia: sorry, I meant isReady = True if ... So I'll change it to "isReady = advocates > 1" always (without checking whether it's a new package or not). I think that will discourage people to submit updates to REVU, as that means the need 2 acks to get a heart and not 1 as now :)17:43
persiapochu: Maybe, but the fact that someone checks the packages once every couple weeks, and rejects all the non-NEW packages with a comment helps too :)17:44
persiapochu: And thanks for helping with the code :)17:44
roderikI'm having a litte problem creating a rules file that compiles one mono .exe file and installs it in /usr/bin. In build I do " gmcs -out:$$(pwd)/debian/tmp/usr/bin/mmcl.exe" but when running in binary-arch " install -m 755 -T debian/tmp/usr/bin/mmcl.exe  /usr/bin/mmcl.exe" i get a permission denied when building it in pbuilder? This seems strange since the thing uses fakeroot?17:45
\shRainCT, and for the --debootstrapopts subshell call, it wasn't working, too, just setting it by default helps a lot and doesn't matter even for the main arch17:45
pochupersia: my pleasure :) I hope I do more reviews after this is applied... And next thing will be the cookies issue ;)17:45
\shbtw..when someone reviewed and added a comment, please redirect them to the very same page, if not, press "reload" in your browser, and you have another comment send ;)17:46
RainCT\sh: I see it's currently priting everything it does (set -x).. forgot to remove this? :P17:50
\shargl17:50
\shmoment17:50
\shwell...if it works I'll remove it with the next push;)17:50
\shoh wow..build failures in gnucash, something I didn't see on amd6417:52
RainCT\sh: and.. are you saving the sources.list in $BASE_DIR/etc for some reason? (unless I'm overlooking something, I think it would be better to just create it in /tmp and remove it afterwards)17:53
\shRainCT, nope...I added --aptconfdir for it...it gives the user the possibility to add even alien archives ;)17:54
sistpoty|workpochu: sorry, was afk for a moment... as persia wrote: just get rid of that code fragment, I don't think we'll need it any longer17:54
\shRainCT, depending on the ubuntu release...for hardy just the default line, for dapper|edgy|feisty|gutsy it enables even the security and updates archive for the pbuilder17:55
RainCT\sh: «it gives the user the possibility to add even alien archives»   wouldn't the file be overwritten before running pbuilder anyways?17:58
\shRainCT, ha...fixing ;)17:59
RainCT\sh: heh.. now it makes more sense :)17:59
\shRainCT, ok..fixed18:00
RainCT\sh: a last complaint (well, actually it's a suggestion).. what's about looking at $PBUILDAUTH before $DESKTOP_SESSION, to allow people to use arbitrary commands (like using sudo even if they are in GNOME, or run gksudo with -g)?18:03
\shRainCT, where is pbuildauth coming from?18:05
rzrhi18:06
RainCT\sh: it would be a new variable, that users could set in .bashrc or wherever (like there is $PBUILDFOLDER already)18:06
\shRainCT, ah :)18:06
rzri was wondering, how command reportbug  is working on ubuntu ?18:06
\shRainCT, good idea :)18:07
RainCT\sh: in bash_completion: «options='create update build login execute dumpconfig'» => «options='create update build clean login execute'»  (and you forgot to change the header) :)18:07
RainCT\sh: ok, that's all; now I'm happy :P18:07
\shRainCT, fixing :)18:07
\shRainCT, cool...ok PBUILDAUTH support added18:09
pochusistpoty|work, persia: bug 185133 :)18:09
ubotuLaunchpad bug 185133 in revu "Improve package images so that there is just one image per package" [Undecided,New] https://launchpad.net/bugs/18513318:10
* LucidFox pings nixternal18:11
LucidFoxnixternal> looking at the kblogger-kde4 package, cmake.mk has been integrated into cdbs proper, so there's no need to ship it with the package18:12
\shRainCT, pushing18:12
jpatrickLucidFox: I believe the all KDE4 packages se a different version18:13
nixternalLucidFox: they have fixed the bug then? the reason behind including cmake.mk in debian/cdbs is because of that...all of our KDE 4 packages come with that cmake.mk18:14
LucidFoxah18:14
nixternalthere is a bug in debian, or was a bug in debian, that broke cmake builds18:14
mruizRainCT, I uploaded a new debdiff18:14
RainCTmruiz: seen it :)18:15
* nixternal checks out debian kde4/cmake repo18:15
\shif nobody has objections, I will create a new upload for ubuntu-dev-tools18:20
sistpoty|workpochu: excellent, thanks...18:22
sistpoty|workpochu: I'm not entirely sure, if I'll find the time to look at the patch in detail this evening though18:22
\shdholbach, ping do you have something for ubuntu-dev-tools which needs to be bushed to trunk?18:22
* sistpoty|work needs to go home now18:24
sistpoty|workcya18:24
_MMA_ScottK: Is bzrtools set to be backported from hardy as well?18:24
ScottK_MMA_: I don't know.  I haven't been doing that one.18:24
foolanoI've just realised that I uploaded the package as a debian-native package. I already fixed that with the proper .orig.tar.gz  and stuff. How should I proceed to update the one which is uploaded in REVU?18:25
dholbach\sh: no, I don't18:25
\shdholbach, ok...preparing a new package then18:25
_MMA_Ok. Ill have to find out who.18:25
emgentheya dholbach18:27
ScottKfoolano: Just upload the new package should be enough.18:28
foolanoScottK: do i have to increase the package version?18:29
ScottKfoolano: No.18:29
foolanook thanks18:30
AnAntpersia: Hello, I just uploaded a new versio of ubuntume-gdm-themes, I hope you would review it18:35
AnAntbrb18:35
* norsetto -> dinner18:36
desertcIf an application developer wants to work with Ubuntu to improve their packages, what is the official channel of communication?18:38
desertcIs there a better way to communicate than just submitting a bug-fix request?18:38
ScottKdesertc: Is it in Universe or Main?18:38
\shAccepted: ubuntu-dev-tools 0.25 (source)18:38
desertcUniverse, please18:38
ScottKdesertc: Show up here and discuss it has worked in the past (spe being the most recent example).18:39
desertcThank you.18:39
\shhmm...18:41
\shhow can I fix this: /usr/bin/ld: .libs/Transaction.o: relocation R_X86_64_PC32 against `mark_split' can not be used when making a shared object; recompile with -fPIC18:42
ScottKAdd -fPIC to the compiler options?18:42
\shScottK, already did...18:42
ScottKOh.18:42
\shno change...added it to the makefile.am as well, rerun autofoo18:42
\shno change18:43
\shah wait..-fPIC is LDFLAGS or CFLAGS?18:43
ScottKDoes the package that provides R_X86_64_PC32  need to be recompiled with -fPIC?  Don't recall.18:43
\shScottK, problem is , how do I determine this?18:44
\shwhich package or which lib ;)18:44
broonieThat's not a name of a symbol, it's a type of relocation but yes, check that whatever it links against isn't busted.18:44
CyberMatthttps://bugs.edge.launchpad.net/ubuntu/+bug/164213 Is there somthing i can do about this18:44
ubotuLaunchpad bug 164213 in ubuntu "[need-packaging] burnstation" [Wishlist,Triaged]18:44
\shbroonie, what's the easiest way? I think it was introduced in a gnome* upload today somehow18:45
CyberMattupstream debian/ upstream = AFK18:45
CyberMattfreeze soon18:45
broonie\sh: Off the top of my head, peer at things with readelf -a18:46
\shbroonie, thx :)18:46
=== Kmos_ is now known as Kmos
\shok...it looks like on i386 it's not failing...only amd6418:49
brooniei386 will never get this sort of error, there are so few registers that everything ends up being PIC anyway.18:50
\shbroonie, I think something was broken by the new gconf upload...which fixed a pkgconfig bug18:51
\shbroonie, to early for success: ../../src/engine/.libs/libgncmod-engine.so: undefined reference to `mark_split'18:52
warp10If upstream ships a debian/ within the tarball, what's the best to do if I want to package it?19:00
CyberMattwarp10, you ask upstream to rm it and if thet don't...19:10
CyberMattthats what i'm trying to figure19:11
blueyedwarp10: https://wiki.ubuntu.com/UbuntuDevelopment/FAQ#head-bfd54122250e4e424158dd506e4117dab25f0d2119:12
CyberMatti suppose you could hack up getorig-source but I'm lazy19:12
warp10blueyed: yeah... I was looking for that page, read the whole Pacakging Guide and forgot UbuntuDevlopment/ :-S19:13
warp10CyberMatt, blueyed: thanks19:13
CyberMattblueyed, thanks for finding that19:14
jdongooh looks like faac is built in several arches already19:14
CyberMatti knew it was there19:14
jdongwell onwards and upwards!19:14
* jdong breaks the rest of the media stack19:14
CyberMattwarp10, what are you packing just curious19:15
\shok...found why gnucash ftbfs19:15
CyberMatt\sh, now i can die happy :)19:15
CyberMattnot really19:16
\shCyberMatt, well, I hope it's what I think is buggy ;)19:16
warp10CyberMatt: Bug #18512519:16
ubotuLaunchpad bug 185125 in ubuntu "[needs-packaging] AutoZen" [Undecided,New] https://launchpad.net/bugs/18512519:16
CyberMattcool19:16
blueyedsounds interesting.. :)19:18
jdongsuperm1: what are your rhoughts on restoring faad and faac build deps on mpeg4ip?19:18
superm1jdong, i'm scared19:18
jdongsuperm1: shall we just sit quietly and don't do it till someone figures it out and complains on LP?19:18
warp10CyberMatt, blueyed: indeed. I didn't think such a software could exist :)19:18
superm1i dont like circular dependencies19:18
jdongsuperm1: Marillat had them both enabled for ages without any significant complaints19:19
jdong(circular deps aren't my friend either :D)19:19
superm1well in my last email to him he is dropping one of them19:19
superm1i forget whihc19:19
jdongsuperm1: he dropped faac19:19
jdongsuperm1: honestly I don't care about either :D19:19
superm1are faac and faad rebuilt yet?19:19
jdongsuperm1: so let's just sit tight and see if anyone on LP complains about its absence19:19
jdongsuperm1: they are partially rebuilt (not all arches)19:19
superm1oh okay19:19
superm1jdong, you going to handle queuing rebuilds for other stuff?19:20
superm1or you want me to grab anything?19:20
jdongsuperm1: you just keep mplayer happy, idn where you keep track of all that stuff, I'll try to grab the rest ;-)19:21
superm1jdong, haha okay19:21
superm1i'll upload it with a versioned build depend then19:21
jdongokies19:23
ScottKjdong: Clamav backport to Dapper is kicked off.19:26
superm1bah... someone updated mplayer without updating bzr19:26
* ScottK listens to the Dapper Buildd's groan as they wake up.19:26
=== Kmos_ is now known as Kmos
\shG_INLINE_FUNC was the bugger for gnucash19:30
pochu\sh: are you working on gnucash? Did you see bug 179104?19:31
\shbug #17910419:31
\shhmm19:31
ubotuLaunchpad bug 179104 in gnucash "Please merge gnucash 2.2.3-1 from debian unstable" [Wishlist,New] https://launchpad.net/bugs/17910419:31
pochuMy syntax was fine ;)19:32
\shpochu, gnucash_2.2.3-1ubuntu2.dsc19:32
\shpochu, already done...but forgot to set the closes syntax...please set it to fix commited19:32
jdongsuperm1: hmm maybe you should do a build check for forgetting to update the VCS and scream loudly :D19:34
jdongsuperm1: that would earn evil package of the year award :)19:34
superm1jdong, haha19:34
superm1yeah i like idea a lot19:34
jdong:D19:34
superm1i'm trying to find out who sponsored this right now19:34
jdongsuperm1: funny how LP really doesn't easily tell that :D19:35
superm1yeah19:35
jdonggpg: Good signature from "Jonathan Riddell <jriddell@ubuntu.com>"19:37
jdongsuperm1: ^^ :)19:37
superm1argh.19:37
superm1he should have known better19:37
jdongsuperm1: hard to yell at him though :D19:37
superm1yeah i know19:38
jdongsuperm1: though it'd be helpful to drop him a polite heads-up in case it comes up again19:38
* superm1 really considers the VCS check during build19:38
jdongsuperm1: but the more I think about it, the more I think a debian/rules VCS check is a good idea19:38
superm1the problem is that no single package uses a VCS the same19:39
superm1and mplayer is a lot different than many19:39
superm1the way it does things19:39
jdongyeah19:39
\shLaserJock, pbuilder-dist is working now ;)19:39
ScottKjdong and superm1: Since mplayer is maintained by MOTU and there's no MOTU workflow that requires VCS use, I think you've got nothing to complain about.19:40
superm1ScottK, its maintained by MOTU-media19:40
jdongScottK: it's less about complaining/blaming than about wanting to make sure people are aware of the preferred process...19:41
ScottKsuperm1: OK.  I saw that and assumed it was MOTU (since that's how MOTU gets displayed in LP).19:41
LaserJock\sh: oh? good to know19:42
superm1jdong, i'm almost thinking of doing a check using bzr diff19:42
ScottKLaserJock: Riddell is executing the clamav backport now.  So far so good.  Thanks again.19:42
\shLaserJock, pushed a new package to the archive...should be there soon19:42
LaserJockScottK: awesome19:42
\shScottK, please let riddell do some syncs...;)19:42
jdongsuperm1: easier, bzr cat :)19:42
jdongsuperm1: just compare debian/changelog version numbers19:43
superm1that requires a filename19:43
jdongsuperm1: a diff would take too long19:43
superm1jdong, bzr diff is very fast19:43
jdongsuperm1: not if you don'w have the full version history19:43
superm1oh.  which i do :)19:43
jdongsuperm1: i.e. if I apt-get source mplayer, then you want to diff it to bazaar.lp.net, it'll take a century and a half19:43
jdongsuperm1: however, if you just cat the debian/changelog on bzr and diff it to the local one, that is pretty fast19:44
superm1yeah i was thinking locally, but that would take ages, and annoying to need the whole tree19:44
superm1can the buildd's access the intarweb during builds?19:44
jdongsuperm1: I'm thinking just md5sum the changelogs. requires no version history19:44
jdongsuperm1: skip the check if DEBMAIL is unset?19:44
jdonglike what the maintainer spec does19:45
superm1so perhaps this is better added to devscripts directly19:45
superm1something to check for the vcs line in debian/control19:45
=== Spec is now known as x-spec-t
jdongsuperm1: that'd be nice19:46
jdongsuperm1: or if lintian can be modified to check VCS tags19:46
superm1jdong, okay i'll fix this and think about that some more19:46
superm1i'd rather a big fail than a lintian warning19:47
superm1people easily overlook lintian stuff19:47
jdongsuperm1: well sponsors are typically more paranoid :)19:47
mok0Hey the new queue is empty19:47
superm1we can't have that.  quick, everyone upload some NEW stuff :)19:47
* jdong uploads prevu2 :D19:48
mok0:)19:48
jdongnice; gtkpod-aac finally rebuilt on most arches19:51
CyberMattwell ill have somthing in REVU soon so you guys can put somthing in the que or laugh at my mistakes whichever19:51
cbx33ok guys I've totally forgotten how to submit to revu20:16
cbx33anyone got any ideas20:16
AnAntdput revu <changes file>20:17
cbx33thanks20:19
cbx33done20:20
AnAntnp20:22
=== apachelogger_ is now known as apachelogger
the_belgainhi there - i was wondering whether any MOTU might be able to review my fuppes package in REVU?  I uploaded it a couple of days ago, and would ideally quite like to try and get this accepted in time for hardy...20:27
ScottKthe_belgain: It's not a bad idea to include a link to the package on REVU in your request.20:32
ScottKCyberMatt: ^^^ - You too.20:32
the_belgaingood point... here it is: http://revu.tauware.de/details.py?package=fuppes20:33
CyberMatti don't have it up yet20:33
CyberMattfinishing touches20:34
smartercould someone please review my extremetuxracer package? http://revu.ubuntuwire.com/details.py?package=extremetuxracer thanks in advance ;)20:35
vemonhi! just updated a package in REVU according to the comments: http://revu.tauware.de/details.py?package=lashwrap20:40
vemonanyone up for re-review? :)20:41
Kmosvemon: revu day is over.. more next monday.20:43
ScottKKmos: There's nothing wrong with asking when it's not a revu day, just less frequently.20:43
* ScottK revu's when he has time, revu day or not.20:44
LaserJockexactly20:44
nixternalLaserJocky! HOLA!20:46
LaserJocknixternal: yo yo, homeskillet20:47
nixternaldamn you, I went with hola cuz you stole it, now you are stealing homeskillet :p20:48
KmosScottK: ok =)20:48
LaserJocknixternal: yo, u check out the KDE4-izzle my shizzle? ;-)20:48
ajmitchLaserJock: make the pain stop20:49
nixternalI have been running KDE 4 fully since October pretty much...I haven't been in KDE 3 since probably the beginning of December...forgot what it looks like :)20:49
nixternalajmitch: howdy!20:49
* ajmitch runs20:49
LaserJockajmitch: pain? that was nothin'20:51
LaserJockScottK: does this look like an OK rules for a python app: http://revu.tauware.de/revu1-incoming/memaker-0801222130/memaker-0.9.4/debian/rules20:52
* ScottK2 looks20:52
ScottK2LaserJock: Depending on what's in the make file, probably yes.20:54
LaserJockok, I just wasn't sure about the use of pyversions20:54
LaserJockwhen using pycentral it seems to be a bit more work than necessary20:56
ScottK2LaserJock: The key thing is to end up with the Python modules in /usr/share/python-central.  Any app goes in /usr/bin as usaul.20:56
tjaaltonhmmh, pbuilder claims that libmozjs-dev is a virtual package, which it isn't. What am I missing?20:56
=== \sh is now known as \sh_away
cbx33LaserJock, ogra showed me that way20:59
cbx33;)20:59
selckinits amasing how many people give the exact same awnser on some mailing lists21:05
selckintoo lazy to read replies i guess21:05
jdongselckin: you can't really blame them... I have 500 incoming mails to go through every day, I'm sure I'd sometimes fire back a duplicate reply21:19
selckinisn't that way more work then quickly glanse over 3 replies?21:20
jdongselckin: not always when you read the original question and are 1000% confident you have the correct solution21:21
jdongselckin: you'd be surprised at some of the mailing list blind-leading-the-blind threads how quickly they can wander off to another galaxy :)21:22
selckinsupose21:22
jdongselckin: but as an asker, I'd feel BETTER about a solution too if more than one person suggest it21:22
jdongso I don't think multiple replies are entirely useless, unless the OP has replied the problem was solved21:23
selckinok, you convinced me21:24
CyberMatta few more adjustments21:27
huatsnorsetto: Hey Hey hey21:36
huats:)21:36
huatssuch a long time without talking to you :)21:37
apacheloggeranyone knows if I have `libgif-dev | libungif-dev` as build-deps, whether it will prefer libgif over libungif?21:38
LaserJockyep21:39
LaserJockif neither are already installed I believe21:39
ScottKapachelogger: Yes it will if neither is installed.  If libungif-dev is installed, it won't install libgif-dev.21:39
* ScottK high fives LaserJock21:39
LaserJock;-)21:39
huatsanyone can tell me who to ask to mentor me to fix this bug 14671021:40
ubotuLaunchpad bug 146710 in hal "backlight brighness control does not work (Samsung Q45 with Nvidia GForce 8400M)" [Undecided,Confirmed] https://launchpad.net/bugs/14671021:40
apacheloggerScottK: excellent, thanks :)21:40
huatssince I got this laptop at work today and it really bother me...21:40
norsettohey huats, how is it!?21:41
nxvl_worknorsetto: hi!21:45
norsettohey nxvl_work21:45
nxvl_worknorsetto: how is it going21:45
=== _czessi is now known as Czessi
jdonganyone know if there's any work towards packaging clutch (transmission remote control UI) or if it's past deadline(s) to do so?21:46
norsettonxvl_work: fine thanks, hope you too?21:46
jdongI think it'd be a great package for Hardy universe to complement our new BT client :)21:46
nxvl_worknorsetto: good, with lots of work, and a little concern about what happens on Bug #18256, but i hope it was just a mistake21:47
ubotuLaunchpad bug 18256 in ubuntu "gpsd: new changes from Debian require merging" [Wishlist,Fix released] https://launchpad.net/bugs/1825621:47
cbx33hey guys21:48
cbx33how come I can't advocate on revu21:48
cbx33Logged in as petesavage@ubuntu.com ( Contributor )21:48
cbx33I am a MOTU21:48
TheMusocbx33: Probably because revu has been down, and has had a db rebuild since the last time you logged on.21:51
cbx33ahh21:51
cbx33who is an admin?21:51
TheMusocbx33: I'm not sure. I think I have ssh access to the box, but beyond that I don't think I can do much else to help revu.21:51
norsettonxvl_work: hmmm, perhaps you mean a more recent bug and dropped a digit?21:53
imbrandoncbx33: http://people.ubuntuwire.com/~uwsa/21:54
imbrandon^^ REVU admins21:54
imbrandoncbx33: what do you need ?21:54
nxvl_worknorsetto: heh, yes21:54
nxvl_worknorsetto: Bug #18256721:54
ubotuLaunchpad bug 182567 in samba "smb.conf example: Configuration Directive Inconsistencies" [Wishlist,Fix released] https://launchpad.net/bugs/18256721:54
cbx33can I be able to advocate on revu please imbrandon21:54
emgenthello there21:54
imbrandoncbx33: can you login successfully ?21:54
cbx33yes21:54
emgentpersia, ping21:54
cbx33i can comment21:54
imbrandonok lemme check it21:54
cbx33just not advocate21:54
cbx33thanky21:55
emgentheya imbrandon norsetto21:55
imbrandonello21:55
norsettohey emgent21:55
norsettonxvl_work: why concerned? whats the problem?21:55
nxvl_worknorsetto: that i make a debdiff with some changes, then chuck add some more changes and removes mi name from changelog21:56
norsettonxvl_work: oh I see, that kind of concern21:56
norsettonxvl_work: well, don't let it bother you, must have been an oversight21:57
emgentpersia, audacity bug it'snt fixed in hardy.21:57
emgentpersia,    defaultTempDir.Printf(wxT("/tmp/audacity%d.%d-%s"),21:58
emgent                         AUDACITY_VERSION, AUDACITY_RELEASE, wxGetUserId().c_str());21:58
emgentsee too: http://people.debian.org/~nion/nmu-diff/audacity-1.3.4-1_1.3.4-1.1.patch21:59
norsettonxvl_work: I think that the problem is that he was asked to look at the bug, so he fixed it, he didn't consider your patch at all21:59
nxvl_worknorsetto: nop, take a look at the changelog entries, those are the ones i wrote21:59
nxvl_worknorsetto: also dholbach always ask for someone of the team to check the diff before sponsoring them22:00
norsettonxvl_work: thats right, but since the package is in main and I guess chuck is maintaining it, he did it the fast way22:00
nxvl_worknorsetto: yep, and thats why i hope it was just a mistake22:01
nxvl_worknorsetto: but not less angry22:02
norsettonxvl_work: I'm quite sure it was, what is important is that you don't let it bother you, its not really worth it22:02
nxvl_worknorsetto: btw, i see there are calling for net MC Members, would you apply yourself, didn't you?22:03
CyberMattare http://revu.ubuntuwire.com/ and revu.t.d the same22:04
norsettonxvl_work: why should I? I'm a new guy on the block here, plenty of people more adequate than me for the post22:04
LaserJockCyberMatt: I think so yeah22:04
nxvl_worknorsetto: because i think you have what it needs to make people happy working on MOTU, a really helpful and nice person22:05
nxvl_worknorsetto: and those things are more important than technical skills22:05
CyberMatti've been so busy contributing to debian its been quite awhile22:05
nxvl_worknorsetto: and more for the management of a community22:05
bddebianYeah instead of an old crotchedy jerk like me ;-)22:05
LaserJocklol22:05
nxvl_worknorsetto: and as i think you don't know, it was you who gives me what i needed to make the effort on becoming a MOTU and don't quit :D22:07
nxvl_worknorsetto: since you where so patient, nice and helpful22:07
CyberMattgood news is my packaging is like 70-80% better bad news is debian-policy = the-bible now22:07
norsettonxvl_work: you better stop here before I cry ;-)22:07
norsettonxvl_work: I'm also worried about bddebian, he has a tendency to vomit on my shoes if he is not at ease ....22:09
LaserJockhaha22:09
LaserJockthat's a looooong ways to go22:09
LaserJocktransatlantic vomit22:10
bddebianhehe22:10
norsettoLaserJock: hmmm, try with the b word and see if it still has the same effect on him22:10
LaserJockhmm22:10
LaserJockmaybe we should find a pic to put on his wiki page22:11
cbx33heheh22:11
LaserJockalright guys, I'm out for a while.22:11
nxvl_worknorsetto: heh22:11
* nxvl_work HUGS norsetto22:11
* norsetto hugs nxvl_work22:12
CyberMattHAHA REVU's lintian and linda are out of date22:12
norsettonxvl_work: keep going mate, you have a good future ahead ;-)22:12
ScottKimbrandon: Are you around?  I need some source backport help...22:12
nxvl_worknorsetto: i hope, i have just stop a little with packaging to make my python skills better22:12
Ubulettewhich tag should I use to ask for sponsorship in main ?22:13
cbx33man22:13
KmosUbulette: subscribe to ubuntu-main-sponsors ?22:13
cbx33it was fun being a motu again22:13
cbx33;)22:13
CyberMatthttp://revu.ubuntuwire.com/details.py?package=jailkit22:13
nxvl_workUbulette: ubuntu-main-sponsors22:13
Kmos:)22:13
Ubuletteno tag ?22:14
CyberMattcould someone take a look22:14
Ubuletteok22:14
Ubulettebug 18517822:14
ubotuLaunchpad bug 185178 in libpng "Please sponsor libpng 1.2.24" [Undecided,New] https://launchpad.net/bugs/18517822:14
norsettook, time to go for me, see you all around22:14
TheMusocbx33: Was, or is?22:14
cbx33TheMuso, is22:15
cbx33I just havn't been around for a while22:15
TheMusocbx33: Right. Glad to have you bac.22:15
nxvl_workUbulette: you are asking for a merge?22:15
ScottKcbx33: Welcome back then.22:15
Ubuletteno22:15
Ubulettenxvl, debian is as behind as ubuntu22:15
nxvl_workUbulette: or the inclusion in hardy?22:15
cbx33hehe22:15
cbx33I just did my first actual upload to universe22:15
cbx33heheh22:15
cbx33I've made pacakge before22:16
cbx33but someone else always uploaded them22:16
Ubulettenxvl_work: isn't my description in the bug clear enough ?22:16
Ubulette1st line22:16
nxvl_worknope22:16
nxvl_work:D22:16
TheMusocbx33: What? You became a MOTU, and have never uploaded anything till now?22:16
nxvl_workheh22:16
nxvl_workreally it is22:16
nxvl_work:P22:16
Ubulette?22:17
KmosTheMuso: done by himself :)22:17
vemoni though only motus have upload rights?22:17
vemonbesides uploading to revu22:17
cbx33TheMuso, yup22:17
cbx33funny eh22:17
TheMusoKmos: Yes, I know that.22:17
cbx33ogra did a lot of my uploading22:17
cbx33cos most of my stuff was going to main22:17
nxvl_workUbulette: its almos 5:17 pm here, my brain is turned upside22:17
TheMusocbx33: Yeah it is kinda funny.22:17
nxvl_worki need to sleep22:18
cbx33but it was great to hit that button22:18
cbx33;)22:18
TheMusocbx33: Was it a package update you uploaded, or a new package?22:18
cbx33new22:18
Ubulettenxvl_work, np, i know the feeling far too much22:18
TheMusoWell don't forget to announce it to ubuntu-motu@lists.ubuntu.com22:18
cbx33oh22:18
cbx33i do?22:18
TheMusocbx33: Just a copy of the email you got from the ubuntu archive system is fine22:18
cbx33oh i see22:18
TheMusoit allows us to track new package uploads more easily22:19
cbx33alright22:19
cbx33will do that tomorrow22:19
TheMusoOk.22:19
nxvl_workwell, back to the conversation before22:19
nxvl_workbah! norsetto is gone22:19
TheMusoheh22:19
CyberMattwhy do i still have this nick22:20
=== CyberMatt is now known as mattarnold
=== mattarnold is now known as CyberMatt
RainCTgood night23:03
emgentpersia, ping23:18
persiaemgent: You need someone from SWAT to review that, not me.23:29
persia(and I don't play virtual table tennis)23:30
emgentpersia, done. my debdiff it's attached :P23:30
emgentheheh ;)23:30
emgentfor gutsy it's ok now, this night i will review for feist, dapper etc.23:30
emgent:)23:30
=== cprov is now known as cprov-afk
rzrpersia: thx it's uploaded https://launchpad.net/ubuntu/+source/jaaa23:43
rzrnow let's sync it to debian23:43
the_belgainhi - a maybe slightly OT question: I've accidentally uploaded a package to my PPA which doesn't have any ~ppaversion number appended to it.  is there any way for me to remove it from the archive in order to be able to upload multiple version of the package?23:53
the_belgaini don't want to just bump the main version number, because that would prevent people from being able to just remove the PPA if the package was added to the main ubuntu repo23:54
Flare183the_belgain: as far as i know you can't remove a package from your ppa yet...23:54
the_belgainthat's quite problematic, because making a single mistake can basically mean that your archive becomes somewhat unusable23:55
Fujitsuthe_belgain: With the next release of Launchpad, you should be able to delete packages easily. For now, you can ask a question on the launchpad project on Launchpad to have it removed.23:57
emgentFujitsu, heya!23:57
Fujitsuemgent: Hi, about to run off again (I'm on holiday with limited Internet connectivity).23:57
the_belgainFujitsu: I tried that, but the IRC channel didn't seem to be very responsive.  oh wel23:57
emgentFujitsu, hehe np :)23:58
Fujitsuthe_belgain: You obviously didn't - ask a question on the launchpad project on Launchpad, not on IRC.23:58
LaibschHi, I am fairly new to packaging for ubuntu.  I wonder what the recommended procedure is for creating a package from the information for a debian package (not an official debian package)23:59

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