=== DarkMageZ [n=richard@ppp6-91.lns4.syd7.internode.on.net] has joined #ubuntu-mozillateam | ||
=== Naddiseo [n=Naddiseo@d199-126-254-166.abhsia.telus.net] has joined #ubuntu-mozillateam | ||
DarkMageZ | asac, hey, i've been attempting to build firefox-trunk against QT. but the configure keeps on crying about needing atleast version 3.2.0 of QT, i've added ", qt3-dev-tools, libqt3-mt-dev, libqt3-headers, libqt3-mt, qt3-apps-dev" to the control files. so that should be providing QT 3.3.7 | 03:08 |
---|---|---|
=== Admiral_Chicago [n=freddy@ubuntu/member/admiral-chicago] has joined #ubuntu-mozillateam | ||
=== IdleOne [n=idleone@unaffiliated/idleone] has joined #ubuntu-mozillateam | ||
=== mojo [n=mojo@c-68-52-116-85.hsd1.tn.comcast.net] has joined #ubuntu-mozillateam | ||
=== cjwatson_ [n=cjwatson@82-69-40-219.dsl.in-addr.zen.co.uk] has joined #ubuntu-mozillateam | ||
=== asac [n=asac@debian/developer/asac] has joined #ubuntu-mozillateam | ||
DarkMageZ | asac, you don't happen to know how/where gnomefreak gets his browser-snapshot.tar.bz2 files? unfortunantly i've found something really nasty in the current one which i hope is fixed in the latest | 09:32 |
DarkMageZ | i decided to rebuild gfreaks trunk package with glitz enabled. so i ended up having to rebuild the cairo packages with glitz enabled. but now all i get is this :( http://pastebin.ca/450922 | 09:36 |
=== DarkMageZ [n=richard@ppp254-240.lns3.syd6.internode.on.net] has joined #ubuntu-mozillateam | ||
asac | DarkMageZ: from cvs | 10:34 |
asac | you can run debian/rules neworig to pull latest from CVS trunk | 10:34 |
asac | you have to change date encoded in changelog version | 10:34 |
asac | .... which is th edate used | 10:35 |
asac | for qt ... why do you think it works | 10:35 |
DarkMageZ | well, i know QT is likely to fail, but i don't think it should fail so early | 10:35 |
asac | afaik there has been some work on Qt a few years ago ... but then was abandoned ... anyway, I guess the version is not the problem | 10:36 |
asac | its how configure detects qt | 10:36 |
asac | probably they don't use pkg-config for that | 10:36 |
asac | so you might have to tweak configure options | 10:36 |
DarkMageZ | it was saying before that qt wasn't detected, then it said i needed a newer version | 10:36 |
asac | have you searched for qt in configure.in | 10:36 |
asac | please look in configure.in file and see how it detects it | 10:36 |
DarkMageZ | yeah, i get afew entries for QT_VERSION. they set the minimum version | 10:37 |
asac | if you paste the secion I can look | 10:37 |
DarkMageZ | asac, http://pastebin.ca/451138 | 10:40 |
asac | and the section where MOZ_ENABLE_QT is set? | 10:43 |
asac | nevermind ... so how do you run configure? | 10:44 |
asac | btw, now that there exists gtk-qt-engine i don't see the benefit on building native qt ... except of course some overhead of gtk+ ... which is likely not a problem | 10:45 |
DarkMageZ | asac, i've stolen gfreaks firefox trunk and i've just added afew things. changed the default toolkit to qt | 10:47 |
DarkMageZ | asac, http://pastebin.ca/451147 (added to the bottom) | 10:51 |
asac | yeah .... you have to either set QTDIR | 10:51 |
asac | in environment | 10:51 |
asac | or --with-qt-dir i guess | 10:51 |
DarkMageZ | hmm, what should i be setting the qt dir to? | 10:52 |
asac | no idea ... paste a dpkg -L of the qt-dev package you installed | 10:53 |
asac | (sorry i don't use qt/kde) | 10:53 |
DarkMageZ | http://pastebin.ca/451153 | 10:57 |
asac | QTINCDIR is bad in configure.in | 10:59 |
asac | you will have to patch it | 10:59 |
asac | to test you could create a symlink | 10:59 |
asac | /usr/include/qt -> /usr/include/qt3 | 11:00 |
asac | gnomefreak: doing better ... just need to relax at weekend a bit I guess :) | 11:02 |
DarkMageZ | asac, line 4679? | 11:02 |
asac | DarkMageZ: better create a symlink for now | 11:03 |
asac | if you have success we can create a proper patch together | 11:03 |
asac | btw, why do you have qt3? | 11:04 |
DarkMageZ | i build under a pbuilder, never on my system and hacking the rules file to create a symlink isn't something i want to learn atm | 11:04 |
asac | isn't there qt4? | 11:04 |
asac | DarkMageZ: create a hook :) | 11:04 |
DarkMageZ | yeah, there's qt4, but kde3 uses qt3 while afew apps have been ported to qt4 | 11:05 |
asac | man pbuilder | 11:05 |
asac | there is a default hookdir | 11:05 |
asac | should be set in /etc/pbuilder* | 11:05 |
asac | you can add a script there that creates the symlink | 11:06 |
DarkMageZ | or i can catch the output of diff and add the patch to the debian/patches directory | 11:06 |
asac | that's bad ... we have quilt patch management to do that more easily | 11:07 |
asac | ok | 11:07 |
asac | <diary> | 11:07 |
asac | go to extracted source dir (build-tree/mozilla) | 11:08 |
DarkMageZ | http://pastebin.ca/451159 ? | 11:08 |
asac | 2. create a new patch: quilt new qt-directory-fix | 11:08 |
asac | 3. add configure.in to be registered in that patch by: quilt add configure.in | 11:08 |
asac | 4. modify configure.in | 11:08 |
asac | 5. update patch by: quilt refresh --diffstat -U8 | 11:09 |
asac | 6. create a new patch that will carry the configure updates: quilt new autoconf-update | 11:09 |
asac | 7. run autoconf: autoconf2.13 | 11:09 |
asac | 6b. register configure with quilt: quilt add configure | 11:10 |
asac | 8. refresh autoconf-update patch: quilt refresh --diffstat -U8 | 11:10 |
asac | 9. done -> rebuilt | 11:10 |
asac | </diary> | 11:10 |
asac | see 6b is before 7. | 11:10 |
asac | :) | 11:10 |
asac | actually all patches have one single autoconf-update ... if you ever add a new patch for configure.in you would update autoconf-update with all changes togeter (e.g. only one patch that carries the regenerated changes against upstream) | 11:11 |
asac | ... and yes, your change looks good ... just do it after you created quilt patch and you added configure.in to be tracked by that patch ... then refresh (see above) | 11:13 |
=== bluekuja [n=andy@ubuntu/member/bluekuja] has joined #ubuntu-mozillateam | ||
DarkMageZ | oh, that explains why i run the pbuilder. that some packages will go and make sure all patches are unapplied. | 11:23 |
asac | ? | 11:23 |
asac | is that a question/complaint? | 11:24 |
DarkMageZ | neither. more of a, oh that makes sence now type of thing | 11:25 |
asac | ok ... quilt is pretty amazing to what we do ... once you are used to it :) | 11:25 |
asac | hope my instruction above is good enough | 11:26 |
DarkMageZ | should work now that i've removed the --enable-svg (without having cairo) | 11:30 |
asac | if not, use --disable-svg | 11:34 |
DarkMageZ | k, qt fails due to a .h which appears to have been removed from trunk | 12:01 |
=== gnomefreak told you building it against qt qas gonna be a bitch ;) | ||
DarkMageZ | oh yeah. i know this :) | 12:02 |
gnomefreak | asac: i have updated trunk should be uploaded over the weekend | 12:03 |
=== DarkMageZ [n=richard@ppp254-240.lns3.syd6.internode.on.net] has joined #ubuntu-mozillateam | ||
=== DarkMageZ has started compiling feisty's firefox against QT =D | ||
=== gnomefreak thinks it would have been easier to build a firefox-kde-support package | ||
gnomefreak | or sorry firefox-kde-intergration package | 12:35 |
=== gnomefreak wonders if we should add kde support package in firefox build for gutsy | ||
gnomefreak | DarkMageZ: did you have to drop the system-cario patch? | 12:37 |
DarkMageZ | gnomefreak, i dropped your trunk version entirely. i'm using feisty's firefox. | 12:38 |
gnomefreak | nevermind i already disabled it | 12:38 |
gnomefreak | ah | 12:38 |
=== gnomefreak has to remember to pull them out next update :( | ||
DarkMageZ | would your -kde-support package have QT? cause QT is just a bitch to get working | 12:39 |
gnomefreak | DarkMageZ: i doubt it | 12:40 |
=== gnomefreak knows how hard qt is | ||
DarkMageZ | what changes would it have then? | 12:41 |
gnomefreak | DarkMageZ: what changes would the kde-support package or the kde-intergration? | 12:41 |
DarkMageZ | both | 12:41 |
gnomefreak | support package should be fairly simple changes. the kde-intergration i believe kubuntu team would have to implement | 12:42 |
gnomefreak | but the support package wouldnt change gtk to qt | 12:42 |
gnomefreak | its more of the menus/icons and stuff | 12:43 |
DarkMageZ | ah | 12:44 |
DarkMageZ | maybe one of the QT experts could get QT working with firefox for the kde-integration package :) | 12:45 |
DarkMageZ | would be interesting to see | 12:45 |
gnomefreak | im not sure if they will but i will ask again next week | 12:51 |
=== gnomefreak noticed something wrong. asac when you get time ping me about changelog for thunderbird | ||
DarkMageZ | aww, ran into a bug in the actual QT mozilla code :( game over | 01:06 |
gnomefreak | that was bound to happen | 01:19 |
gnomefreak | ok bbl uploading updated trunk | 01:20 |
=== DarkMageZ sits here hitting the refresh button | ||
=== pochu [n=emilio@ubuntu/member/pochu] has joined #ubuntu-mozillateam | ||
pochu | hi folks! | 01:29 |
pochu | I'm having a reproducible (here) crash in TB | 01:29 |
pochu | but I can't run it in gdb | 01:30 |
pochu | it complaints with: ""/usr/bin/mozilla-thunderbird": not in executable format: File format not recognized" | 01:30 |
pochu | any idea? | 01:30 |
ajmitch | looks to be a script that takes debugging options | 01:31 |
ajmitch | mozilla-thunderbird -g -d gdb | 01:32 |
ajmitch | drops me into gdb | 01:32 |
pochu | gonna try | 01:32 |
pochu | ajmitch: works, ty! | 01:34 |
gnomefreak | when did someone build a -dbg package for thunderbird? | 01:36 |
gnomefreak | ^^^ kind of helpfull when running gdb | 01:36 |
=== Kmos [n=gothicx@unaffiliated/kmos] has joined #ubuntu-mozillateam | ||
ajmitch | or mozilla-thunderbird-dbgsym ddebs as supplied by pitti | 01:38 |
pochu | gnomefreak: there is one on pitti's repo | 01:38 |
pochu | yeah | 01:38 |
Kmos | https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/108063 | 01:38 |
ubotu | Malone bug 108063 in firefox "Firefox crashed when opening a new tab" [Undecided,Unconfirmed] | 01:38 |
gnomefreak | Kmos: when people get to it they will get to it no need to post it we get emails on it | 01:39 |
Kmos | gnomefreak: ok | 01:39 |
gnomefreak | pochu: is it up to date? | 01:39 |
Kmos | :) | 01:39 |
gnomefreak | pochu: we were unablet o due retraces | 01:39 |
gnomefreak | with it | 01:39 |
Kmos | any experimental tb2.0 for feisty ? | 01:39 |
gnomefreak | Kmos: when i update it ill let you know. | 01:40 |
pochu | tb2.0 is final, so no experimental :) | 01:41 |
Kmos | pochu: i mean the package | 01:41 |
gnomefreak | i will most likely get to it after gutsy opens | 01:41 |
Kmos | not the release | 01:41 |
gnomefreak | pochu: mines not final yet ;) | 01:41 |
gnomefreak | pochu: we have a few things to work out before i can update to final | 01:41 |
pochu | ah, ok | 01:42 |
pochu | gnomefreak: yeah, dbgsym is up-to-date | 01:42 |
gnomefreak | ok cool | 01:42 |
pochu | installing :) | 01:42 |
pochu | do I need to run this commands for tb crashes?: | 01:43 |
pochu | (gdb) handle SIG33 pass nostop noprint | 01:43 |
pochu | (gdb) set pagination 0 | 01:43 |
gnomefreak | not really | 01:43 |
gnomefreak | you can it doesnt hurt afaik | 01:43 |
pochu | ok | 01:43 |
pochu | that's from w.u.c | 01:43 |
gnomefreak | yeah i know | 01:43 |
gnomefreak | we have one set up for ff i dont think we did one for tb yet but we will | 01:44 |
pochu | Program received signal SIGSEGV, Segmentation fault. | 01:44 |
pochu | [Switching to Thread -1221530864 (LWP 7377)] | 01:44 |
pochu | 0x00000000 in ?? () | 01:44 |
pochu | (gdb) | 01:44 |
pochu | not very useful :/ | 01:44 |
gnomefreak | nope its not | 01:44 |
gnomefreak | the the symbols are not up to date with our thunderbird in feisty im betting | 01:45 |
pochu | they're 1.5.0.10-0ubuntu3 | 01:46 |
pochu | same as feisty | 01:46 |
pochu | http://pastebin.ca/451291 | 01:46 |
gnomefreak | we have a package that works for them but you will have to wait till monday because i havent had time to work on bugs so im not sure wher eit is | 01:47 |
pochu | ok, will explain the crash: | 01:47 |
pochu | I had it some time ago: when changing from one folder to another which has a lot of mails (3000+) it crashes | 01:48 |
gnomefreak | pochu: file a bug :) | 01:48 |
pochu | so to investigate, last time I removed 2000+ mails, and then it didn't crash | 01:48 |
pochu | yeah :) | 01:48 |
pochu | gnomefreak: when I have a bt ;) | 01:48 |
gnomefreak | pochu: just attach the crash report | 01:49 |
gnomefreak | someone will retrace it and get the symbols | 01:49 |
gnomefreak | Kmos: add what version of ubuntu what version of ff and all extenstions and plugins you have installed (including themes) | 01:51 |
gnomefreak | to your bug report. | 01:52 |
Kmos | gnomefreak: ok | 01:52 |
gnomefreak | its taking way too long for me to ask that on a webpage since they are not opening fast enough for me since my bandwidth is under high load atm | 01:53 |
Kmos | i'm doing a retrace now | 01:57 |
gnomefreak | good im going to lay down while this uploads its still kind of early seeing as i got up at around 3am | 01:58 |
gnomefreak | pochu: im hoping to have thunderbird updated to final in next week or so. btw installing it you need to install thunderbird not mozilla-thunderbird. its missing locales and failing to upgrade smoothly will be fixed as soon as i get ot it | 02:00 |
gnomefreak | s/ot/to | 02:00 |
=== gnomefreak gone | ||
asac | gnomefreak: back | 02:32 |
gnomefreak | asac: feeling better? | 02:55 |
asac | yeah ... a abit :) | 02:55 |
asac | what do you wanna know about tbird changelog? | 02:56 |
gnomefreak | firefox entries in it | 02:58 |
gnomefreak | trunk i think it was | 02:58 |
gnomefreak | 20070328 firefox entry than the tb entry on top | 02:59 |
gnomefreak | ok repo is back online | 03:05 |
gnomefreak | i was looking at changelog to see if it was cvs sincei couldnt remember and i noticed all firefox-trunk entries except for the latest entry is tb (is tbird using trunk debian dir?) | 03:11 |
gnomefreak | hmm | 03:12 |
gnomefreak | Kmos: you still here? | 03:13 |
asac | tbird is based on firefox-trunk branch | 03:23 |
asac | same goes for new ffox-2.0.0.x | 03:23 |
gnomefreak | ah | 03:23 |
gnomefreak | any changes to tbird lately? | 03:23 |
gnomefreak | at branch | 03:24 |
=== gnomefreak would like to get everything updated (as much as we can) because the week of the 30th and the following week i might not be here much i will have guests here | ||
asac | gnomefreak: i can upload as well in case you have no time | 03:29 |
gnomefreak | k | 03:30 |
asac | no changes to tbird currently | 03:30 |
gnomefreak | people are wanting final i hear it everyday | 03:30 |
gnomefreak | you have to do the stuff you and ajmitc_h were talking about? | 03:31 |
asac | gnomefreak: you can just use final tarball | 03:31 |
asac | and respin | 03:31 |
asac | we release as 1.99 though as we want people to automatically upgrade | 03:31 |
asac | when it gets into offical archive | 03:32 |
gnomefreak | what about the locales and the lpd* stuff | 03:32 |
gnomefreak | ah ok | 03:32 |
asac | locales need to be done, right | 03:32 |
gnomefreak | than i will grab final tarball create orig and spin | 03:32 |
gnomefreak | well i will do the above without the respin and i have to figure out where to grab them froma nd remember what folder they go in. (its been a while since i had to do locales for tb | 03:33 |
asac | gnomefreak: i am brewing coffee now | 03:34 |
=== gnomefreak missed coffee this morning | ||
asac | i will do the locales stuff | 03:34 |
gnomefreak | k | 03:34 |
gnomefreak | im gonna grab tar and go with it in the next hour or so than and i guess you can add locales sometime after i upload | 03:35 |
gnomefreak | that will give you another day to rest if you need it | 03:36 |
asac | thanks :) | 03:40 |
gnomefreak | yw | 03:40 |
gnomefreak | brb | 03:41 |
=== gnomefreak [n=gnomefre@ubuntu/member/gnomefreak] has joined #ubuntu-mozillateam | ||
gnomefreak | maybe ill set up my gutsy chroot this weekend (assuming toolchain is uploaded since we opened #ubuntu+1) | 03:45 |
gnomefreak | asac: cairo-backed Gecko 1.9 << is in our build of fx 2.0.0.x? | 04:03 |
asac | who wants to know? | 04:03 |
asac | 2.0 is from 1.8.1 branch ... 1.4 from 1.8.0 branch ... so no, bothare 1.8.x | 04:04 |
gnomefreak | ah | 04:04 |
asac | trunk is 1.9 | 04:04 |
asac | :) | 04:04 |
asac | so the firefox 3.0 branch which will eventually be created will probably named 1.9 | 04:05 |
gnomefreak | :) | 04:05 |
Kmos | bug 27430 | 04:06 |
ubotu | Malone bug 27430 in firefox "Firefox deletes the clipboard on startup; middle-click paste also broken" [Wishlist,Confirmed] https://launchpad.net/bugs/27430 | 04:06 |
Kmos | is this already fixed? | 04:06 |
gnomefreak | does the bug say its fixed? | 04:09 |
gnomefreak | seeing as its a wishlist i doubt it | 04:09 |
Kmos | it's too old. | 04:10 |
gnomefreak | Kmos: does it still happen on feisty | 04:11 |
Kmos | :( | 04:11 |
gnomefreak | if so its not fixed but i dont remember that one either | 04:12 |
gnomefreak | asac: where in the rules does it define the orig.tar.gz name its wanting me to name it the rc1 name | 04:22 |
asac | its encoded in upstream version | 04:23 |
asac | replace rc1 by release | 04:23 |
asac | in changelog version | 04:23 |
asac | and use the name it wants for the tarball | 04:23 |
asac | 'rc1' -> 'release' | 04:24 |
gnomefreak | k | 04:24 |
=== hjmf [n=hjmf@6.Red-88-25-28.staticIP.rima-tde.net] has joined #ubuntu-mozillateam | ||
gnomefreak | 1.99.release+2.0-1 is what you want in changelog? not 2.0.0.0 | 04:26 |
pochu | shouldn't it be -0ubuntu1? | 04:27 |
gnomefreak | its not going into ubuntu atm | 04:27 |
pochu | oh, to your repo :) | 04:28 |
gnomefreak | yep | 04:28 |
gnomefreak | ok i leave now to get things done its building | 04:35 |
asac | gnomefreak: yeah version looks good | 04:38 |
gnomefreak | ok cool | 04:38 |
asac | previously was 1.99.rc1+2.0-1, right? | 04:38 |
asac | then its fine | 04:38 |
gnomefreak | yes | 04:41 |
gnomefreak | should i change rc1 in orig since its built already or leave it? | 04:41 |
gnomefreak | replacing it with the other one in archive will ensure they get right version of orig but im thinking complaints about it saying rc1 | 04:42 |
Kmos | [15:41] <Kmos> 112:<https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/36739> | 04:43 |
ubotu | Malone bug 36739 in firefox "Misbehaves in all sorts of ways when upgraded while running" [Medium,Confirmed] | 04:44 |
Kmos | [15:41] <Kmos> isn't this fixed ? | 04:44 |
Kmos | asac :) | 04:44 |
Kmos | [15:42] <Kmos> and v1.5 will be discontinued | 04:44 |
Kmos | [15:42] <Kmos> i'm checking old bugs | 04:44 |
asac | bug 36739 is not yet completely fixed | 04:44 |
asac | users get a warning though | 04:45 |
gnomefreak | !chroot | 04:45 |
ubotu | https://wiki.ubuntu.com/DebootstrapChroot use this to build 32 bit environments on a 64 bit box | 04:45 |
Kmos | asac: ok | 04:45 |
asac | gnomefreak: can we feed the bot? | 04:46 |
gnomefreak | i can | 04:46 |
gnomefreak | asac: when i see seveas ill ping him to give you rights to change add facts | 04:47 |
gnomefreak | still cant get chroot set up | 04:48 |
gnomefreak | just checked its seveas who has to add you. :( | 04:48 |
gnomefreak | i pinged him but he isnt answer people (atleast for last 2 hurs | 04:49 |
Kmos | asac: latest firefox I got, apport doesn't handle them.. just create the file on /var/crash | 04:50 |
Kmos | *lastest firefox crash I got | 04:50 |
Kmos | it's strange.. | 04:50 |
gnomefreak | as soon as i figure out how i can add you. i forgot i was a mod for bot :( | 04:51 |
asac | in stable release its disabled by default | 04:51 |
asac | e.g. apport auto submit | 04:51 |
gnomefreak | debootstrap is part of toolchain right? | 04:52 |
asac | i don't think so | 04:55 |
gnomefreak | crap | 04:55 |
=== gnomefreak wants chroot before i upgrade testing system | ||
gnomefreak | well gives me time to add gutsy to repo | 04:56 |
asac | you should use chroot only at the beginning ... guess feisty debootstrap will be updated to contain gutsy info | 04:56 |
asac | probably it will just work | 04:56 |
Kmos | asac: and how we know it generated the report? :) | 04:57 |
gnomefreak | E: No such script: /usr/lib/debootstrap/scripts/gutsy (that looks like its nto updated) | 04:57 |
gnomefreak | Kmos: read the report | 04:57 |
Kmos | gnomefreak: don't understand | 04:58 |
gnomefreak | Kmos: did you do the retrace? | 04:58 |
gnomefreak | oh nvm | 04:59 |
gnomefreak | Kmos: that may be because apport isnt enabled by default in feisty as i understand it | 04:59 |
gnomefreak | or you have to opt to use it | 04:59 |
Kmos | i check manually at /var/crash to see if there is a crash report.. firefox or apport don't tell me anything | 05:00 |
gnomefreak | Kmos: it wont unless you opt in to have it tell you (no i havent figured that part out yet | 05:01 |
Kmos | how do I enable it ? | 05:01 |
Kmos | :) | 05:01 |
gnomefreak | might ask pitti this week how to get it to report bugs dialog | 05:02 |
Kmos | [15:51] <asac> in stable release its disabled by default | 05:02 |
Kmos | [15:51] <asac> e.g. apport auto submit | 05:02 |
gnomefreak | right | 05:02 |
Kmos | so firefox has it disabled ? | 05:02 |
gnomefreak | no apport all together | 05:02 |
Kmos | so it's a apport problem | 05:03 |
gnomefreak | crash on anything you wont get it | 05:03 |
gnomefreak | not a problem a feature | 05:03 |
Kmos | :) | 05:03 |
gnomefreak | iirc its done this way because people dont know how to file a bug report correctly | 05:03 |
asac | its not a apport problem ... is disabled intentionally | 05:03 |
asac | gnomefreak is right ... its a load thing | 05:04 |
gnomefreak | asac: have you got the memo on how to enable it? | 05:04 |
asac | hmm | 05:04 |
asac | why? | 05:04 |
=== gnomefreak hasnt seen how to turn in it | ||
gnomefreak | it on | 05:04 |
gnomefreak | asac: incase something crashes | 05:04 |
=== gnomefreak knows how to file bugs ;) | ||
asac | /etc/default/apport | 05:05 |
asac | enabled = 1 should be set | 05:05 |
asac | then reboot or start apport service with /etc/init.d/apport start | 05:06 |
gnomefreak | ah ty | 05:06 |
gnomefreak | hmmmm | 05:06 |
gnomefreak | mine never got disabled | 05:06 |
Kmos | kmos@bash:~$ cat /etc/default/apport | 05:07 |
Kmos | # set this to 0 to disable apport | 05:07 |
Kmos | enabled=1 | 05:07 |
Kmos | I've this | 05:07 |
gnomefreak | than its enabled afaik | 05:09 |
gnomefreak | i dont get crash reports since nothing crashes here | 05:09 |
=== gnomefreak might purposely crash something this week to find out. | ||
=== gnomefreak has newest apport version fo feisty | ||
gnomefreak | 0.76.1~prop1 :) | 05:10 |
gnomefreak | brb | 05:10 |
Kmos | I've the latest version too | 05:10 |
gnomefreak | Kmos: im assuming you have apport-gtk installed? | 05:17 |
=== gnomefreak goes out for a walk ill be back in about 2 hours or so. | ||
Kmos | gnomefreak: yes, I have | 05:22 |
gnomefreak | repo will go down in about an hour or hour and half | 07:46 |
asac | k | 07:47 |
gnomefreak | im uploading now but its taking sweet time | 07:47 |
gnomefreak | asac: can you run apt-get update please | 08:03 |
gnomefreak | i wanna see if my repo errors | 08:03 |
gnomefreak | im hoping it doesnt error | 08:03 |
gnomefreak | repo is back up with tb final | 08:44 |
pochu | cool, gonna try it! :) | 08:47 |
gnomefreak | pochu: if it breaks blame Kmos | 09:00 |
gnomefreak | yeha that will work ;) | 09:00 |
pochu | :) | 09:00 |
gnomefreak | i swear people get stupider every day | 09:01 |
pochu | why? | 09:02 |
gnomefreak | pochu: someone typed a command in a channel got banned and someone said he didnt do anything wrong. I cant type command as an op but think remove root | 09:03 |
gnomefreak | with the recursive and force flags | 09:03 |
pochu | lol | 09:06 |
gnomefreak | asac: the extenstions link in tb is borked like it is looking for something | 09:08 |
gnomefreak | asac: i will explain more tomorrow | 09:08 |
gnomefreak | and reply to list seems to be not working and im not seeing another package for it | 09:09 |
gnomefreak | damnit | 09:17 |
gnomefreak | im gonna go away for a bit im gonna resping iceape i think i found out why the person is having issues if they have right version. | 09:18 |
pochu | hmm, which was the deb line for you repo? | 09:19 |
pochu | gnomefreak: ^ | 09:20 |
gnomefreak | !moxtest | 09:20 |
ubotu | Sorry, I don't know anything about moxtest - try searching on http://bots.ubuntulinux.nl/factoids.cgi | 09:20 |
gnomefreak | !moztest | 09:20 |
ubotu | The mozilla-testing repo can be found at: https://wiki.ubuntu.com/MozillaTeam/PreviewArchives | 09:20 |
gnomefreak | pochu: ^^ its there | 09:20 |
pochu | ty :) | 09:21 |
gnomefreak | yw | 09:23 |
gnomefreak | ill be back later. | 09:24 |
Kmos | [20:00] <gnomefreak> pochu: if it breaks blame Kmos | 09:41 |
Kmos | lol | 09:41 |
=== cjwatson_ [n=cjwatson@82-69-40-219.dsl.in-addr.zen.co.uk] has joined #ubuntu-mozillateam | ||
gnomefreak | %addeditor asac | 09:56 |
gnomefreak | asac: can you please /msg ubotu register nickname password and let me know when done i can than add you as editor | 10:01 |
=== bluekuja [n=andy@ubuntu/member/bluekuja] has joined #ubuntu-mozillateam | ||
gnomefreak | !no moztest is <reply> The Mozilla-testing repos can be found at: https://wiki.ubuntu.com/MozillaTeam/PreviewArchives. Please remember these are testing repos, the packages in these repos are not stable and may break things on your system. Use with caution. | 11:09 |
ubotu | I'll remember that gnomefreak | 11:09 |
asac | gnomefreak: looks like firefox as well as iceape still have bad libhunspell dependency | 11:12 |
gnomefreak | asac: https://addons.mozilla.org/en-US/firefox/mozilla-thunderbird/themes/ also does this for extentions | 11:12 |
gnomefreak | asac: im looking into it. but the bug i saw was about libnspr4-0d i ran it on older version it seems so im respinning it | 11:13 |
asac | you just have to respin iceape and friends ... take care that new hunspell is nowhere on system | 11:13 |
gnomefreak | the error was on libplcd.... | 11:13 |
asac | yes ...thats still the old error ... new libnss is needed ... nothing more | 11:13 |
gnomefreak | the latest were built with feistys version of hunspell | 11:14 |
asac | just rebuild libnspr and libnss (which i thought you already did two days ago:)) | 11:14 |
gnomefreak | Installed: 1.1.4-7 | 11:14 |
asac | no ... at least not firefox and iceape ... otherwise it would not try to install hunspell 1.1.5 ... which it does atm | 11:15 |
gnomefreak | asac: i did but i never upgraded my chroot to use latest version of libnspr4 | 11:15 |
asac | yeah ... rebuild with that should solve things for you ... further keep eyes open that no explicit versions are mentioned for hunspell in control | 11:15 |
asac | ok ... you need latest of everything of course :) | 11:15 |
gnomefreak | it does? | 11:15 |
asac | latest libnspr4 ... latest libnss (both mui important) | 11:15 |
gnomefreak | yes i know | 11:16 |
asac | and old hunspell (1.1.4) :) | 11:16 |
asac | ok fine ;) | 11:16 |
gnomefreak | thats why im respinning. but they are all old hunspell | 11:16 |
asac | The following packages have unmet dependencies: iceape-browser: Depends: libhunspell-1.1-0 (>= 1.1.5-1) but 1.1.4-7 is installed. firefox: Depends: libhunspell-1.1-0 (>= 1.1.5-1) but 1.1.4-7 is installed. | 11:16 |
asac | thats what i get atm | 11:16 |
gnomefreak | wtf | 11:16 |
asac | maybe you forgot to upload? | 11:17 |
asac | or just forgot to regen packages + sources + release ? | 11:17 |
gnomefreak | well either way its being built atm with new libnspr4-od and i have old hunspell on system. did you run apt-get update? | 11:17 |
gnomefreak | oh shit | 11:18 |
gnomefreak | damnit ty for letting me in on that | 11:18 |
gnomefreak | working on it. i thought i changed the depend for iceape but i guess not since apt-cache show still shows new version | 11:20 |
gnomefreak | wtf i did change it libhunspell-dev (>= 1.1.4-7) | 11:22 |
gnomefreak | where do i go for the shlibs:depends | 11:23 |
gnomefreak | and hunspell is no where on the repo | 11:25 |
gnomefreak | what version are you trying to grab? | 11:26 |
gnomefreak | maybe i should add libhunspell-dev (<< 1.1.5-1)? | 11:27 |
gnomefreak | iceape (1.1.1-3.mt6) feisty; urgency=low | 11:29 |
gnomefreak | * debian/control changed build depend libhunspell version from 1.1.5-6 to | 11:29 |
gnomefreak | 1.1.4-7 | 11:29 |
gnomefreak | -- John Vivirito <gnomefreak@gmail.com> Thu, 19 Apr 2007 16:20:00 -0400 | 11:29 |
gnomefreak | is the change log entry so i know i did it | 11:29 |
=== AlexLatchford [n=alex@82-44-193-109.cable.ubr07.haye.blueyonder.co.uk] has joined #ubuntu-mozillateam | ||
gnomefreak | iceape isnt even showing that it wants hunspell. i removed --purged hunspell and installed iceape and it doesnt even try to bring it in | 11:35 |
gnomefreak | hmmmm let me try something | 11:36 |
gnomefreak | asac: heres my output http://gnomefreak.pastebin.ca/451852 | 11:44 |
gnomefreak | installing hunspell again and try to purge it this time see what it wants to do | 11:45 |
gnomefreak | asac: i dont know mines not even wanting to bring hunspell in as a depend | 11:46 |
gnomefreak | asac: is this the 64bit build that you are getting that wieh? | 11:47 |
gnomefreak | with* | 11:47 |
gnomefreak | asac: ok im running out for beer and dinner let me know what you find out. | 12:17 |
Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!