[00:00] asac: you there _ [00:01] no [00:01] cool i will be back later [00:01] hey [00:01] hehe [00:01] just write what you want instead of summoning me... thats what i was trying to say ;) [00:01] im buddy o BUGabundo can u give me some help [00:01] ah ok [00:01] shoot [00:01] asac: I'm fine with that, thanks [00:02] good plan ;) [00:02] jdstrand: i am about to have a break through in my brain ;) [00:02] asac: well, I guess it is time for a break then ;) [00:02] i unistall my network manager -gnome [00:02] i try to get the road unblocked to push a standalone firefox so we can do major version upgrades [00:02] and now i dont have network to install it again [00:03] any way for fix it from live cd _ [00:03] jdstrand: last drop on this was firefox getting major sqlite update on a stable branch [00:03] jdstrand: e.g. 3.5 [00:03] we had luck ... but when i asked if we can unpatch the configure.in bumpage they said that would be trademark review [00:04] i am tired of explaining everything ;) [00:04] like that we can build in security with lower sqlite [00:04] and make a sru for sqlite if there is really a bad crasher [00:04] ;) [00:04] dcosta: what network? wired? [00:04] dcosta: wired is easiest [00:05] any [00:05] if you can plug in somewhere ... [00:05] wireless or wired [00:05] dcosta: killa NetworkManager ... sudo killall NetworkManager [00:05] dcosta: then sudo ifconfig eth0 up [00:05] (if eth0 is your wired) [00:05] nice plan, bummer on the trademark review [00:05] and run dhclinet eth0 [00:05] sudo dhclient eth0 [00:06] jdstrand: so basically we would not use any system libraries (nor xulrunner) and ship exactly what mozilla does [00:06] only sys libs are maybe nss/nspr [00:06] but even for that i am not sure [00:06] only blocker is that we have yelp on the CD [00:06] ok i dont do dhclient but i set my router in interfaces and resov.conf manualy and dont work [00:06] which requires xulrunner ... have to do something about that [00:07] i will try [00:07] brb [00:07] you will figure [00:07] configure eth0 in interfaces and run ifup eth0 [00:07] sudo ifup eth0 [00:07] eth0 is up [00:07] but i will do dhclient [00:08] reboot [00:08] dcosta: you dont need to reboot [00:08] sudo killall NetworkManager ... then the commands i suggested [00:12] asac, do you own the itp for v8 now? [00:33] asac, arm will need work... http://paste.ubuntu.com/268261/ [00:36] why do you think? [00:37] those flags look like its something we might actually be targetting [00:37] but i am not sure what kind of arm thing is the main target [00:37] its not necessarily the same as i have learnt in the past [00:38] i mean, by default, it will not work if you build with target_arch=arm, because it's protected by chromeos==1, which we should not pass [01:11] fta: doesnt that mean that those flags will only be used if its chromeos? [01:11] otherwise it will just build as normal? [01:13] indeed [01:14] i think those are performance optimization tweaks for their target platform [01:15] yep, but they are more tests like that scattered everywhere [01:16] should not be a problem if porters send their patches upstream (like freebsd is currently doing) and if we release often [01:19] can we get rid of the testsuite packages somehow? [01:19] or are they gone i am too old ;)? [01:19] point is that one needs to push all the binaries + the sources ;) [01:19] to debian [01:20] maybe when passing something like: UPLOAD_TARGET=debian debuild [01:21] but at best still running the testsuite during build ... though i think we dont hard fail, right? [01:22] i have USE_TESTS ?= 1 already [01:23] use tests does not prevent package creation i guess [01:23] it tweaks control :P [01:23] really [01:23] does it cleanup in clean at least? [01:23] then its good [01:23] though UPLOAD_TARGET=debian-release ;) [01:23] it doesn't, but it's possible [01:23] would be more high level api [01:24] do we need control stuff for all packages? [01:24] cant we convince debhelper to do that for us with snippets? [01:25] guess not [01:25] so you think the packages are really worth to have? [01:25] i thought that might be great [01:25] i wanted to drop the testsuite at some point, then reconsidered, now i'm unsure [01:25] but i think given the space consumed it would be better [01:25] to just say: we run make check [01:26] and if there is something that breaks you have to reproduce by building locally [01:26] i can build chromium in less than 20 min with USE_TESTS=0 [01:26] yes [01:26] well [01:26] i would like to keep using TESTS [01:26] so they are run [01:26] .... just not the packages [01:27] http://paste.ubuntu.com/268286/ [01:28] that's why i'm unsure [01:30] i am sure thats wrong math [01:30] maybe its even me and you reinstalling all the time every daily ;) [01:30] who would run a testsuite? [01:38] no idea [01:56] GPLv1+/AristicLicense ... ouch [01:56] what is that? [01:56] ok [02:07] fta: can we autoparse somehow what subtrees depend on what other subtrees? [02:07] like from gyp files ? [02:07] what do you mean? [02:08] e.g. if chrome requires "skia" we would want that relationship somehow parsed [02:08] like chrome/browser => skia, net/http, etc. [02:08] => == depends on [02:08] aka makes use of [02:08] aka links again [02:08] ;) [02:08] aka (in most cases) includes headers of [02:08] but i think checking for headers would be too hard [02:09] so i hoped that they had something like in Mozilla.in: [02:09] REQUIRES = xpcom strings ... [02:10] in chrome/chrome.gyp, you have those deps [02:10] in each target [02:10] * asac checks [02:11] ok so basically all "dependencies"="path/to/some/other.gyp [02:11] implies that that directory makes use of path/to/some/other [02:12] err some/ [02:12] ;) [02:12] so leaving system lib gyps alone [02:12] they probably have that gyp in the same subtree at least [02:12] ? [02:13] no always, but then, it's a relative path [02:13] s/no/not/ [02:13] http://paste.ubuntu.com/268300/ [02:16] yes, thats what i mean [02:16] didnt differentiate between paths [02:16] what i meant is ... is a .gyp file always in the top most directory of the component it descrbes? [02:16] ../third_party/bzip2/bzip2.gyp -> yes. [02:16] ../third_party/bzip2/build/bzip2.gyp -> no. [02:17] what does 'chrome_resources', [02:17] mean? [02:17] is that a placeholder for more .gyp files defined elsewhere? [02:17] or a subdir? [02:17] oh thats a .gyp target [02:17] of the same file [02:17] or something [02:17] ok [02:19] asac: ff3.5.3 never made it to jaunty in the security ppa [02:19] xul1.9.1.3 did though [02:20] woot [02:20] ok [02:20] i failed then ;) [02:20] thx [02:20] * micahg probably should have mentioned it earlier :) [02:20] Mozilla made the official release announcement [02:21] i know i shouldnt have slept in the middle of those uploads ;) [02:21] ok that means i will fix it [02:21] and if things will not go through -security we will use the same bits and put into -proposed ... and then -updates + -security [02:22] guess will make "Shiretoko" folks a bit more unpleased ;) [02:23] oh ... those fixes are xulrunner ;) [02:23] well ok [02:23] can you close the fixed-3.5.3 bugs in the upload? [02:24] fta: there probably is no way to dump those dependencies from .gyp ;) [02:24] Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090902 Ubuntu/9.04 (jaunty) Shiretoko/3.5.2 [02:24] like gyp --gimme-depends path/to/file.gyp:* [02:24] ;) [02:24] now i am in doubt [02:24] what to do [02:24] (ffox 3.5) [02:25] why? [02:26] omg [02:26] i386 15571 builds waiting in queue [02:27] ok uploaded [02:28] asac: should I be subscribing ubuntu@bugs.distro to upstream mozilla bugs? [02:28] micahg: if we file them we should use linux@distribution.bugs [02:29] also if they are linux specific [02:29] ok, what if it's found? [02:29] found? [02:29] you mean linked? [02:29] i.e. already there? [02:29] I was looking at this: https://wiki.ubuntu.com/MozillaTeam/Bugs/TriagersHandbook [02:29] i dont know :) [02:29] yes [02:29] that was the plan [02:29] since comeone linked it from the hugday page [02:29] *someone [02:29] now they created linux@distribution.bugs [02:30] i am not so sure what other distros say if we link all the bugs that get filed to it [02:30] hmm [02:30] one second [02:30] you can ask in the bug that created that [02:30] i think i was cced [02:31] 1 hr to build the jaunty amd64 ff3.5.3 [02:31] mozilla bug 444906 [02:32] Mozilla bug 444906 in Bugzilla: Other b.m.o Issues "Please setup a watcher account for linux related bugs" [Normal,Resolved: fixed] http://bugzilla.mozilla.org/show_bug.cgi?id=444906 [02:32] https://bugzilla.mozilla.org/show_bug.cgi?id=444906#c5 [02:33] * micahg should probably be watching that account [02:34] well. thats a suggestion [02:34] * micahg signed up [02:34] i think we should ask about what is ok and what is not [02:34] or rather added it [02:34] should I ask in the bug? [02:34] or in the developers channel? [02:34] and if using that to link down to bugs we have in ubuntu is the right thing. [02:34] or if we should create ubuntu@distribution.bugs [02:34] rather [02:34] i think ask in the bug [02:35] let me check if the relevant folks i know are CCed [02:35] [reed]: ^^ [02:36] good day ;) [02:36] he's on there [02:36] yes [02:36] good day? [02:36] i want him to tell us what to do ;) [02:36] ah [02:38] [reed]: so basically: does it still make sense to work on improving the "old" bug forwarding workflow ... or can we start interfacing with bmo from launchpad already? [02:38] if the latter is unlikely from your side we really would prefer to have a watcher account so our bugsquad can better ensure that we follow up on upstreamed bugs [02:39] i assume using linux@distribution.bugs would be misuse [02:39] ;) [02:40] as the selection of bugs would probably not really be linux specific in general, but rather ubuntu [02:47] asac: only 32 bugs in b.m.o for that linux@ alias [03:26] <[reed]> asac: well, once bmo gets upgraded to Bugzilla 3.4, launchpad can easily integrate [03:27] <[reed]> no idea when that will be, though [03:28] <[reed]> until then, if you want a watcher account, that's easy to do [03:58] asac: I'm confused, you committed a patch to xul 1.9.3 that should already be in trunk [03:59] asac: neverming, I see you had a patch there temporarily that you removed now [03:59] *neverminf [03:59] *nevermind [08:03] asac: [reed] broke it :) mozilla Bug 294375 [08:03] Mozilla bug 294375 in File Handling "libgnomevfs-WARNING **: Deprecated function. User modifications to the MIME database are no longer supported." [Minor,Resolved: fixed] http://bugzilla.mozilla.org/show_bug.cgi?id=294375 [08:03] I fixed the patch and as soon as LP is fixed, I will try to build it [08:03] <[reed]> I broke what? [08:04] the ubuntu build :) [08:04] not really [08:05] you commited the patch to mozilla-central that broke the build, one of our patches still had gnomevfs code [08:05] <[reed]> ah [08:05] <[reed]> is there a LP bug on it? [08:05] no [08:05] not that I know of [08:06] oh maybe [08:06] the patch was for bug 185622 [08:06] Error: Could not parse data returned by Launchpad: HTTP Error 503: Service Unavailable (https://launchpad.net/bugs/185622/+text) [08:06] ugh [08:06] maybe not [08:06] oh right [08:06] LP is broke right now :) [08:09] [reed]: about that bug watcher thing asac was talking about last night, we should have an ubuntu specific watcher and not abuse the linux.distro, right? [08:09] <[reed]> depends on what you want to do [08:09] <[reed]> but probably/possibly [08:09] ah, lp looks better [08:09] bug 185622 [08:09] Error: Could not parse data returned by Launchpad: HTTP Error 503: Service Unavailable (https://launchpad.net/bugs/185622/+text) [08:10] well, at least ppa uploads are working [08:46] <[reed]> bug 185622 [08:46] Launchpad bug 185622 in firefox-3.0 "Firefox 3 doesn't act as the default browser" [High,Fix released] https://launchpad.net/bugs/185622 [08:46] <[reed]> micahg1: not that bug... [08:46] no, well the patch I had to fix was that bug [08:47] <[reed]> what did mozilla bug 294375 break? === micahg1 is now known as micahg [08:47] Mozilla bug 294375 in File Handling "libgnomevfs-WARNING **: Deprecated function. User modifications to the MIME database are no longer supported." [Minor,Resolved: fixed] http://bugzilla.mozilla.org/show_bug.cgi?id=294375 [08:47] <[reed]> ah [08:47] <[reed]> I see [08:47] the patch was for a file that you removed code from upstream :) [08:47] and apparently I didn't do a good job fixing it :( [08:48] nah, you didn't mess anything up, I was joking about that [08:58] asac: ok, I have to go to sleep, I'm trying the build in my mozilla test ppa, I pushed the code change up to lp:~micahg/firefox/firefox-3.7.head, if it doesn't work, I might be able to try one more time in the morning [08:58] I'm leaving my computer on so the uploads finish [09:46] asac: hi... how to get extra functions into ubufox? ie. is there any due process , to get a new function in? i'm trying to make firefox notify extension fit to ubuntu [09:53] morning guys [10:34] eagles0513875, hi [10:34] eagles0513875, I fixed the wiki page you made [10:34] hey andv thanks m8 [10:35] and added some new contents [10:35] got alot on my plate before my lectures start [10:35] doing my lpi 101 exam tomorrow [10:35] working on getting linux level 1 certified :) [10:35] eagles0513875, I gonna work on firebug, is assigned to you, can I take it? [10:35] go for it [10:35] ty [10:35] dont have time atm and would probably take longer for me to fix then it would for u [10:35] *you [10:37] yeah, ok [10:38] hows things going in the ff realm [10:40] asac, should I have misc:depends removed as well? [10:40] asac, in the depends field [10:40] andv: dont think hes around or hes afk [10:40] asac, or should I remove everything apart that ( in firebug) [10:40] eagles0513875, he will read backlog :) [10:41] andv: question the first link that the bot will provide for packaging do i need to go through that and install all those packages? [10:41] which link? [10:41] !packaging [10:41] The packaging guide is at http://wiki.ubuntu.com/PackagingGuide - See https://wiki.ubuntu.com/UbuntuDevelopment/NewPackages for information on getting a package integrated into Ubuntu - Other developer resources are at https://wiki.ubuntu.com/UbuntuDevelopment - See also !backports [10:41] the packaging guide [10:41] do i need to install all that stuff to be able to help yall with packaging [10:42] eagles0513875, https://wiki.ubuntu.com/PackagingGuide/GettingStarted under 'Packaging Tools' [10:42] andv: i normally follow the complete packaging guide and install all that is on that wiki [10:43] same thing lol [10:43] yes [10:43] so install from there on out [10:47] viva la netsplit [10:58] andv: misc:depends is ok to have [11:03] [reed]: ok thanks. how are things going? are you preparing for final exams or why are you on "leave from project"? [11:03] asac: speaking of exams im outa commission at least till saturday afternoon [11:03] then ill get to packaging [11:04] asac, k, great [11:04] currently installing the necessary packaing packages :) hope to start packaging soon for yall [11:04] asac, firebug don't have mozilla-devscripts depends so don't have to bump its version, so I'm fixing the depends / recommends and should be fine [11:06] andv: xpi:depends depends on mozilla-devscripts [11:06] asac, comments not very helpful.. http://paste.ubuntu.com/268491/ [11:06] fta: well [11:06] asac, thanks for the info [11:06] asac, was forgetting it [11:06] fta: not if you look at one line ;) [11:07] i will try to make more useful first lines in future ;) [11:07] firebug should use mozilla-devscripts [11:07] thats one of the columns in the checklist [11:08] anyone else cannot search in firefox-3.5? [11:08] using the quicksearch box? [11:09] asac, ok B-D-I added [11:10] you need to do it right [11:10] just file a bug [11:11] asac, the bug was filed already [11:11] bug 425681 [11:11] Launchpad bug 425681 in firebug "firebug using the wrong version of mozilla-devscripts" [Undecided,New] https://launchpad.net/bugs/425681 [11:11] thats not closed nor nothing [11:12] asac, I'm fixing it up [11:12] asac, mmm...wait [11:12] asac: hi, could you give me an update of the status of the FF3.5 translations? Is there anything in which the translations team can help? [11:12] asac, actually there were no B-D on mozilla-devscripts [11:12] asac, so that bug is not right [11:13] andv: well. use that bug or do something. you will figure [11:13] dpm: still need someone to write the export tool [11:13] besides from that the only bug existing is that zh-XXX locales are not properly merged [11:13] asac, yeah, I'm fixing the package, gonna provide you a debdiff in two minutes [11:14] no clue why arne holds back the complete translations because of that [11:14] i dont want debdiffs [11:14] just branches [11:14] if you are unsure do a merge request [11:14] asac: I'm not talking of the export, I was asking about the imports, but I'll ask arne, then [11:14] and i will review [11:15] asac, I never user branches to get latest uploads [11:15] * used [11:15] dpm: from what i understand its because country code specific locales are not properly produced (in devmode). the rest works. [11:15] i hoped that he would roll them [11:15] asac, sometimes they are wrong or tainted (like ubuntu-it-menu was for istance) [11:15] asac: ok, thanks, I've asked arne now [11:16] asac, plus this package is merged from Debian [11:16] asac, it's not ubuntu-specific [11:17] asac, so of course the branch would diverge when debian pushes a new revision [11:17] <[reed]> asac: eh, ok... just need a break from Mozilla and need to concentrate more on school... I'm around somewhat, just not as much. [11:17] [reed]: understood ... enjoy and good luck with your school. final year? [11:17] <[reed]> yeah, final year [11:18] <[reed]> definitely not enjoying [11:18] lucky [11:18] i have this yr which is supposed to be hell for me then 1 more [11:18] [reed]: enjoy the "break" ;) [11:18] not the school ;) [11:18] IT major is fun and all but not easy [11:19] <[reed]> break? school is not a break [11:19] <[reed]> yeah [11:19] <[reed]> anyway [11:19] <[reed]> sigh [11:19] <[reed]> 5:19am [11:19] <[reed]> hmmz [11:20] good night ;) === zbraniecki is now known as gandi [11:32] hey guys what package has replaced linda cuz im trying to install it and its not finding it [11:32] asac, http://paste.debian.net/46209/ [11:32] eagles0513875: ignore it [11:32] ok wiki seems to need an update lol [11:33] eagles0513875, linda no more exists [11:33] if I remember it right [11:33] eagles0513875: finish reading [11:33] it got merged into lintian [11:33] gotcha andv [11:33] im reading and installing atm lol [11:33] eagles0513875: the wiki is right [11:33] why is there a mention of linda in it though [11:34] dunno [11:34] eagles0513875: remember to read carefully [11:34] ya gotcha [11:34] dont stop after the first 3 words [11:34] asac, did you read? [11:34] "lintian and linda dissect Debian packages and report bugs and Policy violations. They contain automated checks for many aspects of Debian Policy as well as for common errors. linda is not available from the hardy heron repositories, but is still available in previous releases repositories. " [11:34] asac, tested on ffox3.5, works fine [11:34] asac, no extra licenses [11:34] andv: file a bug if you dont now how to use mozilla-devscripts ;) [11:34] i will get to it. [11:35] cant explain right now [11:35] include xpi.mk ... etc. [11:35] its not as simple as that [11:35] I gonna look at some other examples [11:35] yeah [11:35] it should be easy [11:35] bdrung or jazzva can also help ... i have to do something right now ;) [11:36] yep [11:36] ? [11:36] bdrung, is the MOZ_EXTENSION_PKG needed? [11:37] no [11:37] bdrung, adding mozilla-devscripts support on a package [11:37] bdrung, I've added the B-D-I, then added the include in rules [11:37] is that all? [11:37] if not set, the first binary package is used [11:38] mozilla-devscripts needs to be in b-d [11:38] it can be on b-d-i too [11:38] i guess [11:38] then the include will fail [11:39] ok [11:39] includes should be at the end of debian/rules [11:39] but this package set them at the beginning [11:40] let me have a look [11:40] bdrung, just a second, making a debdiff for you [11:43] bdrung, http://paste.debian.net/46210/ [11:45] asac: hi... how to get extra functions into ubufox? ie. is there any due process , to get a new function in? i'm trying to make firefox notify extension fit to ubuntu notify-osd specs and get it included into ubufox rather than as a separate extension [11:45] no [11:46] mac_v: too late for this cycle. features need carefully be selected and after UDS discussion we also need to talk to mozilla etc. [11:46] bdrung, anyway adding mozilla-devscripts as B-D-I works [11:46] :( [11:46] notify-osd in particular was explicitly kept broken upstream because they see our way as a regression [11:46] bdrung, tested yesterday [11:46] so thats not going to fly [11:46] ;) [11:47] bdrung, includes should go to the low part of the rules file [11:47] asac: ok , no probs , thanks ;p [11:47] bdrung, tested that with the MOZ_XPI_DOCUMENTED_LICENSE_FILES feature [11:47] mac_v: if it was a different idea i would have thought. but notify-osd isnt going to get approved. they want to fallback to their own notifications if system notifications dont support actions [11:48] andv: you can move the includes to the top of the rules file [11:48] bdrung, had some issues with putting them to the top [11:48] andv: mozilla-devscripts as B-D-I works, but it is not correct [11:49] bdrung, yeah, set it to B-D now [11:49] bdrung, is the debdiff fine for the mozilla-devscripts support? [11:49] asac: yeah , i feel notify-osd is a *still* bit of a mess , needs more refinement... [11:50] bdrung, asac suggested me to put includes at the low part [11:50] i didnt say that [11:51] asac, we had a discussion about that with all-in-one-sidebar [11:51] whatever bdrung says is most likely right [11:51] andv: cant remember ... i proably never said "in the low part" ... that can mean everything [11:51] asac, and if you look at all-in-one's rules file you'll find includes at the low part [11:51] i wouldnt make such a course statement [11:51] andv: no, the debdiff does not work (the *.xpi file is removed on clean) [11:51] asac, at the end [11:51] probably because there is not much else in that file ;) [11:52] bdrung, includes cause then [11:52] bdrung, coz I didnt touch clean target :) [11:53] asac, what is quickly? i see rick dent about it a few times, no idea what it is [11:53] mozilla-devscripts does not work with *.xpi files in the source tarball. [11:53] fta: ask him ;) [11:54] its about "quickly glade" ;) [11:54] one second [11:54] i will figure the spec [11:54] asac: what can we do about it? [11:55] mozilla-devscripts (plus xpi on rules) is the problem theb [11:55] not includes at top or low [11:57] bdrung: multiple .xpi files? [11:57] asac: .xpi files in the source tarball. [11:57] or a bug if the .xpi is directly in the tarballs [11:57] bdrung: so more than one? [11:57] no, one [11:58] asac: http://git.debian.org/?p=collab-maint/firebug.git;a=tree [11:59] andv: you will have to wait for mozilla-devscripts 0.16 [12:00] bdrung, oki ;) [12:00] bdrung, found out a nice bug [12:00] it seems [12:00] andv: not a bug, it's an unsupported use case [12:01] yeah, that's it [12:15] anyone with ffox 3.5? [12:16] pleaes open tools -> addons and run: [12:16] sorry [12:16] pleaes open tools -> error console and execute the following code: [12:16] Components.classes["@mozilla.org/satchel/form-history;1"].getService(Components.interfaces.nsIFormHistory2) [12:18] [xpconnect wrapped nsIFormHistory2] [12:19] fta: on 3.5? [12:19] yes [12:19] Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.4pre) Gecko/20090908 Ubuntu/9.10 (karmic) Shiretoko/3.5.4pre [12:20] odd [12:20] its not working here [12:20] and not for ara either [12:21] https://bugs.edge.launchpad.net/bugs/427295 [12:21] Launchpad bug 427295 in firefox-3.5 "Firefox 3.5 does not allow me to search with the search box" [Undecided,New] === cyphermox_ is now known as cyphermox [12:36] asac: the weird cursor bug! seems to be solved , ;) https://bugs.launchpad.net/bugs/413950 , looks like something else was affecting firefox , pls read last comments [12:36] Launchpad bug 413950 in firefox-3.5 "Incorrect cursor positioning in Firefox." [Undecided,Confirmed] [12:43] fta: sqlite3 path/to/formhistory.sqlite3 ... then run "pragma user_version" [12:43] what does that give you? [12:43] actually [12:43] pragma user_version; [12:44] which ff? [12:44] 2 for 3.5 [12:45] 2 for 3.7 too [12:46] but it's a migrated profile, not a fresh one [12:46] YES [12:46] your database was properly migrated [12:47] this reminds me about the "doesnt this corrupt all databases comment" [12:47] in the major version bug bump [12:48] Upgrading sqlite on the stable branches is scary -- what happens to existing [12:48] databases? In particular we need answers to bug 503770 comment 5 and 6 before [12:48] Error: Launchpad bug 503770 could not be found [12:48] considering this. [12:48] https://bugzilla.mozilla.org/show_bug.cgi?id=503770#c5 [12:48] Mozilla bug 503770 in Phishing Protection "Crash [@ memcpy | fillInCell]" [Critical,Resolved: fixed] [12:48] > What will happen with this fix? Will the phishing database be blown away and [12:48] > replaced with a new one, or will the anti-phishing feature silently not work? [12:48] I think that regardless of the answer, not crashing is better than crashing. [12:48] If we need to fix safebrowsing code to handle it better, we should do that, but [12:48] in a different bug. If we don't blow away the database and crash, we'll be in [12:48] no worse position if we don't blow away the database and silently fail. [12:51] its odd [12:51] why is mine still at version 1? [12:51] ihehe [12:51] reading that is quite an interesting predicament asac [12:51] is the phsihing feature built into firefox or another extension [12:52] 24886: [12:52] thats the revision where ToVersion2 is coming [12:52] oh [12:52] i think i might have an idea [13:00] * asac spins 1.9.1 debug build [13:08] grrr; i should really patch evolution, my bug is not moving at all [13:09] fta, is evolution good? [13:12] i've been a die hard mutt user for more than 10 years, but i can stand evolution. and it's handy for my work, tons of attachments, meetings, zillions of multiparts within multiparts messages [13:12] fta, I'm used to use tb but sometimes it gets stuck while checking emails [13:13] fta, so I wanted to check some others mail clients [13:13] fta, so if you would suggest me a mail client to try it should be evolution [13:13] if you're using imap, it's easy to try other clients [13:13] yep, im using imap [13:14] and that's why maybe sometimes it get stuck [13:14] well, the idea of evolution if that it is integrated into the desktop [13:14] maybe fails to check mails properly on remote [13:14] who knows [13:14] meetings are in the clock applet [13:14] contacts are available in some other apps [13:14] while with tb, nada [13:14] fta, is evolution default in debian as well? [13:15] i don't know [13:16] fta, is mutt good? [13:16] or a bit not user-friendly [13:16] andv: and fta the advantage of evolution is if you are using it at work i believe you can connect it to an exchange server [13:17] mutt is really excellent, but it's a cli app, not a gui [13:17] yeah, so it's not really user-friendly [13:17] andv: i have messed with evolutions its more like a spin off of outlook you have to do lists calendar contacts the works [13:17] oh cool [13:18] eagles0513875, well, i want to send emails from home to work, it does work for me.. gnome 585577 [13:18] Gnome bug 585577 in Mailer "wrong FROM in the envelope during SMTP negociation when using multiple accounts" [Normal,Unconfirmed] http://bugzilla.gnome.org/show_bug.cgi?id=585577 [13:18] never really tried the other one you mentioned [13:23] fta, evolution has the possibility to add gnupg support? [13:24] not sure about that actually andv i believe so [13:24] im actually getting quite excited :) [13:24] about? [13:24] my school is an IT school and they are fedup with the exhorbitant prices for msft licensing [13:24] so they stopped doing the msft certs as well as being a partner [13:24] so im gonna try and make a push to get them on kubuntu [13:25] that would be the easiest transition from win to lin for all teachers [13:25] all the more for me to get my lpic-1 cert [13:25] lol [13:25] that would be nice [13:25] step by step they can migrate [13:26] ya all the programs they use for the courses given they have programs that are the same on lin [13:26] like netbeans for java can be gotten on kubuntu [13:26] ya [13:26] exactly [13:26] i need to put a proposal towards the principal of the school and talk to the IT manager as well [13:27] yep [13:27] i would be saving my school a pretty penny on licensing [13:27] they have some creative computing courses as well aka gaming creation style stuff [13:27] they use octave which i have seen in the repositories [13:28] all that would need to be setup to start with would be to replace the isa server with snort and iptables firewall that way you have intrusion detection and a really good firewall [13:28] next get rid of exchange [13:28] omfg that monster lol [13:28] dovecot ftw [13:43] hey asac. [13:43] sup. [13:44] i was wondering if the trough-border patch for firefox 3.6 can get backported to 3.5 for karmic? [13:44] only upstream [13:45] did it land on 3.6 branch? [13:45] whats the bug id? [13:45] whats the rational why we need this? [13:48] asac: could i quote this on the ayatana mailing list? there is some discussion regarding this feature for karmic , mac_v: too late for this cycle. features need carefully be selected and after UDS discussion we also need to talk to mozilla etc. ... or if you comment about it.. it would be even better :) [13:49] for the firefox notify^ [13:49] i dont know what ayatana is [13:50] O.0 ... the ayatana mailing list > https://launchpad.net/~ayatana [13:51] Policy: You must be a team member to subscribe to the team mailing list. [13:51] asac: david barth's comment > https://lists.launchpad.net/ayatana/msg00634.html [13:52] i will talk to him [13:52] i think he is not 100% up to date ;) [13:52] my fault [13:53] asac: no need to subscribe actually , just select join team , it an open team ;) [13:53] asac: yeah , anything mozilla not informed is your fault ;p [13:54] no [13:54] but i worked closely on this one [13:54] i think i told him, and he just didnt remember ;) [14:03] asac. https://bugzilla.mozilla.org/show_bug.cgi?id=500368 [14:03] Mozilla bug 500368 in Widget: Gtk "non-zero GtkRange::trough-border value produces strange boxes in Firefox/Xulrunner" [Normal,Unconfirmed] [14:03] rationale is that default theme will expose the bug. [14:04] in 3.5 [14:04] and it currently does [14:05] i dont even see where the patch was landed [14:05] i need that bug [14:06] you like bugs asac :P [14:07] eagles0513875, who don't? [14:07] xD [14:08] andv: you guys do cuz u can fix them [14:08] asac, i'll do a regression range asap [14:08] i dont cuz i cant fix em [14:08] it may take me a while though [14:08] hopefully with yalls help that will change [14:08] eagles0513875, if you will demonstrate dedication you'll learn [14:09] i know [14:09] and improve day by day [14:09] i need to learn some programming besides the basic and advanced java stuff im doing as part of my degree [14:09] im currently teaching myself some c++ [14:09] but i agree with ya andv [14:10] I can help you but soon I gonna be really really busy [14:10] and I'll have to focus on my things [14:10] asac, by the end of the day, one of the following will have to be done: 3.6 making release, backport of fix to 3.5, human theme gets tweaked and trough-border will be zero [14:11] so helping will be harder [14:11] andv: i hear ya same here lecutres start on the 28th then all hell breaks loose for me [14:12] packaging i could probably help with as once i get the package building then just let it do its think [14:12] are you still at school? [14:12] LLStarks: figure the bug that fixed it on 3.6 [14:12] the upstrem bug [14:13] i'll search for it. gotta shower get to work first. [14:55] andv: sry for delay to ask ur question ya i am [14:57] i have this yr and then one more yr for under grand and my bsc [14:58] andv: im a big nerd working on a bsc computing and information systems with probably a masters in information security then probaly do 3 other masters as i am working [14:59] asac, I have some kind of shameful question, me I ask you? [14:59] hjmf: shameful? it cant be that bad ;) ... shoot [14:59] k [15:00] yesterday I noticed that my ubuntu membership expired [15:00] the fact is that I didn't noticed the automatic renew emails that I received days before [15:00] ok talk to dholbach [15:00] but the mails where there :-( [15:00] OK [15:00] hehe that was a super fast answer [15:00] asac: we've just built new langpacks on rookery... looking into the zh-hant mozilla tarball shows me that it's empty. The directory structure is in place, but no xpi data inside. [15:00] asac: thanks :-) [15:01] or maybe not === asac__ is now known as asac [15:02] i asked him to come here if he is there [15:02] hola [15:02] hey [15:02] asac: are we good to publish? [15:02] dholbach: so hjmf apparently missed his ubuntu membership expiry mails [15:02] dholbach: is there any late-comers procedure? [15:02] asac: I've asked him at #moutu [15:03] ah [15:03] asac: thanks :-) [15:03] i am in both channels [15:03] I've late-comered before [15:03] jcastro: hehe [15:04] asac: not sure if you noticed this btw Bug 425695 [15:04] Launchpad bug 425695 in adblock-plus "adblock-plus needs xpi:depends changed to recommends" [Undecided,Triaged] https://launchpad.net/bugs/425695 [15:05] eagles0513875: doesnt feel wrong [15:05] asac: already talking about it in #ubuntu-motu [15:05] :-) [15:05] asac: what do you mean? [15:06] all is fine. we dont upload to debian [15:06] unless bdrung wants to [15:08] asac: i have to contact the debian maintainer for that [15:08] asac: I've asked ArneGoetje to come here to see how we can get FF3.5 translations shipped in Karmic. What's currently holding them, Arne? [15:08] asac: we've just built new langpacks on rookery... looking into the zh-hant mozilla tarball shows me that it's empty. The directory structure is in place, but no xpi data inside. [15:09] yes [15:09] but that shouldnt hold back all the otehr langpacks imo [15:09] i will fix that asap [15:09] bdrung: not here to cause trouble just wasnt sure what it meant [15:09] eagles0513875: it means that the debian package != ubuntu package [15:09] so we dont upload to debian [15:09] gotcha [15:09] which is what gnomefreak suggested [15:10] asac: can you release adblock-plus? [15:10] asac: 'es' is also empty [15:11] ArneGoetje: yes. thats the same issue. doesnt block the rollout [15:11] all languages with country code are stripped somewhere atm [15:11] so its consistent [15:11] i tried a few options [15:11] but its definitly not not fixable ;) [15:12] asac: heh [15:12] asac: all others seem to be in place, yes [15:12] yes. so ship what we have for now [15:12] the fix might land any day [15:12] but i am always getting side tracked [15:12] asac: ok [15:13] asac: what's exactly the problem with the language codes, so I understand it? [15:15] what happens though if the upstream maintainer from debian wants it uploaded from downstream then what happens asac? [15:17] asac: am I ok to publish firefox? upstream has released [15:18] jdstrand: one second [15:18] * eagles0513875 feels sry for asac [15:24] asac: issue fixed, thanks [15:25] great [15:25] no problme [15:25] jdstrand: did you test 3.1 yet? [15:26] asac: you mean 3.5 on karmic? not a ton [15:27] asac: I'm personally using it, and I haven't seen any problems [15:28] jdstrand: can you please run sqlite3 path/to/profile/formhistory*sqlite [15:28] and tell me what "pragma user_version;" gives you? [15:29] andv: was it u asking about evolution earlier http://projects.gnome.org/evolution/index.shtml [15:29] asac: '2' [15:29] hmmmm [15:30] let me quickly finish jaunty [15:31] hi asac [15:31] micahg: hi [15:31] micahg: so managed to get the patch merged ;)? [15:32] ugh [15:32] it failed [15:32] I'm looking at it now [15:34] I think I had an extra line in the file [15:35] micahg: you can verify by popping and pushing using quilt [15:35] if the patches apply cleanly [15:35] I'm trying again [15:35] i usually do a full quilt push -a and pop -a run after adjusting a patch [15:36] I still had trouble with that [15:36] that's why I had to build it to test [15:36] :( [15:37] dont set anythign ... no quiltrc no nothing [15:37] just go into build-tree/mozilla [15:37] run ln -s ../../debian/patches [15:37] then you can do quilt push pop et al ;) [15:37] its proven to work [15:37] I'll try again :) [15:37] I'm running ./debian/rules patch right now on a clean dir [15:44] asac: the reason it failed is the file is different from theone shown in mxr.m.o [15:45] micahg: so i am running in 5 minutes. so lets do this quick [15:45] go into build-tree/mozilla [15:45] asac: there's already a patches dir in that dir [15:45] I wonder if that was messing me up? [15:45] micahg: you didnt start with a complete clean tree? [15:46] ./debian/rules patch [15:46] that doesnt clean [15:46] fakeroot ./debian/rules clean [15:46] it was empty before [15:46] micahg: build-tree didnt exist? [15:46] it was compressed [15:46] ok [15:46] so is there anything in patches/ [15:46] yes [15:46] what? [15:46] dont_depend_on_nspr_sources.patch [15:47] is patches/ a link? [15:47] nope [15:47] to ../../debian/patches [15:47] micahg: ok run quilt applied [15:47] does that say anything? [15:47] or just empty? [15:47] firefox-profilename [15:47] firefox-fsh [15:47] bz386904_config_rules_install_dist_files.patch [15:47] dont_depend_on_nspr_sources.patch [15:47] is that the same as in debian/patches/ [15:47] ? [15:48] no, there are more [15:48] thats applied? [15:48] ok [15:48] no [15:48] that's not [15:48] quilt applied [15:48] what does that? [15:48] http://pastebin.com/f53dc55e7 [15:49] should I link over that patches dir? [15:49] micahg: and [15:49] quilt series [15:49] ? [15:49] ok so run: [15:49] quilt pop -a [15:49] nothing [15:49] that pops up everything? [15:49] Patch bz386904_config_rules_install_dist_files.patch does not remove cleanly (refresh it or enforce with -f) [15:49] quilt pop -f [15:49] Now at patch firefox-fsh [15:50] quilt pop -a [15:50] till it works [15:50] ok [15:50] no patches applied :) [15:50] now the nspr fix patch in patches is different than the one in debian/patches [15:51] http://pastebin.com/f5e4f39aa [15:51] micahg: remove the patches dir [15:51] and create the link [15:51] after you popped up everything [15:51] ok [15:51] done [15:51] in future dont use debian/rules patch ... but debuild -b and abort when it starts to run configure ;) [15:51] ok [15:51] so after creating the link you should be able to quilt push -a [15:52] which should fail with the patch you wanted to fix [15:52] yep [15:52] now is there an automated way to fix? [15:52] it's starting too early [15:52] can I just do refresh? [15:53] its starting too early? [15:53] you have to quilt push -f [15:53] sorry, the patch needs to be pushed up 2 or so lines [15:54] then work in the .ref files [15:54] rej [15:54] says needs refresh [15:54] and if you did that run quilt refresh --diffstat -U8 --no-timestamps [15:54] quilt push -f [15:54] once [15:54] then you have the .rej files [15:54] if it says it needs refresh now you need to work in the .rej [15:54] it worked [15:54] and then run refresh [15:54] yes [15:54] quilt pop -a and push -a [15:55] to test that alll the other patches apply cleanly [15:55] asac, it deleted the portion of the patch [15:56] the portion that was failing is no longer in the patch [15:57] I did quilt pop -a and I'm back to a clean dir [15:57] also, the browser/installer/unix dir seems to be missing [15:58] micahg: yes [15:58] because you didnt work in the .rej parts [15:58] you have to start over again [15:58] there are no .rej parts [15:58] and remember to work the .rej stuff after the push -f [15:58] yes there is [15:59] I have not seen a .rej file yet [15:59] 100% [15:59] where? [15:59] next to the file that failed to apply [15:59] same file + .rej [15:59] find -name \*.rej [16:00] it's in the mozilla dir :( [16:00] ok [16:00] what do I run against the .rej file [16:01] you look at them and apply the portions in there [16:01] but you need to put them in the same patch before you refresh [16:01] ok out [16:01] ok [16:01] jdstrand: jaunty ready for me [16:03] asac: ok. I'm assuming based on the sqlite3 question from earlier that I should not push karmic. publishing ff30/xl19 on hardy-jaunty now [16:04] asac: do I have to put the changes manually back in the patch, or just fix the .rej file? [16:08] asac: it seems like yesterday's tarball still didn't have reed's patch [16:08] upstream [16:08] can I get today's tarball so I don't have to do this twice? [16:08] fta: where can I get today's tarball? [16:09] jdstrand: karmic is fine [16:10] i am back for another 30 minutes [16:10] just 3.5 i am not sure [16:10] but push it out [16:10] asac: can I get the 20090910 tarball? [16:10] micahg: why are you sure you need it [16:11] the file I have still has gnomevfs [16:11] micahg: run get-orig-source and work against whatever tarball it produces for you [16:11] http://hg.mozilla.org/mozilla-central/rev/bc5324d3f8fc [16:11] asac: ok, push ff30/xl19 on karmic and ff35/xl191 on karmic, correct? [16:11] yes [16:11] * jdstrand nods [16:11] asac: in the bzr dir, right? [16:12] yes [16:12] that produces topmost [16:12] micahg: that checkin does not remove the files completely [16:12] of course patches that are not working need to be adjusted [16:13] no, but it removes lines that are causing issues [16:13] yes [16:13] I must be missing another package [16:13] what is get-orig-source in? [16:13] ./debian/rules get-orig-source [16:13] ah [16:14] sorry, I'mm still new to this :) [16:14] sure [16:14] * micahg needs to install hg [16:15] asac: is xulrunner-1.9 supposed to still be in main? [16:15] asac: for karmic [16:15] asac: right now it looks like both xl19 and xl191 are [16:16] jdstrand: i think epiphany-gecko still pulls it in [16:16] which should get removed [16:16] soonish [16:16] ok, I won't mess with it then [16:16] (the overrides) [16:16] yes. i will transition epiphany-gecko users to webkit [16:16] even if it breaks my heart ;) [16:17] because the webkit port does not even have password management [16:17] webkit is a nightmare to sort it with their updates (just ask mdeslaur) [16:17] s/it/out/ [16:18] asac: should I assign the epiphany-gecko EOL bug to you? [16:21] yes [16:21] jdstrand: i think any browser engine will be a mess [16:21] firefox was just the start [16:21] we thought it was bad [16:21] whats coming next is even worse [16:22] what's next? [16:23] asac: xulrunner-1.9.1-testsuite is in universe, but xulrunner-1.9.1-testsuite-dev is not. shall I move xulrunner-1.9.1-testsuite-dev to universe too? [16:23] asac: is wishlistt? correct on the epiphany-gecko EOL, also should I milestone i [16:23] yes. beta [16:23] jdstrand: yes [16:23] jdstrand: i thought we get mismatches [16:24] * eagles0513875 wonders how asac hasnt spontaneously conbusted yet [16:24] asac: I'm not looking at component-mismatches. I just noticed it cause I am updated an override script as part of the publication process (since xl191 and ff35 or now in main but weren't the last time) [16:27] asac: I'm thinking abrowser-3.5 should be in main? [16:27] yes [16:30] jdstrand: all abrowser packages [16:30] micahg: patch adjusted? [16:30] micahg: or what was the "whats next?" question about? [16:30] did you get a new orig? [16:30] waiting for get-orig-source to finish :) [16:30] ah [16:30] yes [16:31] once its there ... move that to the tarballs/ directory [16:31] and change the changelog version accordingly [16:31] in your bzr tree [16:31] the run bzr bd --merge --builder='debuild -bÄ [16:31] the run bzr bd --merge --builder='debuild -b' [16:31] and if the patches fail [16:31] you can just go into build-tree/mozilla [16:31] create the link ;) [16:31] and quilt push -f [16:31] then look for .rej files [16:31] find -name \*.rej [16:35] i am going crazy because of the formhistory.sqlite ont getting properly migrated [16:37] asac: ok, last one-- should I push ff35 and xl191 on jaunty as well? [16:39] jdstrand: you didnt answer my question on that i think. look at xulrunner-1.9.1 changes [16:39] I'm sure I didn't [16:39] if you say this is SRU material then no. otherwise i would have wnated to --enable-safe-browsing [16:39] * jdstrand reads [16:39] too [16:40] which is security topic (while the one i put there is not ... just a utterly broken feature) [16:40] i personally accepted that i have to reupload xulrunner with --enable-safe-browsing and then do SRU with later -security propagation [16:41] micahg: what was the -safe-browsing bug id? [16:41] ah bug 404827 [16:41] Launchpad bug 404827 in xulrunner-1.9.1 "Firefox doesn't warn about Attack Sites!?" [Critical,Fix released] https://launchpad.net/bugs/404827 [16:41] asac: yeah, bug #398205 is SRU imo [16:41] Launchpad bug 398205 in xulrunner-1.9.1 "Geolocation via WLAN doesn't seem to work" [High,Fix released] https://launchpad.net/bugs/398205 [16:43] 17:39 < asac> if you say this is SRU material then no. otherwise i would have wnated to --enable-safe-browsing [16:43] 17:39 * jdstrand reads [16:43] 17:39 < asac> too [16:43] 17:40 < asac> which is security topic (while the one i put there is not ... just a utterly broken feature) [16:43] 17:40 -!- stevel [n=stevel@208.66.65.36] has joined #ubuntu-mozillateam [16:43] 17:40 < asac> i personally accepted that i have to reupload xulrunner with --enable-safe-browsing and then do SRU with later -security propagation [16:43] 17:41 < asac> micahg: what was the -safe-browsing bug id? [16:43] 17:41 < asac> ah bug 404827 [16:43] Launchpad bug 404827 in xulrunner-1.9.1 "Firefox doesn't warn about Attack Sites!?" [Critical,Fix released] https://launchpad.net/bugs/404827 [16:44] micahg, you can always get it from the ppa itself: https://edge.launchpad.net/~ubuntu-mozilla-daily/+archive/ppa a simple wget is enough. if you fetch an even fresher tarball (it takes much longer), you may also find new issues, and then, you'll have to fix them too. [16:44] fta: thanks, I needed the latest which wasn't in the ppa yet [16:46] asac: build dependencies failed for debuild -b [16:46] micahg: you need to install them [16:46] micahg, oh, i thought you were trying to fix build issues [16:46] yeah [16:46] fta: he tries to fix build issues. but he noted that the same patch will be invalid [16:46] because reed committed something yesterday [16:47] so he wanted to fix it based on that proactively [16:47] asac: never mind, I just used -d to get the directory made [16:47] asac: if you tell me that leaving out --enable-safe-browsing is an omission, I would publish it without SRU. but it doesn't really matter since you'll need SRU for bug #398205 [16:47] Launchpad bug 398205 in xulrunner-1.9.1 "Geolocation via WLAN doesn't seem to work" [High,Fix released] https://launchpad.net/bugs/398205 [16:47] asac, micahg, yeah, but remember we prefer 1 commit per fix [16:47] jdstrand: that --enable-safe-browsing is not in because i didnt get an answer from you yesterday. [16:47] jdstrand: so i will upload it now and do an SRU [16:47] (or <=>) [16:47] * jdstrand nods [16:48] fta: 1 commit per fix or 1 fix per commit? [16:50] micahg: i think its ok what you are doing. just continue [16:50] bump to the orig that you just produced as new snapshot [16:50] fix patches [16:50] done [16:51] micahg, it's the same ;) [16:52] asac: browser/installer/unix/ seems to be missing still [16:52] I got the other patch fixed :) [16:54] micahg: we dont hav a patch for that dir [16:54] do we? [16:56] awesome_browser_branding_install.patch [16:57] what should I do with it? [16:59] * eagles0513875 sits quietly and watches the chaos in here [17:00] asac: ?? [17:01] micahg: sorry about that mess. definitly not a good start [17:01] ;) [17:01] micahg: so basically you need to figure now what happened to the files that were in there [17:01] upstream [17:01] and then decide whether the pieces that dont apply are not needed or need to be changed or ported to do it different etc. [17:02] ugh [17:02] * micahg has to go to work [17:02] can look at it after 8 [17:02] hmm ok. [17:02] 8 CDT (0100 UTC) [17:02] hey asac how do you cope m8 [17:02] micahg: you can give me the patches you adjusted so far? [17:02] *mate [17:02] should I just push up what I have [17:02] yeah [17:02] eagles0513875: not sure i undersatnd your question ;) [17:03] how do you cope with the occasional chaos in here lol [17:04] asac: the change should be in the commit log, not the changelog, right? [17:04] I just bumped the version in the changelog [17:06] micahg: you bump changelog version (1 commit) [17:06] oh oops [17:06] then you document the adjusted patches and update the patches (2nd commit) [17:06] or 1 commit for each patch [17:06] I did a dch -e and bumped the version [17:06] look at bzr log for examples [17:06] then I commit the patch [17:07] bzr uncommit [17:07] should I should have a version in the changelog above the mass update [17:07] the commit just the bump of changelog [17:07] look at bzr log ... [17:07] then you fix patches [17:07] with changelog comment like: [17:07] oh [17:07] ah [17:07] asac: i am now motu [17:07] if its 3.7 we dont do that anymore [17:08] bdrung: rock [17:08] :) [17:08] and congrats ;) [17:08] thanks [17:08] asac: so can I commit one file? [17:08] micahg: not sure i understnd the question [17:08] or do I have to move my changes out of the dir? [17:08] ah [17:08] you can commit by specifying just the files you want to commit [17:09] do a bzr diff files/to/commit [17:09] if thats what you want to commit [17:09] do [17:09] bzr commit files/to/commit ;) [17:09] https://launchpad.net/~ubuntu-mozilla-daily/+archive/ppa/+build/1237330/+files/buildlog_ubuntu-karmic-i386.xulrunner-1.9.3_1.9.3~umd2_FAILEDTOBUILD.txt.gz [17:09] umd2? hmmmm... [17:11] -xulrunner-1.9.3 (1.9.3~a1~hg20090910r32360+nobinonly-0ubuntu1) UNRELEASED; urgency=low [17:11] +xulrunner-1.9.3 (1.9.3) UNRELEASED; urgency=low [17:11] ehhh??? [17:12] asac, what happened? [17:13] * eagles0513875 keeps looking at this channel makes my head hurt [17:14] fta: ouch [17:14] that is A mess [17:14] did the package not fail because its a native package :( [17:15] fta: so maye we have to use 1.9.3~hg+a1.... now? [17:16] hmm h is lower than umd [17:16] too bad [17:16] fta: any idea yet? [17:17] dont say i messed that up please [17:17] asac: I killed my patch again (I'll get it to you in a couple of hours) -- apparently, when I refreshed part of it, it deleted a chunk of code :( [17:17] its ok the bulds are done anyway today [17:17] asac, GOOD: http://paste.ubuntu.com/268645/ BAD: http://paste.ubuntu.com/268643/ [17:17] micahg: you can look with quilt diff [17:17] before refreshing [17:17] quilt diff shows you how the refresh would look like [17:18] ah, excellent asac, I'll do that [17:18] be back in a bit [17:20] -xulrunner-1.9.3 (1.9.3~a1~hg20090909r32341+nobinonly-0ubuntu1) UNRELEASED; urgency=low [17:20] +xulrunner-1.9.3 (1.9.3~a1~hg20090910r32360+nobinonly-0ubuntu1) UNRELEASED; urgency=low [17:20] fta: how did that work? [17:20] i mean it shouldnt find the orig during build [17:20] in any case [17:20] or was the orig wrong in the beginning? [17:20] the update was fine, not the sync [17:20] - compare 1.9.3~a1~hg20090829r32079+nobinonly (UNRELEASED) and 1.9.3~a1~hg20090910r32360+nobinonly-0ubuntu1 [17:21] this is bad [17:21] sed -i -e '1s/(.*) [^;]*/(1.9.3) UNRELEASED/' debian/changelog [17:21] where does TARGET come from? [17:21] cp ../xulrunner-1.9.3.head/debian/changelog debian/changelog [17:22] * eagles0513875 my head hurts [17:22] *sigh* [17:23] fta: yours too [17:27] cp ../xulrunner-1.9.3.head.daily/debian/changelog debian/changelog [17:27] feels wrong that we copy the changelog from a .daily branch? [17:27] shouldnt that be from .head? [17:27] and then resolved [17:27] and bump the version again? [17:28] hmm ok the .daily gets produced before [17:28] and error starts there [17:28] as you pasted [17:28] hm, found it [17:28] .head is wrong [17:28] line 85/86 [17:29] .head wrong? you mean locally? [17:29] fta@cube:/data/bot/xulrunner-1.9.3.head $ bzr blame debian/changelog | head [17:29] 498 asac@ub | xulrunner-1.9.3 (1.9.3~a1~hg20090829r32079+nobinonly) UNRELEASED; urgency=low [17:29] urgh [17:29] ok [17:30] we defintily need a safety net somewhere [17:30] i might be able to convince soyuz folks to remove this completely somehow [17:30] please, try [17:31] asked [17:31] so we should validate that version have at least a ~hg... in them [17:31] for dailies [17:32] and nobinonly [17:32] of course doesnt cover all eventualities [17:32] actually i think we should check that the orig produced has the same ersion that we use for upload [17:32] bhow did this work at all? [17:32] does the bot rename the orig again? [17:33] imo it shouldnt do that because the orig is basicalyl the thing that has the say on the upstream version [17:34] no, it doesn't, upgrade bumps .head.daily, but sync keeps the fresher from .head and .head.daily [17:34] sync does the dput [17:36] I'm glad the bot produced enough logs to identify that [17:37] fta: well. to build the sources you need a tarball with same name [17:37] oh it became native [17:37] what a mess [17:37] but you can always check if the orig produced is still the same [17:55] fta: ok seems we get that removal [17:55] but probably not something we should repeat ;) [17:56] could you please fix .head? [17:59] i fixed the version [18:00] can we please put a safety net in place to not upload origs different from what get-orig-source produced? [18:00] * asac is covered in blood [18:01] "major bot bustage causing..." ehh.. it's not fair [18:03] fta: did i get the cause wrong? [18:03] fixing [18:04] * fix changelog version that triggered corner case in daily bot which lead to upload of bad version to daily ppa [18:04] better? [18:04] fta: ? [18:04] well, yes [18:05] * fix changelog version that caused upload of bad version to daily ppa [18:05] used that [18:05] not mentioning bot [18:09] fta: oh. it takes a bit until we can upload something again [18:09] will let you know [18:11] Its been several months since the ff 3.5 release... and there is still no properly branded version in ubuntu repos? Or am I missing something? [18:12] karmic [18:12] I'm on the latest stable, jaunty [18:12] jaunty has firefox 3.0 [18:13] alright, thanks. [18:17] asac: how many times a day do you answer that question? [18:17] was first time this week iirc [18:17] ;) [18:24] i am out for a while [18:29] asac: is 3.5 going to be available in jaunty-backports? [18:31] pace_t_zulu: it is available in jaunty and jaunty-security [18:31] bdrung: thanks... just curious [18:31] yw [20:00] asac, building.. [20:03] fta: new xul 1.9.3? [20:05] yes [20:05] nice [20:06] 3.6 still red [20:06] we know that [20:07] i thought it was kicked off at 7 [20:07] but it was apparently at 5 [20:07] 17h [20:07] you asked me to put it earlier remember? [20:08] yeah [20:08] i didnt had that filed in my brain [20:08] now i will remember ;) [20:08] ok dinner now [20:09] and then playing a game. had too heavy night shift the day before yesterday === bdrung_ is now known as bdrung [20:36] asac, yeah, go frag some aliens [20:36] asac, i will frag my share too [22:06] hehhe fta [22:06] what game yall playing fta or asac [22:06] openarena [22:06] sounds tempting if i had jaunty working on me mac [22:06] it some how broke itself === pace_t_zulu_ is now known as pace_t_zulu [22:57] asac: I'm about to test the ff3.5.3 attack site patch [22:57] I still have to fix that broken patch for the umd [22:58] micahg: yes. whatever you prefer. i think attack site can be tested in parallel (if you have jaunty) ;) [22:58] firefox finally decided to open the new tab for links next to the current tab instead of at the end [22:58] its not really a full attention job ;) [22:58] not so bad [22:58] though i am sure folks (maybe even me?) will complain ;) [22:59] but i think its a win [22:59] ;) [22:59] i want just that if you hit ctrl+tab + ctrl+w [22:59] that i end up on the same tab as before ;) [23:04] asac: firefox3.5.3 fixes the fullscreen flash breakage. yippeee \o/ [23:05] sebner: didnt we close it in changelog? [23:05] ;) [23:07] asac: Update-manager didn't present me one and I was too lazy to click on the link :P [23:07] asac: it was in tehre and the bug was closed [23:07] good [23:08] micahg: know the master bug id of bug 427474 [23:08] Launchpad bug 427474 in firefox-3.0 "Getting exceptions when querying some websites." [Undecided,New] https://launchpad.net/bugs/427474 [23:08] i just looked at the upstreawm bug yesterday [23:08] * micahg 's browser is reloading [23:08] chromium passed the 12k threshold \o/ [23:13] asac: bug 338785 [23:13] Launchpad bug 338785 in firefox "[MASTER] Update to Firefox causes errors" [Unknown,Confirmed] https://launchpad.net/bugs/338785 [23:13] should I dupe? [23:15] retitled the bug [23:15] yes [23:15] bug 338785 [23:15] Launchpad bug 338785 in firefox "[MASTER] Update to Firefox causes errors" [Unknown,Confirmed] https://launchpad.net/bugs/338785 [23:15] [MASTER] Updates while firefox is running cause various problems until restart [23:15] not sure whats up with the bot [23:15] bug 338785 [23:15] maybe caching thing [23:16] * micahg just added metabug to it [23:16] added firefox-3.5 too [23:17] important enough to move over [23:17] i think we should review all ffox 3.0 "high" + "triaged" bugs at least [23:17] and medium if thats not too much [23:17] and take them with us [23:17] asac: attack site warning in place now :) [23:17] ;) [23:17] good [23:17] thanks for the confirm [23:18] now have to wait for all the archs to finish or fail [23:18] and then get some pocket copy to -proposed for the weekend [23:18] asac: was on my list of things to do :) [23:18] and then get out on monday [23:18] moving ff3.0 and ff bugs