/srv/irclogs.ubuntu.com/2007/04/21/#ubuntu-mozillateam.txt

=== 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
DarkMageZasac, 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.703: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
DarkMageZasac, 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 latest09:32
DarkMageZi 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/45092209:36
=== DarkMageZ [n=richard@ppp254-240.lns3.syd6.internode.on.net] has joined #ubuntu-mozillateam
asacDarkMageZ: from cvs10:34
asacyou can run debian/rules neworig to pull latest from CVS trunk10:34
asacyou have to change date encoded in changelog version10:34
asac.... which is th edate used10:35
asacfor qt ... why do you think it works10:35
DarkMageZwell, i know QT is likely to fail, but i don't think it should fail so early10:35
asacafaik there has been some work on Qt a few years ago ... but then was abandoned ... anyway, I guess the version is not the problem10:36
asacits how configure detects qt10:36
asacprobably they don't use pkg-config for that10:36
asacso you might have to tweak configure options10:36
DarkMageZit was saying before that qt wasn't detected, then it said i needed a newer version10:36
asachave you searched for qt in configure.in10:36
asacplease look in configure.in file and see how it detects it10:36
DarkMageZyeah, i get afew entries for QT_VERSION. they set the minimum version10:37
asacif you paste the secion I can look10:37
DarkMageZasac, http://pastebin.ca/45113810:40
asacand the section where MOZ_ENABLE_QT is set?10:43
asacnevermind ... so how do you run configure?10:44
asacbtw, 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 problem10:45
DarkMageZasac, i've stolen gfreaks firefox trunk and i've just added afew things. changed the default toolkit to qt10:47
DarkMageZasac, http://pastebin.ca/451147 (added to the bottom)10:51
asacyeah .... you have to either set QTDIR10:51
asacin environment10:51
asacor --with-qt-dir i guess10:51
DarkMageZhmm, what should i be setting the qt dir to?10:52
asacno idea ... paste a dpkg -L of the qt-dev package you installed10:53
asac(sorry i don't use qt/kde)10:53
DarkMageZhttp://pastebin.ca/45115310:57
asacQTINCDIR is bad in configure.in10:59
asacyou will have to patch it10:59
asacto test you could create a symlink10:59
asac/usr/include/qt -> /usr/include/qt311:00
asacgnomefreak: doing better ... just need to relax at weekend a bit I guess :)11:02
DarkMageZasac, line 4679?11:02
asacDarkMageZ: better create a symlink for now11:03
asacif you have success we can create a proper patch together11:03
asacbtw, why do you have qt3?11:04
DarkMageZi build under a pbuilder, never on my system and hacking the rules file to create a symlink isn't something i want to learn atm11:04
asacisn't there qt4?11:04
asacDarkMageZ: create a hook :)11:04
DarkMageZyeah, there's qt4, but kde3 uses qt3 while afew apps have been ported to qt411:05
asacman pbuilder11:05
asacthere is a default hookdir11:05
asacshould be set in /etc/pbuilder*11:05
asacyou can add a script there that creates the symlink11:06
DarkMageZor i can catch the output of diff and add the patch to the debian/patches directory11:06
asacthat's bad ... we have quilt patch management to do that more easily11:07
asacok11:07
asac<diary>11:07
asacgo to extracted source dir (build-tree/mozilla)11:08
DarkMageZhttp://pastebin.ca/451159 ?11:08
asac2. create a new patch: quilt new qt-directory-fix11:08
asac3. add configure.in to be registered in that patch by: quilt add configure.in11:08
asac4. modify configure.in11:08
asac5. update patch by: quilt refresh --diffstat -U811:09
asac6. create a new patch that will carry the configure updates: quilt new autoconf-update11:09
asac7. run autoconf: autoconf2.1311:09
asac6b. register configure with quilt: quilt add configure11:10
asac8. refresh autoconf-update patch: quilt refresh --diffstat -U811:10
asac9. done -> rebuilt11:10
asac</diary>11:10
asacsee 6b is before 7.11:10
asac:)11:10
asacactually 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
DarkMageZoh, that explains why i run the pbuilder. that some packages will go and make sure all patches are unapplied.11:23
asac?11:23
asacis that a question/complaint?11:24
DarkMageZneither. more of a, oh that makes sence now type of thing11:25
asacok ... quilt is pretty amazing to what we do ... once you are used to it :)11:25
asachope my instruction above is good enough11:26
DarkMageZshould work now that i've removed the --enable-svg (without having cairo)11:30
asacif not, use --disable-svg11:34
DarkMageZk, qt fails due to a .h which appears to have been removed from trunk12:01
=== gnomefreak told you building it against qt qas gonna be a bitch ;)
DarkMageZoh yeah. i know this :)12:02
gnomefreakasac: i have updated trunk should be uploaded over the weekend12: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
gnomefreakor sorry firefox-kde-intergration package12:35
=== gnomefreak wonders if we should add kde support package in firefox build for gutsy
gnomefreakDarkMageZ: did you have to drop the system-cario patch?12:37
DarkMageZgnomefreak, i dropped your trunk version entirely. i'm using feisty's firefox.12:38
gnomefreaknevermind i already disabled it12:38
gnomefreakah12:38
=== gnomefreak has to remember to pull them out next update :(
DarkMageZwould your -kde-support package have QT? cause QT is just a bitch to get working12:39
gnomefreakDarkMageZ: i doubt it12:40
=== gnomefreak knows how hard qt is
DarkMageZwhat changes would it have then?12:41
gnomefreakDarkMageZ: what changes would the kde-support package or the kde-intergration?12:41
DarkMageZboth12:41
gnomefreaksupport package should be fairly simple changes. the kde-intergration i believe kubuntu team would have to implement12:42
gnomefreakbut the support package wouldnt change gtk to qt12:42
gnomefreakits more of the menus/icons and stuff12:43
DarkMageZah12:44
DarkMageZmaybe one of the QT experts could get QT working with firefox for the kde-integration package :)12:45
DarkMageZwould be interesting to see12:45
gnomefreakim not sure if they will but i will ask again next week12:51
=== gnomefreak noticed something wrong. asac when you get time ping me about changelog for thunderbird
DarkMageZaww, ran into a bug in the actual QT mozilla code :( game over01:06
gnomefreakthat was bound to happen01:19
gnomefreakok bbl uploading updated trunk01:20
=== DarkMageZ sits here hitting the refresh button
=== pochu [n=emilio@ubuntu/member/pochu] has joined #ubuntu-mozillateam
pochuhi folks!01:29
pochuI'm having a reproducible (here) crash in TB01:29
pochubut I can't run it in gdb01:30
pochuit complaints with: ""/usr/bin/mozilla-thunderbird": not in executable format: File format not recognized"01:30
pochuany idea?01:30
ajmitchlooks to be a script that takes debugging options01:31
ajmitchmozilla-thunderbird -g -d gdb01:32
ajmitchdrops me into gdb01:32
pochugonna try01:32
pochuajmitch: works, ty!01:34
gnomefreakwhen did someone build a -dbg package for thunderbird?01:36
gnomefreak^^^ kind of helpfull when running gdb01:36
=== Kmos [n=gothicx@unaffiliated/kmos] has joined #ubuntu-mozillateam
ajmitchor mozilla-thunderbird-dbgsym ddebs as supplied by pitti01:38
pochugnomefreak: there is one on pitti's repo01:38
pochuyeah01:38
Kmoshttps://bugs.launchpad.net/ubuntu/+source/firefox/+bug/10806301:38
ubotuMalone bug 108063 in firefox "Firefox crashed when opening a new tab" [Undecided,Unconfirmed] 01:38
gnomefreakKmos: when people get to it they will get to it no need to post it we get emails on it01:39
Kmosgnomefreak: ok01:39
gnomefreakpochu: is it up to date?01:39
Kmos:)01:39
gnomefreakpochu: we were unablet o due retraces01:39
gnomefreakwith it01:39
Kmosany experimental tb2.0 for feisty ?01:39
gnomefreakKmos: when i update it ill let you know.01:40
pochutb2.0 is final, so no experimental :)01:41
Kmospochu: i mean the package01:41
gnomefreaki will most likely get to it after gutsy opens01:41
Kmosnot the release01:41
gnomefreakpochu: mines not final yet ;)01:41
gnomefreakpochu: we have a few things to work out before i can update to final01:41
pochuah, ok01:42
pochugnomefreak: yeah, dbgsym is up-to-date01:42
gnomefreakok cool01:42
pochuinstalling :)01:42
pochudo I need to run this commands for tb crashes?:01:43
pochu(gdb) handle SIG33 pass nostop noprint01:43
pochu(gdb) set pagination 001:43
gnomefreaknot really01:43
gnomefreakyou can it doesnt hurt afaik01:43
pochuok01:43
pochuthat's from w.u.c01:43
gnomefreakyeah i know01:43
gnomefreakwe have one set up for ff i dont think we did one for tb yet but we will01:44
pochuProgram received signal SIGSEGV, Segmentation fault.01:44
pochu[Switching to Thread -1221530864 (LWP 7377)] 01:44
pochu0x00000000 in ?? ()01:44
pochu(gdb)01:44
pochunot very useful :/01:44
gnomefreaknope its not01:44
gnomefreakthe the symbols are not up to date with our thunderbird in feisty im betting01:45
pochuthey're 1.5.0.10-0ubuntu301:46
pochusame as feisty01:46
pochuhttp://pastebin.ca/45129101:46
gnomefreakwe 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 is01:47
pochuok, will explain the crash:01:47
pochuI had it some time ago: when changing from one folder to another which has a lot of mails (3000+) it crashes01:48
gnomefreakpochu: file a bug :)01:48
pochuso to investigate, last time I removed 2000+ mails, and then it didn't crash01:48
pochuyeah :)01:48
pochugnomefreak: when I have a bt ;)01:48
gnomefreakpochu: just attach the crash report01:49
gnomefreaksomeone will retrace it and get the symbols01:49
gnomefreakKmos: add what version of ubuntu what version of ff and all extenstions and plugins you have installed (including themes)01:51
gnomefreakto your bug report.01:52
Kmosgnomefreak: ok01:52
gnomefreakits 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 atm01:53
Kmosi'm doing a retrace now01:57
gnomefreakgood im going to lay down while this uploads its still kind of early seeing as i got up at around 3am01:58
gnomefreakpochu: 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 it02:00
gnomefreaks/ot/to02:00
=== gnomefreak gone
asacgnomefreak: back02:32
gnomefreakasac: feeling better?02:55
asacyeah ... a abit :)02:55
asacwhat do you wanna know about tbird changelog?02:56
gnomefreakfirefox entries in it02:58
gnomefreaktrunk i think it was02:58
gnomefreak20070328 firefox entry than the tb entry on top02:59
gnomefreakok repo is back online03:05
gnomefreaki 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
gnomefreakhmm03:12
gnomefreakKmos: you still here?03:13
asactbird is based on firefox-trunk branch03:23
asacsame goes for new ffox-2.0.0.x03:23
gnomefreakah03:23
gnomefreakany changes to tbird lately?03:23
gnomefreakat branch03: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
asacgnomefreak: i can upload as well in case you have no time03:29
gnomefreakk03:30
asacno changes to tbird currently03:30
gnomefreakpeople are wanting final i hear it everyday03:30
gnomefreakyou have to do the stuff you and ajmitc_h were talking about?03:31
asacgnomefreak: you can just use final tarball03:31
asacand respin03:31
asacwe release as 1.99 though as we want people to automatically upgrade03:31
asacwhen it gets into offical archive03:32
gnomefreakwhat about the locales and the lpd* stuff03:32
gnomefreakah ok03:32
asaclocales need to be done, right03:32
gnomefreakthan i will grab final tarball create orig and spin03:32
gnomefreakwell 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 tb03:33
asacgnomefreak: i am brewing coffee now03:34
=== gnomefreak missed coffee this morning
asaci will do the locales stuff03:34
gnomefreakk03:34
gnomefreakim gonna grab tar and go with it in the next hour or so than and i guess you can add locales sometime after i upload03:35
gnomefreakthat will give you another day to rest if you need it03:36
asacthanks :)03:40
gnomefreakyw03:40
gnomefreakbrb03:41
=== gnomefreak [n=gnomefre@ubuntu/member/gnomefreak] has joined #ubuntu-mozillateam
gnomefreakmaybe ill set up my gutsy chroot this weekend (assuming toolchain is uploaded since we opened #ubuntu+1)03:45
gnomefreakasac: cairo-backed Gecko 1.9 << is in our build of fx 2.0.0.x?04:03
asacwho wants to know?04:03
asac2.0 is from 1.8.1 branch  ... 1.4 from 1.8.0 branch ... so no, bothare 1.8.x04:04
gnomefreakah04:04
asactrunk is 1.904:04
asac:)04:04
asacso the firefox 3.0 branch which will eventually be created will probably named 1.904:05
gnomefreak:)04:05
Kmosbug 2743004:06
ubotuMalone bug 27430 in firefox "Firefox deletes the clipboard on startup; middle-click paste also broken" [Wishlist,Confirmed]  https://launchpad.net/bugs/2743004:06
Kmosis this already fixed?04:06
gnomefreakdoes the bug say its fixed?04:09
gnomefreakseeing as its a wishlist i doubt it04:09
Kmosit's too old.04:10
gnomefreakKmos: does it still happen on feisty04:11
Kmos:(04:11
gnomefreakif so its not fixed but i dont remember that one either04:12
gnomefreakasac: where in the rules does it define the orig.tar.gz name its wanting me to name it the rc1 name04:22
asacits encoded in upstream version04:23
asacreplace rc1 by release04:23
asacin changelog version04:23
asacand use the name it wants for the tarball04:23
asac'rc1' -> 'release'04:24
gnomefreakk04:24
=== hjmf [n=hjmf@6.Red-88-25-28.staticIP.rima-tde.net] has joined #ubuntu-mozillateam
gnomefreak1.99.release+2.0-1 is what you want in changelog? not 2.0.0.004:26
pochushouldn't it be -0ubuntu1?04:27
gnomefreakits not going into ubuntu atm04:27
pochuoh, to your repo :)04:28
gnomefreakyep04:28
gnomefreakok i leave now to get things done its building04:35
asacgnomefreak: yeah version looks good04:38
gnomefreakok cool04:38
asacpreviously was 1.99.rc1+2.0-1, right?04:38
asacthen its fine04:38
gnomefreakyes04:41
gnomefreakshould i change rc1 in orig since its built already or leave it?04:41
gnomefreakreplacing it with the other one in archive will ensure they get right version of orig but im thinking complaints about it saying rc104:42
Kmos[15:41]  <Kmos> 112:<https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/36739>04:43
ubotuMalone 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
Kmosasac :)04:44
Kmos[15:42]  <Kmos> and v1.5 will be discontinued04:44
Kmos[15:42]  <Kmos> i'm checking old bugs04:44
asacbug 36739 is not yet completely fixed04:44
asacusers get a warning though04:45
gnomefreak!chroot04:45
ubotuhttps://wiki.ubuntu.com/DebootstrapChroot use this to build 32 bit environments on a 64 bit box04:45
Kmosasac: ok04:45
asacgnomefreak: can we feed the bot?04:46
gnomefreaki can04:46
gnomefreakasac: when i see seveas ill ping him to give you rights to change add facts04:47
gnomefreakstill cant get chroot set up04:48
gnomefreakjust checked its seveas who has to add you. :(04:48
gnomefreaki pinged him but he isnt answer people (atleast for last 2 hurs04:49
Kmosasac: latest firefox I got, apport doesn't handle them.. just create the file on /var/crash04:50
Kmos*lastest firefox crash I got04:50
Kmosit's strange..04:50
gnomefreakas soon as i figure out how i can add you. i forgot i was a mod for bot :(04:51
asacin stable release its disabled by default04:51
asace.g. apport auto submit04:51
gnomefreakdebootstrap is part of toolchain right?04:52
asaci don't think so04:55
gnomefreakcrap04:55
=== gnomefreak wants chroot before i upgrade testing system
gnomefreakwell gives me time to add gutsy to repo04:56
asacyou should use chroot only at the beginning ... guess feisty debootstrap will be updated to contain gutsy info04:56
asacprobably it will just work04:56
Kmosasac: and how we know it generated the report? :)04:57
gnomefreakE: No such script: /usr/lib/debootstrap/scripts/gutsy (that looks like its nto updated)04:57
gnomefreakKmos: read the report04:57
Kmosgnomefreak: don't understand04:58
gnomefreakKmos: did you do the retrace?04:58
gnomefreakoh nvm04:59
gnomefreakKmos: that may be because apport isnt enabled by default in feisty as i understand it04:59
gnomefreakor you have to opt to use it04:59
Kmosi check manually at /var/crash to see if there is a crash report.. firefox or apport don't tell me anything05:00
gnomefreakKmos: it wont unless you opt in to have it tell you (no i havent figured that part out yet05:01
Kmoshow do I enable it ?05:01
Kmos:)05:01
gnomefreakmight ask pitti this week how to get it to report bugs dialog05:02
Kmos[15:51]  <asac> in stable release its disabled by default05:02
Kmos[15:51]  <asac> e.g. apport auto submit05:02
gnomefreakright05:02
Kmosso firefox has it disabled ?05:02
gnomefreakno apport all together05:02
Kmosso it's a apport problem05:03
gnomefreakcrash on anything you wont get it05:03
gnomefreaknot a problem a feature05:03
Kmos:)05:03
gnomefreakiirc its done this way because people dont know how to file a bug report correctly05:03
asacits not a apport problem ... is disabled intentionally05:03
asacgnomefreak is right ... its a load thing05:04
gnomefreakasac: have you got the memo on how to enable it?05:04
asachmm05:04
asacwhy?05:04
=== gnomefreak hasnt seen how to turn in it
gnomefreakit on05:04
gnomefreakasac: incase something crashes05:04
=== gnomefreak knows how to file bugs ;)
asac/etc/default/apport05:05
asacenabled = 1 should be set05:05
asacthen reboot or start apport service with /etc/init.d/apport start05:06
gnomefreakah ty05:06
gnomefreakhmmmm05:06
gnomefreakmine never got disabled05:06
Kmoskmos@bash:~$ cat /etc/default/apport05:07
Kmos# set this to 0 to disable apport05:07
Kmosenabled=105:07
KmosI've this05:07
gnomefreakthan its enabled afaik05:09
gnomefreaki dont get crash reports since nothing crashes here05:09
=== gnomefreak might purposely crash something this week to find out.
=== gnomefreak has newest apport version fo feisty
gnomefreak0.76.1~prop1  :)05:10
gnomefreakbrb05:10
KmosI've the latest version too05:10
gnomefreakKmos: im assuming you have apport-gtk installed?05:17
=== gnomefreak goes out for a walk ill be back in about 2 hours or so.
Kmosgnomefreak: yes, I have05:22
gnomefreakrepo will go down in about an hour or hour and half07:46
asack07:47
gnomefreakim uploading now but its taking sweet time07:47
gnomefreakasac: can you run apt-get update please08:03
gnomefreaki wanna see if my repo errors08:03
gnomefreakim hoping it doesnt error08:03
gnomefreakrepo is back up with tb final08:44
pochucool, gonna try it! :)08:47
gnomefreakpochu: if it breaks blame Kmos09:00
gnomefreakyeha that will work ;)09:00
pochu:)09:00
gnomefreaki swear people get stupider every day09:01
pochuwhy?09:02
gnomefreakpochu: 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 root09:03
gnomefreakwith the recursive and force flags09:03
pochulol09:06
gnomefreakasac: the extenstions link in tb is borked like it is looking for something09:08
gnomefreakasac: i will explain more tomorrow09:08
gnomefreakand reply to list seems to be not working and im not seeing another package for it09:09
gnomefreakdamnit09:17
gnomefreakim 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
pochuhmm, which was the deb line for you repo?09:19
pochugnomefreak: ^09:20
gnomefreak!moxtest09:20
ubotuSorry, I don't know anything about moxtest - try searching on http://bots.ubuntulinux.nl/factoids.cgi09:20
gnomefreak!moztest09:20
ubotuThe mozilla-testing repo can be found at: https://wiki.ubuntu.com/MozillaTeam/PreviewArchives09:20
gnomefreakpochu: ^^ its there09:20
pochuty :)09:21
gnomefreakyw09:23
gnomefreakill be back later.09:24
Kmos[20:00]  <gnomefreak> pochu: if it breaks blame Kmos09:41
Kmoslol09:41
=== cjwatson_ [n=cjwatson@82-69-40-219.dsl.in-addr.zen.co.uk] has joined #ubuntu-mozillateam
gnomefreak%addeditor asac09:56
gnomefreakasac: can you please /msg ubotu register nickname password   and let me know when done i can than add you as editor10: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
ubotuI'll remember that gnomefreak11:09
asacgnomefreak: looks like firefox as well as iceape still have bad libhunspell dependency11:12
gnomefreakasac: https://addons.mozilla.org/en-US/firefox/mozilla-thunderbird/themes/  also does this for extentions11:12
gnomefreakasac: im looking into it. but the bug i saw was about libnspr4-0d i ran it on older version it seems so im respinning it11:13
asacyou just have to respin iceape and friends ... take care that new hunspell is nowhere on system11:13
gnomefreakthe error was on libplcd....11:13
asacyes ...thats still the old error ... new libnss is needed ... nothing more11:13
gnomefreakthe latest were built with feistys version of hunspell11:14
asacjust rebuild libnspr and libnss (which i thought you already did two days ago:))11:14
gnomefreak  Installed: 1.1.4-711:14
asacno ... at least not firefox and iceape ... otherwise it would not try to install hunspell 1.1.5 ... which it does atm11:15
gnomefreakasac: i did but i never upgraded my chroot to use latest version of libnspr411:15
asacyeah ... rebuild with that should solve things for you ... further keep eyes open that no explicit versions are mentioned for hunspell in control11:15
asacok ... you need latest of everything of course :)11:15
gnomefreakit does?11:15
asaclatest libnspr4 ... latest libnss (both mui important)11:15
gnomefreakyes i know11:16
asacand old hunspell (1.1.4) :)11:16
asacok fine ;)11:16
gnomefreakthats why im respinning. but they are all old hunspell11:16
asacThe 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
asacthats what i get atm11:16
gnomefreakwtf11:16
asacmaybe you forgot to upload?11:17
asacor just forgot to regen packages + sources + release ?11:17
gnomefreakwell 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
gnomefreakoh shit11:18
gnomefreakdamnit ty for letting me in on that11:18
gnomefreakworking on it. i thought i changed the depend for iceape but i guess not since apt-cache show still shows new version11:20
gnomefreakwtf i did change it libhunspell-dev (>= 1.1.4-7)11:22
gnomefreakwhere do i go for the shlibs:depends11:23
gnomefreakand hunspell is no where on the repo11:25
gnomefreakwhat version are you trying to grab?11:26
gnomefreakmaybe i should add libhunspell-dev (<< 1.1.5-1)?11:27
gnomefreakiceape (1.1.1-3.mt6) feisty; urgency=low11:29
gnomefreak  * debian/control changed build depend libhunspell version from 1.1.5-6 to11:29
gnomefreak    1.1.4-711:29
gnomefreak -- John Vivirito <gnomefreak@gmail.com>  Thu, 19 Apr 2007 16:20:00 -040011:29
gnomefreakis the change log entry so i know i did it11:29
=== AlexLatchford [n=alex@82-44-193-109.cable.ubr07.haye.blueyonder.co.uk] has joined #ubuntu-mozillateam
gnomefreakiceape isnt even showing that it wants hunspell. i removed --purged hunspell and installed iceape and it doesnt even try to bring it in11:35
gnomefreakhmmmm let me try something11:36
gnomefreakasac: heres my output http://gnomefreak.pastebin.ca/45185211:44
gnomefreakinstalling hunspell again and try to purge it this time see what it wants to do11:45
gnomefreakasac: i dont know mines not even wanting to bring hunspell in as a depend11:46
gnomefreakasac: is this the 64bit build that you are getting that wieh?11:47
gnomefreakwith*11:47
gnomefreakasac: 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!