**** BEGIN LOGGING AT Thu May 28 02:59:58 2015 May 28 12:31:45 Is Chris Elledge around? May 28 13:11:28 koen: I made a round trip to my sftp problems again. To recap... sftp works in DISTRO_TYPE="debug" but not in DISTRO_TYPE="release". May 28 13:11:51 I found that on the "release" build the package openssh-sftp-server is not installed May 28 13:12:15 and hence the "unexpected end of pipe" errors from filezilla May 28 13:12:27 any ideas? May 28 13:12:47 hmmm May 28 13:12:52 yocto 1.7 May 28 13:12:57 it should always be installed May 28 13:13:03 I don;t know what 'yocto 1.7' is May 28 13:13:05 I work with OE May 28 13:13:24 yocto is a very small ideal I guess ;) May 28 13:13:38 ok then dizzy May 28 13:36:15 koen: can you make sense of this: May 28 13:36:16 RDEPENDS_${PN}-ptest += "${PN}-sftp ${PN}-misc ${PN}-sftp-server make" May 28 13:36:27 would ptest be in debug but not release? May 28 13:37:27 a packagegroup is created on RDEPENDS="openssh" that inturn makes a RDEPENDS as shown above... May 28 14:16:43 hi all, Im getting issue with cherokee-admin because of installation in /usr/sbin instead of /usr/local/sbin, how can I fix this ? May 28 14:24:05 kimo_: I guess we'd need to track down where it still thinks it should be in /usr/local and fix that May 28 14:25:24 bluelightning: can I add --prefix=/usr/local/ to EXTRA_OECONF ? May 28 14:25:44 I mean will it work? May 28 14:27:53 that should already be being passed to the configure script by default May 28 14:29:43 just double-checked the recipe, it isn't overriding do_configure, so it should be there May 28 14:29:56 you should be able to verify it by looking at log.do_configure May 28 14:32:02 I have --prefix=/usr in this file May 28 14:32:56 I tried addind it to the EXTRA_OECONF but it gives me files not shipped issues May 28 14:33:22 why would you want to move the files to /usr/local though? May 28 14:33:36 so I mean the recipe need a FILES_${PN} ="/usr/local \ ..." May 28 14:33:50 I honestly don't think that's the right solution May 28 14:34:39 because cherokee-admin fails otherwise May 28 14:35:41 I tried linking /usr/sbin/ to /usr/local but it fails too May 28 14:51:00 kimo_: surely the answer is to fix cherokee-admin ? May 28 14:52:13 ^^ maybe Im not sure I can do that being a newbie on webservers May 28 14:55:44 bluelightning: how can I "make install" when in devshell ? May 28 14:56:59 kimo_: if it's run previously, you should be able to run run.do_install from the temp directory May 28 15:16:43 to rephrase my question from a couple of days ago, is there a way to get locales installed as en_US.UTF-8 without the automatic dropping of the ".UTF-8"? May 28 15:17:46 it kind of looks like I'd need to modify libc-package.bbclass May 28 15:19:12 it's an issue for me since newer versions of chef look for a .UTF-8 or .utf8 locale since most distros provide them May 28 15:19:58 my current workaround is a symlink, but I'm curious if there's a variable I'm missing that changes the locale packaging behaviour May 28 15:21:28 afaik you'd have to modify libc-package.bbclass to change that behavior May 28 15:21:45 okay, that's what I figured based on my spelunking yesterday May 28 15:22:11 any idea why OE does it differently? May 28 15:22:13 do we have per-file (or per package) flags for strip? The default of 'elif ".so" in file and elftype & 8:' nukes my nptl_version but i need that one :) May 28 15:29:34 something like http://paste.debian.net/185801/ maybe May 28 15:44:58 blindvt`: does setting INHIBIT_PACKAGE_STRIP_${PN} = 1 work? May 28 15:46:15 smurray: it would but would obviously prevent all stripping (which would likely be ok too, for this particular recipe). May 28 15:46:29 smurray: i'm not familiar with the strip policy on OE May 28 15:46:44 a patch to allow tweaking the strip settings might get accepted May 28 15:50:58 let me try a per-pn tweak May 28 15:57:38 is there a reverse-LUT from file to package readily available? May 28 15:58:41 once the recipe is built, you can use oe-pkgdata-util to look up what package has a given file or files May 28 15:58:45 * kergoth yawns May 28 16:11:12 kergoth: this is in package.bbclass, split_and_strip_files() May 28 16:11:50 kergoth: does that mean package_fixsymlinks() should use pkgdata-util too? It manually iterates over the files ATM May 28 16:12:43 i doubt it. i think do_packagedata runs after do_package, but not sure May 28 16:13:35 that would make sense, yea, since it's sanity-checking the lists first May 28 16:15:09 way too complicated. I'll just tweak the STRIP var in the affected recipe instead of the fancy, per-package var (that nobody else seems to need anyway) May 28 16:43:05 package_do_shlibs() handles darwin a bit odd (and seems to have a typo for !darwin: http://paste.debian.net/185896/ May 28 16:44:59 are there lamdas in python? Or was that c++ May 28 16:52:43 yes, python has lambda for inline function definitions. e.g. lambda x: x.foo() May 28 16:53:33 kergoth: yep, just seen that lambdas are already used, one could rephrase the above mentioned shlib thing then May 28 16:56:56 pkgfiles is obviously not yet setup when split_and_strip_files is run. What a pity May 28 16:58:06 s/autotmatically/automatically/g May 28 17:02:18 does this error ring any bell? http://paste.debian.net/185933/ May 28 17:54:25 wrt http://paste.debian.net/185933/ : it was a recipe with multiple remote URIs in SRC_URI, and the order was relevant. May 28 18:24:39 kergoth: it's a bit of a pain that -c listtasks emits do_x but when you -c do_x a second "do_" is prepended: Task do_do_cleanall does not exist for target May 28 18:25:49 kergoth: would be fancy to not prepend a do_ if the tasks exists, or something like that May 28 18:32:49 blindvt`: I think that is a bug, I believe the intention is that it should accept with or without the do_ prefix May 28 18:33:16 at least that's how I recall the discussion a year or two ago with RP May 28 20:19:11 blindvt`: agreed. that's rather inconsistent **** ENDING LOGGING AT Fri May 29 02:59:59 2015