**** BEGIN LOGGING AT Mon Feb 13 02:59:58 2012 Feb 13 03:33:04 PuffTheMagic: I tar and untar, not symlink Feb 13 03:33:11 check the postinst file Feb 13 03:34:04 isnt /usr/palm/frameworks/enyo/0.10 a link to /media/cryptofs/..../org.webosinternals.enyo ? Feb 13 03:37:07 no Feb 13 03:37:23 ( cd ${APPS}/usr/palm/applications/${APPID} ; tar cf - . ) | \ Feb 13 03:37:23 ( cd /usr/palm/frameworks/enyo/0.10/framework ; tar xvf - ) Feb 13 03:38:29 hmm, well something about 2.1 didnt like it, i think i've only tested the ipk on pre3 and TP Feb 13 03:39:20 i deleted the file in /usr/palm/frameworks/enyo Feb 13 03:39:26 then moved the files manually and it work Feb 13 03:39:28 worked Feb 13 03:41:25 * rwhitby shrugs and points to the postinst Feb 13 03:41:38 it's like three lines of real code. Feb 13 03:42:53 all im saying is that its broken on veer 2.1, if I had to guess its related tar Feb 13 03:42:57 related to tar Feb 13 03:43:21 well, you haven't shown a file listing of what it ends up like on a veer Feb 13 03:43:34 I mean either the files are there or they are not Feb 13 03:43:56 and with three lines of postinst code, it should be pretty clear whether something is going wrong or not Feb 13 03:45:41 the files were there, but when i launched my code it gave me an error in my index that said enyo did not exist Feb 13 03:46:14 i guess I will play with it more later Feb 13 03:50:26 was the index correctly modified to point to the right place? Feb 13 03:59:35 the index was working on all my other devices, i then deleted the enyo on my veer provided by maps, installed the one of preware, and it no longer worked Feb 13 04:42:47 Brybry, ping Feb 13 04:42:51 stbuehler, ping Feb 13 04:43:50 mmm? Feb 13 04:45:22 i've added the header :D Feb 13 04:45:41 its awesome :D Feb 13 04:46:55 i just need a way to tell if we are fullscreen or now Feb 13 04:46:56 not Feb 13 05:05:07 well, im gonna leave it in fullscreen for now since it fixes the rounded corner issue on phones Feb 13 05:05:49 Brybry, i pushed it if u want to see it Feb 13 05:06:28 I'll look in the morning, I'm super sleepy :) Feb 13 09:12:06 PuffTheMagic: pong Feb 13 16:39:20 so now that I have a fake menu bar at the top of wterm i am thinking of having a button on the right side that does a quick show/hide of the vkb Feb 13 16:39:30 and im gonna add a new option Feb 13 16:39:54 one that allows on "hide vkb" to switch to a different vkb layout Feb 13 16:40:04 like the tablet aux vkb Feb 13 21:00:30 think anyone would object to making wterm depend on bash? Feb 13 21:01:30 what would it fix? Feb 13 21:01:57 it would mean setting window title would work for everyone Feb 13 21:01:57 as long as bash is worse than busybox sh regarding utf8 i don't want it as default shell :) Feb 13 21:02:23 its worse? Feb 13 21:03:45 iirc. i had it installed and removed it as it sucked (and i'm using bash as default on most of my systems, so i'm not a bash hater) Feb 13 21:04:05 what doesn't work with window title? Feb 13 21:04:26 that requires bash Feb 13 21:04:29 well Feb 13 21:04:41 how i am setting it does Feb 13 21:04:42 vkb feels laggy Feb 13 21:05:09 PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/$HOME/~}\007"' Feb 13 21:05:13 is a bash thing Feb 13 21:07:57 * PuffTheMagic compiles bash from source Feb 13 21:07:58 4.2 Feb 13 21:09:50 export PS1='\033]0;\u@\h:\w\007'"$PS1" Feb 13 21:09:53 works fine Feb 13 21:10:37 what about color? Feb 13 21:10:52 if [[ `id -u` == 0 ]] ; then Feb 13 21:10:52 PS1='\[\033[01;31m\]\h\[\033[01;34m\] \W \$\[\033[00m\] ' Feb 13 21:10:52 else Feb 13 21:10:52 PS1='\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\] ' Feb 13 21:10:52 fi Feb 13 21:11:11 why wouldn't it work? Feb 13 21:12:09 i don't think you need the \[ \] stuff around esq sequences Feb 13 21:12:11 oh i didnt see the end of that Feb 13 21:13:40 i'm gonna test older versions, i don't like the current vkb response time Feb 13 21:14:29 i cant imagine it had to do with my recent changes Feb 13 21:14:51 it could be my overhaul of it to fix the stuck key bugs Feb 13 21:14:52 totally need the \[ though Feb 13 21:15:15 or it could be the JS async stuff Feb 13 21:16:06 I feel like something occasionally lags the terminal at startup these days =/ Feb 13 21:17:36 the shell is burning 13% cpu.. wtf? Feb 13 21:17:39 for doing nothing Feb 13 21:17:57 remember to look at cpu freq Feb 13 21:18:49 I wonder how well gprof in optware works Feb 13 21:19:22 Brybry, the startup lag was always there Feb 13 21:19:32 yeah but sometimes it's more apparent to me Feb 13 21:19:35 or I just notice it more Feb 13 21:19:52 looks like it doesn't like the $(stty ...) stuff in PS1 Feb 13 21:20:09 who did that? Feb 13 21:20:37 I don't think we do that by default do we? we just put it in our own profiles? Feb 13 21:20:55 im having wterm install this in profile.d/ Feb 13 21:20:55 v Feb 13 21:20:56 if [[ `id -u` == 0 ]] ; then Feb 13 21:20:57 PS1='\[\033[01;31m\]\h\[\033[01;34m\] \W \$\[\033[00m\] ' Feb 13 21:20:57 else Feb 13 21:20:57 PS1='\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\] ' Feb 13 21:20:58 fi Feb 13 21:21:00 PS1='\033]0;\u@\h:\w\007'"$PS1" Feb 13 21:21:02 works nice Feb 13 21:21:39 destinal_, i have a poppery2 now Feb 13 21:21:45 yeah, just had it in my own profile Feb 13 21:21:46 came saturday morning at 9am :D Feb 13 21:21:46 at one point we discussed some stty sane stuff because one could be left with a terminal that didn't auto generate \n on newline or something if a program segfaulted that disabled it (cmatrix) Feb 13 21:21:53 so better don't use it in a global profile :) Feb 13 21:21:59 PuffTheMagic: nice. thoughts re comparing the two? Feb 13 21:22:10 destinal_, dont have new beans yet Feb 13 21:22:17 ahhh Feb 13 21:22:22 destinal_, im ordering a like 11lbs from SM prob some time this week Feb 13 21:22:27 i took orders from people in my lab Feb 13 21:22:34 said i would roast for them Feb 13 21:22:58 think im getting 8lb sampler, 1 lb kenya, 2lb collumbian Feb 13 21:23:46 rwhitby, ping Feb 13 21:23:57 yes Feb 13 21:24:27 rwhitby, do you know of any package other than optware that puts a file in /etc/profile.d ? Feb 13 21:24:31 PuffTheMagic: nice Feb 13 21:24:33 no Feb 13 21:25:30 rwhitby, do you think we could set a standard with at least the packages we put in preware, that if they are going to go in /etc/profile.d they must start with ##_ where ## is a 2 digit number Feb 13 21:25:32 PuffTheMagic: what happens if we set the env in wterm before starting the loginshell ? Feb 13 21:25:51 rwhitby, that way we can have some sorta control over order Feb 13 21:26:03 sure Feb 13 21:28:20 rwhitby, thanks, I will adjust the optware package when i get home Feb 13 21:28:45 make sure you handle migration for existing installs in the postinst Feb 13 21:28:59 yup Feb 13 21:30:25 destinal_, so you said you have been happy with the samplers? what do you normally get? Feb 13 21:31:02 PuffTheMagic: and use the alpha feeds for the new version of the package first Feb 13 21:31:09 ok Feb 13 21:31:52 rwhitby, Brybry im also gonna add a TERM setting to the profile.d file that wterm sets, got a pref Feb 13 21:31:56 xterm vs. rxvt? Feb 13 21:32:16 heh. suprisingly, build.git and jenkins actually play pretty nice with each other. Feb 13 21:32:29 wtf is jenkins Feb 13 21:32:43 continous integration Feb 13 21:33:19 aka it builds project's based on git commits Feb 13 21:33:22 PuffTheMagic: last few times have been samplers, have been trying to get tasting notes from my family to know what to order in future but they never do seem to write them down so I keep getting samplers. I like all kinds. if I had to choose a favorite, Harar and Kenya Nyeri probably Feb 13 21:34:58 but the variety/quality of the samples are good? Feb 13 21:35:23 stbuehler, set the env variable for what before starting the shell? Feb 13 21:36:18 PuffTheMagic: definitely. SM quality is outstanding throughout and the samples are a good range of kinds, all good, and you get to see what you like as well as try the same bean different roasts of course Feb 13 21:36:52 they have notes on the side of each on what kind it is and recommended degree of roast and different profile characteristics Feb 13 21:39:17 nice Feb 13 21:40:12 Brybry: i assumed PuffTheMagic wanted to modify some env vars in profile.d Feb 13 21:41:07 hmm, long prompts are not broken Feb 13 21:41:57 wtf Feb 13 21:42:06 wordwrap is now wonky Feb 13 21:44:14 stbuehler, we currently tell login to not preserve environment to more easily get rid of all the LD_PRELOAD/etc junk that the plugin starts with but we could definitely clear the env ourselves and then pass our own. However you can't pass TERM to login, it will always get reset by the shell defaults or profile stuff Feb 13 21:44:55 wow, bash in optware is so broken Feb 13 21:45:13 stbuehler, tonights goal for me is getting bash-4.2 building in build.git Feb 13 21:47:56 http://ompldr.org/vY3Q3Ng/wterm_2012-13-02_164544.png Feb 13 21:48:11 ^^ check out the new fake header with term title :D Feb 13 21:48:33 css needs a little cleaning up though Feb 13 21:49:01 i suppose it would make sense to have a shorter prompt now Feb 13 21:49:43 stbuehler, did u see the charselector has function keys now :D Feb 13 21:53:05 yep, i saw them :) nice Feb 13 22:04:18 PuffTheMagic, it'd probably be soooooooo easy using the optware makefile setup Feb 13 22:17:32 ? Feb 13 22:18:11 the hard part is staging any random deps its needs Feb 13 22:18:15 not creating the makefile Feb 13 22:22:02 Brybry, gonna follow gentoos build setup since it automates pulling in all the patches Feb 13 22:27:56 yeah, I dunno how I'd handle patches Feb 13 22:28:54 * Brybry now has bash_4.2.49-1_arm.ipk Feb 13 22:29:04 don't really feel like testing to see if it works though Feb 13 22:32:40 .49? Feb 13 22:32:46 where did this come from? Feb 13 22:32:58 i only see 3.x in optware Feb 13 22:33:52 I suspect the .49-1 is just nonsense that got carried over Feb 13 22:34:10 where did u get 4.x from? Feb 13 22:34:35 I did a 5 seconds edit bash.mk to point to 4.2 Feb 13 22:35:19 and told it to not patch anything Feb 13 22:35:32 ya that patches are important Feb 13 22:35:34 though it may have linkd with old libraries so I dunno if it would actually work Feb 13 22:37:57 I suppose I could have pulled patches from http://ftp.gnu.org/gnu/bash/bash-4.2-patches/ Feb 13 22:38:24 * Brybry shrugs Feb 13 22:39:27 that is where the patches ceom from :D Feb 13 23:37:31 why not just get the optware bash updated? Feb 13 23:55:07 i dont want to do QA on all of optware Feb 13 23:55:47 rwhitby, ping Feb 14 00:06:43 Brybry, http://pastebin.com/jSvwbqGd Feb 14 00:06:44 :D Feb 14 00:33:55 well bash works Feb 14 00:34:00 but not widechars Feb 14 00:34:48 not sure why not Feb 14 00:40:20 Brybry, i pushed my bash makefile to build.git Feb 14 00:40:23 its in nonworking Feb 14 00:40:29 but it does compile perfectly for me Feb 14 00:40:38 just need to figure out whats up with wide chars Feb 14 01:42:22 PuffTheMagic: nonworking/bash fails to build for me on Unbuntu 11.04 server Feb 14 01:42:29 execute_cmd.c: In function 'execute_pipeline': Feb 14 01:42:29 execute_cmd.c:2205: error: 'job_control' undeclared (first use in this function) Feb 14 02:09:09 rwhitby, ya i havent tested it on my server/vm yet Feb 14 02:09:30 rwhitby, my build failed with that before I got the patches working Feb 14 02:09:38 weird that its hitting that now Feb 14 02:10:11 rwhitby, the reason I pinged you earlier had to do with how I was handling the 20 patches bash needs to download Feb 14 02:10:42 the pastebin looks fine, as long as the files in downloads are uniquely named so as not to conflict with anything else Feb 14 02:11:05 they shouldnt Feb 14 02:19:46 it built for me on 11.10 fine Feb 14 02:26:50 Brybry, ya 10.04 server is really picky **** ENDING LOGGING AT Tue Feb 14 02:59:56 2012