/srv/irclogs.ubuntu.com/2012/06/28/#ubuntu-desktop.txt

veebersping bilal01:56
smspillazdesrt: there ?02:00
smspillazdesrt: I'm in Canadaland!02:00
bilalCanadaland?02:03
smspillazhai bilal02:17
smspillazbilal: Canada :P02:17
smspillazvancouver, specifically02:17
smspillazjust visiting some family for a month02:17
bschaefersmspillaz, really? You are like 2 - 3 hours away from me02:17
smspillaz\o/02:17
bschaefersomeone else in my timezone!02:18
bschaeferit wont be so lonely on Friday maybe02:18
smspillazlol02:19
smspillazI'm kinda sporadically around02:19
bschaeferyour family must be really spread out haha02:27
jbicharobert_ancell: do you think libgtk-3-dev needs to depend on libatk-bridge2.0-dev too?03:23
jbichahttps://launchpadlibrarian.net/108816988/buildlog_ubuntu-quantal-amd64.gnome-sushi_0.5.2-0ubuntu2_FAILEDTOBUILD.txt.gz03:23
robert_ancelljbicha, yes03:23
robert_ancelljbicha, do you want to make the fix or me?03:24
robert_ancellshould fix up lintian to detect these automatically03:24
jbichacould you do it? I'm about done for the night03:25
robert_ancelljbicha, sure03:26
pittiGood morning04:21
didrocksgood morning06:09
=== tkamppeter_ is now known as tkamppeter
Sweetsharkmoin!07:04
Sweetsharkno jason around? I wanted to weep myself out in a 1:1!07:12
brycehSweetshark, think he's still recovering from his vacation07:14
Sweetsharkbryceh: that sentence looks funny, but given what jasons vacation was about isnt really :(07:22
didrocksmhr3: hey, so, time to discuss with pitti about the best way of upstream dealing with the gi path?07:39
pittiI thought we already discussed that yesterday?07:40
didrocksI think we should just use the import gi.override and use the path that pitti showed07:40
didrockspitti: well, mhr3 thinks that the path detection should be in a .pc file07:40
pittithat seems safest to me, indeed07:40
didrocksinstead of replicating that for all projects shipping overrides07:40
mhr3pitti, yes, imo pygobject should provide a variable in their .pc07:40
pittiwell, but .pc is for upstreams; our dh_python3 gets in the way of this07:40
pittiah, we could do that, yes07:41
pittimind filing a bug about it?07:41
didrocksso generate a .pc.in which generates a .pc with the right path?07:41
didrocksI can do it if needed07:41
pittiah, hang on07:41
pitti.pc files can only contain static info, can't they?07:41
didrocksyeah, but that can be generated at build time, no?07:42
didrocks(pygobject build time)07:42
pittiso again, as dh_python3 changes the paths, we can't create that .pc during build time07:42
didrocksah07:42
pittithat makes it a bit tricky07:42
didrocksthe upstream path is not in dist-packages, indeed…07:42
mhr3sed? :)07:43
didrocksshipping a m4?07:44
pittiwe could change it in the pygobject package07:44
mhr3oh wait07:44
pittibut this again would not be upstream compatible07:44
mhr3i just noticed in pygobject.pc:07:44
mhr3# overridesdir has now moved to the gi module07:44
mhr3# third parties can access it in a python script:07:44
mhr3#07:44
mhr3# import gi07:44
mhr3# installdir = gi._overridesdir07:44
mhr3i suppose that's as universal as it gets07:45
pittiyes, that works07:45
pittithat's calling python again, of course07:45
pittiand I thought that's what you didn't like07:45
mhr3it also adds a build dep on pygobject :/07:45
pitti*shrug* :)07:46
mhr3but well, it doesn't seem a better solution is on the horizon07:46
pittithat doesn't hurt?07:46
pittiin the package, anyway07:46
didrocksmhr3: so, we are doing the import and path detection in the Makefile.am of dee at the end?07:46
pittiupstream you can just ignore it if the command fails07:46
pittipython3 -c 'import gi; print(gi._overridesdir)'07:46
pittiand if it exits with non-zero, you skip that part07:47
didrockspitti: and again, sorry for asking the same question (I didn't see an answer yesterday from it), but do you know why the path contains only python3 and not python3.2?07:48
Sweetsharkis there any coordinated effort to wipe out (or at least identify) the c++0x-ABI breaker madness? It makes LibreOffice (which links against half the world) unstable/failing tests  on quantal.07:48
pittinot exactly; perhaps 3.x promises to not change syntax07:48
didrockspitti: yeah, that's my thought as well, not sure if it was intentional :)07:49
pittididrocks: presumably it's the upstream-official equivalent of our old distro specific /usr/share/pyshared/07:49
didrocksSweetshark: well, open bugs gcc upstream, they are cleaning them07:49
pittiit needs to be by-minor-version for extensions, but not for modules07:49
didrockspitti: that would make sense, thanks :)07:50
Sweetsharkdidrocks: I dont think "one of the LibreOffice dependencies break ABI and injects a broken std::list<>" would be well received. After all there is no way to know which one of the deps is broken (unless I rebuild them all).07:51
didrocksSweetshark: indeed, can be a little bit long07:52
Sweetsharkdidrocks: (510 source packages from some rough script with deptree)07:53
didrocksmhr3: did we lose you? :)07:55
Sweetsharkdidrocks: this is what I mean by "coordinated effort": e.g. something that rebuilds all these with a patched gcc complaining about every call with --std=c++0x in a log or something, so that we know which packages are possibly guilty (and better: which are known to be Good)07:56
mhr3didrocks, http://paste.ubuntu.com/1063887/ ?07:56
didrocksmhr3: I would use ${PYTHON:-python}07:57
didrocksin case the variable is not set in the env07:57
mhr3oh wait, this won't work for local installs07:58
didrocksSweetshark: no, the first ones to get into those troubles was us for unity and we sent the email on the ubuntu-devel list. You can follow up on that one07:59
mhr3didrocks, if PYTHON isn't set?07:59
didrocksSweetshark: for having more work gcc side, see with doko07:59
didrocksmhr3: yep07:59
mhr3didrocks, configure will fail then07:59
mhr3we do AM_PATH_PYTHON07:59
didrocksmhr3: ah ok, nevermind then :)08:00
mhr3pitti, i suppose pygobject doesn't search for the overrides in /usr/local/...., does it?08:00
pittimhr3: s/pygobject/python/; Python requires all submodules of a module to be in the same path08:01
pittii. e. you cannot load "foo" from /usr/lib/python3/ and "foo.bar" from /usr/local/share/python3/08:02
Sweetsharkdidrocks: yes, I saw that mail.08:02
pittiso everything that is under "gi.*" must be in the same path as the gi module itself08:02
mhr3pitti, i see08:02
pittithat applies to all Python modules, it's not pygi specific08:02
pittithat's a bit unfortunate indeed08:02
pittiit led to quite a lot of packaging problems in the past already08:02
mhr3i'm sure there'd be a hack to workaround it :)08:02
mhr3(not saying it should be there)08:03
pittipresumably there is :008:03
pittierr, :)08:03
mhr3oh god... finally, stupid distcheck08:40
mhr3didrocks, this should do it http://paste.ubuntu.com/1063933/08:41
didrocksmhr3: --with-pygi-overrides-dir is to override the override dir? :)08:41
mhr3yes08:42
didrocksmhr3: looks good to me, proposing that as a MR?08:44
mhr3since you like it, yea08:44
mhr3although... maybe handling gi not being installed would be nice08:45
didrockshum, yeah, maybe an option for it or just skipping?08:47
Sweetsharktkamppeter: ping?08:53
mhr3didrocks, https://code.launchpad.net/~mhr3/dee/pygi-overrides-dir/+merge/11251408:58
mitya57mhr3: tabs mixed with spaces? :)09:15
mhr3mitya57, meh :P09:21
tkamppeterSweetshark, I answered your mail now.09:25
chrisccoulsonhmmm, does anyone have any idea why my camera doesn't automatically mount now in quantal? here is the output of udisks --dump (camera is /dev/sdc): http://paste.ubuntu.com/1064013/09:54
seb128chrisccoulson, hey, how are you?09:56
chrisccoulsonhi seb128. i'm good thanks09:56
seb128chrisccoulson, what do you get i gvfs-mount -lo when you plug it?09:56
chrisccoulsonwe just had quite a storm here!09:56
chrisccoulsonhow are you?09:57
seb128chrisccoulson, I'm good thanks09:57
seb128chrisccoulson, thunders? ;-)09:57
seb128chrisccoulson, sorry, gvfs-mount -o, not -lo09:57
seb128or -io09:57
sil2100didrocks: so, in the end, how will we handle the dee SRU with overrides for python3 ?09:58
didrockssil2100: well, I need to check on precise if pygi supports python3, if we do, we will SRU it, if it's not, we won't09:59
sil2100didrocks: or are we not SRUing it for now09:59
chrisccoulsonseb128, the only thing i got the first time was "Drive connected:    'Drive'"09:59
chrisccoulsonbut i've just disconnected it and reconnected it a few times, and now it mounted ;)09:59
seb128chrisccoulson, :-(09:59
AlanBellis anyone working on sound devices in quantal? I am stuck with bug 101696910:14
ubot2Launchpad bug 1016969 in ubiquity "daily live cd boots silent in virtualbox" [Undecided,Confirmed] https://launchpad.net/bugs/101696910:14
AlanBellhard to test accessibility when sound is broken10:15
seb128AlanBell, try checking with TheMuso when he's around10:16
AlanBellto be clear it isn't an accessibility thing that is broken, it is the sound devices10:17
seb128AlanBell, right, and TheMuso is the one maintaining the alsa stack in ubuntu10:19
seb128AlanBell, you can try to ping diwic on #ubuntu-devel as well though, he's around at this time and might have a clue about that bug10:20
AlanBellthanks10:23
xclaesseseb128, FYI, gabble 0.16.1 is in sid: http://packages.debian.org/sid/telepathy-gabble10:28
didrockspitti: jibel: what do you think about using autopilot more for our daily tests of the CD?10:29
seb128xclaesse, excellent10:29
didrocksI'm thinking about the screensaver tests in that case and be able to use keyboard press and such10:29
didrocks(autopilot is nearly shipping in a separate package now)10:29
pittididrocks: what is autopilot exactly? I thought it was the auto-merger stuff?10:30
didrockspitti: ah, not at all, it's some python helpers to emulate mouse, keyboard, knowing the number of monitors, knowing on what monitor a window is10:31
didrocksalso some dbus help for apps supporting introspection like unity10:31
didrocksbefore, it was really tight to unity, but not anymore10:31
didrocksand it's a separate source10:31
jibeldidrocks, where is the code ?10:32
didrocksjibel: lp:autopilot10:33
pittididrocks: ah, I see; I haven't used that yet, putting on my list of stuff to look at10:35
didrockspitti: it can be still a little bit more unity-optional, but that's coming :)10:35
chrisccoulsonwho broke firefox?10:55
chrisccoulsonit keeps not refreshing its window contents since i upgraded a few things last night ;)10:56
seb128chrisccoulson, I'm sure firefox just broke itself10:56
chrisccoulsonlol10:56
seb128;-)10:56
seb128chrisccoulson, what did you upgrade? do you use quantal or quantal-proposed?10:57
chrisccoulsonseb128, quantal-proposed10:57
chrisccoulsoni updated compiz ;)10:57
seb128lol10:58
chrisccoulsonbut then, i also updated firefox10:58
seb128chrisccoulson, I see how your thinking goes :p10:58
chrisccoulsonso it's entirely possible it might be a real firefox bug10:58
seb128chrisccoulson, compiz could have issues with the recent performance work, e.g10:59
seb128- Use the XDamage extension more efficiently (the way it was designed to be10:59
seb128      used). This dramatically reduces CPU usage, reduces wakeups, and10:59
seb128      increases frame rates. It also solves at least one observed performance10:59
seb128      bug (LP: #1007299) and probably several more.10:59
seb128chrisccoulson, that's bound to creates less update and it might hit cases where a refresh is needed and doesn't happen...10:59
chrisccoulsonah, yes, that looks suspicious ;)11:00
=== MacSlow is now known as MacSlow|lunch
chrisccoulsongoodbye infobar: http://ubuntuone.com/41F0SzeXhtcnAdXgBc4MUz !11:33
* didrocks has a first very stupid screensaver detection test :)11:34
chrisccoulsonhmmm, it's starting to rain heavy again and go dark11:49
didrocksreally warm and sunny here with no win. I challenged to preserve only 27.3°C in my room :)11:50
Laneythat scares me, because your rain becomes my rain an hour later :P11:50
Laneyhttp://www.raintoday.co.uk/11:51
mlankhorstbuienradar.nl ?11:51
Laneyalso I am supposed to be going to see the olympic torch later so I hope it gets nice :(11:52
chrisccoulsonLaney, http://www.youtube.com/watch?v=yvUrUeB8CYs. we had quite a monster thunderstorm this morning11:52
Laneychrisccoulson: ah, yeah, that's what I was cycling in at about 10:45 …11:53
* Laney is still wet11:53
chrisccoulsonheh, unlucky ;)11:54
=== slomo_ is now known as slomo
=== davmor2_ is now known as davmor2
=== MacSlow|lunch is now known as MacSlow
=== agateau_ is now known as agateau
chrisccoulsonhmmm, what are people's thoughts about using dbus-send from maintainer scripts?12:17
didrockschrisccoulson: on the system bus?12:28
didrocksor session?12:28
chrisccoulsondidrocks, system bus12:28
seb128hum, got reconnected it seems12:29
seb128chrisccoulson, what on the system bus?.12:29
didrocks14:17:46 chrisccoulson | hmmm, what are people's thoughts about using dbus-send from maintainer scripts?12:29
didrocksseb128: ^12:29
seb128oh12:29
chrisccoulsonhi seb128 :)12:29
didrocksI guess it's fine as if we don't have system bus running, we won't have upstart and the world collapse :)12:30
seb128chrisccoulson, talk to mvo to know how much he hates complex maintainer scripts and doing stuff like calling commands from there ;-)12:30
seb128chrisccoulson, what do you need to do?12:31
mvochrisccoulson: what seb128 said, but to be fair, I think its better to do a dbus-send whatever than to do a if [ sadfdsf ] ; then dsfkjdsaf; jksjdf ; sdfkdsa; while sf dsaffdsf ; done; fi; meeep;12:31
chrisccoulsonseb128, we currently touch a file after we configure firefox, which we poll for in firefox for the update notification12:31
* mvo hopes this vaguely makes sense12:31
chrisccoulsoni want to get rid of the polling :)12:31
seb128seems similar to the reboot required thing ;-)12:32
mvochrisccoulson: why do you poll instead of using something like inotify? or is that what you mean with polling?12:32
seb128chrisccoulson, why do you need to poll? can't you use inotify?12:32
seb128doh, mvo got me there ;-)12:32
chrisccoulsonmvo, i don't really have any facility for using that from JS12:32
chrisccoulsonbut i already have code to use gdbus12:32
mvoseb128: haha12:33
mvochrisccoulson: woah, so you can have dbus in JS but not Gio?12:33
mvochrisccoulson: interessting!12:33
chrisccoulsonmvo, i can have either, but i'm already using gdbus :)12:33
chrisccoulsonso it's less work12:33
seb128chrisccoulson, hum, can't you just use any glib function?12:34
seb128chrisccoulson, I though you would have access to full glib if you have access to gdbus12:34
mvochrisccoulson: yeah, go for it with dbus-send, just add a || true - I would love to see the JS for that, just because I'm curious and do not know much about JS12:34
chrisccoulsonseb128, i can, but it's just a bit more work12:35
mvochrisccoulson: (seeing the JS part of it, not the maintainer script, but I guess that is obvious from the context anyway)12:36
didrocksmvo: what you didn't want to see a dbus-send call from a shell script? You find that so boring? :)12:36
mvodidrocks: :P12:36
chrisccoulsonmvo, oh, you can already see some code where i use dbus: http://bazaar.launchpad.net/~mozillateam/ubufox/trunk/view/head:/modules/PluginInstallerApt.jsm ;)12:37
mvochrisccoulson: cool, thanks, thats very interessting12:39
didrockschrisccoulson: is this code still in use? as most of extensions are not packaged anymore12:41
chrisccoulsondidrocks, it's for the plugin finder (ie, flash)12:41
didrocksah ok :)12:42
didrockssome people didn't find the "remove this entry" from the launcher: http://www.iter.org/newsline/228/1221 :)12:44
didrocksseb128: "test screensaver and inhibit", what do you mean by inhibit?12:47
seb128didrocks, the screensaver should not kick in while e.g totem is playing a video12:47
didrocksah that ;)12:47
seb128didrocks, there is an inhibit locking dbus api the player is using for that12:47
didrocksseb128: are you sure? i'm on the screensaver dbus interface and I don't see this12:48
didrocksapart from SimulateUserActivity12:48
seb128didrocks, let me check, it might be in gnome-session...12:49
didrocksthere is something in gnome-session12:49
didrocksah funny, rhythmbox playing is inibihiting as well?12:50
didrocksseems so, found it then :)12:52
seb128didrocks, I'm trying to find the details again, there is suspend inhibition12:52
seb128didrocks, like rb will prevent suspend, not sure if it will prevent screen blanking12:52
didrocksah12:54
seb128didrocks, so, yeah, http://git.gnome.org/browse/totem/commit/?id=c6fc9c4785904cda4b648dbdbd24958d1010c4a112:54
didrocksfirst, I need to find the gsettings key to change the timeout12:54
didrocksseb128: it's that call then, great! thanks :)12:54
seb128didrocks, yw, seems gtk won an api for that btw12:54
seb128didrocks, http://developer.gnome.org/gtk3/3.5/GtkApplication.html#gtk-application-inhibit12:55
seb128http://developer.gnome.org/gtk3/3.5/GtkApplication.html#GtkApplicationInhibitFlags12:55
didrocksseb128: well, I prefer faking the call than having a fake gtkwindow12:56
seb128didrocks, right, that was just as a piece of info ;-)12:56
didrocksas it will bring a mainloop and I don't really want that in my unittest :)12:56
didrocksthanks ;)12:56
* didrocks looks for the gsettings key now12:56
* kenvandine really hopes this weather forecast is wrong... 105F (40.5C) is ridiculous! 13:18
* pitti finally files a crash about empathy-chat, which has been annoyingly broken for the last three days13:21
pittiis it working for anyone else?13:21
seb128pitti, known issue13:21
seb128pitti, http://git.gnome.org/browse/empathy/commit/?id=c3c7502b206eb550c08e8a9271a4087d855038df13:22
pittiah, thanks13:22
seb128or http://git.gnome.org/browse/empathy/commit/?id=9b18c84ccde2ff7231baddab7dd53403fc4df2d913:23
seb128pitti, we were discussing it yesterday with larsu and xclaesse13:23
seb128pitti, you can run empahy-chat manually to workaround it13:23
seb128pitti, it's only buggy when dbus activated13:23
xclaesseseb128, pitti: empathy release with fix is out... just a matter of pushing the package ;)13:24
pittixclaesse: merci!13:24
seb128xclaesse, not for 3.5?13:24
xclaesseah, right, commits are in master but no 3.5 release yet13:25
seb128xclaesse, those were commited after 3.5.313:25
xclaessefeel free to include the patch in ubuntu packaging13:25
seb128xclaesse, yeah, we should do that13:25
xclaesseor ask Guillaume for a tarball :)13:25
xclaesse(but he just left office)13:26
seb128kenvandine, ^ can you update empathy and include the recent commits to fix the empathy-chat segfault in quantal?13:26
xclaessethe fix is http://git.gnome.org/browse/empathy/commit/?id=c3c7502b206eb550c08e8a9271a4087d855038df13:26
kenvandineseb128, sure!13:33
seb128kenvandine, thanks13:34
xclaesseis it possible to report a bug for a .crash file I have in /var/crash manually?13:40
xclaesseI mean, I denied the dialog when crash occured, how do I send it now?13:40
cyphermoxxclaesse: sure, ubuntu-bug <crash file>13:40
xclaessealso, when uploading crashes, most of the time it complains because I have custom packages. but I do know that the crash is still valid. is it possible to tell it "yes, really, report that"13:41
xclaessecyphermox, thx13:41
seb128xclaesse, the issue is that we will not be able to retrace it if you have a custom version since the retracers don't have the dbg symbols for that build13:45
xclaesseright... guess I'll have to gdb it myself then13:46
seb128right13:46
bcurtiswxgood morning14:00
kenvandinegood morning bcurtiswx14:00
bcurtiswxkenvandine, I see in the backlog that you really really really .... want empathy 3.5.x in Quantal.. I'm on it, have been, with the exception of the delay for my wedding.14:01
kenvandinebcurtiswx, i am almost done :)14:02
kenvandineglad your branch was pushed :)14:02
kenvandinewell, i am doing 3.5.2 and backporting that patch14:02
kenvandine3.5.3 needs another new package14:02
bcurtiswxit was just one build fail, to which EMPATHY_EVENT_TYPE_VOIP seems deprecated14:02
kenvandineso quicker to get 3.5.2 out :)14:02
kenvandinethere is a little more... getting rid of empathy-call too14:03
bcurtiswxkenvandine, ah, our patches used it?14:03
kenvandineno, we just did that to keep clutter off the CD14:03
kenvandinewith -av being dropped, no point in keeping that split out14:03
kenvandinebcurtiswx, want to try your hand a a new package from scratch?14:04
seb128kenvandine, do we need libcheese or is that orthogonal?14:05
bcurtiswxseb128, it's optional14:05
kenvandinenope14:05
kenvandinebut we need egg-list-box14:05
kenvandinefor 3.5.314:05
seb128kenvandine, hum?14:05
seb128kenvandine, that's an egg widget, i.e the source should copied be in empathy itself?14:06
seb128kenvandine, or I'm overlooking something?14:06
bcurtiswxi haven't looked at 3.5.3 yet14:06
kenvandinei haven't really looked yet14:06
seb128kenvandine, ok, well I'm pretty sure that's same as the other egg*, those are code you have a copy from in your source14:06
kenvandinehttp://git.gnome.org/browse/egg-list-box/14:07
bcurtiswxI can work on empathy 3.4.2.3 for SRU at some point today14:07
seb128kenvandine, right, they have a direct include from the empathy source to that, so when they roll a tarball that should include both14:07
kenvandinebcurtiswx, cool14:07
kenvandineseb128, ah... so maybe broken tarball14:07
kenvandineeither way, quicker to go with 3.5.2 :)14:07
seb128kenvandine, likely yes14:08
seb128kenvandine, right, no hurry for 3.5.314:08
kenvandinejust waiting for pbuilder to finish and do a test upgrade :)14:08
kenvandinedropping empathy-call binary14:08
seb128kenvandine, mention it to cassidy maybe though if you get an issue with 3.5.314:08
kenvandine3.5.3 failed to find it with pkg-config14:09
seb128oh, maybe I'm wrong there...14:09
bcurtiswxkenvandine, empathy-call was replacing empathy-av right?14:09
kenvandinebcurtiswx, yes14:09
seb128kenvandine, their configure.ac has14:10
seb128export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:"$ac_top_build_prefix"libempathy-gtk/egg-list-box14:10
seb128kenvandine, so it's indeed supposed to be a subdir in the empathy source14:10
kenvandinecool14:10
didrocksseb128: do you have your delay lock screen working?14:33
seb128didrocks, afaik yes14:34
didrocksdoesn't seem to work here, after checking there is no inhibitors14:34
didrocks(on quantal)14:34
seb128didrocks, I hate screen locking delays14:34
didrocksah, the key is "lock screen after screensaver activation"14:34
didrocksso, there is another value for screensaver activation delay14:35
seb128didrocks, one thing to check is that the time might be time_screensaver + time_locking14:35
didrocksyeah, it seems to be, see above ^14:35
seb128it used to be that the screen would lock on the selected time, counting starting a screensaver start14:35
* didrocks looks for the time_screensaver key then14:35
seb128didrocks, right14:35
=== Ursinha` is now known as Ursinha
kenvandineseb128, i need to update folks too for empathy 3.5.314:45
kenvandineand if figure out the egg-list-box problem14:45
seb128kenvandine, oh, what was it?14:46
kenvandinei didn't figure it out yet :)14:46
kenvandinei uploaded 3.5.2 to quantal-proposed though14:46
kenvandinewith that patch14:46
seb128kenvandine, thanks14:48
seb128kenvandine, no hurry for the other one14:48
dobeymvo: ping. we need to chat a bit about the gtk+ sso and software-center stuff today14:50
mvodobey: sure!14:52
mvodobey: g+, mumble or irc, what do you prefer?14:52
dobeymvo: irc is fine14:53
dobeymvo: i have a team call in a few minutes though, and will need to get lunch after that. is it possible to chat later sometime?14:55
mvodobey: i have a pretty full agenda this afternoon/evening too :/ maybe tomorrow (your) morning?14:57
mvodobey: what is it about? fundamental concerns about the merge?14:57
dobeymvo: nessita wanted me to talk to you about the packaging.14:58
dobeymvo: her merge for software-center looks pretty much ok to me now. but i have some concerns about how i understand you wanted to package it14:59
nessitadobey: I'm having a talk with mvo in one minute, so I can  share your POV with him15:00
dobeyok15:00
nessitaand then you can perhaps finish the talk, if there is anything left to talk?15:01
dobeysure15:01
kenvandineseb128, the real problem with egg-list-box was actually that it requires valac 0.16.115:06
kenvandineso it's configure failed15:07
seb128oh, makes sense15:07
seb128kenvandine, build with 0.17 ;-)15:07
seb128we have it in quantal15:07
kenvandineso now we need to bump valac and folks15:07
kenvandineoh... :)15:07
seb128kenvandine, vala was done by robert_ancell already15:08
kenvandineEggListBox looks very cool!15:22
bcurtiswxi don't have quantal installed, get a screenshot ?15:23
kenvandinehttp://blog.desmottes.be/post/2012/06/15/New-Empathy-contact-list15:23
kenvandinenot talking about "looks" but looks :)15:23
didrocksRan 7 tests in 142.862s15:23
didrocksOK15:23
kenvandinegotta read his post to know why :)15:23
didrocksscreensaver/lock screen testing done \o/15:23
kenvandineslow tests!15:23
didrockskenvandine: yeah, you have to wait several times for the timeout to get the screen locked15:24
didrocksand even with a minimum value of 5 seconds, you have 10 seconds of dim15:24
didrocksso 15s at the minimum15:24
kenvandineyeah, makes sense15:25
bcurtiswxkenvandine, i gave them an interesting idea for showing contacts, but it is way out of the realm of possibility, instead of having the long rectangles for each contact, i thought, why not make each contact a box, you get more contacts..15:27
bcurtiswxso 3.5.3 is a go once folks bump makes it into debian15:28
kenvandineyeah15:28
kenvandineunless we update it15:28
bcurtiswxwho usually does empathy/TP debian builds.. sjoerd? bigon?15:29
bigon17:28 < bcurtiswx> so 3.5.3 is a go once folks bump makes it into debian << that will not happen soon15:29
bcurtiswxbigon, thats fine, were not in any rush to get 3.5.3 in15:30
bigonwe'll focus on the release 1st I guess15:30
bcurtiswxok15:31
seb128cyphermox, there today?15:40
bcurtiswxkenvandine, 3.4.2.3 is building in pbuilder, bug #101878415:56
ubot2Launchpad bug 1018784 in empathy "[SRU Precise] update to 3.4.2.3" [Wishlist,Confirmed] https://launchpad.net/bugs/101878415:56
bcurtiswxhow would I get permission on LP so when I'm working on a precise SRU i can get past just nominating for precise and add a bug task for it ?16:07
bcurtiswxi would need at least PPU ?16:07
chrisccoulsonseb128, i just went with the inotify way in the end, and it wasn't that difficult to do: http://bazaar.launchpad.net/~mozillateam/ubufox/trunk/revision/310 ;)16:08
seb128chrisccoulson, great ;-)16:08
chrisccoulsonso, no more polling :)16:08
chrisccoulsonand no more annoying infobar that pushes the content down too16:09
seb128hehe16:09
cyphermoxseb128: I'm here, what's up?16:59
cyphermoxseb128: must be about the proxy auth dialogs thing17:09
seb128cyphermox, sorry, cf query, no, some other bugs ;-)17:59
dobeyseb128: hey there18:13
dobeyseb128: now that we have the MRE for u1, is the best thing to just open an "upgrade to X.Y.Z" bug for all the packages we want to SRU to that version?18:15
=== zyga is now known as zyga-afk
mdeslaurseb128: is anyone working on a new accountsservice version for quantal, or should I upload my security patch to it?20:18
seb128mdeslaur, upload your patch please20:18
mdeslaurseb128: ok, thanks20:18
seb128mdeslaur, https://bugs.launchpad.net/ubuntu/+source/accountsservice/+bug/100376420:18
ubot2Ubuntu bug 1003764 in accountsservice "Update to 0.6.21" [Wishlist,In progress]20:18
seb128mdeslaur, not sure where robert_ancell got with it, basically upstream did a dump move on how they filter accounts to show20:19
seb128mdeslaur, they filter on valid shells rather than uids20:19
mdeslaurgah!20:19
dobeynessita: ping. :)20:29
nessitadobey: hey there (DISCLAIMER: I'm leaving soon :-P)20:30
dobeynessita: figured you were. just wondering what came of the chat with mvo earlier. if any more info is needed from me20:30
nessitadobey: well, I guess mvo will ping you tomorrow, since he still  would like to have the same name for the binary package and the executable itself. But he said he would ask you directly, so I guess you both can agree that and then he can push into USC trunk whatever you guys decide20:31
seb128dobey, sorry, I forgot to reply to your ping when I got from dinner20:32
=== ayan is now known as ayan-afk
dobeynessita: ok, sounds good20:32
seb128dobey, having a bug "update to n.n.n" is good but you should still list individual bugs that get fixed as well if there are some20:32
seb128it's always good to get verification for the individual fixes20:32
dobeyseb128: right. i asked in #ubuntu-release since i figured you were away from the keyboard :)20:33
bcurtiswxsee everyone tomorrow20:43
bcurtiswxadios20:44
chrisccoulsong'ah, i suck. i keep writing "raise" instead of "throw" whilst writing JS20:58
chrisccoulsondamn you python20:58
cyphermoxhehe20:59
micahgchrisccoulson: define yourself an alias :)20:59
micahgunless this is upstream code20:59
=== marrusl is now known as marrusl-ebayqbr
=== marrusl-ebayqbr is now known as marrusl
dobeyraise EmptyGlass('Insert more beer')21:15
=== james_w` is now known as james_w
mlankhorstdobey: assuming you still have to drive, it's the rule rather than exception :)21:32
Sweetshark:(21:49
=== bjsnider_ is now known as bjsnider
davkbod-ldQuery - How do you change the display of a file window from Icons to list?23:24

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