/srv/irclogs.ubuntu.com/2008/07/26/#ubuntu-motu.txt

jpdsOK, groovy.00:00
* jpds heads of to bed. Night all.00:01
nhandlerNight jpds. Thanks for all of your help00:01
* RainCT doesn't think removing the debhelper.mk include is a good idea00:01
nhandlerWhy not RainCT?00:02
RainCTnhandler: can you paste somewhere the output of  dpkg-deb --contents *.deb   after building without it?00:03
nhandlerRainCT: Give me a few minutes. I have a few other changes to make first00:03
RainCTsure00:06
nhandlerRainCT: http://paste.ubuntu.com/30425/00:13
RainCTuhm.. if an application includes a lib but it only has static link files, what should I do?00:13
RainCTnhandler: ah, ok.00:14
nhandlerRainCT: So it was fine that I removed the debhelper.mk include?00:15
sistpotyhm... stupid question: how can I change the date of wiki.ubuntu.com/MOTU/Meetings=00:15
emgentmoin00:15
sistpotymake the = a ?00:15
RainCTnhandler: seems so. how are dh_docs and such called if you remove that?00:15
* sistpoty believes it's wiki magic *g*00:16
RainCTsistpoty: MOTU/Headers/NextMOTUMeeting00:17
RainCTerr,00:17
RainCThttps://wiki.ubuntu.com/MOTU/Headers/NextMOTUMeeting00:18
nhandlerRainCT: http://paste.ubuntu.com/30426/00:18
sistpotyRainCT: thanks!00:18
nhandlerIt doesn't look like they are calling dh_docs00:19
RainCTnhandler: o_O why do you use cdbs + normal debian/rules?00:19
RainCTsistpoty: you don't happen to know the answer my library question above, do you? :)00:21
nhandlerRainCT: I was told to add a patch system instead of modifying the source inline to make a minor change. When I asked here, someone suggested cdbs00:21
sistpotyRainCT: reading backlog... give me a sec00:21
RainCTnhandler: yeh, but it doesn't really make sense to use simple-patchsys if the package isn't using cdbs already00:22
sistpotyRainCT: you mean "<RainCT> uhm.. if an application includes a lib but it only has static link files, what should I do?"00:22
RainCTsistpoty: <RainCT> uhm.. if an application includes a lib but it only has static link files, what should I do?00:22
RainCTsistpoty: right :P00:22
RainCTls00:22
nhandlerSo what would you suggest I do RainCT ?00:22
sistpotyRainCT: is the library anywhere else in ubuntu? or just provided inside this application?00:23
sistpoty(as in dynamic library somewhere available)00:23
RainCTsistpoty: provided by the application. I don't know of any application which requires it, but on the other side I don't really know the app :P00:24
RainCTsistpoty: (ah, no. the application is called julius and it includes libjulius)00:24
sistpotyRainCT: but there isn't any libfoobar in ubuntu which can be linked against, is there?00:24
RainCTsistpoty: what do you mean?00:25
sistpotyRainCT: in this case, my gut says me that libjulius is mainly useful so that julius works, but not for anything else00:25
sistpotyRainCT: replace libfoobar with libjulius ;(00:25
sistpoty-( +)00:25
RainCTsistpoty: not that I know of00:26
sistpotyRainCT: if so, let it link statically... unless there's a good reason that anyone else would like to link against julius' library ;)00:26
RainCTsistpoty: and where do I put it? still libjulius-dev?00:27
sistpotyRainCT: yes... if you got headers and a static lib, these would go into the -dev package00:27
RainCTsistpoty: alright. so I can just ignore the Debian Library Packaging Guide saying that static libs are evil?00:28
sistpotyRainCT: the library packaging guide doesn't really say this... it rather (iirc) says that you shouldn't have a package linking against a static library00:29
sistpoty(which would mean duplicated code of the library inside the package)00:29
sistpoty(which happens during build time, so you'd need to rebuild everything build-depending on the static lib in case a security prob is found in the static lib)00:29
sistpotyand in this case, my gut says that libjullius is static since it's interface is tied to julies and might change frequently -> use case to not make a shared object00:30
RainCTsistpoty: ok. thanks :)00:31
nhandlerRainCT, What would you advise me doing to add a patch system? This is starting to become a real pain, considering the patch only adds 2 lines to the source00:31
RainCTnhandler: "include /usr/share/cdbs/1/class/autotools.mk"00:32
RainCTnhandler: did you add this?00:32
nhandlerYes RainCT00:33
RainCTnhandler: okay. then revert all changes to the debian/rules file and use dpatch instead00:34
Laneynhandler: You just need to add quilt or dpatch - both of which you've been given instructions for, and then add the patch using the system you choose00:34
RainCTnhandler: see the example in  dpatch.make  on what changes you've to do to debian/rules00:34
RainCT* man dpatch.make00:34
RainCTsistpoty: and how do I fix such stuff?  "dpkg-shlibdeps: warning: debian/julius/usr/bin/generate shouldn't be linked with libasound.so.2 (it uses none of its symbols)."00:40
sistpotyRainCT: does it use autotools?00:41
RainCTsistpoty: yep00:41
sistpotyRainCT: if so, I guess configure.{ac|in} will define somewhere AC_CHECK_LIB(shared_object_name, [..])00:42
sistpotyRainCT: this will add shared_object_name to the linker flags00:42
* crimsun_ removes libasound from highlight00:42
RainCTsistpoty: there's only configure.in but it hasn't any AC_CHECK... thing00:43
crimsun_.oO(how the heck did I acquire all this cruft in highlight anyhow?)00:43
* RainCT stares at crimsun_ :P00:43
sistpotyRainCT: then somewhere in there must be a -lcrimsun... er... -lasound ;)00:44
sistpotyRainCT: that's what you should remove00:44
RainCTsistpoty: neither :/   http://paste.ubuntu.com/30429/plain/00:45
RainCTsistpoty: ok, found it00:46
sistpotyRainCT: maybe in some Makefile.am there's a ..._LDFLAGS setting this value?00:46
RainCTsistpoty: i'm just stupid. it's in another one of the configure.in files, of course :)00:47
sistpotyheh00:47
sistpotyremember to do the autotools dance again then ;)00:47
RainCTsistpoty: I removed -lasound from libsent/configure.in but I still get that warning (which is for files from another directory, gramtools/, which doesn't mention asound in the configure files)00:54
sistpotyRainCT: did you do the autotools dance?00:55
RainCTsistpoty: uhm?00:55
RainCTI did dpkg-buildpackage00:55
sistpotyRainCT: as in aclocal, autoheader, automake, autoconf?00:56
RainCTsistpoty: doesn't autotools.mk do that? and won't that put crap into the .diff.gz?00:57
sistpoty(you usually can skip aclocal and autoiheader)00:57
sistpotyRainCT: I'm no cdbs expert... I guess you could check that from the build log00:57
RainCTautomake gets evil because it has no MAkefile.am and autoconf doesn't return anything00:58
sistpotyRainCT: and I guess I'm also not in a position to say if the resulting bloated .diff.gz is crap *g*00:58
RainCTlol00:58
RainCTand now it won't build :)00:59
directhexautotools makes nasty diffs00:59
sistpotyRainCT: maybe your package only uses autoconf but not automake? (I've seen such cases before)00:59
RainCTomg I hate autotools00:59
RainCT:P00:59
sistpotyRainCT: so you'd like to skip the automake thingy00:59
sistpotyRainCT: OTOH I see no problem with doing these during build time, to keep the .diff.gz clean (at least for ubuntu)01:00
sistpoty(in debian, you cannot assume that the buildds are clean, and hence might e.g. have a diffferent automake version installed than you really want)01:00
* RainCT guesses he will put the package into his PPA first :P01:00
sistpotyheh01:01
* sistpoty somehow feels amnesia when reading persia's post to ubuntu-motu01:04
=== Igorot is now known as acmeuser
=== acmeuser is now known as Igorot
* sistpoty goes to bed now... gn8 everoyne01:46
emgentnxvl: o/01:56
RainCTgood night01:57
emgentnight RainCT01:57
nxvlemgent: \o/02:08
nxvlemgent: thank you for UTU!!02:12
emgenthaha no problem :)02:12
nxvlemgent: i was looking for something like that02:12
* emgent need a server with large band.. :)02:13
emgentnow UTU is very slow..02:13
taconeemgent: cache it.02:13
emgentnah..02:13
taconeemgent: it's easy and simple O:-)02:13
emgenti know, but in generally i dont like cache! :)02:14
taconeme neither, but I don't like 1 minute wait as well02:14
* emgent need people.ubuntu.com/~emgent02:15
emgentwgrant: some news about orko ?02:15
wgrantemgent: Not at this time. What do you need webspace for?02:16
emgentwgrant: UTU and other stuff.02:16
wgrantUTU?02:17
emgentwgrant: yeah see planet.u.c02:17
Nafallohmm02:18
Nafallomy sanity restrict my hosting of .php...02:18
emgentNafallo: lol :)02:19
wgrantNafallo: Mhm.02:19
emgentwgrant: are you able to create an account?02:19
Nafalloalso... pony isn't fully routed yet.02:20
Nafallowell, not the way I want it to be anyway ;-)02:20
wgrantNafallo: Your definition of 'fully' is rather skewed.02:21
Nafallomeeh. only 259750 routes :-P02:25
=== ScottK is now known as ScottK2
=== ScottK2 is now known as ScottK
ScottKemgent: You have to be a Canonical employee to get that.02:36
ScottKGood $TIMEOFDAY all.02:36
emgentheya ScottK02:36
emgentuhm.. why canonical people dont use people.canonical.com ?02:36
wgrantMorning ScottK.02:36
ScottKThat's a question you'd have to ask them.02:37
ScottKGood evening wgrant.02:37
wgrantemgent: Because they want to be annoying and take up a good namespace. Duh.02:37
emgentit`s weird.02:37
emgentwgrant: lol :)02:37
emgentpeople.ubuntu.com should be for ubuntu developers IMHO02:38
ScottKWell the trick is it runs in the Canonical data center and they don't want to give non-Canonical employees hosting as I understand it.02:39
Nafalloemgent: I could be wrong here... but I'd be surprised if p.u.c supports php.02:40
wgrantNafallo: A whole lot of other Canonical hosts run Drupal *shudder*...02:41
wgrantBut rookery might not.02:41
emgentit`s true.02:41
emgentCanonical give hosting for loco team..02:41
emgent90% of this team use Drupal02:41
ScottKThat's a relatively recent development.02:41
StevenKemgent: Getting hosting is fairly easy and cheap.02:42
emgentStevenK: i know that. but the real question is: "ubuntu devel can use people.ubuntu.com hosting" ? If not, why?02:43
emgentI will open bug about it02:45
StevenKI don't think a bug is the right forum, but *shrug*02:45
wgrantA bug against which package?02:45
wgrantWasn't it discussed and denied by the TB?02:45
StevenKWas it? I have no idea.02:46
ScottKIt's been a while.  Canonical seems more open to not always being the be-all, end-all of Ubuntu, so maybe it should be revisted.02:46
ScottKI remeber it being discussed, but not if it went to the TB.02:46
emberemgent utu.php is just a php script?02:53
nhandlerI'm trying to add a dpatch patch system to a package. I'm following this guide: http://www.tuxmaniac.com/blog/2008/01/25/dpatch-just-superb-a-short-how-to/. It says to add 'unpatch' to the "clean" section of debian/rules. However, if I do this, dpatch-edit-patch says "make: unpatch: Command not found". What is the correct way to ensure the patch is reverted when a make clean is performed?02:53
StevenKnhandler: Did you include /usr/share/dpatch/dpatch.make in debian/rules?02:54
nhandlerYes I did StevenK02:54
StevenKOh, I know. You did "clean:\n\tunpatch\n" didn't you?02:55
StevenKunpatch is a target, not a command.02:55
nhandlerlol, That was it. Thanks a lot StevenK02:55
jmarsdenAnyone know where the minutes from the MOTU meeting earlier today can be found?  Is there a delay before they are posted?03:11
nhandlerjmarsden: I don't think they have been posted anywhere yet. You can look through the raw irc log though: http://irclogs.ubuntu.com/2008/07/25/%23ubuntu-meeting.html03:13
nhandlerCould someone look at my debdiff (http://paste.ubuntu.com/30451/) for skstream and let me know if it looks ok? I've never added a dpatch patch system before03:14
jmarsdennhandler: Looks OK to me, but I'm a newcomer too.  You'll want to bump the Standards-Version to 3.8.0 though, I think.03:18
RAOFAs long as you've actually _checked_ that it is standards-version 3.8.0 compliant!03:18
jmarsdenYes :-)03:19
nhandlerRAOF: Right now, it isn't 3.8.0 compliant. It does not have a README.source03:19
ScottKRight, then your debdiff isn't complete.03:19
nhandlerScottK, What exactly is meant to go in the README.source03:20
RAOFThat's only a 'should', rather than a 'must', though.03:20
ScottKnhandler: What does policy tell you.03:20
ScottKRAOF: At least in IETF terms (which is the only place I know of where should/must are pedantically defined), Should == Must unless you have a good reason.03:22
ScottKI don't feel like it isn't a good reason.03:22
RAOFScottK: Fair enough.03:22
nhandlerScottK, It says that you need to explain how how to generate the patched source, add a new modification, and remove an existing modification. But I'm not quite sure how to apply all of the patches.03:22
RAOFDo we have template README.source's in /usr/share/dpatch yet03:23
RAOF?03:23
ScottKnhandler: For dpatch or cdbs simply patchsys I tend to say use *-edit-patch, see man *-edit-patch for details on how.03:23
nhandlerSo I am able to refer them to a man page in the README.source file?03:25
ScottKThat's my theory.  No point in copying that out.03:25
nhandlerOk, because this wiki page (https://wiki.ubuntu.com/README.sourceHowTo) shows the actual commands03:26
ScottKConsidering the page was done by a non-developer, I don't know how much weight I'd give it.03:28
ScottKI don't think Debian Policy insists on actual commands.  It'd be odd for something really common like dpatch or simple patchsys.03:28
nhandlerOk, that will make things easier for me. Once I add the README.source, I think it will comply with 3.8.003:29
jmarsdenScottK: The 3.8.0.1 policy on README.source says in part "This explanation should include specific commands" ...03:47
ScottKOK.  Then I guess that it should.03:48
ScottKOf course dpatch-edit-patch is a specific command.03:48
jmarsdenI think I'll attempt to edit that Wiki page with an attempted generic dpatch and CDBS set of info...03:49
jmarsdenScottK: But it's not just editing them you are supposed to document, right?03:49
ScottKSounds good.03:49
ScottKRight, it's getting the source in the correct configuration to build it too.03:49
ScottKFor a cdbs or dpatch package it's unpacked that way naturally.03:50
dako3256Hello am new here. Um..I don't know where to start. Have read alot of the wiki, but still kinda lost.03:50
jmarsdendako3256: Is there a particular bug you want to fix, or application you want to package?  See https://wiki.ubuntu.com/MOTU/Contributing03:51
dako3256should I follow first steps to the tee?03:52
jmarsdenWell, that's what I did about a week ago :-)03:52
dako3256OK. will start there03:53
fokaHi!  I am uploading a new version of scim-bridge to Debian which merge in Ubuntu changes, and hopefully from then on Ubuntu will just "sync" the package from Debian.03:54
fokaMy question is:03:54
jmarsdendako3256: Go for it.  Ask here if you have questions.03:54
fokaCan I list both Closes: #xxxxxx to close Debian bugs, and LP: xxxxxx to close Ubuntu bugs in the changelog?03:54
dako3256thank-you I will03:54
jmarsdenfoka: Yes, both should be closed by doing that, from what I have been told.03:55
fokajmarsden, Cool, thanks!03:55
jmarsdenSomeone asked that on a mailing kist recently, and I remember reading the answer.  You're welcome.03:55
jmarsdenfoka: Official I think (LP: #XXXXX) is the preferred format for LP bug closing03:56
fokajmarsden, Thanks!  I'll do that then.  This feature is nifty!  :-)03:57
ScottKfoka: Yes.  The () is preferred, but is not part of the actual regex.03:57
ScottKfoka: And then either file a sync request yourself or mention it here so someone else can after it's uploaded.03:57
ScottKfoka: Thanks.03:57
fokaScottK, Thanks!  Yes, I prefer the parentheses too.  I use that for Debian too.  (Closes: Bug#426803), and later, (LP: #203334)03:58
fokaScottK, When is the deadline for intrepid sync?03:59
ScottKIs this a new revision or a new upstream release you're uploading?03:59
ScottKFor a new upstream release, it's at Feature Freeze, Aug 28.  New revisions can come later. https://wiki.ubuntu.com/IntrepidReleaseSchedule04:00
emgentnhandler: http://thc.emanuele-gentili.com/~emgent/media/haha.jpg04:19
nhandlerlol, did you make that emgent ?04:19
emgentno, i found it in my old files. :)04:20
nhandlerMaybe I'll make a script that lets you custimize what package it says you upgraded. I need a fun programming task.04:22
vorianemgent: nice job on the tracker04:22
emgentvorian: thanks :)04:23
fokaScottK, Thanks for the note.  I'll keep it in mind.04:31
fokaScottK, Hope I can make it for the Lenny freeze first.  :-)  (merging in Ubuntu changes now, but hopefully upgrading too.)  Good to know about Aug 28, one month from now.  :-)04:32
ScottKYes.  I understand.04:33
ScottKI had someone do me the favor of filing 3 bugs on a package I maintain in Debian today.04:34
wgrantI need to find a sponsor before the freeze - my AM/sponsor isn't responding to emails :(04:37
wgrantDebian really needs a better sponsorship system.04:37
ScottKYeah, if I wasn't a DM, I'd be dead right now.04:38
ScottKwgrant: It doesn't happen to be something Python does it?04:39
wgrantScottK: It is a Python app. But not a module.04:39
=== asac_ is now known as asac
wgrantI was most unhappy when it was 0-day NMUed when I had been waiting for sponsorship for a week or two.04:41
ScottKwgrant: There's a Python Application Packagine Team too.04:42
ScottKwgrant: It also meets in #debian-python04:42
wgrantOh, didn't know about that.04:42
ScottKThe two most active DDs are European, so now isn't a good time, but maybe in a few hours.04:43
ScottKPOX and bzed04:43
wgrantThanks. I'll have a look in there soon.04:43
ScottKThey are both quite open to contribution from Ubuntu.  POX often hangs out here and answers Python questions.04:43
ScottKwgrant: There you go.  Ana is a DD.04:53
ScottKCome on wgrant.  In 10 minutes I find you a Debian sponsor and where are you???04:55
jmarsdenScottK: If you have a chance, could you read/review my additions to https://wiki.ubuntu.com/README.sourceHowTo for dpatch and CDBS please?05:02
ScottKjmarsden: I'd mention the man pages.05:05
ScottKLooks good though.05:05
* ScottK suddenly remembers to upload the tarball for the new release and not just announce it on the web site....05:06
jmarsdenScottK: OK, will do.  I'm thinking I can then maybe get these into dpatch and cdbs somewhere under /usr/share/ so after that, README.source becomes "See /usr/share/misc/dpatch-README>source"  or similar :-)05:07
ScottKSounds like a plan.05:07
ScottKGo idea to send back to Debian too if they don't already have something.05:08
jmarsdenScottK: OK.  I've not yet figured out hwo to do any "sending back to Debian" -- is that process documented somewhere?05:08
copprodoes anyone know how to kill a java applet without killing firefox?05:09
ScottKGenerally the best thing is make a patch to Debian's version of the package and file a nice bug in their BTS with a good explanation of why the Debian maintainer should want the patch.05:09
ScottKAnd attach the patch, of course.05:10
jmarsdenOK, thanks.05:11
copprocan someone remind me why /usr/local/games/ is not in the path?05:21
crimsun_because /usr/games is, and no games in the repo that I know of use /usr/local/games/05:27
copproyes, but /usr/local/bin is in the path05:29
crimsun_what does that have to do with /usr/local/games, though?05:36
copprono programs in the repo should use /usr/local/bin, yet that's in the path05:37
crimsun_with the except of /usr/local/bin, /usr/local is pretty system-specific and thus doesn't have entries.05:37
crimsun_no, /usr/local/bin semantically should override /usr/bin05:37
copprowell, I know of several games that install themselves into /usr/local/games05:38
copproand it bugs me that it's not in patch05:38
coppros/c//05:38
crimsun_err, which games?05:38
crimsun_and by "which games", I mean "which games carried in the Ubuntu repos"05:38
coppronone, because that's against Policy!05:39
crimsun_precisely05:39
SolarWaris there a quick way to find out what versions of packages are available in intrepid?06:05
crimsun_SolarWar: rmadison06:06
SolarWarwonderful :)06:07
SolarWari am trying to create an ubuntu package however pbuild-ing it takes a while because of the setup time involved with all the dependencies, is it possible to install the dependencies inside the base.tgz?06:26
crimsun_they're cached upon initial retrieval06:29
=== RAOF_ is now known as RAOF
RoAkSoAxhey guys, i would like to ask you an offtopic question. Does anyone of you knows is canonical gives Ubuntu Desktop and Server support in other languages besides English?06:47
tuxmaniacHi people. A small package has been uploaded at REVU http://revu.tauware.de/details.py?package=gresistor It would be nice if someone reviews when available and gives back review comments.06:52
tuxmaniacthanks in advance06:52
porthosewhat is the correct syntax for closing a LP bug in the change log?07:09
jmarsdenporthose: (LP: #123456)07:09
RAOF(LP: #foo)07:09
porthosethxs :)07:10
=== RainCT_ is now known as RainCT
SWATI've submitted freeorion and libgigi (a dependency of freeorion) for review at REVU. If anyone has time and is willing, could you please review the packages in depth?10:18
=== gnomefre1k is now known as gnomefreak
=== gnomefre1k is now known as gnomefreak
=== gnomefre1k is now known as gnomefreak
joaopintoHello11:52
joaopintois the MOTU ML moderated ?11:52
lagaif i do a SRU, do i also need the SRU changelog entry in the package in the current development release, ie intrepid?11:53
RainCTjoaopinto: if you ask because of your mail, it arrived11:57
joaopintook tks, I didn't got it myself, I guess the ML is setup to not send back to the senders11:58
joaopintoalso, still no reviews :\11:59
k0pDktrKranz, are you there?12:33
DktrKranzk0p, yessir12:34
k0p:) i'm pinging you. I don't know if you remmber yesterday :p12:34
k0phehe12:34
DktrKranzI remember, and I already reviewed it ;)12:35
k0p:O12:35
k0pyeah12:35
k0pi'm seeing ..12:35
DktrKranzsome little details12:35
k0pyou're the best12:35
k0pok i'll read and fix :)12:35
k0pthanks a lot.12:35
k0pDktrKranz, have I a advocate?12:35
DktrKranznot yet. once fixed (first should be done by upstream ASAP), I can advocate it12:36
k0pDktrKranz, sure. it's cause I have in the column of advocates 1(0)12:36
DktrKranz(0) is advocate count12:37
k0poh sure12:37
=== gnomefre1k is now known as gnomefreak
DktrKranzfirst number is number of comments made12:37
k0pyeap :)12:38
k0pthanks12:38
DktrKranznp. if you can make a update upload, I can ACK it (and leave licensing issues in the hands of archive-administrators)12:39
k0pDktrKranz, I can solve today all except 3. I can only solve 3 in some days. It cause we're relaseing the stable version12:39
k0pyap12:40
DktrKranzany chance to have it before august?12:40
k0pof course12:40
k0pin some days we release it.12:40
k0pbefore 1st august12:40
DktrKranzso, no problem at all ;)12:40
k0pI hope12:40
k0psure.12:40
k0p:)12:40
k0pso give me some minutes12:40
DktrKranzk0p, I'd suggest you to delay upload when stable release will be available12:41
k0pDktrKranz, so only make another upload with all fixed, right?12:42
DktrKranzyes12:43
DktrKranzmore probability to find second avocate :)12:44
* DktrKranz is AFK12:44
k0pDktrKranz, sure.12:45
k0pthanks a lot for the help/review.12:46
=== gnomefre1k is now known as gnomefreak
=== gnomefre1k is now known as gnomefreak
=== Czessi__ is now known as Czessi
* Hobbsee throws https://bugs.edge.launchpad.net/ubuntu/+source/imlib2/+bug/235915 in the direction of the security people14:01
ubottuLaunchpad bug 235915 in imlib2 "[CVE-2008-2426] imlib2 PNM and XPM buffer overflows" [Undecided,Fix released]14:01
whiteHobbsee: it should be possible to just take the patch from debian i guess. Didn't check the version though14:04
Hobbseewhite: likely, yes.14:04
tuxmaniacHobbsee: free for a review?14:31
tuxmaniaca very small package14:31
Hobbseenot really, no14:33
tuxmaniacHobbsee: np. Thanks14:33
bddebianHeya gang14:37
IulianHi bddebian.14:43
bddebianHi Iulian14:44
tuxmaniachey bddebian14:44
bddebianHi tuxmaniac14:45
lagaso, the size of a package as shown in apt-cache show is in bytes, right?14:47
slytherintuxmaniac: which package?14:48
tuxmaniacfor bug 25191914:49
ubottuLaunchpad bug 251919 in ubuntu "[needs packaging] gResistor - Resistor Colour code calculator" [Wishlist,Confirmed] https://launchpad.net/bugs/25191914:49
slytherintuxmaniac: I will do a brief review once my currently package build is finished14:52
tuxmaniacslytherin: thanks14:53
DRebellionlaga, that's what it looks like15:04
* DktrKranz is happy, just sponsored 10 packages into the archives.15:12
nhandlerHow many of those were mine DktrKranz ?15:13
DktrKranznhandler, IIRC, 515:14
nhandlerWell, I'm working on a few more as we speak.15:15
NCommanderhey DktrKranz15:15
NCommanderDktrKranz, do you mind critiquing my current interface overhaul for REVU?15:16
NCommanderhttp://img75.imageshack.us/my.php?image=screenshotzn1.png15:16
* NCommander has currently redo some of the fonts, and removed the logo until I can redo it in the right colors15:16
NCommander*redone15:16
DktrKranzNCommander, I'm definitely not good in UI, especially for webapps, but it doesn't look bad.15:18
IulianDktrKranz: Do you mind having a look at salasaga on revu? It needs one more advocate. I think the package is ready to go.15:18
NCommanderDktrKranz, well, I just removed the Current uploads section, I'm trying to tidy it up, the current REVU page is kinda bleck15:18
slytherinNCommander: do you think you can out a feature using which revu will display some keywords parsed out of package description. It will make easy for reviewers to identify packages. For ex. Even though I am not a motu I would like to review java packages. But currently I have to download each package to see if it is a java app15:18
NCommanderslytherin, I was planning on completely remapping the details page to show things like the changelog, it won't be difficult once I redo some of the parsing code15:19
DktrKranzNCommander, you're working on REVU, a feature I'd like would be archiving packages while looking at them. Actually, there are only "Delete" and "Add advocation" links15:19
slytherincool15:19
DktrKranzIulian, surwe15:20
DktrKranz*sure15:20
IulianDktrKranz: Great, thanks!15:20
* DktrKranz sponsoring mode on15:21
NCommanderDktrKranz, Great idea!15:21
NCommanderDktrKranz, mind filing a wishlist bug for me?15:21
DktrKranzNCommander, sure15:21
DktrKranzI'll assign to you15:21
nhandlerNCommander, I know I and a lot of other people would really like to be able to subscribe to a package. That way, we can be notified by email when a comment or new upload are added.15:21
NCommandernhandler, already planned :-)15:21
nhandler:-)15:21
NCommanderBut feel free to add wishlists bugs, now that we have openid logins working, I plan to do a lot of overhaul15:22
slytherintuxmaniac: ping15:23
DRebellionNCommander, how about a set of links on the package page, that link to the launchpad bug and (optionally) the packager's PPA where they could already have the package uploaded and built, to save the reviewers' time because they won't each have to compile the package themselves?15:23
nhandlerOne other feature that I would like would be REVU user profiles. That way, I can easily see what packages a certain user has uploaded, commented on, or advocated.15:23
NCommanderI'm trying to decide if the list of New Packages/Updated packages should all be in the same page, or if I should break it into seperate tabs, sorta like Launchpad15:23
RainCTis some perl guy around?15:23
nhandlerRainCT, I'm pretty good with perl. What is the issue?15:23
NCommandernhandler, its kinda already there, see http://revu.tauware.de/stats.py15:23
* RainCT would like to know what Jcode->new($disp)->euc would be like using the Encode module15:24
StevenKRainCT: Me too, what's your question?15:24
DktrKranzIulian, I saw bernat just answered to your RFS on mentors... is package the same?15:24
RainCTnhandler, StevenK: ^15:24
* NCommander points people to https://bugs.edge.launchpad.net/revu15:24
NCommanderFile wishlist bugs for any features you'd like to see in REVU, I'll implement them if they're reasonable, and useful15:24
IulianDktrKranz: Yup, I sent an email to mentors IIRC.15:24
nhandlerNCommander, the stats page just shows numbers. It doesn't provide links to the comments/packages.15:25
IulianDktrKranz: Let me have a look. I'm not subscribed to that mailing list.15:25
NCommandernhandler, I said a start ;-)15:25
StevenKRainCT: I'll need a little more information than that :-)15:25
* NCommander is trying to determine a better way to make REVU usable for Updated packages15:26
RainCTStevenK: well, that's everything I know :P. there an "use Jcode;" and that line, but the script doesn't work because Jcode isn't in Ubuntu anymore, and the jcode page says that it was deprecated by Encoding from the std lib15:26
StevenKRainCT: Right, so the code needs to be patched to use Encoding; rather than Jcode.15:27
StevenKRainCT: I daresay you'd need to know Perl fairly-ish well to fix the script.15:27
tuxmaniacslytherin: pong15:28
RainCTStevenK: oh. I'll move it from /usr/bin to /usr/share/doc/../examples then :P15:28
IulianDktrKranz: I'm going to update the package for Debian right now. Thanks for telling me :-)15:28
DktrKranzno problem ;)15:29
StevenKRainCT: Ha. It isn't actually needed?15:29
IulianDktrKranz: So, no need to upload it to Ubuntu, I will request a sync when it's in Debian.15:29
DktrKranzIulian, do you want to archive your package for now?15:29
DktrKranzIt can be undone anytime15:29
IulianDktrKranz: Sure15:30
RainCTStevenK: no, it's just an additional tool (which can be used to convert some of the application's native files to a format from MS)15:30
DktrKranzIulian, ok... archiving for now, thanks. Ah... Bernat is a great sponsor, he uploaded debomatic for me ;)15:30
slytherintuxmaniac: can you patch the gresistor source to install icon in /usr/share/icons/hicolor/48x48/apps/15:31
IulianDktrKranz: Yup, I know him.15:31
tuxmaniacslytherin: ok15:32
RainCTStevenK: thanks anyway :)15:32
slytherintuxmaniac: wait, I just saw that file is named only icon.png. It will be confusing. Leave it as it is.15:35
tuxmaniacok15:35
tuxmaniacslytherin: is everything else fine?15:36
slytherintuxmaniac: well, there isn't much of anything to mess.15:37
tuxmaniacyeah its the fastest package I have ever done :-) 10 minutes flat15:38
DktrKranzvorian, re origami on REVU, I guess native package is just a upload mistake, isn't it?15:39
slytherinany MOTU with java expertise (except me)around?15:42
NCommanderslytherin, I have a little15:44
NCommanderthough I'm no MOTU15:44
slytherinNCommander: I am looking for sponsor for 2 packages.15:44
NCommanderoh, so I'm no help :-P15:45
nhandlerIs the new Homepage field in debian/control a requirement for Standards-Version 3.8.0?15:47
slytherinnhandler: ask lintian15:48
LaneyDktrKranz: Did you testbuild the guidedog upload of mine you just sponsored?15:53
Laney(I just got FTBFS emails on all arches)15:53
DktrKranzLaney, yes... but it was probably out of date since it FTBFS for an unstallable package right now :/15:54
* DktrKranz runs pbuilder update15:54
LaneyYeah15:55
LaneyIt built when I uploaded the debdiff :(15:55
DktrKranzLaney, it's transient, it should be fixed soon with a new kdelibs upload (or whatever)15:55
LaneyDktrKranz: Ah alright then15:58
Laneybtw, thanks for the sponsoring :)15:58
=== ogra_ is now known as ogra
RainCTnhandler: I think it isn't - not all upstreams have a homepage16:16
porthoseI am looking at 151642.  samhain does need to be updated current upstream is 2.4.4.  Can I update the package with the new upstream version for Intrepid? and if so do I just attach the new .dsc, orig.tar.gz, and diff.gz to the bug and subscribe universe-sponsors?16:19
Laneyporthose: Just the .diff.gz16:22
Laney(if you're updating to a new upstream version [-0ubuntu1])16:22
porthoseLaney: thx that is exactly what I need to know :)16:23
porthoseis http://packages.ubuntu.com/intrepid down?17:22
bdrungporthose: seems so17:28
slytherinporthose: what are yu looking for?17:36
porthoseI need to check one some dependencies17:44
nhandlerporthose: For what package?17:45
Laneyporthose: You can see those with `aptitude show <package>'17:46
porthosesamhain, namely libprelude-dev which depends on libltdl317:46
DktrKranzwhoa! libtool \o/17:47
porthoselibltdl3 is outdated and replaced with libltdl7-dev17:47
nhandlerporthose: The Dependencies of libprelude-dev are: libprelude2 (= 0.9.17.2-1), libgnutls-dev, and libltdl3-dev in version 0.9.17.2-1 in Intrepid17:48
porthoseaaah could be the problem samhain depends on libprelude-dev and not libprelude217:49
porthoseoops miss read forget my last statement17:51
porthosenhandler:  is libltdl3-dev in the archives or is it libltd7-dev? if so sound like a unmet depends problem with libprelude-dev17:54
nhandlerlibltdl3-dev and libltd7-dev are in the archives18:18
ScottKNCommander: Do you do arm on Debian or just m68k?18:18
NCommanderScottK, both18:19
NCommanderBut I was never a real active porter on arm18:19
NCommander(I did some work in helping test d-i for the NSLU, and did a little armeb work)18:19
ScottKWould you be able to look at my klamav upload and see why it died on arm?18:19
NCommanderklamav?18:19
NCommanderLink?18:19
ScottKI'm pretty sure it's some arm (probably even buildd) specifc fluke.18:20
ScottKSure18:20
NCommanderWTF O_O;18:20
ScottKNCommander: http://buildd.debian.org/fetch.cgi?pkg=klamav;ver=0.44-2;arch=arm;stamp=121706538018:20
NCommanderI didn't even know dh_shlibdeps could FAIL18:20
ScottK;-)18:20
ScottKThe only difference between -1 that built and -2 that didn't is I added a new .po file?18:21
NCommanderVery strange18:21
NCommanderI can blow the dust off my ARM box and find out18:21
NCommanderScottK, you a DD?18:21
ScottKNo.18:21
ScottKDM18:21
NCommanderoh, that'll work18:22
NCommanderYou can upload binaries for your own package18:22
NCommanderThat looks like a buildd fluke18:22
ScottKYes, if I had a way to build them, I'm sure I could.18:22
* NCommander finds the power cord to his ARM box18:22
NCommanderIts a slow machine18:22
ScottKNo rush.  I'm about to head out for several hours.18:23
NCommanderok18:24
NCommanderI can't even find it though :-/18:24
SolarWarhello, last night i uploaded my package to REVU and I do not see it listed as recent packages18:36
nhandlerWhat was the package SolarWar ?18:36
SolarWarnhandler, Qlix18:36
ScottKNCommander: If you find it let me know.  Thanks.18:38
nhandlerI'm not seeing it listed. SolarWar, look through this list (http://revu.ubuntuwire.com/uploaders.list) and see if you see yourself listed there.18:38
SolarWarhrm, nhandler i am not listed there18:39
SolarWari joined revu via launchpad, is there anything else i need to do?18:39
SolarWaroh i have to ask you folks to resync :)18:40
nhandlerSolarWar: https://wiki.ubuntu.com/MOTU/Packages/REVU18:40
SolarWarnhandler, thanks, rereading now..18:42
SolarWarnhandler, would you happen to be a revu admin?18:42
nhandlerNope, sorry :(18:42
SolarWarah, no problem18:43
nhandlerThey list some of the revu admins on that wiki page I gave you. A few of them are in this channel now. Maybe one of them will sync the keyring18:43
=== Daviey_ is now known as Daviey
SolarWarajmitch, hello18:49
SolarWari'll be back18:50
AnAntHello, can someone help me with Martin Pitt's question on bug 249158 ?18:54
ubottuLaunchpad bug 249158 in ubuntu "Please sync swt-gtk 3.4-1 (universe) from Debian unstable (main)." [Wishlist,Incomplete] https://launchpad.net/bugs/24915818:54
DktrKranzAnAnt, swt-gtk has been removed in the past, pitti is asking you if there's a valid reason to restore it (eclipse should provide the same features)18:57
AnAntcurrent version of eclipse (in both Debian & Ubuntu) are old18:58
DktrKranzAnAnt, I'm not aware of any issues related to eclipse or swt-gtk, you may want to ask doko about it19:00
AnAntdoko: ping19:01
Awsoonn sudo debootstrap --variant=buildd --arch i386 hardy /var/chroot/hardy http://archive.ubuntu.com/ubuntu/19:06
Awsoonnww sorry19:06
RainCT*** WARNING: Please avoid using REVU the next minutes as we are going to deploy an update with important code and databse changes.19:07
NCommanderhat warning19:09
jpdsRainCT: ok.19:09
NCommanderOh19:09
taconewill everything explode ? :-o19:09
NCommandertacone, its my code going into production19:09
NCommanderSo likely19:09
RainCTif it does blame NCommander  :P19:09
taconeomg !19:09
NCommanderyup19:09
NCommanderBlame me19:09
NCommanderSingle signons for REVU are now going to be available19:09
jpdstacone: I don't think NCommander is your God.19:09
DktrKranzAnAnt, weekend time, you should ping him from monday :)19:10
NCommanderDktrKranz, if he ping replies on monday, thats some serious lag19:11
DktrKranzNCommander, yes: it is usually called: "weekend"19:11
Awsoonnit's the weekend?19:12
DktrKranzwe are immune to "weekend" :)19:12
taconeDktrKranz: is that a windows virus ?19:12
DktrKranztacone, windows? huh?19:13
AnAntok19:14
Saj0577Txt_file19:19
jpdsSaj0577: Fail. Wrong console.19:25
Saj0577yeah i know i realised that now hehe thanks19:25
jpds;-)19:25
jpdsNCommander: I am no longer an admin on REVU.19:29
NCommanderjpds, permissions didn't travel over19:29
NCommanderAsk RainCT to make you an admin19:29
NCommanderer19:29
NCommanderactually19:29
NCommanderIf you merge your account, you'll be remade an admin19:29
NCommanderI think19:29
jpdsI just logged in with the OpenID thing.19:30
NCommanderyeah19:30
NCommanderYou need to merge accounts to get back your old permissions, but give us a sec19:31
NCommanderThere is a slight issue we're working out19:31
jpdsSure.19:31
NCommanderREVU likes to break when upgraded19:33
directhexjust like ubuntu! *badumtish*19:35
* NCommander smacks directhex 19:35
NCommanderjpds, on the plus side, having the Launchpad login linked is a very nice feature19:36
jpdsNCommander: Yes, I have just used it to log into help.u.c too.19:36
NCommanderThe next major fix is a redone UI19:36
NCommanderjpds, http://nemesisnetworks.com/revu-html19:37
directhexNCommander, when someone admits that it wasn't actually hundreds of users who decided to break where udev sat in /etc/rc.d on an older release, i'll be happy. the number of "you must have made a new symlink, it's your fault" responses from devs to that one was not heartening19:37
NCommanderOh19:37
jpdsNCommander: Don't like brown?19:37
NCommanderWell19:37
NCommanderI find its tiring to read after awhile19:37
NCommanderSame reason I don't use brown on the wiki19:37
NCommanderjpds, if you know your REVU password, you can now merge your account and your LP one will be marked Admin19:39
NCommanderHowever, the recover password feature is broken ATM19:39
jpdsNCommander: Fail. MOD_PYTHON ERROR19:40
NCommanderyup19:40
NCommanderJust found that out19:40
NCommanderWe just changed that right then so we fail :-)19:40
jpds;-)19:41
NCommanderjpds, I just asked RainCT to mark you admin19:41
jpdsOK.19:41
NCommanderWell, that could have gone a little smoother :-/19:42
jpdsNCommander: Does it use: https://edge.launchpad.net/~revu-admins ?19:42
NCommanderNo19:42
NCommanderNot yet19:42
jpdsraphink: ^ :)19:42
NCommanderI already gorged my eyes out working out how to get rdf to retrieve GPG keys19:43
jpdsNCommander: In python? I have a script which does that.19:43
NCommanderTo get the GPG keys?19:43
NCommanderI figure it out19:43
NCommanderIt was just ugly19:44
NCommanderIf you wish to donate a script to get each nickname and call our alter_user script to set Admin/Reviewer, it would be nice ;-)19:44
lagahey. it'd be great if someone from motu-sru could take a look at bug #224780 :)19:55
ubottuLaunchpad bug 224780 in mythbuntu-control-centre "Hardy - Myth Control Centre - optimize_mythdb.pl moved?" [Undecided,Fix committed] https://launchpad.net/bugs/22478019:55
=== doko_ is now known as doko
SolarWar0what is the URL for the REVU uploaders keyring ?20:03
jpdsSolarWar0: http://revu.ubuntuwire.com/uploaders.gpg20:08
SolarWar0hrm20:09
NCommanderok, uploaders are now fixed20:09
NCommanderyay20:09
SolarWar0now fixed?20:10
SolarWar0do you mean the keyring got resynced? :)20:10
RainCTSolarWar0: REVU is being updated right now - please avoid using it until further notice20:11
SolarWar0okie20:12
jpdsRainCT: Put that in the /topic.20:12
RainCTjpds: I can't :)20:13
jpdsRainCT: You can.20:13
LaneySure you can, it's not +t in here20:13
RainCToh20:13
SolarWar0what exactly is being updated on revu?20:14
RainCTSolarWar0: user system. it uses OpenID with Launchpad now, thanks to NCommander :)20:14
=== RainCT changed the topic of #ubuntu-motu to: REVU is being updated; please don't use it. | https://wiki.ubuntu.com/MOTU | Want to get involved with the MOTUs? https://wiki.ubuntu.com/MOTU/Contributing | Intrepid open, go wild! https://merges.ubuntu.com/universe.html | QA targets available from http://qa.ubuntuwire.com | TODAY - Another day!! Keep working. | Next MOTU meeting: Fr, august 8th, 4:00UTC
SolarWar0RainCT, is it possible to request a keyring resync after the update? :)20:16
RainCTSolarWar0: it won't be necessary anymore - your keys will be synced after your first login20:16
SolarWar0oh, thats good news :)20:17
NCommanderyeah20:20
NCommanderIts actually a pretty big update because it paves the way for much bigger improvements20:20
jpdsNow I can't have fun playing with scripts.20:20
NCommanderjpds, your a revu admin20:37
NCommanderWe almost have everything fixed, one final bug to work out20:37
jpdsNCommander: \o/20:37
RainCTdoes someone know how to create an empty keyring?20:43
jpdsgpg --homedir=~/tmp/keyring -k20:43
jpdss/=//20:44
NCommanderREVU is now up again20:58
NCommanderWe reset the keyring20:58
NCommanderPlease login to REVU to have your key synced20:58
NCommander(it will be synced during login)20:58
LaneyCan the keyring syncing step be removed altogether?20:59
=== RainCT changed the topic of #ubuntu-motu to: https://wiki.ubuntu.com/MOTU | Want to get involved with the MOTUs? https://wiki.ubuntu.com/MOTU/Contributing | Intrepid open, go wild! https://merges.ubuntu.com/universe.html | QA targets available from http://qa.ubuntuwire.com | TODAY - Another day!! Keep working. | Next MOTU meeting: Fr, august 8th, 4:00UTC
NCommanderLaney, its gone :-)20:59
LaneyYay!20:59
NCommanderNew keys are automatically synced on login20:59
LaneyThat's what I was going to propose20:59
NCommanderIf your an MOTU, you need to merge accounts to regain your old status20:59
NCommander(everyone is marked as contributor on first login)20:59
NCommanderThe reset password function is not working ATM (we're working on it now)21:00
copprocan we get rid of the launchpad_login.py thing?21:00
NCommandercoppro, no, that's what allows for the new launchpad based logins :-P21:00
copproit's just a blank page with a continue box21:00
NCommanderNo21:00
copproyes21:00
NCommanderTHat's launchpad21:00
RainCTyou should be redirected in a few seconds21:00
copproI hit continue, then I get "do you want to send these details to revu?"21:01
NCommanderThat page is needed anyway simply because special information has to be sent to LP for logins21:01
NCommanderYeah21:01
NCommanderOdd, it should redirect instantly21:01
RainCTNCommander: here it needs 2-3 seconds21:01
NCommanderMeh21:01
copproah, I see the problem21:01
copproI use NoScript21:01
NCommanderYeah21:01
NCommanderThat would do it21:01
copproany way to do it without JS?21:01
RainCTcoppro: complain to the launchpad devs :P21:02
NCommanderNot really21:02
NCommanderThat CONTINUE button is actually Launchpad21:02
NCommanderNot us21:02
NCommanderOur code is simply a meta redirect21:02
copprook21:02
coppronot an HTTP redirect?21:02
NCommanderDoesn't work21:02
NCommanderLaunchpad rejects it21:02
copproweird21:02
NCommander(OpenID's spec says that they're susposed to accept, but I got a parser error from them)21:02
NCommandercoppro, http://openidenabled.com/python-openid/trunk/examples/consumer/21:03
NCommanderThat's an openid example, you can see its Launchpad that has the issue21:03
nhandlerNCommander: Is it safe to add comments to REVU now?21:03
NCommandernhandler, yup21:03
nhandler:-)21:03
NCommanderEverything is good to go :-)21:03
NCommanderEnjoy your new Launchpad powered revu21:04
nhandlerI will, thanks a lot NCommander21:04
NCommanderThe next update will be a revamped UI21:04
NCommanderCurrent working model is here21:04
NCommanderhttp://nemesisnetworks.com/revu-html21:04
NCommanderAlso, a PPA importer is planning for sometime soon ;-)21:04
SolarWar0NCommander, how can i tell if i'm in the revu keyring?21:05
NCommanderSolarWar0, you'll be added the moment you login21:06
nhandlerYou are added once you login to REVU21:06
NCommanderWe removed the uploaders.lists because its unnecessary21:06
SolarWar0so now all i need to do is dput my dsc file into review and it should show up?21:06
NCommanderSolarWar0, assuming you logged in, yup21:06
SolarWar0okie21:07
mouzIt seems I can not login to REVU. I allowed all javascript. I got "<openid.consumer.consumer.FailureResponse id=None message="Invalid openid.mode: '<No mode set>'">"21:07
NCommandermouz, what's your launchpad id?21:07
mouzmouz :)21:07
NCommanderSolarWar0, you were able to login, right?21:07
nhandlerNCommander, I was able to login too21:08
NCommanderOk21:08
DRebellionNCommander, can I merge more than one account with the new launchpad account?21:08
NCommanderAre you guys running on EDGE< or regular launchpad21:08
NCommanderDRebellion, yeah, just repeat the process for each one21:08
nhandlerNCommander, EDGE21:08
NCommanderHow about you SolarWar0 ?21:08
SolarWar0NCommander, yep21:08
NCommanderEDGE?21:09
NCommanderuh oh21:09
NCommander...21:09
* NCommander prays he's wrong21:09
NCommanderThe openid service should be open to all21:09
NCommanderNot just those on edge21:09
DRebellionNCommander, erm.. I just get a page that says: "To decrypt your password, copy the following into your shell: gpg -d <"21:09
NCommanderyeah21:09
NCommanderKnown bug21:09
DRebellion...21:09
NCommanderThat broke with theupgrade, still working on it21:09
RainCTDRebellion: I can change your pass if you tell me the email21:10
NCommanderCrap21:10
NCommander#21:10
NCommanderOpenID is already enabled in your Launchpad account, if you're a member of the Launchpad beta test team.21:10
* NCommander hits head21:10
NCommanderDamn it, why doesn't that come with a bigger warning label21:10
nhandlerlol NCommander21:10
NCommanderI think there is a way to enable it without actually adding EDGE21:11
RainCTNew MOTU policy: Everyone must be Launchpad Beta Tester21:11
RainCT:P21:11
DRebellionRainCT, thanks, did you get the private message?21:11
RainCTDRebellion: yep, 1 sec21:11
DRebellionRainCT, could you email me the new passwords?21:11
nhandlerRainCT: I think making all MOTUs become beta testers would cause a lot more to quit.21:11
NCommanderugh21:12
* NCommander grumbles21:12
RainCTnhandler: just joking :P21:13
NCommanderAccording to LP, it should work fine on normal accounts21:13
RainCTNCommander: I think it is public since already some time..21:13
RainCT*public=for everyone21:14
NCommanderYeah21:14
NCommanderI'm resetting the password on my non-EDGE account to see21:14
RainCTwhy do you have 2 accounts? :P21:15
NCommanderI just never meged them21:15
NCommanderDoes anyone here not run EDGE?21:15
copprowhat is EDGE?21:16
NCommandercoppro, go see if you can login REVU21:16
copproI can21:16
NCommander(EDGE is LP's beta test)21:16
NCommander*phew*21:16
NCommanderOk21:16
copproAnd I never agreed to participate in any beta anything21:16
NCommanderWell, by using REVU ...21:17
NCommander*shot*21:17
RainCThaha21:17
NCommandermouz, if you have noscript, you need to disable on both REVU, and launchpad21:17
NCommander(or better yet, disable it)21:17
RainCTvote: let's hang mouz for scaring NCommander      ;)21:17
NCommander+121:17
SolarWar0hrm21:17
Iulian+021:17
mouz+121:17
nhandler+121:17
IulianI don't know mouz.21:17
copprovote: let's hang NCommander for recommending disabling NoScript21:17
nhandler-121:18
* Iulian smiles21:18
RainCT-121:18
NCommander-121:18
RainCT^^21:18
NCommanderNoScript is a bad idea21:18
NCommanderCause it breaks a lot of legit sites21:18
NCommanderLessen up on the tinfoil21:18
NCommandermouz, are you running any unusual firefox plugins?21:18
NCommanderSolarWar0, your upload work ok?21:19
SolarWar0i uploaded to review via dput but its not showing up here :-/21:19
NCommanderpackage name?21:19
RainCTSolarWar0: is it qlix?21:19
SolarWar0yep21:19
NCommanderIt sounds like the crontab not too happy21:20
RainCTSolarWar0: it's up now - crontab didn't run yet21:20
NCommanderRainCT, reduce the time on the crontab :-P21:20
RainCTSolarWar0: ah, and change the Standards Version to 3.8.021:20
SolarWar0oh i see it21:20
NCommanderYup21:20
NCommanderSweet21:20
NCommanderIt works nicely21:20
NCommander(for those of us who can login)21:20
SolarWar0RainCT, any other comments? :)21:21
NCommandervote: is NCommander's improvement to REVU a good thing?21:21
NCommander+121:21
nhandler+121:21
RainCTSolarWar0: I've just looked at the lintian output while it was being generated ;)21:21
DRebellionNCommander, it's working beautifully. Congrats ;)21:21
NCommanderYeah21:21
NCommanderWe're probably the first thing to actually use LP's openid server for this kind of abuse21:22
NCommanderso remember to file bugs against launchpad and not us21:22
SolarWar0RainCT, lintian didn't complain on my end i wonder why21:22
RainCTNCommander: you don't know where the crontab entry is, do you? :P21:22
NCommanderSolarWar0, don't package in Hardy21:22
mouzNCommander: disabling noscript didn't help. Circumventing web proxy did. Merge succeeded.21:22
RainCTSolarWar0: do you have the version from hardy-backports?21:22
NCommandermouz, Weird, please note what you did on the wiki (and maybe bug launchpad to fix their openid server)21:22
SolarWar0i only have intrepid inside pbuilder21:23
NCommanderSolarWar0, that's fine, just install lintian for backports21:23
NCommanderBecause's Hardy's lintian doesn't have all the up to date warnings (like standards 3.8.0)21:23
DRebellionNCommander, on the beta revu it says all the times are Europe/Belgian. I think you should specify what UTC+XXXX that is.21:24
SolarWar0NCommander, do i need to update other packages as well from backports?21:24
NCommanderDRebellion, that's a long time thing, I don't even know what it should be -_-;21:24
DRebellionhaha21:24
RainCTDRebellion: it says Berlin, not Belgian o_O21:26
RainCTxD21:26
NCommanderDRebellion, fail.21:26
DRebellionsame difference21:26
DRebellion:P21:26
RainCTand it's UTC+121:26
DRebellionyay21:26
DRebellionjust like BST21:27
DRebellionso I don't have to worry21:27
DRebellionuntil the cold, dark stormy nights of winter21:27
* DRebellion shudders21:27
* RainCT gives DRebellion a blanket21:29
DRebellion:)21:29
jpdsDRebellion: Or just do TZ="Europe/Berlin" date21:32
SolarWar0anyone up for reviewing my package? :)21:39
nhandlerI'll look at it in a minute SolarWar0. But I'm not a MOTU, so I can't advocate21:40
SolarWar0thats fine with me :)21:40
NCommanderI'm not an MOTU, but I can advocate, but I won't :-P21:42
* NCommander runs21:42
RainCThahaha21:42
SolarWar0hahahah21:42
* SolarWar0 breaks out his lasso 21:42
SolarWar0get back here! ;)21:42
RainCTNCommander: I'm watching you ;)21:42
NCommanderbah21:44
NCommanderMy merge broke my local branch21:44
* NCommander reverts and tries with weave21:44
* NCommander pokes RainCT's all watching eye21:48
jpdsNCommander: Watch it, I saw in a movie it starred in, it had fire all over it.21:49
RainCTauu21:49
SolarWar0way to go xorg21:49
* NCommander is a firefighter21:49
* NCommander puts out the eye21:50
RainCTo.O21:54
jpdsRainCT: Never seen lord of the rings?21:56
RainCTjpds: yep, why?21:56
IulianHow do I update my debian/watch file to avoid matching development versions and use mangle option to match the upstream version?21:58
IulianCurrently I have http://sf.net/pkg/pkg-(.*)\.tar\.bz221:58
copproit's a regex22:01
copproif the use it appropriately22:01
NCommanderwhy is this 404ing22:01
coppros/if the //22:01
JazzvaIulian, dev versions end in odd digit?22:07
IulianJazzva: Well, I'd like to avoid dev versions.22:09
IulianHmm22:09
JazzvaIulian, right. How do you recognize it? I suppose it will end in odd digit (if it's in major.minor format), or have odd digit as minor version (for example x.3.y, major.minor.release). That's the usual notation22:10
IulianJazzva: It ends in .0.1.0.alpha122:11
copproIf dev versions end in an odd digiet, it's easy: http://sf/net/pkg/pkg-(.*[02468])\.tar\.bz222:11
Jazzvacoppro, that won't work. It would accept pkg-03, but not pkg-0.3...22:12
JazzvaIulian, would 0.1.0 qualify as dev version too?22:13
JazzvaIulian, what's the link to the release page of your program/22:15
Jazzva?22:15
JazzvaIulian, found it22:15
IulianJazzva: http://www.salasaga.org/ but it uses sourceforge too: http://sourceforge.net/projects/salasaga/22:16
JazzvaThanks :)22:16
jmarsdenRainCT: Anything else I need to do before you can sponsor/upload the koverartist debdiff for bug #236140 ?22:18
ubottuLaunchpad bug 236140 in koverartist "New .desktop file for KoverArtist" [Wishlist,In progress] https://launchpad.net/bugs/23614022:18
JazzvaIulian, maybe the best would be to ask upstream what versioning are they using for dev and what for release versions. Based on that we can form regex that will skip dev versions.22:18
IulianJazzva: Ok, thanks.22:19
JazzvaIulian, and maybe to suggest them nicely to use some formal scheme that can be easily parsed, in case they aren't. For example, Linux kernel uses odd numbers for minor version to mark development versions, and even to mark release versions.22:20
nellerywhat command line input can be used to search a folder for a specific string?22:21
jmarsdenIulian: If you want to experiment until you get an answer... I suspect you may find that pkg-[0-9]\.[0-9]\.[0-9]\.tar\.bz2  would be sufficient to avoid all alpha/beta/release candidate versions?22:21
jmarsdennellery: grep -r string folder22:21
nelleryjmarsden, thanks!22:22
jmarsdennellery: No problem.22:22
Iulianjmarsden: I don't know if the next release will still be alpha, the current is alpha3 so I cannot avoid alpha candidate versions.22:24
* Iulian is mailing upstream.22:25
jmarsdenIulian: So you are saying that an alpha version can be a "production" version?  That's a strange definition of alpha to me.. so you really do ned to ask the dev(s) concerned.22:25
Iulianjmarsden: Yea, I'm pretty confused too.22:29
norsettoScottK: re. bug 252037, do we have some policy on how to report and/or fix bugs on backported packages? Could be blind but cannot find it in https://help.ubuntu.com/community/UbuntuBackports22:38
ubottuLaunchpad bug 252037 in sauerbraten "sauerbraten cannot upgrade" [Undecided,Confirmed] https://launchpad.net/bugs/25203722:38
IulianJazzva, jmarsden: Mail sent.22:46
IulianAnyone knows how to fix: I: salasaga: arch-dep-package-has-big-usr-share 1028kB 75%22:46
Iulian?22:46
lagamake a -common package for arch-independend things22:47
lagait basically complains that 75% of your package is /usr/share/22:47
JazzvaIulian, good :)22:47
directhexgedit, for example, is mostly /usr/share (hence gedit-common)22:48
norsettodirecthex: gedit is mostly crap ...22:48
directhexnorsetto, localised PNGs are crap? :o22:48
Iulianlaga, directhex: Thanks22:49
norsettodirecthex: is that a rhetoric question?22:53
NCommanderdoes anyone know where I can find a transparent ubuntu logo?23:02
FlannelNCommander: transparent?23:03
NCommanderFlannel, just the Ubuntu "circle" and the words in the font23:03
NCommanderI need to create a new logo for REVU23:03
FlannelOh, so "just the logo"23:04
NCommanderPretty much23:04
NCommanderI changed REVU's color scheme in my work to make it blue instead of brown23:04
Flannelhttps://wiki.ubuntu.com/Artwork/Official23:04
FlannelThere's SVGs available there, even if you can't find anything raster that works, svgs will.23:05
Flannelalthough I think the pngs are transparent23:05
NCommanderyeah23:05
NCommanderI'm just getting tired of brown everywhere23:05
lagaRainCT: very interesting post on planet. (re: julius)23:05
* NCommander needs to create a "real" revu logo23:07
* NCommander goes through the various uploads23:08
lagaRainCT: if you're interested in dialog building, take a look at dialogos. it's not free and you need windows, but it's a very nice and simple app for developing dialog systems - you can even hook up your lego robot ;)23:08
Iulianlaga: It seems that I still get that I from lintian. This is my control file: http://iulian.devzero.co.uk/tmp/control23:15
IulianAm I missing something?23:15
* Iulian *yawns*23:15
NCommanderWhat's the lintian warning/error?23:15
NCommanderhey SolarWar023:15
lagaIulian: well, are you actually adding stuff to the common package?23:15
SolarWar0hey NCommander whats going on?23:15
=== evalles_ is now known as keffie_jayx
NCommanderSolarWar0, working on making REVU now pretty23:16
NCommanderSolarWar0, http://nemesisnetworks.com/revu-html23:16
NCommanderhola geser23:16
Iulianlaga: Do I need to make a -common.install file?23:16
lagaprobably ;)23:16
lagai don't do much packaging23:16
SolarWar0oooh perrty :)23:17
IulianOk, let's bother geser then :-)23:17
SolarWar0nhandler, have you had a chance to take alook at my package yet?23:17
nhandlerSolarWar0: I added a comment with a few suggestions on REVU23:18
SolarWar0oh woops23:18
SolarWar0thanks :)23:18
nhandlernp SolarWar023:18
IulianIt's getting late here and I should probably be in bed...23:18
SolarWar0Iulian, i know that feeling :)23:19
Iulianlaga: http://iulian.devzero.co.uk/tmp/contents - yay. It's not so much in that -common pkg.23:24
lagaIulian: maybe you need to call dh_install or something?23:27
Iulianlaga: Probably... will have a look at it tomorrow morning.23:29
* Iulian is asleep23:29
IulianGood night all.23:29
RainCTlaga: thx :)23:38
RainCTjmarsden: sorry, I was away. I'll have a look at it now23:40
jmarsdenRainCT: Thanks!23:40
RainCT(sorry I'm away for a while -5-10 min- more - but I'll look at it after that ;))23:48
RainCTjmarsden: bbtw, you don't need to write Closes (that's for Debian)23:57
RainCT(in the changelog, I mean)23:57

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