[10:15] Rhonda: Someone will have to send out an email quite soon I reckon. Do we want to have the News on packages.u.c? I doubt that our users find that helpful. [10:21] The news on the packages site are more a changelog of what's done. [10:22] Rhonda: Yes, I can see that. I was just saying that I don't see the point of it being public. [10:23] Anyway, not a big deal. [10:23] Uni time. [10:33] Do you see it as problem? === jbicha is now known as Guest90087 === Guest90087 is now known as jbicha_ [14:48] question for any MOTU, unity-tweak-tool needs a screenshot uploaded for Raring, the package is in Universe, but is not showing up on screenshots.u.c, how can they upload something for display in USC? [14:50] mhall119: I don't know anything about screenshots.u.c, and assume most other MOTUs don't, either [14:51] tumbleweed: ok, let me change the question then [14:51] unity-tweak-tool is in Universe, and needs a screenshot added, how do they do that? [14:51] it's hosted on a Canonical server, and presumably someone in Canonical administers it [14:51] mhall119: no idea [14:55] looks like the Ubuntu one people look after software center things, these days [15:32] tumbleweed: yeah, but they only deal with stuff going through MyApps, not stuff in Universe === barry` is now known as barry_ === barry_ is now known as barry [16:31] cat launchpad git importer do submodules? [16:31] can [16:35] jtaylor: #launchpad? [16:35] no [16:35] it explodes and dies [16:37] hm bye bye ipython daily build then :( [16:37] now I have to start packaging javascript *shudder* [16:38] * tumbleweed doesn't beleive in submodules [16:40] yes they suck :/ [16:41] but having more third party javascript code in your repository than own code is also not nice [18:03] hi there, I'm looking into bug #530036 do you think it may be acceptable for a SRU?, I'm not sure how important is to have a wget 'digest' capable into the stable Ubuntu releases (precise / quantal) [18:03] bug 530036 in wget (Ubuntu) "Incomplete realization of http digest auth" [Undecided,Fix released] https://launchpad.net/bugs/530036 === WaVeR` is now known as WaVeR === cjohnston_ is now known as cjohnston [18:35] hey [18:36] I wanna report a broken package [18:36] what to do [18:36] https://bugs.launchpad.net/ubuntu/+source/touchegg/+bug/1174070 [18:36] Launchpad bug 1174070 in touchegg (Ubuntu) "Touchegg 1.0 under 12.04, 12.10 causes segfault, is NOT working. missing backporting of 1.1 to 12.04/12.10" [Undecided,New] [19:31] * Rhonda nibbles again on Laney === mapreri is now known as ajshfskjbdhgbhrb === ajshfskjbdhgbhrb is now known as mapreri === mapreri is now known as jfgnkljshdfghesl === jfgnkljshdfghesl is now known as mapreri [20:32] Rhonda has a career in Ubuntu support ahead [21:16] mhall119: Own answer is get the package in Debian. Screenshots from screenshots.debian.net/org (I don't recall which) are automatically pulled in. [21:23] ScottK: I'm not sure Debian would want a tweak tool for a desktop shell that isn't in Debian [21:27] Laney: pah :) [21:27] Laney: Now I'm even summoned to unrelated bugs to comment on launchpad. :) [21:28] have you had a packages related email? [21:28] Of course. [21:28] You could just remove it [21:28] Why else would I nibble on you. :) [21:28] mhall119: Sure, just saying that's the only way I know. [21:28] No, I enjoy the nibbling invites. ;) [21:28] no, I mean have you ever had an on-topic email as a result of it? [21:29] Yes, just recently. [21:29] "raring isn't the default" [21:29] heh [21:29] ScottK: thanks anyway === jibel_ is now known as jibel [22:37] does anyone knows of an alternative to dpkg-shlibdeps?, I'm trying to get all the dependencies of a binary file, but dpkg-shlibdeps requires I setup a packaging directory tree, and I don't want to hack my own ldd + apt-file script [22:41] ldd alone is no enough? [22:42] Or you want the deps translated into package names? [22:44] maxb: yes, I want to get the package names where are the .so libraries [22:45] I think you're stuck with dpkg-shlibdeps then [22:46] maxb: thanks for replying =), I'll give it a shot or write my own script [22:49] for file in $(ldd path/to/program | awk '{print $3}') ; do dpkg -S $file ;done :P (Though, I don't think I'd use it.) [22:51] Unit193: cool, I've just though in ldd /path/to/program | sort -n | uniq | awk '{print $1}' | xargs -i apt-file search {} #will test both =) [22:52] I clearly didn't bother to add uniq, was just an example.