[00:00] OK, groovy. [00:01] * jpds heads of to bed. Night all. [00:01] Night jpds. Thanks for all of your help [00:01] * RainCT doesn't think removing the debhelper.mk include is a good idea [00:02] Why not RainCT? [00:03] nhandler: can you paste somewhere the output of dpkg-deb --contents *.deb after building without it? [00:03] RainCT: Give me a few minutes. I have a few other changes to make first [00:06] sure [00:13] RainCT: http://paste.ubuntu.com/30425/ [00:13] uhm.. if an application includes a lib but it only has static link files, what should I do? [00:14] nhandler: ah, ok. [00:15] RainCT: So it was fine that I removed the debhelper.mk include? [00:15] hm... stupid question: how can I change the date of wiki.ubuntu.com/MOTU/Meetings= [00:15] moin [00:15] make the = a ? [00:15] nhandler: seems so. how are dh_docs and such called if you remove that? [00:16] * sistpoty believes it's wiki magic *g* [00:17] sistpoty: MOTU/Headers/NextMOTUMeeting [00:17] err, [00:18] https://wiki.ubuntu.com/MOTU/Headers/NextMOTUMeeting [00:18] RainCT: http://paste.ubuntu.com/30426/ [00:18] RainCT: thanks! [00:19] It doesn't look like they are calling dh_docs [00:19] nhandler: o_O why do you use cdbs + normal debian/rules? [00:21] sistpoty: you don't happen to know the answer my library question above, do you? :) [00:21] RainCT: 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 cdbs [00:21] RainCT: reading backlog... give me a sec [00:22] nhandler: yeh, but it doesn't really make sense to use simple-patchsys if the package isn't using cdbs already [00:22] RainCT: you mean " uhm.. if an application includes a lib but it only has static link files, what should I do?" [00:22] sistpoty: uhm.. if an application includes a lib but it only has static link files, what should I do? [00:22] sistpoty: right :P [00:22] ls [00:22] So what would you suggest I do RainCT ? [00:23] RainCT: is the library anywhere else in ubuntu? or just provided inside this application? [00:23] (as in dynamic library somewhere available) [00:24] sistpoty: 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 :P [00:24] sistpoty: (ah, no. the application is called julius and it includes libjulius) [00:24] RainCT: but there isn't any libfoobar in ubuntu which can be linked against, is there? [00:25] sistpoty: what do you mean? [00:25] RainCT: in this case, my gut says me that libjulius is mainly useful so that julius works, but not for anything else [00:25] RainCT: replace libfoobar with libjulius ;( [00:25] -( +) [00:26] sistpoty: not that I know of [00:26] RainCT: if so, let it link statically... unless there's a good reason that anyone else would like to link against julius' library ;) [00:27] sistpoty: and where do I put it? still libjulius-dev? [00:27] RainCT: yes... if you got headers and a static lib, these would go into the -dev package [00:28] sistpoty: alright. so I can just ignore the Debian Library Packaging Guide saying that static libs are evil? [00:29] RainCT: the library packaging guide doesn't really say this... it rather (iirc) says that you shouldn't have a package linking against a static library [00:29] (which would mean duplicated code of the library inside the package) [00:29] (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:30] and 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 object [00:31] sistpoty: ok. thanks :) [00:31] RainCT, 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 source [00:32] nhandler: "include /usr/share/cdbs/1/class/autotools.mk" [00:32] nhandler: did you add this? [00:33] Yes RainCT [00:34] nhandler: okay. then revert all changes to the debian/rules file and use dpatch instead [00:34] nhandler: 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 choose [00:34] nhandler: see the example in dpatch.make on what changes you've to do to debian/rules [00:34] * man dpatch.make [00:40] sistpoty: 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:41] RainCT: does it use autotools? [00:41] sistpoty: yep [00:42] RainCT: if so, I guess configure.{ac|in} will define somewhere AC_CHECK_LIB(shared_object_name, [..]) [00:42] RainCT: this will add shared_object_name to the linker flags [00:42] * crimsun_ removes libasound from highlight [00:43] sistpoty: there's only configure.in but it hasn't any AC_CHECK... thing [00:43] .oO(how the heck did I acquire all this cruft in highlight anyhow?) [00:43] * RainCT stares at crimsun_ :P [00:44] RainCT: then somewhere in there must be a -lcrimsun... er... -lasound ;) [00:44] RainCT: that's what you should remove [00:45] sistpoty: neither :/ http://paste.ubuntu.com/30429/plain/ [00:46] sistpoty: ok, found it [00:46] RainCT: maybe in some Makefile.am there's a ..._LDFLAGS setting this value? [00:47] sistpoty: i'm just stupid. it's in another one of the configure.in files, of course :) [00:47] heh [00:47] remember to do the autotools dance again then ;) [00:54] sistpoty: 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:55] RainCT: did you do the autotools dance? [00:55] sistpoty: uhm? [00:55] I did dpkg-buildpackage [00:56] RainCT: as in aclocal, autoheader, automake, autoconf? [00:57] sistpoty: doesn't autotools.mk do that? and won't that put crap into the .diff.gz? [00:57] (you usually can skip aclocal and autoiheader) [00:57] RainCT: I'm no cdbs expert... I guess you could check that from the build log [00:58] automake gets evil because it has no MAkefile.am and autoconf doesn't return anything [00:58] RainCT: and I guess I'm also not in a position to say if the resulting bloated .diff.gz is crap *g* [00:58] lol [00:59] and now it won't build :) [00:59] autotools makes nasty diffs [00:59] RainCT: maybe your package only uses autoconf but not automake? (I've seen such cases before) [00:59] omg I hate autotools [00:59] :P [00:59] RainCT: so you'd like to skip the automake thingy [01:00] RainCT: OTOH I see no problem with doing these during build time, to keep the .diff.gz clean (at least for ubuntu) [01:00] (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 :P [01:01] heh [01:04] * sistpoty somehow feels amnesia when reading persia's post to ubuntu-motu === Igorot is now known as acmeuser === acmeuser is now known as Igorot [01:46] * sistpoty goes to bed now... gn8 everoyne [01:56] nxvl: o/ [01:57] good night [01:57] night RainCT [02:08] emgent: \o/ [02:12] emgent: thank you for UTU!! [02:12] haha no problem :) [02:12] emgent: i was looking for something like that [02:13] * emgent need a server with large band.. :) [02:13] now UTU is very slow.. [02:13] emgent: cache it. [02:13] nah.. [02:13] emgent: it's easy and simple O:-) [02:14] i know, but in generally i dont like cache! :) [02:14] me neither, but I don't like 1 minute wait as well [02:15] * emgent need people.ubuntu.com/~emgent [02:15] wgrant: some news about orko ? [02:16] emgent: Not at this time. What do you need webspace for? [02:16] wgrant: UTU and other stuff. [02:17] UTU? [02:17] wgrant: yeah see planet.u.c [02:18] hmm [02:18] my sanity restrict my hosting of .php... [02:19] Nafallo: lol :) [02:19] Nafallo: Mhm. [02:19] wgrant: are you able to create an account? [02:20] also... pony isn't fully routed yet. [02:20] well, not the way I want it to be anyway ;-) [02:21] Nafallo: Your definition of 'fully' is rather skewed. [02:25] meeh. only 259750 routes :-P === ScottK is now known as ScottK2 === ScottK2 is now known as ScottK [02:36] emgent: You have to be a Canonical employee to get that. [02:36] Good $TIMEOFDAY all. [02:36] heya ScottK [02:36] uhm.. why canonical people dont use people.canonical.com ? [02:36] Morning ScottK. [02:37] That's a question you'd have to ask them. [02:37] Good evening wgrant. [02:37] emgent: Because they want to be annoying and take up a good namespace. Duh. [02:37] it`s weird. [02:37] wgrant: lol :) [02:38] people.ubuntu.com should be for ubuntu developers IMHO [02:39] Well 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:40] emgent: I could be wrong here... but I'd be surprised if p.u.c supports php. [02:41] Nafallo: A whole lot of other Canonical hosts run Drupal *shudder*... [02:41] But rookery might not. [02:41] it`s true. [02:41] Canonical give hosting for loco team.. [02:41] 90% of this team use Drupal [02:41] That's a relatively recent development. [02:42] emgent: Getting hosting is fairly easy and cheap. [02:43] StevenK: i know that. but the real question is: "ubuntu devel can use people.ubuntu.com hosting" ? If not, why? [02:45] I will open bug about it [02:45] I don't think a bug is the right forum, but *shrug* [02:45] A bug against which package? [02:45] Wasn't it discussed and denied by the TB? [02:46] Was it? I have no idea. [02:46] It'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] I remeber it being discussed, but not if it went to the TB. [02:53] emgent utu.php is just a php script? [02:53] I'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:54] nhandler: Did you include /usr/share/dpatch/dpatch.make in debian/rules? [02:54] Yes I did StevenK [02:55] Oh, I know. You did "clean:\n\tunpatch\n" didn't you? [02:55] unpatch is a target, not a command. [02:55] lol, That was it. Thanks a lot StevenK [03:11] Anyone know where the minutes from the MOTU meeting earlier today can be found? Is there a delay before they are posted? [03:13] jmarsden: 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.html [03:14] Could 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 before [03:18] nhandler: 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] As long as you've actually _checked_ that it is standards-version 3.8.0 compliant! [03:19] Yes :-) [03:19] RAOF: Right now, it isn't 3.8.0 compliant. It does not have a README.source [03:19] Right, then your debdiff isn't complete. [03:20] ScottK, What exactly is meant to go in the README.source [03:20] That's only a 'should', rather than a 'must', though. [03:20] nhandler: What does policy tell you. [03:22] RAOF: 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] I don't feel like it isn't a good reason. [03:22] ScottK: Fair enough. [03:22] ScottK, 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:23] Do we have template README.source's in /usr/share/dpatch yet [03:23] ? [03:23] nhandler: For dpatch or cdbs simply patchsys I tend to say use *-edit-patch, see man *-edit-patch for details on how. [03:25] So I am able to refer them to a man page in the README.source file? [03:25] That's my theory. No point in copying that out. [03:26] Ok, because this wiki page (https://wiki.ubuntu.com/README.sourceHowTo) shows the actual commands [03:28] Considering the page was done by a non-developer, I don't know how much weight I'd give it. [03:28] I don't think Debian Policy insists on actual commands. It'd be odd for something really common like dpatch or simple patchsys. [03:29] Ok, that will make things easier for me. Once I add the README.source, I think it will comply with 3.8.0 [03:47] ScottK: The 3.8.0.1 policy on README.source says in part "This explanation should include specific commands" ... [03:48] OK. Then I guess that it should. [03:48] Of course dpatch-edit-patch is a specific command. [03:49] I think I'll attempt to edit that Wiki page with an attempted generic dpatch and CDBS set of info... [03:49] ScottK: But it's not just editing them you are supposed to document, right? [03:49] Sounds good. [03:49] Right, it's getting the source in the correct configuration to build it too. [03:50] For a cdbs or dpatch package it's unpacked that way naturally. [03:50] Hello am new here. Um..I don't know where to start. Have read alot of the wiki, but still kinda lost. [03:51] dako3256: Is there a particular bug you want to fix, or application you want to package? See https://wiki.ubuntu.com/MOTU/Contributing [03:52] should I follow first steps to the tee? [03:52] Well, that's what I did about a week ago :-) [03:53] OK. will start there [03:54] Hi! 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] My question is: [03:54] dako3256: Go for it. Ask here if you have questions. [03:54] Can I list both Closes: #xxxxxx to close Debian bugs, and LP: xxxxxx to close Ubuntu bugs in the changelog? [03:54] thank-you I will [03:55] foka: Yes, both should be closed by doing that, from what I have been told. [03:55] jmarsden, Cool, thanks! [03:55] Someone asked that on a mailing kist recently, and I remember reading the answer. You're welcome. [03:56] foka: Official I think (LP: #XXXXX) is the preferred format for LP bug closing [03:57] jmarsden, Thanks! I'll do that then. This feature is nifty! :-) [03:57] foka: Yes. The () is preferred, but is not part of the actual regex. [03:57] foka: And then either file a sync request yourself or mention it here so someone else can after it's uploaded. [03:57] foka: Thanks. [03:58] ScottK, Thanks! Yes, I prefer the parentheses too. I use that for Debian too. (Closes: Bug#426803), and later, (LP: #203334) [03:59] ScottK, When is the deadline for intrepid sync? [03:59] Is this a new revision or a new upstream release you're uploading? [04:00] For a new upstream release, it's at Feature Freeze, Aug 28. New revisions can come later. https://wiki.ubuntu.com/IntrepidReleaseSchedule [04:19] nhandler: http://thc.emanuele-gentili.com/~emgent/media/haha.jpg [04:19] lol, did you make that emgent ? [04:20] no, i found it in my old files. :) [04:22] Maybe I'll make a script that lets you custimize what package it says you upgraded. I need a fun programming task. [04:22] emgent: nice job on the tracker [04:23] vorian: thanks :) [04:31] ScottK, Thanks for the note. I'll keep it in mind. [04:32] ScottK, 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:33] Yes. I understand. [04:34] I had someone do me the favor of filing 3 bugs on a package I maintain in Debian today. [04:37] I need to find a sponsor before the freeze - my AM/sponsor isn't responding to emails :( [04:37] Debian really needs a better sponsorship system. [04:38] Yeah, if I wasn't a DM, I'd be dead right now. [04:39] wgrant: It doesn't happen to be something Python does it? [04:39] ScottK: It is a Python app. But not a module. === asac_ is now known as asac [04:41] I was most unhappy when it was 0-day NMUed when I had been waiting for sponsorship for a week or two. [04:42] wgrant: There's a Python Application Packagine Team too. [04:42] wgrant: It also meets in #debian-python [04:42] Oh, didn't know about that. [04:43] The two most active DDs are European, so now isn't a good time, but maybe in a few hours. [04:43] POX and bzed [04:43] Thanks. I'll have a look in there soon. [04:43] They are both quite open to contribution from Ubuntu. POX often hangs out here and answers Python questions. [04:53] wgrant: There you go. Ana is a DD. [04:55] Come on wgrant. In 10 minutes I find you a Debian sponsor and where are you??? [05:02] ScottK: If you have a chance, could you read/review my additions to https://wiki.ubuntu.com/README.sourceHowTo for dpatch and CDBS please? [05:05] jmarsden: I'd mention the man pages. [05:05] Looks good though. [05:06] * ScottK suddenly remembers to upload the tarball for the new release and not just announce it on the web site.... [05:07] ScottK: 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] Sounds like a plan. [05:08] Go idea to send back to Debian too if they don't already have something. [05:08] ScottK: OK. I've not yet figured out hwo to do any "sending back to Debian" -- is that process documented somewhere? [05:09] does anyone know how to kill a java applet without killing firefox? [05:09] Generally 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:10] And attach the patch, of course. [05:11] OK, thanks. [05:21] can someone remind me why /usr/local/games/ is not in the path? [05:27] because /usr/games is, and no games in the repo that I know of use /usr/local/games/ [05:29] yes, but /usr/local/bin is in the path [05:36] what does that have to do with /usr/local/games, though? [05:37] no programs in the repo should use /usr/local/bin, yet that's in the path [05:37] with the except of /usr/local/bin, /usr/local is pretty system-specific and thus doesn't have entries. [05:37] no, /usr/local/bin semantically should override /usr/bin [05:38] well, I know of several games that install themselves into /usr/local/games [05:38] and it bugs me that it's not in patch [05:38] s/c// [05:38] err, which games? [05:38] and by "which games", I mean "which games carried in the Ubuntu repos" [05:39] none, because that's against Policy! [05:39] precisely [06:05] is there a quick way to find out what versions of packages are available in intrepid? [06:06] SolarWar: rmadison [06:07] wonderful :) [06:26] i 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:29] they're cached upon initial retrieval === RAOF_ is now known as RAOF [06:47] hey 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:52] Hi 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] thanks in advance [07:09] what is the correct syntax for closing a LP bug in the change log? [07:09] porthose: (LP: #123456) [07:09] (LP: #foo) [07:10] thxs :) === RainCT_ is now known as RainCT [10:18] I'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? === gnomefre1k is now known as gnomefreak === gnomefre1k is now known as gnomefreak === gnomefre1k is now known as gnomefreak [11:52] Hello [11:52] is the MOTU ML moderated ? [11:53] if i do a SRU, do i also need the SRU changelog entry in the package in the current development release, ie intrepid? [11:57] joaopinto: if you ask because of your mail, it arrived [11:58] ok tks, I didn't got it myself, I guess the ML is setup to not send back to the senders [11:59] also, still no reviews :\ [12:33] DktrKranz, are you there? [12:34] k0p, yessir [12:34] :) i'm pinging you. I don't know if you remmber yesterday :p [12:34] hehe [12:35] I remember, and I already reviewed it ;) [12:35] :O [12:35] yeah [12:35] i'm seeing .. [12:35] some little details [12:35] you're the best [12:35] ok i'll read and fix :) [12:35] thanks a lot. [12:35] DktrKranz, have I a advocate? [12:36] not yet. once fixed (first should be done by upstream ASAP), I can advocate it [12:36] DktrKranz, sure. it's cause I have in the column of advocates 1(0) [12:37] (0) is advocate count [12:37] oh sure === gnomefre1k is now known as gnomefreak [12:37] first number is number of comments made [12:38] yeap :) [12:38] thanks [12:39] np. if you can make a update upload, I can ACK it (and leave licensing issues in the hands of archive-administrators) [12:39] DktrKranz, I can solve today all except 3. I can only solve 3 in some days. It cause we're relaseing the stable version [12:40] yap [12:40] any chance to have it before august? [12:40] of course [12:40] in some days we release it. [12:40] before 1st august [12:40] so, no problem at all ;) [12:40] I hope [12:40] sure. [12:40] :) [12:40] so give me some minutes [12:41] k0p, I'd suggest you to delay upload when stable release will be available [12:42] DktrKranz, so only make another upload with all fixed, right? [12:43] yes [12:44] more probability to find second avocate :) [12:44] * DktrKranz is AFK [12:45] DktrKranz, sure. [12:46] thanks a lot for the help/review. === gnomefre1k is now known as gnomefreak === gnomefre1k is now known as gnomefreak === Czessi__ is now known as Czessi [14:01] * Hobbsee throws https://bugs.edge.launchpad.net/ubuntu/+source/imlib2/+bug/235915 in the direction of the security people [14:01] Launchpad bug 235915 in imlib2 "[CVE-2008-2426] imlib2 PNM and XPM buffer overflows" [Undecided,Fix released] [14:04] Hobbsee: it should be possible to just take the patch from debian i guess. Didn't check the version though [14:04] white: likely, yes. [14:31] Hobbsee: free for a review? [14:31] a very small package [14:33] not really, no [14:33] Hobbsee: np. Thanks [14:37] Heya gang [14:43] Hi bddebian. [14:44] Hi Iulian [14:44] hey bddebian [14:45] Hi tuxmaniac [14:47] so, the size of a package as shown in apt-cache show is in bytes, right? [14:48] tuxmaniac: which package? [14:49] for bug 251919 [14:49] Launchpad bug 251919 in ubuntu "[needs packaging] gResistor - Resistor Colour code calculator" [Wishlist,Confirmed] https://launchpad.net/bugs/251919 [14:52] tuxmaniac: I will do a brief review once my currently package build is finished [14:53] slytherin: thanks [15:04] laga, that's what it looks like [15:12] * DktrKranz is happy, just sponsored 10 packages into the archives. [15:13] How many of those were mine DktrKranz ? [15:14] nhandler, IIRC, 5 [15:15] Well, I'm working on a few more as we speak. [15:15] hey DktrKranz [15:16] DktrKranz, do you mind critiquing my current interface overhaul for REVU? [15:16] http://img75.imageshack.us/my.php?image=screenshotzn1.png [15:16] * NCommander has currently redo some of the fonts, and removed the logo until I can redo it in the right colors [15:16] *redone [15:18] NCommander, I'm definitely not good in UI, especially for webapps, but it doesn't look bad. [15:18] DktrKranz: 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] DktrKranz, well, I just removed the Current uploads section, I'm trying to tidy it up, the current REVU page is kinda bleck [15:18] NCommander: 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 app [15:19] slytherin, 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 code [15:19] NCommander, 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" links [15:19] cool [15:20] Iulian, surwe [15:20] *sure [15:20] DktrKranz: Great, thanks! [15:21] * DktrKranz sponsoring mode on [15:21] DktrKranz, Great idea! [15:21] DktrKranz, mind filing a wishlist bug for me? [15:21] NCommander, sure [15:21] I'll assign to you [15:21] NCommander, 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] nhandler, already planned :-) [15:21] :-) [15:22] But feel free to add wishlists bugs, now that we have openid logins working, I plan to do a lot of overhaul [15:23] tuxmaniac: ping [15:23] NCommander, 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] One 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] I'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 Launchpad [15:23] is some perl guy around? [15:23] RainCT, I'm pretty good with perl. What is the issue? [15:23] nhandler, its kinda already there, see http://revu.tauware.de/stats.py [15:24] * RainCT would like to know what Jcode->new($disp)->euc would be like using the Encode module [15:24] RainCT: Me too, what's your question? [15:24] Iulian, I saw bernat just answered to your RFS on mentors... is package the same? [15:24] nhandler, StevenK: ^ [15:24] * NCommander points people to https://bugs.edge.launchpad.net/revu [15:24] File wishlist bugs for any features you'd like to see in REVU, I'll implement them if they're reasonable, and useful [15:24] DktrKranz: Yup, I sent an email to mentors IIRC. [15:25] NCommander, the stats page just shows numbers. It doesn't provide links to the comments/packages. [15:25] DktrKranz: Let me have a look. I'm not subscribed to that mailing list. [15:25] nhandler, I said a start ;-) [15:25] RainCT: I'll need a little more information than that :-) [15:26] * NCommander is trying to determine a better way to make REVU usable for Updated packages [15:26] StevenK: 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 lib [15:27] RainCT: Right, so the code needs to be patched to use Encoding; rather than Jcode. [15:27] RainCT: I daresay you'd need to know Perl fairly-ish well to fix the script. [15:28] slytherin: pong [15:28] StevenK: oh. I'll move it from /usr/bin to /usr/share/doc/../examples then :P [15:28] DktrKranz: I'm going to update the package for Debian right now. Thanks for telling me :-) [15:29] no problem ;) [15:29] RainCT: Ha. It isn't actually needed? [15:29] DktrKranz: So, no need to upload it to Ubuntu, I will request a sync when it's in Debian. [15:29] Iulian, do you want to archive your package for now? [15:29] It can be undone anytime [15:30] DktrKranz: Sure [15:30] StevenK: 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] Iulian, ok... archiving for now, thanks. Ah... Bernat is a great sponsor, he uploaded debomatic for me ;) [15:31] tuxmaniac: can you patch the gresistor source to install icon in /usr/share/icons/hicolor/48x48/apps/ [15:31] DktrKranz: Yup, I know him. [15:32] slytherin: ok [15:32] StevenK: thanks anyway :) [15:35] tuxmaniac: wait, I just saw that file is named only icon.png. It will be confusing. Leave it as it is. [15:35] ok [15:36] slytherin: is everything else fine? [15:37] tuxmaniac: well, there isn't much of anything to mess. [15:38] yeah its the fastest package I have ever done :-) 10 minutes flat [15:39] vorian, re origami on REVU, I guess native package is just a upload mistake, isn't it? [15:42] any MOTU with java expertise (except me)around? [15:44] slytherin, I have a little [15:44] though I'm no MOTU [15:44] NCommander: I am looking for sponsor for 2 packages. [15:45] oh, so I'm no help :-P [15:47] Is the new Homepage field in debian/control a requirement for Standards-Version 3.8.0? [15:48] nhandler: ask lintian [15:53] DktrKranz: Did you testbuild the guidedog upload of mine you just sponsored? [15:53] (I just got FTBFS emails on all arches) [15:54] Laney, yes... but it was probably out of date since it FTBFS for an unstallable package right now :/ [15:54] * DktrKranz runs pbuilder update [15:55] Yeah [15:55] It built when I uploaded the debdiff :( [15:55] Laney, it's transient, it should be fixed soon with a new kdelibs upload (or whatever) [15:58] DktrKranz: Ah alright then [15:58] btw, thanks for the sponsoring :) === ogra_ is now known as ogra [16:16] nhandler: I think it isn't - not all upstreams have a homepage [16:19] I 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:22] porthose: Just the .diff.gz [16:22] (if you're updating to a new upstream version [-0ubuntu1]) [16:23] Laney: thx that is exactly what I need to know :) [17:22] is http://packages.ubuntu.com/intrepid down? [17:28] porthose: seems so [17:36] porthose: what are yu looking for? [17:44] I need to check one some dependencies [17:45] porthose: For what package? [17:46] porthose: You can see those with `aptitude show ' [17:46] samhain, namely libprelude-dev which depends on libltdl3 [17:47] whoa! libtool \o/ [17:47] libltdl3 is outdated and replaced with libltdl7-dev [17:48] porthose: 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 Intrepid [17:49] aaah could be the problem samhain depends on libprelude-dev and not libprelude2 [17:51] oops miss read forget my last statement [17:54] nhandler: is libltdl3-dev in the archives or is it libltd7-dev? if so sound like a unmet depends problem with libprelude-dev [18:18] libltdl3-dev and libltd7-dev are in the archives [18:18] NCommander: Do you do arm on Debian or just m68k? [18:19] ScottK, both [18:19] But I was never a real active porter on arm [18:19] (I did some work in helping test d-i for the NSLU, and did a little armeb work) [18:19] Would you be able to look at my klamav upload and see why it died on arm? [18:19] klamav? [18:19] Link? [18:20] I'm pretty sure it's some arm (probably even buildd) specifc fluke. [18:20] Sure [18:20] WTF O_O; [18:20] NCommander: http://buildd.debian.org/fetch.cgi?pkg=klamav;ver=0.44-2;arch=arm;stamp=1217065380 [18:20] I didn't even know dh_shlibdeps could FAIL [18:20] ;-) [18:21] The only difference between -1 that built and -2 that didn't is I added a new .po file? [18:21] Very strange [18:21] I can blow the dust off my ARM box and find out [18:21] ScottK, you a DD? [18:21] No. [18:21] DM [18:22] oh, that'll work [18:22] You can upload binaries for your own package [18:22] That looks like a buildd fluke [18:22] Yes, if I had a way to build them, I'm sure I could. [18:22] * NCommander finds the power cord to his ARM box [18:22] Its a slow machine [18:23] No rush. I'm about to head out for several hours. [18:24] ok [18:24] I can't even find it though :-/ [18:36] hello, last night i uploaded my package to REVU and I do not see it listed as recent packages [18:36] What was the package SolarWar ? [18:36] nhandler, Qlix [18:38] NCommander: If you find it let me know. Thanks. [18:38] I'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:39] hrm, nhandler i am not listed there [18:39] i joined revu via launchpad, is there anything else i need to do? [18:40] oh i have to ask you folks to resync :) [18:40] SolarWar: https://wiki.ubuntu.com/MOTU/Packages/REVU [18:42] nhandler, thanks, rereading now.. [18:42] nhandler, would you happen to be a revu admin? [18:42] Nope, sorry :( [18:43] ah, no problem [18:43] They 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 keyring === Daviey_ is now known as Daviey [18:49] ajmitch, hello [18:50] i'll be back [18:54] Hello, can someone help me with Martin Pitt's question on bug 249158 ? [18:54] Launchpad bug 249158 in ubuntu "Please sync swt-gtk 3.4-1 (universe) from Debian unstable (main)." [Wishlist,Incomplete] https://launchpad.net/bugs/249158 [18:57] AnAnt, 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:58] current version of eclipse (in both Debian & Ubuntu) are old [19:00] AnAnt, I'm not aware of any issues related to eclipse or swt-gtk, you may want to ask doko about it [19:01] doko: ping [19:06] sudo debootstrap --variant=buildd --arch i386 hardy /var/chroot/hardy http://archive.ubuntu.com/ubuntu/ [19:06] ww sorry [19:07] *** WARNING: Please avoid using REVU the next minutes as we are going to deploy an update with important code and databse changes. [19:09] hat warning [19:09] RainCT: ok. [19:09] Oh [19:09] will everything explode ? :-o [19:09] tacone, its my code going into production [19:09] So likely [19:09] if it does blame NCommander :P [19:09] omg ! [19:09] yup [19:09] Blame me [19:09] Single signons for REVU are now going to be available [19:09] tacone: I don't think NCommander is your God. [19:10] AnAnt, weekend time, you should ping him from monday :) [19:11] DktrKranz, if he ping replies on monday, thats some serious lag [19:11] NCommander, yes: it is usually called: "weekend" [19:12] it's the weekend? [19:12] we are immune to "weekend" :) [19:12] DktrKranz: is that a windows virus ? [19:13] tacone, windows? huh? [19:14] ok [19:19] Txt_file [19:25] Saj0577: Fail. Wrong console. [19:25] yeah i know i realised that now hehe thanks [19:25] ;-) [19:29] NCommander: I am no longer an admin on REVU. [19:29] jpds, permissions didn't travel over [19:29] Ask RainCT to make you an admin [19:29] er [19:29] actually [19:29] If you merge your account, you'll be remade an admin [19:29] I think [19:30] I just logged in with the OpenID thing. [19:30] yeah [19:31] You need to merge accounts to get back your old permissions, but give us a sec [19:31] There is a slight issue we're working out [19:31] Sure. [19:33] REVU likes to break when upgraded [19:35] just like ubuntu! *badumtish* [19:35] * NCommander smacks directhex [19:36] jpds, on the plus side, having the Launchpad login linked is a very nice feature [19:36] NCommander: Yes, I have just used it to log into help.u.c too. [19:36] The next major fix is a redone UI [19:37] jpds, http://nemesisnetworks.com/revu-html [19:37] NCommander, 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 heartening [19:37] Oh [19:37] NCommander: Don't like brown? [19:37] Well [19:37] I find its tiring to read after awhile [19:37] Same reason I don't use brown on the wiki [19:39] jpds, if you know your REVU password, you can now merge your account and your LP one will be marked Admin [19:39] However, the recover password feature is broken ATM [19:40] NCommander: Fail. MOD_PYTHON ERROR [19:40] yup [19:40] Just found that out [19:40] We just changed that right then so we fail :-) [19:41] ;-) [19:41] jpds, I just asked RainCT to mark you admin [19:41] OK. [19:42] Well, that could have gone a little smoother :-/ [19:42] NCommander: Does it use: https://edge.launchpad.net/~revu-admins ? [19:42] No [19:42] Not yet [19:42] raphink: ^ :) [19:43] I already gorged my eyes out working out how to get rdf to retrieve GPG keys [19:43] NCommander: In python? I have a script which does that. [19:43] To get the GPG keys? [19:43] I figure it out [19:44] It was just ugly [19:44] If 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:55] hey. it'd be great if someone from motu-sru could take a look at bug #224780 :) [19:55] Launchpad bug 224780 in mythbuntu-control-centre "Hardy - Myth Control Centre - optimize_mythdb.pl moved?" [Undecided,Fix committed] https://launchpad.net/bugs/224780 === doko_ is now known as doko [20:03] what is the URL for the REVU uploaders keyring ? [20:08] SolarWar0: http://revu.ubuntuwire.com/uploaders.gpg [20:09] hrm [20:09] ok, uploaders are now fixed [20:09] yay [20:10] now fixed? [20:10] do you mean the keyring got resynced? :) [20:11] SolarWar0: REVU is being updated right now - please avoid using it until further notice [20:12] okie [20:12] RainCT: Put that in the /topic. [20:13] jpds: I can't :) [20:13] RainCT: You can. [20:13] Sure you can, it's not +t in here [20:13] oh [20:14] what exactly is being updated on revu? [20:14] SolarWar0: user system. it uses OpenID with Launchpad now, thanks to NCommander :) === 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 [20:16] RainCT, is it possible to request a keyring resync after the update? :) [20:16] SolarWar0: it won't be necessary anymore - your keys will be synced after your first login [20:17] oh, thats good news :) [20:20] yeah [20:20] Its actually a pretty big update because it paves the way for much bigger improvements [20:20] Now I can't have fun playing with scripts. [20:37] jpds, your a revu admin [20:37] We almost have everything fixed, one final bug to work out [20:37] NCommander: \o/ [20:43] does someone know how to create an empty keyring? [20:43] gpg --homedir=~/tmp/keyring -k [20:44] s/=// [20:58] REVU is now up again [20:58] We reset the keyring [20:58] Please login to REVU to have your key synced [20:58] (it will be synced during login) [20:59] Can the keyring syncing step be removed altogether? === 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 [20:59] Laney, its gone :-) [20:59] Yay! [20:59] New keys are automatically synced on login [20:59] That's what I was going to propose [20:59] If your an MOTU, you need to merge accounts to regain your old status [20:59] (everyone is marked as contributor on first login) [21:00] The reset password function is not working ATM (we're working on it now) [21:00] can we get rid of the launchpad_login.py thing? [21:00] coppro, no, that's what allows for the new launchpad based logins :-P [21:00] it's just a blank page with a continue box [21:00] No [21:00] yes [21:00] THat's launchpad [21:00] you should be redirected in a few seconds [21:01] I hit continue, then I get "do you want to send these details to revu?" [21:01] That page is needed anyway simply because special information has to be sent to LP for logins [21:01] Yeah [21:01] Odd, it should redirect instantly [21:01] NCommander: here it needs 2-3 seconds [21:01] Meh [21:01] ah, I see the problem [21:01] I use NoScript [21:01] Yeah [21:01] That would do it [21:01] any way to do it without JS? [21:02] coppro: complain to the launchpad devs :P [21:02] Not really [21:02] That CONTINUE button is actually Launchpad [21:02] Not us [21:02] Our code is simply a meta redirect [21:02] ok [21:02] not an HTTP redirect? [21:02] Doesn't work [21:02] Launchpad rejects it [21:02] weird [21:02] (OpenID's spec says that they're susposed to accept, but I got a parser error from them) [21:03] coppro, http://openidenabled.com/python-openid/trunk/examples/consumer/ [21:03] That's an openid example, you can see its Launchpad that has the issue [21:03] NCommander: Is it safe to add comments to REVU now? [21:03] nhandler, yup [21:03] :-) [21:03] Everything is good to go :-) [21:04] Enjoy your new Launchpad powered revu [21:04] I will, thanks a lot NCommander [21:04] The next update will be a revamped UI [21:04] Current working model is here [21:04] http://nemesisnetworks.com/revu-html [21:04] Also, a PPA importer is planning for sometime soon ;-) [21:05] NCommander, how can i tell if i'm in the revu keyring? [21:06] SolarWar0, you'll be added the moment you login [21:06] You are added once you login to REVU [21:06] We removed the uploaders.lists because its unnecessary [21:06] so now all i need to do is dput my dsc file into review and it should show up? [21:06] SolarWar0, assuming you logged in, yup [21:07] okie [21:07] It seems I can not login to REVU. I allowed all javascript. I got "" [21:07] mouz, what's your launchpad id? [21:07] mouz :) [21:07] SolarWar0, you were able to login, right? [21:08] NCommander, I was able to login too [21:08] Ok [21:08] NCommander, can I merge more than one account with the new launchpad account? [21:08] Are you guys running on EDGE< or regular launchpad [21:08] DRebellion, yeah, just repeat the process for each one [21:08] NCommander, EDGE [21:08] How about you SolarWar0 ? [21:08] NCommander, yep [21:09] EDGE? [21:09] uh oh [21:09] ... [21:09] * NCommander prays he's wrong [21:09] The openid service should be open to all [21:09] Not just those on edge [21:09] NCommander, erm.. I just get a page that says: "To decrypt your password, copy the following into your shell: gpg -d <" [21:09] yeah [21:09] Known bug [21:09] ... [21:09] That broke with theupgrade, still working on it [21:10] DRebellion: I can change your pass if you tell me the email [21:10] Crap [21:10] # [21:10] OpenID is already enabled in your Launchpad account, if you're a member of the Launchpad beta test team. [21:10] * NCommander hits head [21:10] Damn it, why doesn't that come with a bigger warning label [21:10] lol NCommander [21:11] I think there is a way to enable it without actually adding EDGE [21:11] New MOTU policy: Everyone must be Launchpad Beta Tester [21:11] :P [21:11] RainCT, thanks, did you get the private message? [21:11] DRebellion: yep, 1 sec [21:11] RainCT, could you email me the new passwords? [21:11] RainCT: I think making all MOTUs become beta testers would cause a lot more to quit. [21:12] ugh [21:12] * NCommander grumbles [21:13] nhandler: just joking :P [21:13] According to LP, it should work fine on normal accounts [21:13] NCommander: I think it is public since already some time.. [21:14] *public=for everyone [21:14] Yeah [21:14] I'm resetting the password on my non-EDGE account to see [21:15] why do you have 2 accounts? :P [21:15] I just never meged them [21:15] Does anyone here not run EDGE? [21:16] what is EDGE? [21:16] coppro, go see if you can login REVU [21:16] I can [21:16] (EDGE is LP's beta test) [21:16] *phew* [21:16] Ok [21:16] And I never agreed to participate in any beta anything [21:17] Well, by using REVU ... [21:17] *shot* [21:17] haha [21:17] mouz, if you have noscript, you need to disable on both REVU, and launchpad [21:17] (or better yet, disable it) [21:17] vote: let's hang mouz for scaring NCommander ;) [21:17] +1 [21:17] hrm [21:17] +0 [21:17] +1 [21:17] +1 [21:17] I don't know mouz. [21:17] vote: let's hang NCommander for recommending disabling NoScript [21:18] -1 [21:18] * Iulian smiles [21:18] -1 [21:18] -1 [21:18] ^^ [21:18] NoScript is a bad idea [21:18] Cause it breaks a lot of legit sites [21:18] Lessen up on the tinfoil [21:18] mouz, are you running any unusual firefox plugins? [21:19] SolarWar0, your upload work ok? [21:19] i uploaded to review via dput but its not showing up here :-/ [21:19] package name? [21:19] SolarWar0: is it qlix? [21:19] yep [21:20] It sounds like the crontab not too happy [21:20] SolarWar0: it's up now - crontab didn't run yet [21:20] RainCT, reduce the time on the crontab :-P [21:20] SolarWar0: ah, and change the Standards Version to 3.8.0 [21:20] oh i see it [21:20] Yup [21:20] Sweet [21:20] It works nicely [21:20] (for those of us who can login) [21:21] RainCT, any other comments? :) [21:21] vote: is NCommander's improvement to REVU a good thing? [21:21] +1 [21:21] +1 [21:21] SolarWar0: I've just looked at the lintian output while it was being generated ;) [21:21] NCommander, it's working beautifully. Congrats ;) [21:21] Yeah [21:22] We're probably the first thing to actually use LP's openid server for this kind of abuse [21:22] so remember to file bugs against launchpad and not us [21:22] RainCT, lintian didn't complain on my end i wonder why [21:22] NCommander: you don't know where the crontab entry is, do you? :P [21:22] SolarWar0, don't package in Hardy [21:22] NCommander: disabling noscript didn't help. Circumventing web proxy did. Merge succeeded. [21:22] SolarWar0: do you have the version from hardy-backports? [21:22] mouz, Weird, please note what you did on the wiki (and maybe bug launchpad to fix their openid server) [21:23] i only have intrepid inside pbuilder [21:23] SolarWar0, that's fine, just install lintian for backports [21:23] Because's Hardy's lintian doesn't have all the up to date warnings (like standards 3.8.0) [21:24] NCommander, on the beta revu it says all the times are Europe/Belgian. I think you should specify what UTC+XXXX that is. [21:24] NCommander, do i need to update other packages as well from backports? [21:24] DRebellion, that's a long time thing, I don't even know what it should be -_-; [21:24] haha [21:26] DRebellion: it says Berlin, not Belgian o_O [21:26] xD [21:26] DRebellion, fail. [21:26] same difference [21:26] :P [21:26] and it's UTC+1 [21:26] yay [21:27] just like BST [21:27] so I don't have to worry [21:27] until the cold, dark stormy nights of winter [21:27] * DRebellion shudders [21:29] * RainCT gives DRebellion a blanket [21:29] :) [21:32] DRebellion: Or just do TZ="Europe/Berlin" date [21:39] anyone up for reviewing my package? :) [21:40] I'll look at it in a minute SolarWar0. But I'm not a MOTU, so I can't advocate [21:40] thats fine with me :) [21:42] I'm not an MOTU, but I can advocate, but I won't :-P [21:42] * NCommander runs [21:42] hahaha [21:42] hahahah [21:42] * SolarWar0 breaks out his lasso [21:42] get back here! ;) [21:42] NCommander: I'm watching you ;) [21:44] bah [21:44] My merge broke my local branch [21:44] * NCommander reverts and tries with weave [21:48] * NCommander pokes RainCT's all watching eye [21:49] NCommander: Watch it, I saw in a movie it starred in, it had fire all over it. [21:49] auu [21:49] way to go xorg [21:49] * NCommander is a firefighter [21:50] * NCommander puts out the eye [21:54] o.O [21:56] RainCT: Never seen lord of the rings? [21:56] jpds: yep, why? [21:58] How do I update my debian/watch file to avoid matching development versions and use mangle option to match the upstream version? [21:58] Currently I have http://sf.net/pkg/pkg-(.*)\.tar\.bz2 [22:01] it's a regex [22:01] if the use it appropriately [22:01] why is this 404ing [22:01] s/if the // [22:07] Iulian, dev versions end in odd digit? [22:09] Jazzva: Well, I'd like to avoid dev versions. [22:09] Hmm [22:10] Iulian, 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 notation [22:11] Jazzva: It ends in .0.1.0.alpha1 [22:11] If dev versions end in an odd digiet, it's easy: http://sf/net/pkg/pkg-(.*[02468])\.tar\.bz2 [22:12] coppro, that won't work. It would accept pkg-03, but not pkg-0.3... [22:13] Iulian, would 0.1.0 qualify as dev version too? [22:15] Iulian, what's the link to the release page of your program/ [22:15] ? [22:15] Iulian, found it [22:16] Jazzva: http://www.salasaga.org/ but it uses sourceforge too: http://sourceforge.net/projects/salasaga/ [22:16] Thanks :) [22:18] RainCT: Anything else I need to do before you can sponsor/upload the koverartist debdiff for bug #236140 ? [22:18] Launchpad bug 236140 in koverartist "New .desktop file for KoverArtist" [Wishlist,In progress] https://launchpad.net/bugs/236140 [22:18] Iulian, 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:19] Jazzva: Ok, thanks. [22:20] Iulian, 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:21] what command line input can be used to search a folder for a specific string? [22:21] Iulian: 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] nellery: grep -r string folder [22:22] jmarsden, thanks! [22:22] nellery: No problem. [22:24] jmarsden: I don't know if the next release will still be alpha, the current is alpha3 so I cannot avoid alpha candidate versions. [22:25] * Iulian is mailing upstream. [22:25] Iulian: 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:29] jmarsden: Yea, I'm pretty confused too. [22:38] ScottK: 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/UbuntuBackports [22:38] Launchpad bug 252037 in sauerbraten "sauerbraten cannot upgrade" [Undecided,Confirmed] https://launchpad.net/bugs/252037 [22:46] Jazzva, jmarsden: Mail sent. [22:46] Anyone knows how to fix: I: salasaga: arch-dep-package-has-big-usr-share 1028kB 75% [22:46] ? [22:47] make a -common package for arch-independend things [22:47] it basically complains that 75% of your package is /usr/share/ [22:47] Iulian, good :) [22:48] gedit, for example, is mostly /usr/share (hence gedit-common) [22:48] directhex: gedit is mostly crap ... [22:48] norsetto, localised PNGs are crap? :o [22:49] laga, directhex: Thanks [22:53] directhex: is that a rhetoric question? [23:02] does anyone know where I can find a transparent ubuntu logo? [23:03] NCommander: transparent? [23:03] Flannel, just the Ubuntu "circle" and the words in the font [23:03] I need to create a new logo for REVU [23:04] Oh, so "just the logo" [23:04] Pretty much [23:04] I changed REVU's color scheme in my work to make it blue instead of brown [23:04] https://wiki.ubuntu.com/Artwork/Official [23:05] There's SVGs available there, even if you can't find anything raster that works, svgs will. [23:05] although I think the pngs are transparent [23:05] yeah [23:05] I'm just getting tired of brown everywhere [23:05] RainCT: very interesting post on planet. (re: julius) [23:07] * NCommander needs to create a "real" revu logo [23:08] * NCommander goes through the various uploads [23:08] RainCT: 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:15] laga: It seems that I still get that I from lintian. This is my control file: http://iulian.devzero.co.uk/tmp/control [23:15] Am I missing something? [23:15] * Iulian *yawns* [23:15] What's the lintian warning/error? [23:15] hey SolarWar0 [23:15] Iulian: well, are you actually adding stuff to the common package? [23:15] hey NCommander whats going on? === evalles_ is now known as keffie_jayx [23:16] SolarWar0, working on making REVU now pretty [23:16] SolarWar0, http://nemesisnetworks.com/revu-html [23:16] hola geser [23:16] laga: Do I need to make a -common.install file? [23:16] probably ;) [23:16] i don't do much packaging [23:17] oooh perrty :) [23:17] Ok, let's bother geser then :-) [23:17] nhandler, have you had a chance to take alook at my package yet? [23:18] SolarWar0: I added a comment with a few suggestions on REVU [23:18] oh woops [23:18] thanks :) [23:18] np SolarWar0 [23:18] It's getting late here and I should probably be in bed... [23:19] Iulian, i know that feeling :) [23:24] laga: http://iulian.devzero.co.uk/tmp/contents - yay. It's not so much in that -common pkg. [23:27] Iulian: maybe you need to call dh_install or something? [23:29] laga: Probably... will have a look at it tomorrow morning. [23:29] * Iulian is asleep [23:29] Good night all. [23:38] laga: thx :) [23:40] jmarsden: sorry, I was away. I'll have a look at it now [23:40] RainCT: Thanks! [23:48] (sorry I'm away for a while -5-10 min- more - but I'll look at it after that ;)) [23:57] jmarsden: bbtw, you don't need to write Closes (that's for Debian) [23:57] (in the changelog, I mean)